[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#692169: marked as done (unblock: kfreebsd-8/8.3-5)



Your message dated Mon, 12 Nov 2012 17:34:11 +0000
with message-id <1352741651.27968.60.camel@jacala.jungle.funky-badger.org>
and subject line Re: Bug#692169: unblock: kfreebsd-8/8.3-5
has caused the Debian Bug report #692169,
regarding unblock: kfreebsd-8/8.3-5
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
692169: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=692169
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Please unblock package kfreebsd-8

kfreebsd-8 (8.3-5) unstable; urgency=medium

  [ Robert Millan ]
  * Remove /boot symlink kludge.  (Closes: #672255)

  [ Christoph Egger ]
  * Import svn239447 from upstream 8-STABLE to fix a DoS vulnerability
  in
    SCTP (Closes: #686961)

 -- Christoph Egger <christoph@debian.org>  Fri, 02 Nov 2012 13:32:11 -0700


unblock kfreebsd-8/8.3-5



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.4-trunk-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
dpkg-source: warning: extracting unsigned source package (/srv/stuff/kfreebsd-8_8.3-5.dsc)
diff -Nru kfreebsd-8-8.3/debian/changelog kfreebsd-8-8.3/debian/changelog
--- kfreebsd-8-8.3/debian/changelog	2012-06-15 20:20:09.000000000 +0200
+++ kfreebsd-8-8.3/debian/changelog	2012-11-02 21:44:03.000000000 +0100
@@ -1,3 +1,14 @@
+kfreebsd-8 (8.3-5) unstable; urgency=medium
+
+  [ Robert Millan ]
+  * Remove /boot symlink kludge.  (Closes: #672255)
+
+  [ Christoph Egger ]
+  * Import svn239447 from upstream 8-STABLE to fix a DoS vulnerability in
+    SCTP (Closes: #686961)
+
+ -- Christoph Egger <christoph@debian.org>  Fri, 02 Nov 2012 13:32:11 -0700
+
 kfreebsd-8 (8.3-4) unstable; urgency=high
 
   [ Steven Chamberlain ]
diff -Nru kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in
--- kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in	2012-02-10 23:32:31.000000000 +0100
+++ kfreebsd-8-8.3/debian/kfreebsd-image.postinst.in	2012-11-02 21:30:19.000000000 +0100
@@ -24,37 +24,6 @@
 
 case "$1" in
     configure)
-        # Don't do symlinks if explicitely disabled
-        if [ -z "$(sed -e '/^\s*do_symlinks\s*=\s*\(no\|false\|0\)\s*$/!d' $KERNEL_IMG_CONF 2>/dev/null)" ] ; then
-            for i in kernel.gz acpi.ko ; do
-                if test -e /boot/kernel/$i && ! test -L /boot/kernel/$i ; then
-                    echo "What happen!! /boot/kernel/$i exists but is not a symlink."
-                    exit 1
-                fi
-            done
-
-	    mkdir -p /boot/kernel
-
-            if [ "$(readlink -f /boot/kernel/kernel.gz)" != "/boot/kfreebsd-$RELEASE.gz" ] ; then
-                rm -f /boot/kernel/kernel.old.gz
-                if [ -L /boot/kernel/kernel.gz ] ; then
-                    mv /boot/kernel/kernel.gz /boot/kernel/kernel.old.gz
-                fi
-                ln -s /boot/kfreebsd-$RELEASE.gz /boot/kernel/kernel.gz
-            fi
-
-            # on i386 acpi MUST be within kfreebsd-loader reach
-            if [ "${RELEASE%%-[456]86}" != "${RELEASE}" ] ; then
-                if [ "$(readlink -f /boot/kernel/acpi.ko)" != "/lib/modules/$RELEASE/acpi.ko" ] ; then
-                    rm -f /boot/kernel/acpi.ko.old
-                    if [ -L /boot/kernel/acpi.ko ] ; then
-                        mv /boot/kernel/acpi.ko /boot/kernel/acpi.ko.old
-                    fi
-                    ln -s /lib/modules/$RELEASE/acpi.ko /boot/kernel/acpi.ko
-                fi
-            fi
-        fi
-
         # Sanitize and quote maintainer script parameters
         for p in "$@"; do
             q="$(echo "$p" | sed -e "s/'/'\\''/g")"
diff -Nru kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff
--- kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff	1970-01-01 01:00:00.000000000 +0100
+++ kfreebsd-8-8.3/debian/patches/SCTP_DOS_svn239447.diff	2012-11-02 21:34:19.000000000 +0100
@@ -0,0 +1,19 @@
+Index: sys/netinet/sctp_pcb.c
+===================================================================
+--- a/sys/netinet/sctp_pcb.c	(revision 239446)
++++ b/sys/netinet/sctp_pcb.c	(revision 239447)
+@@ -2048,8 +2048,6 @@
+ 	struct sctp_nets *net;
+ 	struct sctp_tcb *stcb;
+ 
+-	*netp = NULL;
+-	*inp_p = NULL;
+ 	SCTP_INP_INFO_RLOCK();
+ 	head = &SCTP_BASE_INFO(sctp_asochash)[SCTP_PCBHASH_ASOC(vtag,
+ 	    SCTP_BASE_INFO(hashasocmark))];
+
+Property changes on: sys
+___________________________________________________________________
+Modified: svn:mergeinfo
+   Merged /head/sys:r239041
+
diff -Nru kfreebsd-8-8.3/debian/patches/series kfreebsd-8-8.3/debian/patches/series
--- kfreebsd-8-8.3/debian/patches/series	2012-06-15 20:17:38.000000000 +0200
+++ kfreebsd-8-8.3/debian/patches/series	2012-11-02 21:31:42.000000000 +0100
@@ -11,6 +11,7 @@
 amd64_increase_DFLDSIZ.diff
 SA-12_04.sysret.patch
 EN-12_02.ipv6refcount.patch
+SCTP_DOS_svn239447.diff
 
 # Other patches that might or might not be mergeable
 001_misc.diff
                           

--- End Message ---
--- Begin Message ---
On Mon, 2012-11-12 at 18:29 +0100, Cyril Brulebois wrote:
> Adam D. Barratt <adam@adam-barratt.org.uk> (12/11/2012):
> > In principle this looks fine; thanks. It'll need a d-i ack though; CCing
> > and tagging accordingly.
> 
> d-i ack.

Unblocked; thanks.

Regards,

Adam

--- End Message ---

Reply to: