[glibc] branch sid updated (75e0d7f -> 815dc4a)

2018-01-10 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a change to branch sid
in repository glibc.

  from  75e0d7f   hurd: Use upstream-commited exec_paths patches
   new  815dc4a   debian/patches/git-updates.diff: update from upstream 
stable branch:

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog|  2 ++
 debian/patches/git-updates.diff | 45 -
 2 files changed, 42 insertions(+), 5 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



Processed: Bug#886840 marked as pending

2018-01-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 886840 pending
Bug #886840 [src:glibc] glibc ia64 memchr bug causes testsuite failures in m4 
and diffutils
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
886840: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886840
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



[glibc] 01/01: debian/patches/git-updates.diff: update from upstream stable branch:

2018-01-10 Thread Aurelien Jarno
This is an automated email from the git hooks/post-receive script.

aurel32 pushed a commit to branch sid
in repository glibc.

commit 815dc4a9097b3128c0d4d4cfb6814f92d9841d7d
Author: Aurelien Jarno 
Date:   Wed Jan 10 22:41:25 2018 +0100

debian/patches/git-updates.diff: update from upstream stable branch:

* debian/patches/git-updates.diff: update from upstream stable branch:
  - Fix memchr pointer overflow on ia64.  Closes: #886840.
---
 debian/changelog|  2 ++
 debian/patches/git-updates.diff | 45 -
 2 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7df43ba..74a9dd4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,8 @@ glibc (2.26-3) UNRELEASED; urgency=medium
   [ Aurelien Jarno ]
   * debian/testsuite-xfail-debian.mk: the Loongson 3 FPU bug also applies
 to mips64el.
+  * debian/patches/git-updates.diff: update from upstream stable branch:
+- Fix memchr pointer overflow on ia64.  Closes: #886840.
 
   [ Samuel Thibault ]
   * debian/patches/hurd-i386/submitted-malloc-setstate.diff: Disable for now, 
it
diff --git a/debian/patches/git-updates.diff b/debian/patches/git-updates.diff
index bd53b78..be70c25 100644
--- a/debian/patches/git-updates.diff
+++ b/debian/patches/git-updates.diff
@@ -1,10 +1,22 @@
 GIT update of https://sourceware.org/git/glibc.git/release/2.26/master from 
glibc-2.26
 
 diff --git a/ChangeLog b/ChangeLog
-index 8dbfc7eaff..2e6383b3dc 100644
+index 8dbfc7eaff..efc8395ebb 100644
 --- a/ChangeLog
 +++ b/ChangeLog
