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

Bug#521737: marked as done ([alpha] Segfault in memchr when called via strstr)



Your message dated Mon, 14 Mar 2011 11:03:04 +0000
with message-id <E1Pz5YG-0002mh-M2@franck.debian.org>
and subject line Bug#521737: fixed in eglibc 2.13-0exp4
has caused the Debian Bug report #521737,
regarding [alpha] Segfault in memchr when called via strstr
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.)


-- 
521737: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: libc6.1
Version: 2.9-6
Severity: important

This is another one from the clamav test suite, but this time the bug is easily
reproducible in isolation (therefore important, severity might be upgraded as
well as it breaks unrelated software).

The following simple snippet causes a segfault when run with electric-fence
preloaded:

#include <string.h>

int main() {
        char * bla;
        bla = strdup("aBaaaaaaaaaaax");
        return 0!=strstr(bla, "B1x");
}

The string is somewhat special, it seems the following aspects must hold to
crash strstr (or actually memchr when called from within strstr):

- The char* must be allocated on the heap.
- The number of characters between the B and the final x must not be smaller
  than shown here.
- There must be a chance of a match (that is, the string must contain a the
  initial character of the string to be found).

Reproducing that is simple:

(sid)mt@albeniz:~/clamav-0.95+dfsg/unit_tests$ cat test.c 
#include <string.h>

int main() {
  char * bla;
  bla = strdup("aBaaaaaaaaaaax");
  return 0!=strstr(bla, "B1x");
}
(sid)mt@albeniz:~/clamav-0.95+dfsg/unit_tests$ gcc test.c ; LD_PRELOAD=/usr/lib/libefence.so ./a.out 

  Electric Fence 2.1 Copyright (C) 1987-1998 Bruce Perens.
Segmentation fault

And gdb says:

(gdb) where
#0  0x00000200000d9470 in memchr () from /lib/libc.so.6.1
#1  0x00000200000d90c4 in *__GI_strstr (haystack_start=<value optimized out>, needle_start=<value optimized out>) at str-two-way.h:269
#2  0x00000001200005fc in main ()

There is one problem left: I'm not sure whether this is really libc's memchr or
a gcc builtin (in which case this might be a gcc bug).

Best,
Michael


Attachment: pgp0gtSQTZ1Cd.pgp
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: eglibc
Source-Version: 2.13-0exp4

We believe that the bug you reported is fixed in the latest version of
eglibc, which is due to be installed in the Debian FTP archive:

eglibc-source_2.13-0exp4_all.deb
  to main/e/eglibc/eglibc-source_2.13-0exp4_all.deb
eglibc_2.13-0exp4.diff.gz
  to main/e/eglibc/eglibc_2.13-0exp4.diff.gz
eglibc_2.13-0exp4.dsc
  to main/e/eglibc/eglibc_2.13-0exp4.dsc
glibc-doc_2.13-0exp4_all.deb
  to main/e/eglibc/glibc-doc_2.13-0exp4_all.deb
libc-bin_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc-bin_2.13-0exp4_amd64.deb
libc-dev-bin_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc-dev-bin_2.13-0exp4_amd64.deb
libc6-dbg_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-dbg_2.13-0exp4_amd64.deb
libc6-dev-i386_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-dev-i386_2.13-0exp4_amd64.deb
libc6-dev_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-dev_2.13-0exp4_amd64.deb
libc6-i386_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-i386_2.13-0exp4_amd64.deb
libc6-pic_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-pic_2.13-0exp4_amd64.deb
libc6-prof_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6-prof_2.13-0exp4_amd64.deb
libc6-udeb_2.13-0exp4_amd64.udeb
  to main/e/eglibc/libc6-udeb_2.13-0exp4_amd64.udeb
libc6_2.13-0exp4_amd64.deb
  to main/e/eglibc/libc6_2.13-0exp4_amd64.deb
libnss-dns-udeb_2.13-0exp4_amd64.udeb
  to main/e/eglibc/libnss-dns-udeb_2.13-0exp4_amd64.udeb
libnss-files-udeb_2.13-0exp4_amd64.udeb
  to main/e/eglibc/libnss-files-udeb_2.13-0exp4_amd64.udeb
locales-all_2.13-0exp4_amd64.deb
  to main/e/eglibc/locales-all_2.13-0exp4_amd64.deb
