* Makerules: USE_TLS support is now default.
[platform/upstream/glibc.git] / ChangeLog
1 2006-10-27  Ulrich Drepper  <drepper@redhat.com>
2
3         * Makerules: USE_TLS support is now default.
4         * tls.make.c: Likewise.
5         * csu/Versions: Likewise.
6         * csu/libc-start.c: Likewise.
7         * csu/libc-tls.c: Likewise.
8         * csu/version.c: Likewise.
9         * dlfcn/dlinfo.c: Likewise.
10         * elf/dl-addr.c: Likewise.
11         * elf/dl-cache.c: Likewise.
12         * elf/dl-close.c: Likewise.
13         * elf/dl-iteratephdr.c: Likewise.
14         * elf/dl-load.c: Likewise.
15         * elf/dl-lookup.c: Likewise.
16         * elf/dl-object.c: Likewise.
17         * elf/dl-open.c: Likewise.
18         * elf/dl-reloc.c: Likewise.
19         * elf/dl-support.c: Likewise.
20         * elf/dl-sym.c: Likewise.
21         * elf/dl-sysdep.c: Likewise.
22         * elf/dl-tls.c: Likewise.
23         * elf/ldconfig.c: Likewise.
24         * elf/rtld.c: Likewise.
25         * elf/tst-tls-dlinfo.c: Likewise.
26         * elf/tst-tls1.c: Likewise.
27         * elf/tst-tls10.h: Likewise.
28         * elf/tst-tls14.c: Likewise.
29         * elf/tst-tls2.c: Likewise.
30         * elf/tst-tls3.c: Likewise.
31         * elf/tst-tls4.c: Likewise.
32         * elf/tst-tls5.c: Likewise.
33         * elf/tst-tls6.c: Likewise.
34         * elf/tst-tls7.c: Likewise.
35         * elf/tst-tls8.c: Likewise.
36         * elf/tst-tls9.c: Likewise.
37         * elf/tst-tlsmod1.c: Likewise.
38         * elf/tst-tlsmod13.c: Likewise.
39         * elf/tst-tlsmod13a.c: Likewise.
40         * elf/tst-tlsmod14a.c: Likewise.
41         * elf/tst-tlsmod2.c: Likewise.
42         * elf/tst-tlsmod3.c: Likewise.
43         * elf/tst-tlsmod4.c: Likewise.
44         * elf/tst-tlsmod5.c: Likewise.
45         * elf/tst-tlsmod6.c: Likewise.
46         * include/errno.h: Likewise.
47         * include/link.h: Likewise.
48         * include/tls.h: Likewise.
49         * locale/global-locale.c: Likewise.
50         * locale/localeinfo.h: Likewise.
51         * malloc/arena.c: Likewise.
52         * malloc/hooks.c: Likewise.
53         * malloc/malloc.c: Likewise.
54         * resolv/Versions: Likewise.
55         * sysdeps/alpha/dl-machine.h: Likewise.
56         * sysdeps/alpha/libc-tls.c: Likewise.
57         * sysdeps/generic/ldsodefs.h: Likewise.
58         * sysdeps/generic/tls.h: Likewise.
59         * sysdeps/i386/dl-machine.h: Likewise.
60         * sysdeps/ia64/dl-machine.h: Likewise.
61         * sysdeps/ia64/libc-tls.c: Likewise.
62         * sysdeps/mach/hurd/fork.c: Likewise.
63         * sysdeps/mach/hurd/i386/tls.h: Likewise.
64         * sysdeps/powerpc/powerpc32/dl-machine.c: Likwise.
65         * sysdeps/powerpc/powerpc32/dl-machine.h: Likewise.
66         * sysdeps/powerpc/powerpc64/dl-machine.h: Likewise.
67         * sysdeps/s390/libc-tls.c: Likewise.
68         * sysdeps/s390/s390-32/dl-machine.h: Likewise.
69         * sysdeps/s390/s390-64/dl-machine.h: Likewise.
70         * sysdeps/sh/dl-machine.h: Likewise.
71         * sysdeps/sparc/sparc32/dl-machine.h: Likewise.
72         * sysdeps/sparc/sparc64/dl-machine.h: Likewise.
73         * sysdeps/x86_64/dl-machine.h: Likewise.
74
75         * elf/dl-close.c (_dl_close_worker): Renamed from _dl_close and
76         split out locking and parameter checking.
77         (_dl_close): Call _dl_close_worker after locking and checking.
78         * elf/dl-open.c (_dl_open): Call _dl_close_worker instead of
79         _dl_close.
80         * elf/Makefile: Add rules to build and run tst-thrlock.
81         * elf/tst-thrlock.c:  New file.
82
83         [BZ #3426]
84         * stdlib/stdlib.h: Adjust comment for canonicalize_file_name to
85         reality.
86
87         [BZ #3429]
88         * elf/dl-open.c (dl_open_worker): Keep holding dl_load_lock until
89         we are sure we do not need it anymore for _dl_close.  Also move
90         the asserts inside the lock region.
91         Patch mostly by Suzuki <suzuki@in.ibm.com>.
92
93 2006-10-27  Jakub Jelinek  <jakub@redhat.com>
94
95         * elf/dl-lookup.c (_dl_debug_bindings): Remove unused symbol_scope
96         argument.
97         (_dl_lookup_symbol_x): Adjust caller.
98
99         * sysdeps/generic/ldsodefs.h (struct link_namespaces): Remove
100         _ns_global_scope.
101         * elf/rtld.c (dl_main): Don't initialize _ns_global_scope.
102
103         * elf/dl-libc.c: Revert l_scope name changes.
104         * elf/dl-load.c: Likewise.
105         * elf/dl-object.c: Likewise.
106         * elf/rtld.c: Likewise.
107         * elf/dl-close.c (_dl_close): Likewise.
108         * elf/dl-open.c (dl_open_worker): Likewise.  If not SINGLE_THREAD_P,
109         always use __rtld_mrlock_{change,done}.  Always free old scope list
110         here if not l_scope_mem.
111         * elf/dl-runtime.c (_dl_fixup, _dl_profile_fixup): Revert l_scope name
112         change.  Never free scope list here.  Just __rtld_mrlock_lock before
113         the lookup and __rtld_mrlock_unlock it after the lookup.
114         * elf/dl-sym.c: Likewise.
115         * include/link.h (struct r_scoperec): Remove.
116         (struct link_map): Replace l_scoperec with l_scope, l_scoperec_mem
117         with l_scope_mem and l_scoperec_lock with l_scope_lock.
118
119 2006-10-25  Ulrich Drepper  <drepper@redhat.com>
120
121         * sysdeps/gnu/netinet/tcp.h: Define TCP_CONGESTION.
122
123 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
124
125         * configure.in: Disable building profile libraries by default.
126
127 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
128
129         * sunrpc/xdr_mem.c (xdrmem_setpos): Don't compare addresses
130         as signed longs, check for x_base + pos overflow.
131         * sunrpc/Makefile (tests): Add tst-xdrmem2.
132         * sunrpc/tst-xdrmem2.c: New test.
133
134 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
135
136         * elf/dl-lookup.c (_dl_lookup_symbol_x): Add warning to
137         _dl_lookup_symbol_x code.
138
139 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
140
141         * elf/dl-runtime.c: Include sysdep-cancel.h.
142         (_dl_fixup, _dl_profile_fixup): Use __rtld_mrlock_* and
143         scoperec->nusers only if !SINGLE_THREAD_P.  Use atomic_*
144         instead of catomic_* macros.
145         * elf/dl-sym.c: Include sysdep-cancel.h.
146         (do_sym): Use __rtld_mrlock_* and scoperec->nusers only
147         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
148         * elf/dl-close.c: Include sysdep-cancel.h.
149         (_dl_close): Use __rtld_mrlock_* and scoperec->nusers only
150         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
151         * elf/dl-open.c: Include sysdep-cancel.h.
152         (dl_open_worker): Use __rtld_mrlock_* and scoperec->nusers only
153         if !SINGLE_THREAD_P.  Use atomic_* instead of catomic_* macros.
154
155 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
156
157         [BZ #3313]
158         * malloc/malloc.c (malloc_consolidate): Set maxfb to address of last
159         fastbin rather than end of fastbin array.
160
161 2006-10-18  Ulrich Drepper  <drepper@redhat.com>
162
163         * sysdeps/i386/i486/bits/atomic.h (catomic_decrement): Use correct
164         body macro.
165         * sysdeps/x86_64/bits/atomic.h
166         (__arch_c_compare_and_exchange_val_64_acq): Add missing casts.
167         (catomic_decrement): Use correct body macro.
168
169 2006-10-17  Jakub Jelinek  <jakub@redhat.com>
170
171         * include/atomic.h: Add a unique prefix to all local variables
172         in macros.
173         * csu/tst-atomic.c (do_test): Test also catomic_* macros.
174
175 2006-10-16  Ulrich Drepper  <drepper@redhat.com>
176
177         [BZ #3369]
178         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Fix typos in rules 4
179         and 7.
180
181 2006-10-14  Ulrich Drepper  <drepper@redhat.com>
182
183         * resolv/arpa/nameser.h: Document that ns_t_a6 is deprecated.
184
185 2006-10-13  Ulrich Drepper  <drepper@redhat.com>
186
187         [BZ #3313]
188         * malloc/malloc.c (malloc_consolidate): Don't use get_fast_max to
189         determine highest fast bin to consolidate, always look into all of
190         them.
191         (do_check_malloc_state): Only require for empty bins for large
192         sizes in main arena.
193
194         * libio/stdio.h: Add more __wur attributes.
195
196         * elf/dl-minimal.c (realloc): Optimize last patch.
197
198 2006-10-12  Richard Sandiford  <richard@codesourcery.com>
199
200         [BZ #3352]
201         * elf/dl-minimal.c (realloc): Let malloc() return a new pointer,
202         and use memcpy() if it does.
203
204 2006-11-12  Andreas Jaeger  <aj@suse.de>
205
206         [BZ #2510]
207         * manual/search.texi (Hash Search Function): Clarify.
208         (Array Search Function): Clarify.
209
210 2006-11-12  Joseph Myers  <joseph@codesourcery.com>
211
212         [BZ #2830]
213         * math/atest-exp.c (main): Cast hex value to mp_limb_t before
214         shifting.
215         * math/atest-exp2.c (read_mpn_hex): Likewise.
216         * math/atest-sincos.c (main): Likewise.
217
218 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
219
220         * sysdeps/unix/sysv/linux/syscalls.list: Add epoll_pwait.
221         * sysdeps/unix/sysv/linux/sys/epoll.h: Declare epoll_pwait.
222         * sysdeps/unix/sysv/linux/Versions (libc): Add epoll_pwait for
223         version GLIBC_2.6.
224         * Versions.def: Add GLIBC_2.6 for libc.
225
226         * sysdeps/unix/sysv/linux/i386/sysdep.h (DOARGS_6): Fix offset.
227
228         * sysdeps/i386/i486/bits/atomic.h: Add catomic_* support.
229
230 2006-10-11  Jakub Jelinek  <jakub@redhat.com>
231
232         * malloc/malloc.c (_int_malloc): Remove unused any_larger variable.
233
234         * nis/nis_defaults.c (__nis_default_access): Don't call getenv twice.
235
236         * nis/nis_subr.c (nis_getnames): Use __secure_getenv instead of getenv.
237         * sysdeps/generic/unsecvars.h: Add NIS_PATH.
238
239 2006-10-11  Ulrich Drepper  <drepper@redhat.com>
240
241         * include/atomic.c: Define catomic_* operations.
242         * sysdeps/x86_64/bits/atomic.h: Likewise.  Fix a few minor problems.
243         * stdlib/cxa_finalize.c: Use catomic_* operations instead of atomic_*.
244         * malloc/memusage.c: Likewise.
245         * gmon/mcount.c: Likewise.
246         * elf/dl-close.c: Likewise.
247         * elf/dl-open.c: Likewise.
248         * elf/dl-profile.c: Likewise.
249         * elf/dl-sym.c: Likewise.
250         * elf/dl-runtime.c: Likewise.
251         * elf/dl-fptr.c: Likewise.
252         * resolv/res_libc.c: Likewise.
253
254 2006-10-10  Ulrich Drepper  <drepper@redhat.com>
255
256         * nis/nis_subr.c (nis_getnames): Add trailing dot to NIS_PATH
257         components which lack them.
258
259         * nis/nis_subr.c (nis_getnames): Make sure that we always return
260         at least one entry consisting of the parameter concatenated with
261         the domain.
262
263 2006-10-10  Roland McGrath  <roland@frob.com>
264
265         * sysdeps/mach/hurd/utimes.c: Use a union to avoid an improper cast.
266         * sysdeps/mach/hurd/futimes.c: Likewise.
267         * sysdeps/mach/hurd/lutimes.c: Likewise.
268
269 2006-10-09  Ulrich Drepper  <drepper@redhat.com>
270             Jakub Jelinek  <jakub@redhat.com>
271
272         Implement reference counting of scope records.
273         * elf/dl-close.c (_dl_close): Remove all scopes from removed objects
274         from the list in objects which remain.  Always allocate new scope
275         record.
276         * elf/dl-open.c (dl_open_worker): When growing array for scopes,
277         don't resize, allocate a new one.
278         * elf/dl-runtime.c: Update reference counters before using a scope
279         array.
280         * elf/dl-sym.c: Likewise.
281         * elf/dl-libc.c: Adjust for l_scope name change.
282         * elf/dl-load.c: Likewise.
283         * elf/dl-object.c: Likewise.
284         * elf/rtld.c: Likewise.
285         * include/link.h: Include <rtld-lowlevel.h>.  Define struct
286         r_scoperec.  Replace r_scope with pointer to r_scoperec structure.
287         Add l_scoperec_lock.
288         * sysdeps/generic/ldsodefs.h: Include <rtld-lowlevel.h>.
289         * sysdeps/generic/rtld-lowlevel.h: New file.
290
291         * include/atomic.h: Rename atomic_and to atomic_and_val and
292         atomic_or to atomic_or_val.  Define new macros atomic_and and
293         atomic_or which do not return values.
294         * sysdeps/x86_64/bits/atomic.h: Define atomic_and and atomic_or.
295         Various cleanups.
296         * sysdeps/i386/i486/bits/atomic.h: Likewise.
297
298         * po/sv.po: Update from translation team.
299
300 2006-10-07  Ulrich Drepper  <drepper@redhat.com>
301
302         * Versions.def: Add GLIBC_2.6 to libpthread.
303
304         * include/shlib-compat.h (SHLIB_COMPAT): Expand parameters before use.
305         (versioned_symbol): Likewise.
306         (compat_symbol): Likewise.
307
308         * po/tr.po: Update from translation team.
309
310 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
311
312         * nis/Banner: Removed.  It's been integral part forever and the
313         author info is incomplete anyway.
314         * libio/Banner: Likewise.
315
316         * nis/nis_table.c (nis_list): If __follow_path fails in the new
317         code, make sure the nis_freeresult call doesn't crash and that the
318         result is reported correctly.
319
320 2006-09-27  Jakub Jelinek  <jakub@redhat.com>
321
322         * nis/nis_table.c (nis_list): Handle FOLLOW_PATH | ALL_RESULTS
323         when callback is NULL.
324
325         * nis/Versions (libnss_nisplus): Add
326         _nss_nisplus_initgroups_dyn@@GLIBC_PRIVATE.
327         * nis/Makefile (libnss_nisplus-routines): Add nisplus-initgroups.
328         * nis/nss_nisplus/nisplus-grp.c (tablename_val, tablename_len,
329         _nss_create_tablename): Rename to...
330         (grp_tablename_val, grp_tablename_len, _nss_grp_create_tablename):
331         ... these.  No longer static.
332         (internal_setgrent): Adjust users.
333         (_nss_nisplus_getgrnam_r, _nss_nisplus_getgrgid_r): Likewise.
334         Don't use locking around _nss_grp_create_tablename call.
335         * nis/nss_nisplus/nisplus-initgroups.c: New file.
336
337 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
338
339         * version.h (VERSION): Bump to 2.5.90 for new development tree.
340
341 2006-10-06  Andreas Jaeger  <aj@suse.de>
342
343         * include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.
344
345 2006-10-06  Ulrich Drepper  <drepper@redhat.com>
346
347         * po/pl.po: Update from translation team.
348
349         * nscd/nscd.c (main): Fix typo in message.
350         Patch by Jakub Bogsz <qboosh@pld-linux.org>.
351
352 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
353
354         [BZ #3291]
355         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Include
356         errno.h, signal.h, unistd.h and sysdep-cancel.h.
357         (__sigprocmask): Define.
358
359 2006-10-02  Ulrich Drepper  <drepper@redhat.com>
360
361         * elf/rtld.c (dl_main): Don't use prelinking if LD_DYNAMIC_WEAK is
362         used.
363
364 2006-10-02  Jakub Jelinek  <jakub@redhat.com>
365
366         * nscd/mem.c (mempool_alloc): Round array size to 16 bytes
367         in oldtotal and newtotal calculation.
368         * nscd/nscd-client.h (struct mapped_database): Add datasize
369         field.
370         * nscd/nscd_helper.c (get_mapping): Initialize datasize field.
371         (__nscd_get_map_ref): Get a new mapping even if mapping's data_size
372         increased.
373         (__nscd_cache_search): Add checks to make sure we never reference
374         data beyond the current mapping.
375
376 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
377
378         * sysdeps/posix/getaddrinfo.c (match_prefix): Make mask and val
379         variables const to avoid compiler warnings.
380
381         * io/fts.c (fts_close): Remove redundant checks.
382         (fts_build): Likewise.
383         (fts_palloc): Likewise.
384
385         * manual/message.texi (Advanced gettext functions,
386         Using gettextized software): Fix typos.
387
388 2006-09-30  Ulrich Drepper  <drepper@redhat.com>
389
390         * posix/glob.c (glob_in_dir): Add some comments and asserts to
391         explain why there are no leaks.
392
393 2006-09-29  Ulrich Drepper  <drepper@redhat.com>
394
395         * libio/wmemstream.c: Include <wchar.h>.
396         * libio/bug-wmemstream1.c: Likewise.
397         * libio/tst-wmemstream1.c: Likewise.
398         * libio/tst-wmemstream2.c: Likewise.
399
400         * version.h (RELEASE): Bump to 2.5.
401         * README: Regenerated.
402
403         * locale/iso-3166.def: Add Aaland Islands and Montenegro.
404
405         [BZ #3273]
406         * nscd/nscd_initgroups.c (__nscd_getgrouplist): It is OK to have
407         found no group members.
408         Patch by Petr Baudis.
409
410 2006-09-29  Jakub Jelinek  <jakub@redhat.com>
411
412         * elf/rtld.c (_dl_start_final): If not USE___THREAD, don't
413         assert bootstrap_map.l_tls_modid is zero.
414         (_dl_start): Initialize bootstrap_map.l_tls_modid to 0
415         if USE___THREAD.
416
417 2006-09-27  Ulrich Drepper  <drepper@redhat.com>
418
419         * libio/stdio.h: Move open_wmemstream prototype to ...
420         * wcsmbs/wchar.h: ... here.
421
422 2006-09-25  Jakub Jelinek  <jakub@redhat.com>
423
424         [BZ #3252]
425         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Handle only
426         fchownat syscall and __ASSUME_LCHOWN_SYSCALL case inline, call
427         __{,l}chown to handle the rest.
428         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Handle only
429         fchownat syscall and __ASSUME_32BITUIDS case inline, call
430         __{,l}chown to handle the rest.
431         * sysdeps/unix/sysv/linux/sparc/sparc32/fchownat.c: Include
432         i386/fchownat.c.
433         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c: Likewise.
434         * sysdeps/unix/sysv/linux/sh/fchownat.c: Likewise.
435
436         [BZ #3253]
437         * posix/glob.c (glob_in_dir): Don't alloca one struct globlink at a
438         time, rather allocate increasingly bigger arrays of pointers, if
439         possible with alloca, if too large with malloc.
440
441 2006-09-24  Jakub Jelinek  <jakub@redhat.com>
442
443         * sysdeps/powerpc/fpu/libm-test-ulps: Updated.
444
445         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Fix 2 typos.
446
447 2006-09-24  Ulrich Drepper  <drepper@redhat.com>
448
449         * sysdeps/posix/getaddrinfo.c (rfc3484_sort): Implement rule 4,
450         home addresses.
451         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Recognize
452         IFA_F_HOMEADDRESS flag for interfaces.
453         * include/ifaddrs.h (struct in6addrinfo): Define
454         in6ai_homeaddress.
455
456 2006-09-21  Jakub Jelinek  <jakub@redhat.com>
457
458         [BZ #3225]
459         * sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (PTR_MANGLE3,
460         PTR_DEMANGLE3): Define.
461         * sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (PTR_MANGLE3,
462         PTR_DEMANGLE3): Likewise.
463         * sysdeps/powerpc/powerpc32/__longjmp-common.S (__longjmp): Use them.
464         * sysdeps/powerpc/powerpc32/fpu/__longjmp-common.S (__longjmp):
465         Likewise.
466         * sysdeps/powerpc/powerpc64/__longjmp-common.S (__longjmp): Likewise.
467
468 2006-09-20  Jakub Jelinek  <jakub@redhat.com>
469
470         * po/libc.pot: Regenerated.
471         * po/be.po: Updated.
472         * po/ca.po: Likewise.
473         * po/cs.po: Likewise.
474         * po/da.po: Likewise.
475         * po/de.po: Likewise.
476         * po/el.po: Likewise.
477         * po/en_GB.po: Likewise.
478         * po/es.po: Likewise.
479         * po/fi.po: Likewise.
480         * po/fr.po: Likewise.
481         * po/gl.po: Likewise.
482         * po/hr.po: Likewise.
483         * po/hu.po: Likewise.
484         * po/ja.po: Likewise.
485         * po/ko.po: Likewise.
486         * po/nb.po: Likewise.
487         * po/nl.po: Likewise.
488         * po/pl.po: Likewise.
489         * po/pt_BR.po: Likewise.
490         * po/ru.po: Likewise.
491         * po/rw.po: Likewise.
492         * po/sk.po: Likewise.
493         * po/sv.po: Likewise.
494         * po/tr.po: Likewise.
495         * po/zh_CN.po: Likewise.
496         * po/zh_TW.po: Likewise.
497
498         [BZ #3137]
499         * iconv/iconv_prog.c (main): Fix spelling in error message.
500         * iconv/iconvconfig.c (main): Likewise.
501         * locale/programs/ld-collate.c (handle_ellipsis): Likewise.
502         * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Likewise.
503         * locale/programs/localedef.c (main): Likewise.
504         * locale/programs/repertoire.c (repertoire_read): Likewise.
505         * timezone/zdump.c (main): Likewise.
506         * nscd/connections.c (handle_request): Fix spelling in log message.
507         Patch by Malcolm Parsons <malcolm.parsons@gmail.com>.
508
509 2006-09-20  Ulrich Drepper  <drepper@redhat.com>
510
511         * inet/inet6_option.c: Also emit linker warnings for the RFC 2292
512         interfaces.
513
514 2006-09-20  Andreas Jaeger  <aj@suse.de>
515
516         * math/libm-test.inc (lrint_test_upward): Fix typo.
517
518 2006-06-17  Joseph S. Myers  <joseph@codesourcery.com>
519
520         [BZ #2592]
521         * math/libm-test.inc (lrint_test_tonearest): New function.
522         (lrint_test_towardzero): New function.
523         (lrint_test_downward): New function.
524         (lrint_test_upward): New function.
525         (main): Run these new tests.
526         * sysdeps/ieee754/dbl-64/s_llrint.c (__llrint): Correct rounding
527         of values near to 0.
528         (two52): Use double not long double.
529         * sysdeps/ieee754/dbl-64/s_lrint.c (__lrint): Likewise.
530         * sysdeps/ieee754/flt-32/s_llrintf.c (__llrintf): Likewise.
531         (two23): Use float not double.
532         * sysdeps/ieee754/flt-32/s_lrintf.c (__lrintf): Likewise.
533         (two23): Use float not double.
534         * sysdeps/ieee754/ldbl-128/s_llrintl.c (__llrintl): Likewise.
535         * sysdeps/ieee754/ldbl-128/s_lrintl.c (__lrintl): Likewise.
536         * sysdeps/ieee754/ldbl-96/s_llrintl.c (__llrintl): Likewise.
537         * sysdeps/ieee754/ldbl-96/s_lrintl.c (__lrintl): Likewise.
538
539 2006-09-20  Martin Schwidefsky  <schwidefsky@de.ibm.com>
540
541         * sysdeps/unix/sysv/linux/s390/s390-32/makecontext.c (__makecontext):
542         Cast sp to unsigned long to avoid compiler warning.
543         Use __makecontext_ret function instead of a trampoline on the stack.
544         (__makecontext_ret): New function.
545         * sysdeps/unix/sysv/linux/s390/s390-64/makecontext.c: Likewise.
546
547 2006-09-19  Jakub Jelinek  <jakub@redhat.com>
548
549         * elf/dl-cache.c (HWCAP_CHECK): If _DL_PLATFORMS_COUNT, but
550         platform == -1, reject any libs with non-zero _DL_HWCAP_PLATFORM
551         bits.
552
553 2006-09-19  Ulrich Drepper  <drepper@redhat.com>
554
555         * elf/dl-close.c (_dl_close): If dependency is not unloaded make
556         sure no reference to the unloaded map's search list remains in the
557         dependency's scope.
558
559 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
560
561         * elf/Makefile: Add rules to build and run unload7 test.
562         * elf/unload7.c: New test.
563         * elf/unload7mod1.c: New file.
564         * elf/unload7mod2.c: New file.
565
566 2006-09-18  Jakub Jelinek  <jakub@redhat.com>
567
568         * sysdeps/unix/sysv/linux/sys/ptrace.h (PT_GETEVENTMSG): Fix pasto.
569         * sysdeps/unix/sysv/linux/s390/sys/ptrace.h (PTRACE_SETOPTIONS,
570         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
571         * sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h (PTRACE_SETOPTIONS,
572         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
573         * sysdeps/unix/sysv/linux/sparc/sys/ptrace.h (PTRACE_SETOPTIONS,
574         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Likewise.
575         * sysdeps/unix/sysv/linux/ia64/sys/ptrace.h (PTRACE_SETOPTIONS,
576         PTRACE_GETEVENTMSG): Likewise.
577         (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Change to the arch independent
578         values.
579
580 2006-09-17  Mike Frysinger  <vapier@gentoo.org>
581
582         * sysdeps/unix/sysv/linux/sys/ptrace.h (PTRACE_SETOPTIONS,
583         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
584         * sysdeps/unix/sysv/linux/ptrace.c (ptrace): Check PTRACE_SETOPTIONS,
585         PTRACE_GETEVENTMSG, PTRACE_GETSIGINFO and PTRACE_SETSIGINFO.
586
587 2006-09-16  Jakub Jelinek  <jakub@redhat.com>
588
589         * sysdeps/powerpc/powerpc32/register-dump.h (register_dump): Don't
590         write '\0' to the fd.
591         * sysdeps/mach/hurd/powerpc/register-dump.h (register_dump): Likewise.
592         * sysdeps/powerpc/powerpc64/register-dump.h (register_dump): Likewise.
593         Change regs to unsigned long pointer from unsigned int, fix fscr
594         offset.
595
596 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
597
598         * io/Makefile (CFLAGS-fstatat.c): Set.
599         (CFLAGS-fstatat64.c): Likewise.
600         (CFLAGS-mknodat.c): Likewise.
601
602         * sysdeps/ieee754/ldbl-128ibm/s_llrintl.c: Comment fixes.
603         * sysdeps/ieee754/ldbl-128ibm/s_llroundl.c: Likewise.
604         * sysdeps/ieee754/ldbl-128ibm/s_lrintl.c: Rewritten.
605         * sysdeps/ieee754/ldbl-128ibm/s_lroundl.c: Rewritten.
606
607 2006-09-14  Jakub Jelinek  <jakub@redhat.com>
608             Steven Munroe  <sjmunroe@us.ibm.com>
609
610         * sysdeps/powerpc/dl-procinfo.c (_dl_powerpc_cap_flags): Add 4 new cap
611         names to the beginning.  Rename "cell" to "cellbe".
612         (_dl_powerpc_platforms): New.
613         * sysdeps/powerpc/dl-procinfo.h (_DL_HWCAP_FIRST): Decrease.
614         (HWCAP_IMPORTANT): Remove power{4,5,5+} and cell.
615         (_DL_PLATFORMS_COUNT, _DL_FIRST_PLATFORM): Define.
616         (_DL_HWCAP_PLATFORM): Define to new mask.
617         (_dl_platform_string, _dl_string_platform): New functions.
618         * sysdeps/powerpc/sysdep.h (PPC_FEATURE_BOOKE, PPC_FEATURE_SMT,
619         PPC_FEATURE_ICACHE_SNOOP, PPC_FEATURE_ARCH_2_05): Define.
620
621 2006-09-12  Jakub Jelinek  <jakub@redhat.com>
622
623         [BZ #2526]
624         * README.libm: Fix a thinko in sqrt algorithm description.
625
626         [BZ #3143]
627         * manual/string.texi (argz_delete): Fix prototype.
628         Patch by <alpt@freaknet.org>.
629
630 2006-08-26  Joseph Myers  <joseph@codesourcery.com>
631
632         [BZ #3138]
633         * io/test-lfs.c (do_prepare): Give name_len type size_t.
634         * io/tst-fcntl.c (do_prepare): Likewise.
635         * posix/tst-exec.c (do_prepare): Likewise.
636         * posix/tst-preadwrite.c (do_prepare): Likewise.
637         * posix/tst-spawn.c (do_prepare): Likewise.
638         * posix/tst-truncate.c (do_prepare): Likewise.
639         * rt/tst-aio.c (do_prepare): Likewise.
640         * rt/tst-aio64.c (do_prepare): Likewise.
641         * stdlib/test-canon2.c (do_prepare): Give test_dir_len type
642         size_t.
643
644 2006-09-09  Ulrich Drepper  <drepper@redhat.com>
645
646         [BZ #2821]
647         * time/mktime.c (guess_time_tm): Fix overflow detection.
648         * time/Makefile (tests): Add bug-mktime1.
649         * time/bug-mktime1.c: New file.
650
651         [BZ #3189, #3188]
652         * misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
653         (mremap): Likewise.
654
655 2006-09-07  Jakub Jelinek  <jakub@redhat.com>
656
657         [BZ #1006]
658         * sysdeps/sparc/sparc64/dl-machine.h (elf_machine_rela):
659         Ensure relocation doesn't clobber any bits outside of the
660         immediate field for R_SPARC_TLS_LE_HIX22, R_SPARC_WDISP30,
661         R_SPARC_HI22 and R_SPARC_H44.
662
663         [BZ #2775]
664         * malloc/malloc.c (sYSMALLOc): Only call grow_heap if
665         (long) (MINSIZE + nb - old_size) is positive.
666
667         * malloc/arena.c (grow_heap): When growing bail even if new_size
668         is negative.
669
670         [BZ #3155]
671         * sysdeps/powerpc/powerpc32/fpu/s_lrint.S (__lrint): Don't access
672         stack below r1.
673
674 2006-09-06  Jakub Jelinek  <jakub@redhat.com>
675
676         * posix/regex_internal.c (re_string_reconstruct): Handle
677         offset < pstr->valid_raw_len && pstr->offsets_needed case.
678         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
679         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
680         re_string_context_at.
681         * posix/Makefile: Add rules to build and run bug-regex26 test.
682         * posix/bug-regex26.c: New test.
683
684         * locale/programs/ld-collate.c (collate_read): Goto sym_equiv_free
685         rather than col_sym_free.  Move seqp declaration earlier.
686
687         * resolv/gai_suspend.c (gai_suspend): Make sure result is initialized.
688
689 2006-09-05  Jakub Jelinek  <jakub@redhat.com>
690
691         * nscd/initgrcache.c (addinitgroupsX): Move any_success
692         decl before first goto out.
693
694 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
695
696         * Makerules (shlib.lds): If have-hash-style, put .hash section
697         at the end of the RO segment.
698
699 2006-09-04  Ulrich Drepper  <drepper@redhat.com>
700
701         * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
702         style hash table format is used.
703
704 2006-09-04  Jakub Jelinek  <jakub@redhat.com>
705
706         * resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
707         randomization rather than before.
708         * resolv/res_init.c (res_randomid): Don't call gettimeofday here.
709
710 2006-08-31  Jakub Jelinek  <jakub@redhat.com>
711
712         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Add ld.so.
713
714         * malloc/malloc.c (_int_malloc): Use full list insert and not
715         shortcut which assumes the list is empty for large requests
716         too.
717
718         * elf/tst-addr1.c (do_test): Allow i.dli_sname "_IO_printf".
719
720 2006-08-30  Jakub Jelinek  <jakub@redhat.com>
721
722         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (splice): Add offin
723         and offout arguments to the prototype.
724         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h (splice): Likewise.
725         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h (splice): Likewise.
726         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h (splice): Likewise.
727         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h (splice): Likewise.
728         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h (splice): Likewise.
729         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (splice): Likewise.
730         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h (splice): Likewise.
731         * sysdeps/unix/sysv/linux/syscalls.list (splice): Adjust args string.
732
733 2006-08-28  Ulrich Drepper  <drepper@redhat.com>
734
735         * elf/dl-load.c (_dl_init_paths): Expand DSTs.
736
737         * elf/dl-open.c (dl_open_worker): Allow $LIB and $PLATFORM in
738         dlopen parameters.
739
740 2006-08-28  Jakub Jelinek  <jakub@redhat.com>
741
742         * inet/getnameinfo.c (getnameinfo): For AF_INET, check errno
743         only if herrno is NETDB_INTERNAL.  Handle errors other than
744         ERANGE outside of the loops, handle TRY_AGAIN.
745
746         * locale/programs/ld-ctype.c (translit_flatten): Issue error
747         if other's ctype category was missing.
748         * locale/programs/ld-collate.c (collate_read): Return if
749         copy_locale's collate category is missing.
750
751 2006-08-27  Ulrich Drepper  <drepper@redhat.com>
752
753         [BZ #2684]
754         * malloc/malloc.c (public_rEALLOc): Try harder by using other
755         arenas if allocation failed.
756         Patch mostly by Jan Edler <jan.edler@indexengines.com>.
757
758 2006-08-26  Ulrich Drepper  <drepper@redhat.com>
759
760         * malloc/malloc.c (bin_at): Rewrite to be more clear and to not
761         waste bins[0..1].
762         (malloc_state): Reduce bins size by 2.
763         (_int_malloc): Fix test for large enough buffer for early termination.
764         When no unsorted block matches perfectly and an exiting block has
765         to be split, use full list insert and not shortcut which assumes
766         the list is empty.
767
768         * locale/programs/ld-ctype.c (ctype_read): Better patch for read
769         failure.
770
771 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
772
773         * locale/programs/ld-ctype.c (ctype_read): If CTYPE is NULL, don't
774         do anything.
775
776         * sysdeps/generic/ldsodefs.h (DL_ADDR_SYM_MATCH): For undefined
777         symbol require exact match (these are PLTs).
778         * sysdeps/unix/sysv/linux/powerpc/powerpc64/ldsodefs.h
779         (_dl_ppc64_addr_sym_match): Likewise.
780
781         [BZ #2683]
782         * elf/dl-addr.c (_dl_addr): Don't ignore all undefined symbols.
783         If symbol has a value use it.
784         * elf/tst-dladdr1.c: New file.
785         * elf/Makefile: Add rules to build and run tst-addr1.
786
787 2006-08-24  Jakub Jelinek  <jakub@redhat.com>
788
789         * malloc/malloc.c (sYSMALLOc): Avoid infinite loop if MMAP
790         keeps failing and heap growth or new heap creation isn't
791         successful either.
792         * malloc/tst-malloc.c (main): Add new tests.
793
794 2006-08-24  Ulrich Drepper  <drepper@redhat.com>
795
796         [BZ #2734]
797         * sysdeps/i386/bits/byteswap.h (__bswap_32): Use same conditions
798         as in the x86-64 code to use bswap.
799
800 2006-05-21  Joseph S. Myers  <joseph@codesourcery.com>
801
802         [BZ #2680]
803         * posix/unistd.h (getlogin_r): Condition on __USE_POSIX199506, not
804         __USE_UNIX98.
805         * posix/bits/unistd.h: Likewise.
806
807 2006-05-15  Mike Frysinger  <vapier@gentoo.org>
808
809         [BZ #2751]
810         * string/strchr.c: Add cast to avoid warning.
811
812 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
813
814         * malloc/malloc.c (DEFAULT_MMAP_THRESHOLD_MAX): For 32-bit
815         platforms define as 512K.  For 64-bit platforms as 32MB.  The lower
816         limit is needed to avoid the exploding of the address space
817         requirement for secondary heaps.
818         * malloc/arena.c (HEAP_MAX_SIZE): Define using
819         DEFAULT_MMAP_THRESHOLD_MAX if it is defined.
820
821 2006-07-30  Joseph S. Myers  <joseph@codesourcery.com>
822
823         [BZ #3018]
824         * Makerules (depfiles): Handle extra-test-objs the same as
825         extra-objs.
826         (common-mostlyclean): Likewise.
827         * dlfcn/Makefile (extra-objs): Add modules to extra-test-objs
828         instead.
829         * elf/Makefile (extra-objs): Likewise.
830         * stdlib/Makefile (extra-objs): Likewise.
831
832 2006-08-14  Eric Blake  <ebb9@byu.net>
833
834         [BZ #3044]
835         * misc/error.h: Assume C89 or better.
836         * misc/error.c: Likewise.
837
838 2006-08-21  Ulrich Drepper  <drepper@redhat.com>
839
840         [BZ #3040]
841         * sysdeps/unix/sysv/linux/openat.c: Fix compilation if
842         __ASSUME_ATFCTS is defined.
843
844 2006-08-19  Ulrich Drepper  <drepper@redhat.com>
845
846         * malloc/malloc.c (_int_malloc): Limit number of unsorted blocks
847         to sort in each call.
848
849         * nis/nss_nis/nis-service.c (internal_nis_getservent_r): . If map
850         is empty simply return and use next service.
851         * nis/nss_nis/nis-rpc.c (internal_nis_getrpcent_r): Likewise.
852
853         * locale/programs/charmap.c (charmap_read): Add new parameter.  It
854         tells us when not finding a charmap file is an error.
855         * locale/programs/charmap.h: Adjust charmap_read prototype.
856         * iconv/iconv_prog.c (main): Tell charmap_read it's no error if we
857         cannot find a charmap.
858         * locale/programs/localedef.c (main): Adjust charmap_read call.
859
860 2006-08-15  Jakub Jelinek  <jakub@redhat.com>
861
862         * sysdeps/unix/sysv/linux/sparc/sparc64/pause.c: Use
863         sysdeps/posix/pause.c implementation instead.
864
865 2006-08-09  Jakub Jelinek  <jakub@redhat.com>
866
867         * sysdeps/unix/nice.c (nice): Transform EACCES errno from setpriority
868         to EPERM.
869
870 2006-08-13  Andreas Schwab  <schwab@suse.de>
871
872         * sysdeps/powerpc/powerpc32/dl-trampoline.S (_dl_runtime_resolve):
873         Don't clobber caller's LRSAVE.
874         (_dl_prof_resolve): Likewise.
875
876 2006-08-14  Ulrich Drepper  <drepper@redhat.com>
877
878         [BZ #1996]
879         * libio/memstream.c (open_memstream): Allocate initial buffer with
880         calloc.
881         * libio/wmemstream.c (open_wmemstream): Likewise.
882         * libio/strops.c: Pretty printing.
883         (_IO_str_overflow): Clear uninitialized part of the new buffer.
884         (enlarge_userbuf): New function.
885         (_IO_str_seekoff): Call it if seek position is larger than current
886         buffer.
887         * libio/wstrops.c: Likewise.
888         * libio/vasprintf.c: Add comment as to why we do not have to use
889         calloc instead of malloc to allocate initial buffer.
890         * libio/Makefile (tests): Add bug-memstream1 and bug-wmemstream1.
891         * libio/bug-memstream1.c: New file.
892         * libio/bug-wmemstream1.c: New file.
893
894 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
895
896         * libio/wstrops.c: Remove dead macro definitions and comments.
897         * libio/strops.c: Likewise.
898
899         [BZ #2764]
900         * login/utmpname.c (__utmpname): Remove unnecessary test.
901
902 2006-06-08  Joseph Myers  <jsm28@gcc.gnu.org>
903
904         [BZ #2832]
905         * math/gen-libm-test.pl (clean_up_number): Do not remove trailing
906         0s from integers.
907
908 2006-08-13  Ulrich Drepper  <drepper@redhat.com>
909
910         [BZ #2987]
911         * sysdeps/unix/sysv/linux/clock_settime.c: Add code to use syscall
912         for CPU clocks.
913         * sysdeps/unix/clock_settime.c: Add support for platform-specific
914         setting of CPU clocks.
915
916 2006-06-23  Paul Eggert  <eggert@cs.ucla.edu>
917
918         [BZ #2841]
919         * sysdeps/generic/stdint.h (UINT8_C, UINT16_C): Don't append 'U',
920         since C99 requires the result to promote to 'int' when uint_least8_t
921         and uint_least16_t promote to 'int'.
922
923 2006-08-12  Ulrich Drepper  <drepper@redhat.com>
924
925         [BZ #3013]
926         * locale/programs/ld-ctype.c (ctype_output): Adjust alignments, fix
927         lenght of one output field, correct bitmask creation.
928         * locale/programs/ld-time.c: Add alignment.
929
930         [BZ #2997]
931         * misc/error.c: Add space between program name and message if file
932         name is missing.
933
934 2006-08-03  Eric Blake  <ebb9@byu.net>
935
936         [BZ #2998]
937         * misc/error.c (error_tail) [_LIBC]: Avoid invalid free.
938
939 2006-08-09  Ulrich Drepper  <drepper@redhat.com>
940
941         * malloc/memusagestat.c: Silence warnings.
942
943         * malloc/malloc.c: Dynamically size mmap treshold if the program
944         frees mmaped blocks.
945         Patch by Valerie Henson and Arjan van de Ven.
946
947 2006-08-08  Jakub Jelinek  <jakub@redhat.com>
948
949         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h (O_DIRECT): Protect with
950         __USE_GNU.
951
952         * stdlib/strtol_l.c (__strtol_ul_max_tab, __strtol_ul_rem_tab,
953         __strtol_ull_max_tab, __strtol_ull_rem_tab): Declare.
954         (DEF): Don't put the var into .gnu.linkonce.r.* section.
955         Only provide var definitions in strtol_l (or for *ull*
956         in strtoll_l).
957
958         * stdio-common/bug16.c (tests): New array.
959         (do_tests): Allow the first hexadecimal digit
960         to be 1, 2, 4 or 8.  Do 3 additional tests.
961
962         * sysdeps/s390/fpu/libm-test-ulps: Update.
963
964         * sysdeps/unix/sysv/linux/s390/s390-32/fchownat.c (fchownat): Use
965         fchownat syscall if available.
966         * sysdeps/unix/sysv/linux/powerpc/fchownat.c (fchownat): Likewise.
967         * sysdeps/unix/sysv/linux/sh/fchownat.c (fchownat): Likewise.
968         * sysdeps/unix/sysv/linux/i386/fchownat.c (fchownat): Likewise.
969
970 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
971
972         * nis/nis_xdr.c: Avoid some function calls.
973
974 2006-08-07  Jakub Jelinek  <jakub@redhat.com>
975             Ulrich Drepper  <drepper@redhat.com>
976
977         * nis/nis_call.c (rec_dirsearch) [case LOWER_NAME]: Don't take
978         short cut if only one name component is stripped away.
979
980 2006-08-07  Ulrich Drepper  <drepper@redhat.com>
981
982         * nis/nis_call.c: Minor cleanups throughout.
983         (rec_dirsearch) [case HIGHER_NAME]: Correctly size ndomain array.
984         (first_shoot): Add search_parent_first parameter.  Only if it is set
985         search parent server first.
986         If directory for table found through cold start cache is not the same
987         as referenced in the cache, don't use it.
988         (__nisfind_server): Take additional parameter.  Pass it on to
989         first_shoot.
990         (__prepare_niscall): Adjust __nisfind_server call.
991         * nis/rpcsvc/nislib.h: Adjust __nisfind_server prototype.
992         * nis/nis_table.c: Adjust __nisfind_server call.
993         * nis/nis_lookup.c: Likewise.
994         (nis_lookup): Don't loop endlessly if name is reduced to ".".
995
996 2006-08-03  Ulrich Drepper  <drepper@redhat.com>
997
998         [BZ #2182]
999         * math/s_cacosh.c: Return values from positive branch.
1000         * math/s_cacoshf.c: Likewise.
1001         * math/s_cacoshl.c: Likewise.
1002
1003         [BZ #2883]
1004         * sysvipc/sys/msg.h: Change return value to ssize_t.
1005         * sysdeps/unix/sysv/linux/msgrcv.c: Likewise.
1006         * sysvipc/msgrcv.c: Likewise.
1007         * include/sys/msg.h: Likewise.
1008
1009         * grp/initgroups.c (internal_getgrouplist): Remove unnecessary
1010         test introduced in patch for bz #661.
1011         (getgrouplist): Simplify code a bit.  Don't allocate one additional
1012         element for NEWGROUPS.
1013
1014         [BZ #2908]
1015         * stdio-common/printf_fphex.c (__printf_fphex): When rounding up
1016         'f', use '1' as leading digit not '\1'.
1017         * stdio-common/Makefile (tests): Add bug16.
1018         * stdio-common/bug16.c: New file.
1019
1020         [BZ #2914]
1021         * sysdeps/unix/sysv/linux/gethostid.c: Don't define OLD_HOSTIDFILE
1022         and don't try to open it.  The patch introducing the macro
1023         contained a bug and used the same file name as the new file
1024         instead of using /var/adm/hostid.  Nobody complaint so I'm taking
1025         this out completely.
1026
1027         [BZ #2926]
1028         * assert/assert.h: Move cast to void inside ?: to quiet gcc.
1029         Patch by Jerry James <Jerry.James@usu.edu>.
1030
1031         * rt/Makefile (tests): Add tst-clock2.
1032         * rt/tst-clock2.c: New file.
1033
1034         [BZ #2978]
1035         * resolv/gai_notify.c (__gai_notify_only): Copy memory for thread
1036         function and its parameters and pass it to new thread.
1037         (__gai_notify): Add support for alternative waiting for completion.
1038         * resolv/gai_suspend.c (gai_suspend): Add support for alternative
1039         waiting for completion.
1040         * resolv/getaddrinfo_a.c: Likewise.
1041         * resolv/gai_misc.h (struct waitlist): Don't add cond if alternative
1042         waiting for completion is used.
1043         * resolv/gai_misc.c: Allow overwriting code to start helper thread.
1044         * resolv/gai_cancel.c: Include <gai_misc.h> not "gai_misc.h".
1045         * resolv/gai_error.c: Likewise.
1046         * resolv/gai_sigqueue.c: Likewise.
1047
1048 2006-08-02  Thomas Schwinge  <tschwinge@gnu.org>
1049
1050         * hurd/getdport.c (__getdport): Don't return EBADF; instead set
1051         errno to EBADF and return MACH_PORT_NULL.
1052
1053 2006-06-23  Joseph Myers  <joseph@codesourcery.com>
1054
1055         [BZ #2980]
1056         * posix/Makefile (CFLAGS-waitid.c): Add -fasynchronous-unwind-tables.
1057
1058 2006-08-02  Ulrich Drepper  <drepper@redhat.com>
1059
1060         * elf/dl-addr.c (_dl_addr): If GNU-style hash tables are present,
1061         walk them instead of the symbol table.
1062
1063 2006-08-01  Ulrich Drepper  <drepper@redhat.com>
1064
1065         [BZ #2098]
1066         * nscd/initgrcache.c (addinitgroupsX): Judge successful lookups by
1067         status of NSS calls, not the number of returned entries.
1068
1069         * sysdeps/unix/sysv/linux/syscalls.list: Remove add_key,
1070         request_key, keyctl.
1071
1072 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
1073
1074         * sysdeps/unix/sysv/linux/dl-osinfo.h: Remove unnecessary include.
1075
1076 2006-07-16  Jeff Bailey  <jbailey@ubuntu.com>
1077
1078         * elf/tst-auditmod1.c: Fix typo in #error.
1079
1080 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
1081
1082         * elf/tst-auditmod1.c: Remove code for unsupported architectures.
1083
1084         * iconvdata/run-iconv-test.sh: Run cmp in C locale.
1085
1086 2006-07-20  Adam Nemet  <anemet@caviumnetworks.com>
1087
1088         * stdlib/test-canon.c (do_test): Close fd before unlinking file so
1089         that the directory is empty even on non-POSIX filesystems.
1090
1091 2006-07-31  Ulrich Drepper  <drepper@redhat.com>
1092
1093         * elf/dl-open.c (dl_open_worker): Add branch prediction.
1094
1095         * nis/nss_compat/compat-grp.c: Avoid unnecessary setgrent calls into
1096         the backend NSS module.  If backend setgrent call failed, don't have
1097         internal_setgrent fail.  Just remember this until it is needed.
1098         * nis/nss_compat/compat-pwd.c: Likewise.
1099         * nis/nss_compat/compat-spwd.c: Likewise.
1100
1101 2006-07-30  Roland McGrath  <roland@redhat.com>
1102
1103         * sysdeps/unix/sysv/linux/ia64/sigsuspend.c: File removed.
1104         * sysdeps/unix/sysv/linux/x86_64/sigsuspend.c: File removed.
1105         * sysdeps/unix/sysv/linux/s390/s390-64/sigsuspend.c: File removed.
1106         * sysdeps/unix/sysv/linux/sparc/sparc64/sigsuspend.c: File removed.
1107
1108         * sysdeps/unix/sysv/linux/not-cancel.h (pause_not_cancel): New macro.
1109         (nanosleep_not_cancel): New macro.
1110         (sigsuspend_not_cancel): new macro.
1111         * sysdeps/unix/sysv/linux/sigsuspend.c [__ASSUME_REALTIME_SIGNALS]
1112         (do_sigsuspend): Define as inline.
1113         (__sigsuspend): Always use do_sigsuspend.
1114         [! NO_CANCELLATION] (__sigsuspend_nocancel): New function.
1115         * include/signal.h: Declare __sigsuspend_nocancel.
1116         * sysdeps/posix/pause.c
1117         [! NO_CANCELLATION] (__pause_nocancel): New function.
1118
1119         * include/unistd.h (__pause_nocancel): Add attribute_hidden.
1120         * include/time.h (__nanosleep_nocancel): Likewise.
1121
1122 2006-07-30  Ulrich Drepper  <drepper@redhat.com>
1123
1124         * locale/programs/localedef.c (add_to_readlist): Rename local
1125         variables to avoid confusion.
1126
1127         * locale/programs/charmap.c (charmap_read): Emit error message if
1128         charmap couldn't be found or read.
1129
1130 2006-07-28  Ulrich Drepper  <drepper@redhat.com>
1131
1132         * sysdeps/unix/sysv/linux/kernel-features.h: Define
1133         __ASSUME_FUTEX_LOCK_PI.
1134         * include/time.h: Declare __nanosleep_nocancel.
1135         * include/unistd.h: Declare __pause_nocancel.
1136
1137         * dlfcn/Makefile (LDLIBS-bug-atexit3-lib.so): Use this instead of
1138         LDFLAGS.  Add -lgcc_eh and libc_nonshared (again) to make sure we
1139         get the __stack_chk_fail_local definition when it's needed.
1140
1141 2006-07-26  Ulrich Drepper  <drepper@redhat.com>
1142
1143         * dlfcn/Makefile: Add rules to build and run bug-atexit3.
1144         * dlfcn/bug-atexit3.c: New file.
1145         * dlfcn/bug-atexit3-lib.cc: New file.
1146
1147         * dlfcn/dlmopen.c (dlmopen_doit): Don't allow RTLD_GLOBAL to be
1148         used when the namespace is not the base namespace.
1149
1150 2006-07-26  Gavin Romig-Koch  <gavin@redhat.com>
1151
1152         * stdlib/cxa_atexit.c (__new_exitfn_called): New variable.
1153         (__new_exitfn): Bump it in every successful call.
1154         * stdlib/cxa_finalize.c (__cxa_finalize): If destructor registered
1155         more exit handlers, call them right away.
1156         * stdlib/exit.h: Declare __new_exitfn_called.
1157
1158 2006-07-25  Ulrich Drepper  <drepper@redhat.com>
1159
1160         * stdlib/cxa_finalize.c (__cxa_finalize): Fix race condition when
1161         calling registered handler.
1162
1163         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Fix comment.
1164         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
1165         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
1166         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
1167         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
1168         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
1169         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
1170         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
1171
1172 2006-07-10  Ulrich Drepper  <drepper@redhat.com>
1173
1174         * elf/dl-lookup.c (dl_new_hash): New functions.
1175         (_dl_lookup_symbol_x): Rename hash to old_hash and don't compute
1176         value here.  Compute new-style hash value.  Pass new hash value
1177         and reference to variable with the old value to do_lookup_x.
1178         (_dl_setup_hash): If DT_GNU_HASH is defined, use it and not
1179         old-style hash table.
1180         (_dl_debug_bindings): Pass new hash value and reference to variable
1181         with the old value to do_lookup_x.
1182         * elf/do-lookup.h (do_lookup_x): Accept additional parameter with
1183         new-style hash value and change old-style hash value parameter to
1184         be a reference.  Reoganize functions to determine whether
1185         new-style hash table is available.  Only fall back on old-style
1186         table.  If old-style hash value is needed, compute it here.
1187         * elf/dynamic-link.h (elf_get_dynamic_info): Relocate DT_GNU_HASH
1188         entry.
1189         * elf/elf.h: Define SHT_GNU_HASH, DT_GNU_HASH, DT_TLSDEC_PLT,
1190         DT_TLSDEC_GOT.  Adjust DT_ADDRNUM.
1191         * include/link.h (struct link_map): Add l_gnu_bitmask_idxbits,
1192         l_gnu_shift, l_gnu_bitmask, l_gnu_buckets and l_gnu_chain_zero.
1193         * Makeconfig: If linker supports --hash-style option add it to all
1194         linker command lines to build DSOs.
1195         * config.make.in: Define have-hash-style.
1196         * configure.in: Test whether linker supports --hash-style option.
1197
1198         * elf/dl-misc.c (_dl_name_match_p): Make MAP parameter const.
1199         * sysdeps/generic/ldsodefs.h: Adjust prototype.
1200
1201 2006-06-27  Ulrich Drepper  <drepper@redhat.com>
1202
1203         * elf/dl-load.c (open_path): Fix test to determine whether DSO is
1204         auditing.
1205
1206         * elf/dl-load.c (_dl_map_object): Try harder to avoid looking at
1207         RPATH of main map twice.
1208
1209 2006-06-22  Ulrich Drepper  <drepper@redhat.com>
1210
1211         * intl/dcigettext.c (DCIGETTEXT): If _nl_find_msg returns -1 don't
1212         look further, return original strings.
1213         (_nl_find_msg): Do not return found translation if the conversion
1214         failed.  Either signal the string is unusable or that something went
1215         wrong and the original should be used.
1216
1217 2006-06-21  Ulrich Drepper  <drepper@redhat.com>
1218
1219         * string/_strerror.c (__strerror_r): Add __builtin_expect.
1220
1221 2006-06-14  Jakub Jelinek  <jakub@redhat.com>
1222
1223         [BZ #2766]
1224         * misc/insremque.c (insque): Handle prev == NULL.
1225         * misc/Makefile (tests): Add tst-insremque.
1226         * misc/tst-insremque.c: New test.
1227
1228 2006-06-17  Ulrich Drepper  <drepper@redhat.com>
1229
1230         [BZ #2792]
1231         * elf/dl-deps.c (expand_dst): Rename __cnt variable to not
1232         conflict with DL_DST_REQUIRED.
1233
1234 2006-06-16  Ulrich Drepper  <drepper@redhat.com>
1235
1236         * nis/nis_subr.c (nis_getnames): Fix the implementation to better
1237         match what Solaris does.
1238
1239 2006-06-04  Ulrich Drepper  <drepper@redhat.com>
1240
1241         * sysdeps/posix/spawni.c (__spawni): Use local_seteuid and
1242         local_setegid instead of seteuid and setegid.
1243         * sysdeps/generic/local-setxid.h: New file.
1244         * sysdeps/unix/sysv/linux/local-setxid.h: New file.
1245
1246         * sysdeps/posix/spawni.c (__spawni): Use non-cancelable interfaces.
1247
1248         * string/Makefile (tests): Add bug-envz1.
1249         * string/bug-envz1.c: New file.
1250
1251 2006-06-02  Jakub Jelinek  <jakub@redhat.com>
1252
1253         * posix/regex_internal.c (re_string_skip_chars): If no character has
1254         been converted at all, set *last_wc to WEOF.  If mbrtowc failed, set wc
1255         to the byte which couldn't be converted.
1256         (re_string_reconstruct): Don't clear valid_raw_len before calling
1257         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
1258         tip_context using re_string_context_at.
1259         * posix/Makefile: Add rules to build and run bug-regex25 test.
1260         * posix/bug-regex25.c: New test.
1261
1262 2006-06-02  Ryan S. Arnold  <rsa@us.ibm.com>
1263
1264         [BZ #2703]
1265         * string/envz.c (envz_strip): Correct erroneously reversed src
1266         and dest parameters to memmove() invocation.
1267
1268 2006-05-30  Jakub Jelinek  <jakub@redhat.com>
1269
1270         * nscd/nscd.h (prune_cache): Add fd argument to prototype.
1271         * nscd/nscd.c (parse_opt): Read response from INVALIDATE request
1272         to make sure the database has been already invalidated.
1273         * nscd/cache.c (prune_cache): Add fd argument.  Write response to fd
1274         after the cache has been invalidated.  Use pthread_mutex_lock rather
1275         than pthread_mutex_trylock if fd != -1.
1276         * nscd/connections.c (invalidate_cache): Add fd argument, write
1277         response to fd if not calling prune_cache, pass fd to prune_cache.
1278         (handle_request): Adjust invalidate_cache caller.
1279         (nscd_run): Pass -1 as fd to prune_cache.
1280
1281 2006-05-30  Ulrich Drepper  <drepper@redhat.com>
1282
1283         * sysdeps/posix/getaddrinfo.c (gaiconf_init): Initialize bits in
1284         the correct place.
1285
1286 2006-05-29  Ulrich Drepper  <drepper@redhat.com>
1287
1288         * nscd/nscd.h (struct database_dyn): Add prunelock field.
1289         * nscd/cache.c (prune_cache): Take prunelock before starting the
1290         work.  Just return in case it is already taken.
1291         * nscd/connections.c (dbs): Initialize .prunelock.
1292
1293 2006-05-25  Ulrich Drepper  <drepper@redhat.com>
1294
1295         * nis/nis_removemember.c (nis_removemember): Avoid unnecessary
1296         copying.  No need to allocate new array for group members.  Just
1297         move the pointers and update the size.
1298
1299         * nis/nis_addmember.c (nis_addmember): Avoid unnecessary copying.
1300         Avoid memory leak in case realloc fails.  Simplification for
1301         better code generation.
1302
1303         Avoid deprecation warning because of libc_hidden_proto for
1304         inet6_option_alloc.
1305         * inet/inet6_option.c (option_alloc): Renamed from
1306         inet6_option_alloc.  Made static.
1307         (inet6_option_alloc): Now a simple wrapper around option_alloc.
1308         (inet6_option_append): Call option_alloc.
1309         * include/netinet/in.h: Remove libc_hidden_proto for
1310         inet6_option_alloc.
1311
1312         * nis/nis_callback.c (__nis_create_callback): Always call xdr_free
1313         for cleanup when cb!=NULL [Coverity CID 233].
1314
1315 2006-05-24  Ulrich Drepper  <drepper@redhat.com>
1316
1317         [BZ #2693]
1318         * inet/Makefile (routines): Add inet6_opt and inet6_rth.
1319         * inet/Versions (libc, GLIBC_2.5): Add inet6_opt_init,
1320         inet6_opt_append, inet6_opt_finish, inet6_opt_set_val, inet6_opt_next,
1321         inet6_opt_find, inet6_opt_get_val, inet6_rth_space, inet6_rth_init,
1322         inet6_rth_add, inet6_rth_reverse, inet6_rth_segments,
1323         and inet6_rth_getaddr.
1324         * inet/netinet/ip6.h (struct ip6_rthdr0): Make ip6r0_addr a flexible
1325         array.
1326         * inet/netinet/in.h (struct ip6_mtuinfo): Define.
1327         Mark inet6_option_* interfaces as deprecated.
1328         Declare inet6_opt_init, inet6_opt_append, inet6_opt_finish,
1329         inet6_opt_set_val, inet6_opt_next, inet6_opt_find, inet6_opt_get_val,
1330         inet6_rth_space, inet6_rth_init, inet6_rth_add, inet6_rth_reverse,
1331         inet6_rth_segments, and inet6_rth_getaddr.
1332         * inet/inet6_opt.c: New file.
1333         * inet/inet6_rth.c: New file.
1334
1335         * inet/netinet/icmp6.h: Pretty printing.
1336
1337         [BZ #2683]
1338         * elf/dl-addr.c (_dl_addr): Don't match undefined references.
1339
1340 2006-05-23  Ulrich Drepper  <drepper@redhat.com>
1341
1342         * nis/nis_lookup.c (nis_lookup): Use __prepare_niscall instead of
1343         doing it all here.  When server does not know the answer do not
1344         fail immediate, try parent first.
1345
1346         * nis/nis_domain_of_r.c (nis_domain_of_r): Add missing buffer
1347         overflow test.
1348
1349 2006-05-20  Ulrich Drepper  <drepper@redhat.com>
1350
1351         * nis/nis_call.c (__prepare_niscall): New function.  Split out
1352         from __do_niscall.
1353         * nis/nis_table.c (__create_ib_request): Renamed from create_ib_request
1354         and exported.
1355         (__follow_path): New function.  Split out from nis_list.
1356         * nis/nis_xdr.h: Add libnsl_hidden_proto for _xdr_ib_request and
1357         _xdr_nis_result.
1358         * nis/nis_xdr.c: Add libnsl_hidden_def for _xdr_ib_request and
1359         _xdr_nis_result.
1360         * nis/libnsl.h: Declare __prepare_niscall, __create_ib_request,
1361         and __follow_path.
1362         * nis/Versions: Export __prepare_niscall, __create_ib_request,
1363         __follow_path, __do_niscall3, _xdr_ib_request, and _xdr_nis_result
1364         from libnsl for version GLIBC_PRIVATE.
1365         * nis/nisplus-parser.h: Remove _nss_nisplus_parse_pwent_chk.
1366         Remove entry parameter from _nss_nisplus_parse_pwent and
1367         _nss_nisplus_parse_grent.
1368         * nis/nss_nisplus/nisplus-parser.c: Likewise.
1369         * nis/nss_nisplus/nisplus-pwd.c: Remove support for SETENT_BATCH_READ
1370         again.  Rewrite getpwent handling to not use nis_first_entry and
1371         nis_next_entry.  Roll out own niscall handling.
1372         * nis/nss_nisplus/nisplus-grp.c: Likewise.
1373
1374         * sunrpc/xdr_rec.c: Fix typo in comment.
1375
1376 2006-05-19  Ulrich Drepper  <drepper@redhat.com>
1377
1378         * nis/nis_call.c (__do_niscall3): Avoid code duplication in error
1379         handling.
1380
1381         * nis/nis_callback.c (internal_nis_do_callback): Don't use malloc
1382         to allocate memory for my_pollfd.  Better initialization of
1383         cb_is_running.  Use TEMP_FAILURE_RETRY.
1384
1385         * malloc/memusage.sh (memusageso): Add quotes.
1386         (memusagestat): Likewise.
1387         * debug/xtrace.sh (pcprofileso): Likewise.
1388         (pcprofiledump): Likewise.
1389         * debug/Makefile ($(objpfx)xtrace): Use $LIB in SLIBDIR
1390         replacement.
1391         * malloc/Makefile ($(objpfx)memusage): Likewise.
1392
1393         * nis/nis_callback.c (__nis_create_callback): Calls to
1394         svcudp_bufcreate and svctcp_create can fail.  Free ->xprt if
1395         asprintf call fails.
1396
1397         * sysdeps/unix/sysv/linux/ifaddrs.c (__netlink_sendreq): Make sure
1398         no uninitialized memory is passed to sendto.
1399
1400 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
1401
1402         * nis/nis_callback.c (__nis_create_callback): Use asprinf instead
1403         of snprintf+strdup.  Handle OOM.
1404         * nis/nis_callback.c (__nis_create_callback): Allocate cb and
1405         cb->serv together.  Remove now obsolete free calls.
1406         (__nis_destroy_callback): Remove now obsolete free call.
1407
1408 2006-05-18  David Woodhouse  <dwmw2@redhat.com>
1409
1410         * sysdeps/posix/getaddrinfo.c: Add unique labels to the default
1411         RFC3484 precedence table for fec0::/10 and fc00::/7 (site-local
1412         and ULA respectively). Set precedence for IPv4 address to 10 as
1413         defined in RFC3484 for preferring IPv6.
1414         * posix/gai.conf: Update to match the new default tables.
1415
1416 2006-05-18  Jakub Jelinek  <jakub@redhat.com>
1417
1418         * nis/nss_compat/compat-pwd.c (internal_setpwent): If nss_set*ent
1419         returned NSS_STATUS_UNAVAIL, still return NSS_STATUS_SUCCESS.
1420         * nis/nss_compat/compat-spwd.c (internal_setspent): Likewise.
1421         * nis/nss_compat/compat-grp.c (internal_setgrent): Likewise.
1422
1423         * nis/nss_compat/compat-initgroups.c (nss_setgrent, nss_endgrent):
1424         Removed.
1425         (init_nss_interface): Remove initialization of these variables.
1426
1427 2006-05-18  Ulrich Drepper  <drepper@redhat.com>
1428
1429         * nis/nis_call.c (rec_dirsearch): Little optimization: pull
1430         nis_free_directory forward to avoid duplication.
1431
1432 2006-05-17  Ulrich Drepper  <drepper@redhat.com>
1433
1434         * nis/nis_call.c (rec_dirsearch): Handle __nis_finddirectory and
1435         rec_dirsearch returning NULL.
1436         (first_shoot): Handle __nis_finddirectory returning NULL.
1437         (__nisfind_server): Fix leak when rec_dirsearch returns NULL.
1438
1439         * sysdeps/unix/sysv/linux/sys/inotify.h: Define IN_CLOSE, IN_MOVE,
1440         IN_ONLYDIR, IN_DONT_FOLLOW, and IN_MASK_ADD.
1441
1442 2006-05-17  Jakub Jelinek  <jakub@redhat.com>
1443
1444         * sunrpc/key_call.c (getkeyserv_handle): Call auth_destroy if
1445         pid changed.
1446
1447 2006-05-15  Ulrich Drepper  <drepper@redhat.com>
1448
1449         * include/rpc/pmap_prot.h: Mark all functions as hidden.
1450
1451         * nscd/nscd_initgroups.c: Mark __gr_map_handle as hidden.
1452         * nscd/nscd_getgr_r.c: Likewise.
1453
1454         * include/rpc/pmap_rmt.h: Mark all functions as hidden.
1455
1456         * nscd/nscd_getai.c (__hst_map_handle): Mark as hidden.
1457         * nscd/nscd_gethst_r.c (__hst_map_handle): Likewise.
1458
1459         * stdlib/longlong.h (__clz_tab): Mark as hidden.
1460
1461         * iconv/gconv_int.h: Mark __gconv_lock as hidden.
1462
1463         * include/rpc/key_prot.h: Mark all _internal functions as hidden.
1464
1465         * include/rpc/auth.h: Mark xdr_des_block_internal and
1466         xdr_opaque_auth_internal as hidden.
1467
1468         * sysdeps/unix/sysv/linux/getdents.c: Mark __have_no_getdents64 as
1469         hidden.
1470
1471         * include/rpc/xdr.h: Mark all _internal functions as hidden.
1472
1473         * misc/getusershell.c (okshells): Don't use static initializers,
1474         do it dynamically.
1475
1476         * stdlib/fmtmsg.c (keywords): Change type of len element to
1477         uint32_t to not waste space on 64bit machines.
1478
1479         * locale/setlocale.c: Change _nl_category_names into a string.
1480         Add new _nl_category_name_idxs.  Change all users.
1481         * locale/localeinfo.h: Adjust declaration of _nl_category_names.
1482         Declare _nl_category_name_idxs.
1483         * locale/findlocale.c: Adjust for _nl_category_names change.
1484         * locale/loadlocale.c: Likewise.
1485         * locale/newlocale.c: Likewise.
1486         * intl/dcigettext.c: Likewise.
1487
1488         * iconv/gconv_conf.c (add_alias): Move actual alias handling to...
1489         (add_alias2): ...here.  New function.
1490         (__gconv_read_conf): Simplify builtin alias handling.
1491         (builtin_aliases): Convert to string to avoid relocations.
1492         * iconv/gconv_builtin.h: Add comment about correct formatting.
1493
1494 2006-05-15  Jakub Jelinek  <jakub@redhat.com>
1495
1496         * resolv/res_debug.c (loc_ntoa): Make error const.
1497
1498 2006-05-14  Andreas Schwab  <schwab@suse.de>
1499
1500         * math/complex.h [__LDBL_COMPAT]: Use __REDIRECT_NTH.
1501
1502 2006-05-12  Jakub Jelinek  <jakub@redhat.com>
1503
1504         * sysdeps/unix/sysv/linux/sched_getaffinity.c: Include sys/param.h.
1505         (__sched_getaffinity_new): Don't crash if cpusetsize is smaller than
1506         sizeof (cpu_set_t).
1507
1508 2006-05-11  Ulrich Drepper  <drepper@redhat.com>
1509
1510         * resolv/res_debug.c (loc_ntoa): Define error as array, not pointer.
1511
1512         * include/arpa/nameser.h: Declare _ns_flagdata as hidden.
1513
1514         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_master.
1515         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_master.
1516
1517         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypbind_resp.
1518         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypbind_resp.
1519
1520         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_cback_data.
1521         * include/rpcsvc/nis_callback.h: Add libnsl_hidden_proto for
1522         xdr_cback_data.
1523
1524         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypupdate_args.
1525         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
1526         xdr_ypupdate_args.
1527
1528         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_order.
1529         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_order.
1530
1531         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_maplist.
1532         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_maplist.
1533
1534         * nis/nis_xdr.c: Add libnsl_hidden_def for xdr_obj_p.
1535         * include/rpcsvc/nis_callback.h: New file.
1536
1537         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypresp_val.
1538         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypresp_val.
1539
1540         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
1541         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
1542
1543         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypmaplist.
1544         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypmaplist.
1545
1546         * nis/yp_xdr.c: Add libnsl_hidden_def for xdr_ypreq_nokey.
1547         * include/rpcsvc/yp.h: Add libnsl_hidden_proto for xdr_ypreq_nokey.
1548
1549         * nis/ypupdate_xdr.c: Add libnsl_hidden_def for xdr_ypdelete_args.
1550         * include/rpcsvc/ypupd.h: Add libnsl_hidden_proto for
1551         xdr_ypdelete_args.
1552
1553         * nis/nis_xdr.h: Mark all functions as hidden.  Remove
1554         __BEGIN_DECLS and __END_DECLS, the header is not installed.
1555
1556         * nis/nis_error.c: Remove table of strings.  Use position
1557         independent mechanism.
1558         * nis/nis_error.h: New file.
1559
1560 2006-05-11  Jakub Jelinek  <jakub@redhat.com>
1561
1562         * locale/programs/ld-time.c (time_finish): If wide era name or
1563         format aren't provided, set both wname and wformat to L"".
1564
1565 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
1566
1567         * sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
1568         results if the call was succesful.
1569
1570         * nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
1571
1572         * nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
1573         as hidden.
1574
1575 2006-05-10  Jakub Jelinek  <jakub@redhat.com>
1576
1577         * misc/sys/queue.h: Remove uses of all QUEUEDEBUG_* macros.
1578
1579 2006-05-10  Ulrich Drepper  <drepper@redhat.com>
1580
1581         * posix/wordexp.c (parse_glob): No need to check ifs for NULL, the
1582         caller makes sure this is not the case.
1583         (wordexp): Simplify ifs_white creation.  [Coverity CID 231]
1584
1585 2006-05-09  Ulrich Drepper  <drepper@redhat.com>
1586
1587         * posix/wordexp.c: Remove numerous NULL pointer tests before FREE
1588         calls.
1589
1590         * io/ftw.c (open_dir_stream): Return right away if REALLOC fails.
1591         [Coverity CID 229, 230]
1592
1593         * argp/argp-help.c (hol_entry_help): Handle STATE==NULL in ARG and
1594         DGETTEXT calls.
1595         (hol_help): Likewise.  [Coverity CID 226, 227]
1596
1597         * string/argz-replace.c (__argz_replace): Unconditionally call
1598         free on SRC.  [Coverity CID 225]
1599
1600         * nis/nis_creategroup.c (nis_creategroup): No need to duplicate
1601         the return value of __nis_default_owner and __nis_default_group,
1602         it has been especially allocated.  [Coverity CID 224]
1603
1604         * nis/nis_defaults.c (searchXYX): New functions.  Used by both
1605         searchgroup and searchowner.  Significantly simplified.
1606         (__nis_default_owner): Remove duplication.  Do not locally copy the
1607         string before duplicating it.
1608         (__nis_default_group): Likewise.
1609
1610         * nis/nis_lookup.c (nis_lookup): After calling nis_free_directory,
1611         we must clear the variable before calling __nisfind_server.
1612
1613         * nis/nis_lookup.c (nis_lookup): Always free memory allocated with
1614         nis_getnames.  [Coverity CID 223]
1615
1616         * locale/programs/locfile.c (locfile_read): Use alloca instead of
1617         xmalloc to allocate local repertoire name.  [Coverity CID 222]
1618
1619         * iconv/iconv_charmap.c (use_to_charmap): No need to dynamically
1620         allocate memory for the input to add_bytes.  [Coverity CID 221]
1621
1622         * posix/wordexp.c (w_addword): Free word if realloc fails and it
1623         was allocated here.  [Coverity CID 219, 220]
1624
1625         * posix/getconf.c (print_all): Free confstr data after printing.
1626         [Coverity CID 218]
1627
1628         * sysdeps/posix/getaddrinfo.c (gaih_inet): Free canon string if
1629         list allocation fails.  [Coverity CID 215]
1630
1631         * nss/nsswitch.c (__nss_configure_lookup): Fix loop end condition.
1632         [Coverity CID 213]
1633
1634         * argp/argp-help.c (hol_entry_cmp): Don't call canon_doc_option if
1635         string is NULL.  [Coverity CID 212]
1636         * argp/Makefile: Add rules to build and run bug-argp1.
1637         * argp/bug-argp1.c: New file.
1638
1639         * io/ftw.c (ftw_dir): Use __rawmemchr instead of strchr to find
1640         end of string.
1641         * stdlib/canonicalize.c (__realpath): Likewise.
1642
1643         * locale/programs/ld-time.c (time_finish): Don't dereference NULL
1644         pointer.  [Coverity CID 206]
1645
1646         * elf/dl-dst.h (DL_DST_REQUIRED): Be prepared for missing link map
1647         in statically linked code.
1648         * elf/dl-load.c (_dl_dst_substitute): When replacing ORIGIN in
1649         statically built code, be prepared to have no link map.
1650         [Coverity CID 205]
1651
1652         * argp/argp-help.c (fill_in_uparams): Handle STATE==NULL in
1653         dgettext calls. [Coverity CID 204]
1654
1655         * argp/argp-help.c (struct uparams): Remove valid member.  Change
1656         the one user.
1657         (uparam_names): Reduce size.  Avoid relative relocations.
1658         Moved to read-only segment.
1659         (fill_in_uparams): Update for new layout.
1660
1661         * sysdeps/unix/sysv/linux/ifaddrs.c (getifaddrs): Parameter can be
1662         assumed to always be != NULL. [Coverity CID 202]
1663
1664         * argp/argp-help.c (hol_entry_help): Remove some dead code
1665         [Coverity CID 200].
1666
1667         * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Optimize
1668         away a few more unconditional yperr2nss calls.
1669         (_nss_nis_getservbyname_r): Likewise.
1670
1671 2006-05-06  Ulrich Drepper  <drepper@redhat.com>
1672
1673         * sysdeps/generic/ldsodefs.h: Remove support for non-core
1674         architectures.
1675
1676         * sysdeps/unix/sysv/linux/check_pf.c (make_request): Make sure
1677         that unused memory passed to sendto is nevertheless initialized.
1678
1679         [BZ #2499]
1680         * resolv/nss_dns/dns-canon.c (_nss_dns_getcanonname_r): Avoid
1681         possibly unaligned memory accesses.
1682
1683         * include/arpa/nameser.h: Also optimize NS_PUT16 and NS_PUT32.
1684         * resolv/res_mkquery.c: Use NS_PUT16 and NS_PUT32 instead of __putshort
1685         and __putlong respectively.  Correct buffer overflow check for
1686         NS_NOTIFY_OP.
1687
1688         * resolv/res_send.c (send_vc): Use ns_put16 instead of putshort.
1689
1690         * resolv/res_send.c (res_queriesmatch): Fix typo in comment.
1691         (send_dg): Rewrite error handling to be more compact and avoid
1692         double recomputation of timeouts.  Pass MSG_NOSIGNAL to send.
1693
1694         * include/arpa/nameser.h: Add optimizations for NS_GET16 and NS_GET32.
1695
1696         * resolv/res_send.c (res_nameinquery): Use NS_GET16 directly
1697         instead of ns_get16.
1698         (res_queriesmatch): Likewise.  Minor optimization.
1699
1700         [BZ #2499]
1701         * resolv/res_query.c (__libc_res_nquery): If answerp != NULL,
1702         __libc_res_nsend might reallocate the buffer for the answer.  In
1703         this case we have to reload the HP pointer.
1704
1705 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
1706
1707         * stdio-common/vfscanf.c (memory_error): Remove definition.  Add
1708         some branch prediction hints.
1709
1710         * sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Define SPLICE_F_*.
1711         * sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
1712         * sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Likewise.
1713         * sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
1714         * sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.
1715         * sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
1716         * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Likewise.
1717         * sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
1718
1719 2006-05-05  Martin Schwidefsky  <schwidefsky@de.ibm.com>
1720
1721         * sysdeps/s390/s390-32/elf/start.S: Replace pc relative relocation
1722         by a GOT relocation to make Scrt1.o position independent.
1723         * sysdeps/s390/s390-64/elf/start.S: Likewise.
1724
1725         * sysdeps/unix/sysv/linux/s390/s390-32/syscall.S: Add support for
1726         six system call parameters.
1727         * sysdeps/unix/sysv/linux/s390/s390-64/syscall.S: Likewise.
1728
1729 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
1730
1731         * sunrpc/svcauth_des.c (cache_init): Use calloc instead of
1732         malloc&bzero.
1733
1734         * sunrpc/svc_udp.c (BZERO): Remove definition.
1735         (CALLOC): Define.
1736         (svc_enablecache): Use CALLOC instead of ALLOC&BZERO.
1737
1738         * sunrpc/des_impl.c: Remove ALT_ECB support.  We never used it.
1739         (des_SPtrans): Use uint32_t type.
1740         (des_skb): Likewise.
1741
1742         * sunrpc/xdr_ref.c (xdr_reference): Use calloc instead of malloc&bzero.
1743
1744 2006-05-05  Jakub Jelinek  <jakub@redhat.com>
1745
1746         [BZ #2509]
1747         * stdio-common/tst-printf.sh: Adjust for tst-printf.c change even
1748         on 32-bit arches.
1749
1750 2006-05-05  Ulrich Drepper  <drepper@redhat.com>
1751
1752         * locale/programs/ld-address.c (address_finish): Fix one more
1753         place where the iso639 array might be accessed beyond the limits.
1754
1755 2006-05-04  Ulrich Drepper  <drepper@redhat.com>
1756
1757         * nis/nis_table.c (nis_list): Avoid clearing res twice before
1758         filling it for the first time.
1759
1760         * nis/nis_table.c (get_tablepath): Renamed from __get_tablepath.
1761         Adjust all callers.
1762         Free res object content before returning.
1763
1764         * sunrpc/xdr_array.c (xdr_array): Use calloc instead of malloc&bzero.
1765
1766         * sunrpc/key_call.c (__rpc_thread_key_cleanup): Also free
1767         client->cl_auth.
1768
1769         * sunrpc/rpc_thread.c (__rpc_thread_destroy): Don't skip entire
1770         cleanup for initial thread, just the free call on TVP.
1771
1772         * nscd/gai.c (__getline): Define.
1773
1774
1775 See ChangeLog.16 for earlier changes.