-@@ -1,3 +1,1123 @@
+@@ -1,3 +1,1136 @@
++2017-12-19  Adhemerval Zanella  
++  James Clarke 
++
++  [BZ #22603]
++  * sysdeps/ia64/memchr.S (__memchr): Avoid overflow in pointer
++  addition.
++
++2018-01-08  Dmitry V. Levin  
++
++  * sysdeps/unix/sysv/linux/tst-ttyname.c (do_in_chroot_1): Skip the
++  test instead of failing in case of ENOENT returned by posix_openpt.
++
 +2017-12-29  Aurelien Jarno  
 +
 +  [BZ #22611]
@@ -15,6 +27,7 @@ index 8dbfc7eaff..2e6383b3dc 100644
 +  Dmitry V. Levin  
 +
 +  [BZ #22625]
++  CVE-2017-16997
 +  * elf/dl-load.c (fillin_rpath): Check for empty tokens before dynamic
 +  string token expansion. Check for NULL pointer or empty string possibly
 +  returned by expand_dynamic_string_token.
@@ -15901,6 +15914,21 @@ index 2776ba7fae..543cebcb63 100644
 +ldouble: 3
  
  # end of automatic generation
+diff --git a/sysdeps/ia64/memchr.S b/sysdeps/ia64/memchr.S
+index d60cf7bd87..9a0abc6f0a 100644
+--- a/sysdeps/ia64/memchr.S
 b/sysdeps/ia64/memchr.S
+@@ -67,6 +67,10 @@ ENTRY(__memchr)
+   .body
+   mov ret0 = str
+   add last = str, in2 // last byte
++  ;;
++  cmp.ltu p6, p0 = last, str
++  ;;
++(p6)  mov last = -1
+   and tmp = 7, str// tmp = str % 8
+   cmp.ne  p7, p0 = r0, r0 // clear p7
+   extr.u  chr = in1, 0, 8 // chr = (unsigned char) in1
 diff --git a/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h 
b/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h
 index 631cb33d09..2a3bc75b20 100644
 --- a/sysdeps/ia64/nptl/bits/pthreadtypes-arch.h
@@ -22481,10 +22509,10 @@ index 00..dfdf3da484
 +#include 
 diff --git a/sysdeps/unix/sysv/linux/tst-ttyname.c 
b/sysdeps/unix/sysv/linux/tst-ttyname.c
 new file mode 100644
-index 00..0fdf1a8ccb
+index 00..6848a6d3e2
 --- /dev/null
 +++ b/sysdeps/unix/sysv/linux/tst-ttyname.c
-@@ -0,0 +1,570 @@
+@@ -0,0 +1,577 @@
 +/* Copyright (C) 2017 Free Software Foundation, Inc.
 +   This file is part of the GNU C Library.
 +
@@ -22740,7 +22768,14 @@ index 00..0fdf1a8ccb
 +  /* Open the PTS that we'll be testing on.  */
 +  int master;
 +  char *slavename;
-+  VERIFY ((master = posix_openpt (O_RDWR|O_NOCTTY|O_NONBLOCK)) >= 0);
++  master = posix_openpt (O_RDWR|O_NOCTTY|O_NONBLOCK);
++  if (master < 0)
++{
++  if (errno == ENOENT)
++  FAIL_UNSUPPORTED ("posix_openpt: %m");
++  else
++  FAIL_EXIT1 ("posix_openpt: %m");
++}
 +  VERIFY ((slavename = ptsname (master)));
 +  VERIFY (unlockpt (master) == 0);
 +  if (strncmp (slavename, "/dev/pts/", 9) != 0)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-glibc/glibc.git



Processed: your mail

2018-01-10 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 886840 https://sourceware.org/bugzilla/show_bug.cgi?id=22603
Bug #886840 [src:glibc] glibc ia64 memchr bug causes testsuite failures in m4 
and diffutils
Set Bug forwarded-to-address to 
'https://sourceware.org/bugzilla/show_bug.cgi?id=22603'.
> tags 886840 upstream fixed-upstream
Bug #886840 [src:glibc] glibc ia64 memchr bug causes testsuite failures in m4 
and diffutils
Added tag(s) fixed-upstream and upstream.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
886840: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886840
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#886840: glibc ia64 memchr bug causes testsuite failures in m4 and diffutils

2018-01-10 Thread Jason Duerstock
Source: glibc
Severity: normal
Tags: patch

Dear Maintainer,

glibc 2.26 has an ia64 bug as detailed here:
https://sourceware.org/bugzilla/show_bug.cgi?id=22603

The patch as scheduled to be merged into the next version of glibc is available 
here:
https://sourceware.org/git/?p=glibc.git;a=commit;h=3bb1ef58b989012f8199b82af6ec136da2f9fda3

Please include it in the next src:glibc release.

Thank you,

Jason


-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: ia64

Kernel: Linux 3.14-0.bpo.2-mckinley (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)



Bazy biznesowe

2018-01-10 Thread Adam Strzelecki
Witam,

Chciałem zaproponować skorzystanie z oferty bazy danych biznesowych. Baza jest 
aktualna na 31 grudnia 2017, zawiera ponad 4 miliony rekordów, w tym ponad 700 
tys. adresów e-mail. Bazę można segregować według branż, województw, 
zatrudnienia, daty powstania i innych kryteriów. 
Jeżlei to Państwa interesuje - proszę odpowiedzieć na tego maila wpisując w 
treści TAK - wtedy będę mógł przekazać szczegółowe dane, a także próbkę bazy do 
sprawdzenia. 

z poważaniem,
Adam Strzelecki 



Aby zrezygnować z podobnych zapytań proszę o informację zwrotną.