locales_2.13-0exp4_all.deb
  to main/e/eglibc/locales_2.13-0exp4_all.deb
nscd_2.13-0exp4_amd64.deb
  to main/e/eglibc/nscd_2.13-0exp4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 521737@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno <aurel32@debian.org> (supplier of updated eglibc package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 14 Mar 2011 06:25:20 +0000
Source: eglibc
Binary: libc-bin libc-dev-bin glibc-doc eglibc-source locales locales-all nscd libc6 libc6-dev libc6-dbg libc6-prof libc6-pic libc6-udeb libc6.1 libc6.1-dev libc6.1-dbg libc6.1-prof libc6.1-pic libc6.1-udeb libc0.3 libc0.3-dev libc0.3-dbg libc0.3-prof libc0.3-pic libc0.3-udeb libc0.1 libc0.1-dev libc0.1-dbg libc0.1-prof libc0.1-pic libc0.1-udeb libc6-i386 libc6-dev-i386 libc6-sparc64 libc6-dev-sparc64 libc6-s390x libc6-dev-s390x libc6-amd64 libc6-dev-amd64 libc6-powerpc libc6-dev-powerpc libc6-ppc64 libc6-dev-ppc64 libc6-mipsn32 libc6-dev-mipsn32 libc6-mips64 libc6-dev-mips64 libc0.1-i386 libc0.1-dev-i386 libc6-i686 libc6-xen libc0.1-i686 libc0.3-i686 libc0.3-xen libc6.1-alphaev67 libnss-dns-udeb libnss-files-udeb
Architecture: source all amd64
Version: 2.13-0exp4
Distribution: experimental
Urgency: low
Maintainer: Aurelien Jarno <aurel32@debian.org>
Changed-By: Aurelien Jarno <aurel32@debian.org>
Description: 
 eglibc-source - Embedded GNU C Library: sources
 glibc-doc  - Embedded GNU C Library: Documentation
 libc-bin   - Embedded GNU C Library: Binaries
 libc-dev-bin - Embedded GNU C Library: Development binaries
 libc0.1    - Embedded GNU C Library: Shared libraries
 libc0.1-dbg - Embedded GNU C Library: detached debugging symbols
 libc0.1-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc0.1-dev-i386 - Embedded GNU C Library: 32bit development libraries for AMD64
 libc0.1-i386 - Embedded GNU C Library: 32bit shared libraries for AMD64
 libc0.1-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc0.1-pic - Embedded GNU C Library: PIC archive library
 libc0.1-prof - Embedded GNU C Library: Profiling Libraries
 libc0.1-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc0.3    - Embedded GNU C Library: Shared libraries
 libc0.3-dbg - Embedded GNU C Library: detached debugging symbols
 libc0.3-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc0.3-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc0.3-pic - Embedded GNU C Library: PIC archive library
 libc0.3-prof - Embedded GNU C Library: Profiling Libraries
 libc0.3-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc0.3-xen - Embedded GNU C Library: Shared libraries [Xen version]
 libc6      - Embedded GNU C Library: Shared libraries
 libc6-amd64 - Embedded GNU C Library: 64bit Shared libraries for AMD64
 libc6-dbg  - Embedded GNU C Library: detached debugging symbols
 libc6-dev  - Embedded GNU C Library: Development Libraries and Header Files
 libc6-dev-amd64 - Embedded GNU C Library: 64bit Development Libraries for AMD64
 libc6-dev-i386 - Embedded GNU C Library: 32-bit development libraries for AMD64
 libc6-dev-mips64 - Embedded GNU C Library: 64bit Development Libraries for MIPS64
 libc6-dev-mipsn32 - Embedded GNU C Library: n32 Development Libraries for MIPS64
 libc6-dev-powerpc - Embedded GNU C Library: 32bit powerpc development libraries for p
 libc6-dev-ppc64 - Embedded GNU C Library: 64bit Development Libraries for PowerPC64
 libc6-dev-s390x - Embedded GNU C Library: 64bit Development Libraries for IBM zSeri
 libc6-dev-sparc64 - Embedded GNU C Library: 64bit Development Libraries for UltraSPAR
 libc6-i386 - Embedded GNU C Library: 32-bit shared libraries for AMD64
 libc6-i686 - Embedded GNU C Library: Shared libraries [i686 optimized]
 libc6-mips64 - Embedded GNU C Library: 64bit Shared libraries for MIPS64
 libc6-mipsn32 - Embedded GNU C Library: n32 Shared libraries for MIPS64
 libc6-pic  - Embedded GNU C Library: PIC archive library
 libc6-powerpc - Embedded GNU C Library: 32bit powerpc shared libraries for ppc64
 libc6-ppc64 - Embedded GNU C Library: 64bit Shared libraries for PowerPC64
 libc6-prof - Embedded GNU C Library: Profiling Libraries
 libc6-s390x - Embedded GNU C Library: 64bit Shared libraries for IBM zSeries
 libc6-sparc64 - Embedded GNU C Library: 64bit Shared libraries for UltraSPARC
 libc6-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libc6-xen  - Embedded GNU C Library: Shared libraries [Xen version]
 libc6.1    - Embedded GNU C Library: Shared libraries
 libc6.1-alphaev67 - Embedded GNU C Library: Shared libraries (EV67 optimized)
 libc6.1-dbg - Embedded GNU C Library: detached debugging symbols
 libc6.1-dev - Embedded GNU C Library: Development Libraries and Header Files
 libc6.1-pic - Embedded GNU C Library: PIC archive library
 libc6.1-prof - Embedded GNU C Library: Profiling Libraries
 libc6.1-udeb - Embedded GNU C Library: Shared libraries - udeb (udeb)
 libnss-dns-udeb - Embedded GNU C Library: NSS helper for DNS - udeb (udeb)
 libnss-files-udeb - Embedded GNU C Library: NSS helper for files - udeb (udeb)
 locales    - Embedded GNU C Library: National Language (locale) data [support]
 locales-all - Embedded GNU C Library: Precompiled locale data
 nscd       - Embedded GNU C Library: Name Service Cache Daemon
Closes: 372544 408959 446503 521737 558314 561249 563724 566297 566844 588218 601126 602776 609306 610475 610824 611195 611926 612792 616298 617973
Changes: 
 eglibc (2.13-0exp4) experimental; urgency=low
 .
   [ Aurelien Jarno ]
   * New upstream release:
     - Fix spurious warning in bswap_16() with -Wconversion.  Closes:
       #561249.
     - Add back support for m68k.  Closes: #446503, #601126.
     - Add support for NTP API 4.  Closes: #558314.
     - Fix memchr() on alpha.  Closes: #521737.
     - Add optimized string functions via STT_GNU_IFUNC on PowerPC. Closes:
       #408959.
     - Provide POSIX2008 compliant futimens().  Closes: #563724.
     - Fix auxilary cache file creation.  Closes: 588218.
     - Fix POSIX2008 compliance.  Closes: #610824.
     - Implement accurate fma() (according to C99).  Closes: #372544.
     - Build correctly with --no-add-needed.  Closes: #616298.
     - Fix SOCK_CLOEXEC value on hppa.  Closes: #617973.
     - Update patches/locale/locale-print-LANGUAGE.diff.
     - Update patches/localedata/sort-UTF8-first.diff.
     - Remove patches/localedata/submitted-pt_BR.diff (merged upstream).
     - Update patches/localedata/locale-et_EE.diff (partially merged upstream).
     - Remove patches/localedata/locale-es_CR.diff (merged upstream).
     - Update patches/localedata/locales-fr.diff.
     - Update patches/localedata/tailor-iso14651_t1.diff.
     - Remove patches/localedata/fr_BE-first_weekday.diff (merged upstream).
     - Update localedata/first_weekday.diff.
     - Remove patches/alpha/submitted-dl-procinfo.diff (merged upstream).
     - Remove patches/alpha/submitted-fpu-round.diff (merged upstream).
     - Remove patches/alpha/submitted-asm-memchr.diff (merged upstream).
     - Remove patches/alpha/submitted-sock_nonblock.diff (merged upstream).
     - Remove patcheS/alpha/submitted-epoll.diff (merged upstream).
     - Remove patches/alpha/cvs-timer_settime.diff (merged upstream).
     - Remove patches/alpha/submitted-PTR_MANGLE.diff (obsolete).
     - Remove patches/alpha/local-fcntl_h.diff (obsolete).
     - Remove patches/alpha/local-longjmp-chk.diff (obsolete).
     - Remove patches/alpha/submitted-fdatasync.diff (obsolete).
     - Remove patches/amd64/cvs-avx-tcb-alignment.diff (merged upstream).
     - Remove patches/arm/local-no-hwcap.diff (merged upstream).
     - Remove patches/arm/local-hwcap-updates.diff (merged upstream).
     - Remove patches/hppa/cvs-nptl-compat.diff (merged upstream).
     - Update patches/hppa/local-stack-grows-up.diff.
     - Remove patches/hppa/cvs-vfork.diff (merged upstream).
     - Remove patches/hurd-i386/submitted-rtld_lock_recursive.diff (merged
       upstream).
     - Remove patches/hurd-i386/cvs-getcwd.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-setsid.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-linkat.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-ttyname.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-getnprocs.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-select.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-sched_param.diff (merged upstream).
     - Remove patches/hurd-i386/cvs-sendmsg-leak.diff (merged upstream).
     - Update patches/i386/local-pthread_cond_wait.diff.
     - Remove patches/m68k/cvs-define-m68k-tls-relocations.patch (merged
       upstream).
     - Remove patches/m68k/cvs-tls-support.patch (merged upstream).
     - Remove patches/m68k/cvs-versions-def-2-12.patch (merged upstream).
     - Remove patches/mips/cvs-mips-atomic_h.diff (merged upstream).
     - Remove patches/mips/cvs-non-pic-n32-64-syscall.diff (merged upstream).
     - Remove patches/s390/cvs-makecontext.diff (merged upstream).
     - Update patches/s390/submitted-nexttowardf.diff.
     - Remove patches/sh4/local-fpscr_values.diff (merged upstream).
     - Remove patches/sh4/submitted-set_fpscr.diff (merged upstream).
     - Remove patches/sparc/cvs-sparcv9-memchr.diff (merged upstream).
     - Remove patches/sparc/submitted-epoll.diff (merged upstream).
     - Remove patches/sparc/submitted-msgrcv.diff (merged upstream).
     - Update patches/any/local-ldso-disable-hwcap.diff.
     - Remove patches/any/local-ntp-update.diff (obsolete).
     - Update patches/any/local-no-pagesize.diff.
     - Update patches/any/submitted-longdouble.diff.
     - Remove patches/any/cvs-resolv-bindv6only.diff (merged upstream).
     - Remove patches/any/cvs-futimens.diff (merged upstream).
     - Remove patches/any/cvs-malloc_info-init.diff (merged upstream).
     - Remove patches/any/cvs-stat-issock.diff (merged upstream).
     - Remove patches/any/cvs-remove.diff (merged upstream).
     - Remove patches/any/cvs-getaddrinfo.diff (merged upstream).
     - Remove patches/any/cvs-umount-nofollow.diff (merged upstream).
     - Remove patches/any/cvs-glob.diff (merged upstream).
     - Remove patches/any/cvs-flush-cache-textrels.diff (merged upstream).
     - Remove patches/any/submitted-group_member.diff (merged upstream).
     - Remove patches/any/cvs-redirect-throw.diff (merged upstream).
     - Remove patches/any/cvs-__block.diff (merged upstream).
     - Remove patches/any/cvs-sunrpc-license.diff (merged upstream).
     - Remove patches/any/submitted-resolv.conf-thread.diff (merged upstream).
     - Remove patches/any/cvs-audit-suid.diff (merged upstream).
     - Remove patches/any/cvs-dont-expand-dst-twice.diff (merged upstream).
     - Remove patches/any/cvs-ignore-origin-privileged.diff (merged upstream).
     - Remove patches/any/cvs-fnmatch-alloca.diff (merged upstream).
     - Remove patches/any/cvs-qsort-race.diff from upstream (merged upstream).
     - Remove patches/any/submitted-etc-resolv.conf.diff (obsolete).
     - Update patches/any/submitted-bits-fcntl_h-at.diff.
     - Remove patches/any/submitted-nis-shadow.diff (obsolete).
     - Remove patches/any/submitted-futex_robust_pi.diff (obsolete).
     - Update patches/kfreebsd/local-readdir_r.diff.
   * debian/sysdeps/*.mk, debhelper.in/libc.preinst: bump minimal Linux
     kernel version to 2.6.26, and minimal FreeBSD kernel version to
     8.0.0.  Closes: #610475.
   * Add /etc/default/nss.
   * Add patches/all/local-nis-shadow.diff to change default value of
     ADJUNCT_AS_SHADOW to TRUE. This avoid NIS password leakage
     (CVE-2010-0015), but can be changed to FALSE to accomomdate some
     NIS installations.  Closes: #566297, #566844.
   * kfreebsd/local-sysdeps.diff, kfreebsd/local-linuxthreads29.diff:
     update to revision 3262 (from glibc-bsd)  Closes: #602776.
   * debian/rules: split build-indep and build-arch targets.  Closes:
     #611926.
   * sysdeps/sparc.mk, sysdeps/sparc64.mk: build with --enable-multi-arch.
   * sysdeps/powerpc.mk, sysdeps/ppc64.mk: build with --enable-multi-arch.
   * Drop libc6-sparcv9b package on sparc/sparc64, optimizations are now
     done through multi-arch (STT_GNU_IFUNC).
   * Add patches/localedata/locale-C.diff to create a C locale.
   * Build and install the C locales in libc-bin.  Closes: #609306.
   * Bump to Standards-Version 3.9.1 (no changes).
   * Add patches/submitted-rwlock-stack-imbalance.diff to fix regression
     in pthread_rwlock_timedrdlock() and pthread_rwlock_timedwrlock().
   * Whitelist tst-makecontext3.out test on ia64, as it is new and can't
     succeed on this architecture.
   * Build depends on binutils (>= 2.21) on sparc and sparc64 to gain
     STT_GNU_IFUNC support.
   * Add patches/any/submitted-ldsodefs_rtld_debug.diff to fix
     EGLIBC_RTLD_DEBUG support on non NPTL systems.
   * Add patches/any/local-relro-mprotect.patch to not crash with PaX
     kernels.  Closes: #611195.
   * Add patches/any/cvs-dl-missing-deps.diff to output an early error
     when dependencies are missing.  Closes: #612792.
   * Add patches/any/cvs-rtld-prelink.diff to fix segfault on prelinked
     binaries.
   * Add patches/sparc/submitted-bzero.diff to fix bzero() on sparc.
   * Add patches/powerpc/local-libgcc_eh-ld.so.diff to fix bug-atexit3
     test on PowerPC.
   * Add patches/alpha/submitted-fcntl_h.diff, submitted-stackinfo.diff,
     submitted-libm-hidden.diff, submitted-statfs.diff and
     submitted-fxstatat.patch to fix FTBFS on alpha.
   * Add patches/any/local-linuxthreads-deps.diff to fix testsuite issues
     on GNU/kFreeBSD.
   * Add patches/s390/submitted-iconv-z9-109.diff to fix FTBFS on s390
     with recent binutils.
   * Add patches/hppa/submitted-fcntl_h.diff, hppa/submitted-stackinfo.diff
     and hppa/submitted-libm-hidden.diff to fix FTBFS on hppa.
 .
   [ Samuel Thibault ]
   * Add patches/any/cvs-glro_dl_debug_mask.diff to fix build without
     EGLIBC_RTLD_DEBUG support.
   * Add patches/hurd-i386/cvs-header-prot.diff,
     patches/hurd-i386/cvs-psiginfo.diff, and
     patches/hurd-i386/local-ptsname.diff to fix hurd-i386 build.
   * Update expected hurd-i386 failures with new tests.
   * Add patches/hurd-i386/local-add-needed.diff to fix getting functions from
     libmachuser and libhurduser with gold linking.
 .
   [ Steve Langasek ]
   * Set Multi-Arch: foreign on the appropriate packages.
   * debian/rules.d/debhelper.mk: set $rtlddir in the debhelper substitution
     rules, so we don't substitute an empty string.
Checksums-Sha1: 
 1df06cb9a7a4faab2bd8baf17120e8a52202db92 2702 eglibc_2.13-0exp4.dsc
 86eb6a5f77c2be9cc753ee4d74fc8c1e994d1589 23004247 eglibc_2.13.orig.tar.gz
 7849b75990f4bf588f8cae5e063e37e8c659a31d 805224 eglibc_2.13-0exp4.diff.gz
 015aa38547ac208a96502a59613b684c6a87a2fd 1880384 glibc-doc_2.13-0exp4_all.deb
 34f3b7b6df5b8cf111e7b5c77a319163704e9b57 11167106 eglibc-source_2.13-0exp4_all.deb
 5423f34be714b7cdb256011ef3afa09e89ca8953 4799960 locales_2.13-0exp4_all.deb
 5eefe74d5c89f31aea7cabe3c58d136533747da0 4308344 libc6_2.13-0exp4_amd64.deb
 6a3e84b7a096e8bb8037490c02111824d3e555bc 2629402 libc6-dev_2.13-0exp4_amd64.deb
 7712c2598d4b3eed1fbfd16a4cdf823628978113 2073002 libc6-prof_2.13-0exp4_amd64.deb
 654c04f2089ebbe08bc943b45ede2fa0a7222357 1580154 libc6-pic_2.13-0exp4_amd64.deb
 c04b53af7265ff1a72e441e606e81c246fac8464 1077544 libc-bin_2.13-0exp4_amd64.deb
 77e0bef751c9f57055a356a30665fcdf8848c2e3 209184 libc-dev-bin_2.13-0exp4_amd64.deb
 3c3ec4886a3fa119897dfd28659a4d209bfd4432 3739716 locales-all_2.13-0exp4_amd64.deb
 6cb073e4e16a500a1a45745b4ebbe5f7269eff5c 3828092 libc6-i386_2.13-0exp4_amd64.deb
 f6e0b0eb1136b41382dd541e58dd8660aac0029f 1552982 libc6-dev-i386_2.13-0exp4_amd64.deb
 fd139e20c6a295c7518659714265c7cca5fc6af4 198772 nscd_2.13-0exp4_amd64.deb
 f9467e566767a09e521b420eef98bd2634862db4 10488692 libc6-dbg_2.13-0exp4_amd64.deb
 67fc51c65b9c9044215cd1350cb3f9ddd21c7848 1180388 libc6-udeb_2.13-0exp4_amd64.udeb
 b8c003bcccfb3a5f4bac90fffc846707bed235dc 11110 libnss-dns-udeb_2.13-0exp4_amd64.udeb
 d54531263574b839f83f9611a4ddf1fc576f6dd6 19258 libnss-files-udeb_2.13-0exp4_amd64.udeb
Checksums-Sha256: 
 4a5ed879ab264312e6c459d9171044ab11be03c662dd108196cd1bc73a7f95bf 2702 eglibc_2.13-0exp4.dsc
 5e6dce233f0d0f89453b369efbc1ff360956b5d2de45c03c9bc8c52eef98868f 23004247 eglibc_2.13.orig.tar.gz
 6b5e662f843e6908f8059097f2edb3ec4fe78d6313e11c09c0e1a15519239162 805224 eglibc_2.13-0exp4.diff.gz
 93f1292b426a8d11b787dc9c8ec3baa81d6087dcbce3f1a8b4847d7c53595ccc 1880384 glibc-doc_2.13-0exp4_all.deb
 782d0055ce271d82ec5fa9ad9a59ae89b32f979baeb8f5999e30bfe81ab7d719 11167106 eglibc-source_2.13-0exp4_all.deb
 3dbb3e16bc765a48de2e8812ef61645362d03d3b70efc2c2ac46fec657ebc7a4 4799960 locales_2.13-0exp4_all.deb
 a28594a81cb800553f896d2534d4cf7584d34e14840a01152e479f1055a41b3d 4308344 libc6_2.13-0exp4_amd64.deb
 9102a051bddf3e03e66b71c587e70e28b97d3eb8ad02004bebb1448df8f7f1d5 2629402 libc6-dev_2.13-0exp4_amd64.deb
 afb2e65cfcb1f884a06deb20fe01382b2efaa0e1d1a3cd67646351b4df04c368 2073002 libc6-prof_2.13-0exp4_amd64.deb
 2c058e6a0b8259991cb35c0c21c82f2a0538770ad331cbc5d37a8f06fd49ac41 1580154 libc6-pic_2.13-0exp4_amd64.deb
 58781b0d270d3174a352bc16e1dea1a1d60bfbdbf44ce69761bc34a02666a1e8 1077544 libc-bin_2.13-0exp4_amd64.deb
 852eb45a149b3194e345c2b87328eeab66df9330682554114c1813c5dca9f92b 209184 libc-dev-bin_2.13-0exp4_amd64.deb
 050ee612056183a898b938a546f751ae5e40e96fa25a870ec65b460c27c13ea3 3739716 locales-all_2.13-0exp4_amd64.deb
 60f8e16336b01cd587932333c681c3fdd1586bf474705a4a2fec805ab4a717de 3828092 libc6-i386_2.13-0exp4_amd64.deb
 75068a99283028e7b55c20db08b72dcb3dd4e73eb105679d16268d312ae558e3 1552982 libc6-dev-i386_2.13-0exp4_amd64.deb
 d473c711e787bca44b266297630a6e1d73d29c18b440294950b3683aa4c41145 198772 nscd_2.13-0exp4_amd64.deb
 d6293ee377487f4b2ca50d370bf3af5de0f3763958fb8398ce76b9cb9f8a9111 10488692 libc6-dbg_2.13-0exp4_amd64.deb
 86588e33294c99e2c9d284f1a64a0fc35424d8b3608a044402472cc63730ca96 1180388 libc6-udeb_2.13-0exp4_amd64.udeb
 0a13b85492a67196ab6d167eb7a6959b5f959d2731a4b712e4bceb5bd3bf1b90 11110 libnss-dns-udeb_2.13-0exp4_amd64.udeb
 b612fe7e7f7990a50ac863b37f750dcb3b136b132dc3be1daa78cf19a23fddef 19258 libnss-files-udeb_2.13-0exp4_amd64.udeb
Files: 
 d1b36077f898fa8ee3b0f5f25b875701 2702 libs required eglibc_2.13-0exp4.dsc
 be63a487c69b3f4198def94d7254b250 23004247 libs required eglibc_2.13.orig.tar.gz
 4887870f8e7db84a6769c0c86327cd14 805224 libs required eglibc_2.13-0exp4.diff.gz
 33d616f04e7aec76ef5ed24a232c12e5 1880384 doc optional glibc-doc_2.13-0exp4_all.deb
 d67e26ac2e1c49e7144b6f12d22950c2 11167106 devel optional eglibc-source_2.13-0exp4_all.deb
 1b1ce55b029f027f0a8691eaaea317b6 4799960 localization standard locales_2.13-0exp4_all.deb
 a769947da9adcacc59cfa3b47e56e20a 4308344 libs required libc6_2.13-0exp4_amd64.deb
 5b9d46d7216dd8b13cafe71f5750b28f 2629402 libdevel optional libc6-dev_2.13-0exp4_amd64.deb
 8de3f2dba157ad59f43b1c63279f10cb 2073002 libdevel extra libc6-prof_2.13-0exp4_amd64.deb
 61e1797fab2008d7db5210605009c326 1580154 libdevel optional libc6-pic_2.13-0exp4_amd64.deb
 cf448e516136537225b8426fcd765201 1077544 libs required libc-bin_2.13-0exp4_amd64.deb
 4419fc8c686cb4233d1482b214489bdb 209184 libdevel optional libc-dev-bin_2.13-0exp4_amd64.deb
 71a4220dc0ba3bce74e4f39b536978ba 3739716 localization extra locales-all_2.13-0exp4_amd64.deb
 e28f0d9201c8a29bbef329506aba458e 3828092 libs optional libc6-i386_2.13-0exp4_amd64.deb
 45e006c2a8bad265346988cf9b834538 1552982 libdevel optional libc6-dev-i386_2.13-0exp4_amd64.deb
 cebe4a141432d8964de94c0e65c0cdf9 198772 admin optional nscd_2.13-0exp4_amd64.deb
 de83e623405386d9752061c135845e80 10488692 debug extra libc6-dbg_2.13-0exp4_amd64.deb
 d5a16463ed311f3d17fe788a04d214db 1180388 debian-installer extra libc6-udeb_2.13-0exp4_amd64.udeb
 fb4916d7cdb7ba418e68d2821c30b9e8 11110 debian-installer extra libnss-dns-udeb_2.13-0exp4_amd64.udeb
 831e47de32bc878cece10ecf67763808 19258 debian-installer extra libnss-files-udeb_2.13-0exp4_amd64.udeb
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iD8DBQFNfeBCw3ao2vG823MRAlWCAJ4huyFKSy7J4nKDoEY+XK3ID2/TqQCfU8u8
6B4xmdeO5SCzbEtGu2ivGE8=
=I/9P
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: