Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adjust language-code fields of LC_ADDRESS. | Chris Leonard | 2013-10-24 | 18 | -15/+109 |
| | |||||
* | Document rpcgen -5. Fixes bug 15825 | Ondřej Bílka | 2013-10-21 | 3 | -5/+13 |
| | |||||
* | Print the reason why preloading failed in do_preload() | Michael Stahl | 2013-10-20 | 2 | -2/+6 |
| | |||||
* | When glob pattern contains a trailing slash match only directories. Fixes ↵ | Ondřej Bílka | 2013-10-20 | 4 | -9/+27 |
| | | | | bug 10278. | ||||
* | Replace alloca in __tzfile_read by malloc. Fixes bug 15670 | Ondřej Bílka | 2013-10-20 | 3 | -23/+18 |
| | |||||
* | Mention FIPS 140-2 compliance and Sun RPC. | Carlos O'Donell | 2013-10-19 | 2 | -1/+14 |
| | | | | | | | | | | | | | | | | | | | | | | The Secure RPC implementation in glibc uses DES encryption during authentication of the user. This use of DES means that anyone using Sun RPC will likely not be compliant with FIPS 140-2 which forbids the use of DES. One solution to the compliance issue is to disable AUTH_DES and AUTH_KERB, both use DES, when in FIPS compliance mode. This is not a good idea because it disables all of the even mildly secure methods of authentication allowing only plain text methods. Instead we leave AUTH_DES and AUTH_KERB enabled in FIPS compliance mode and document the compliance issue in the manual. FIPS allows this, that is to say that if you can't fix it you must document the non-compliance. This commit adds documentation to that effect in the "DES encryption and password handling" section of the manual. | ||||
* | Enhance localedef --list-archive option. | Carlos O'Donell | 2013-10-18 | 6 | -10/+44 |
| | | | | | | | | | | The localedef --list-archive option claims that it can accept a [file] argument and list the contents of that archive. The support was never implemented. This patch adds that support and allows --list-archive to work as expected. You can now use localedef to list the contents of arbitrary locale archives by using: ./localedef --list-archive file | ||||
* | Move entries to correct port ChangeLog files. | Joseph Myers | 2013-10-18 | 3 | -11/+11 |
| | |||||
* | Add e500 port. | Joseph Myers | 2013-10-18 | 32 | -11/+1227 |
| | |||||
* | Remove duplicate bug numbers from NEWS. | Joseph Myers | 2013-10-18 | 1 | -1/+0 |
| | |||||
* | Fix localedef collation handling of <U0000> (bug 15948). | Richard Sandiford | 2013-10-18 | 3 | -3/+15 |
| | |||||
* | Don't include tls.h in test cases | Siddhesh Poyarekar | 2013-10-18 | 24 | -41/+26 |
| | | | | Remove tls.h includes where they are not needed. | ||||
* | Remove assert in malloc statistic. Fixes bug 12486. | Ondřej Bílka | 2013-10-18 | 2 | -9/+5 |
| | |||||
* | Fix inet_network("1 bar"). Fixes bug 15277. | Ondřej Bílka | 2013-10-17 | 4 | -8/+35 |
| | |||||
* | Don't use gethostbyaddr to determine canonical name | Andreas Schwab | 2013-10-17 | 3 | -85/+24 |
| | |||||
* | Format floating routines. | Ondřej Bílka | 2013-10-17 | 59 | -2175/+2830 |
| | |||||
* | soft-fp: make extensions quiet signaling NaNs (bug 16041). | Joseph Myers | 2013-10-17 | 3 | -1/+8 |
| | |||||
* | soft-fp: fix horizontal whitespace. | Joseph Myers | 2013-10-16 | 88 | -1783/+1875 |
| | |||||
* | soft-fp: remove unused macros. | Joseph Myers | 2013-10-15 | 3 | -33/+5 |
| | |||||
* | Clear initfini list after freeing. Fixes bug 15308. | Ondřej Bílka | 2013-10-15 | 3 | -6/+12 |
| | |||||
* | soft-fp: fix vertical whitespace and indentation. | Joseph Myers | 2013-10-15 | 86 | -3286/+3865 |
| | |||||
* | Fix error_tail overflow in allocation calculation. | Ondřej Bílka | 2013-10-14 | 3 | -6/+11 |
| | |||||
* | Correctly copy resolver address. Fixes bug #13028. | Ondřej Bílka | 2013-10-14 | 3 | -7/+14 |
| | |||||
* | ldd: make try_trace more robust and portable | Patrick 'P. J.' McDermott | 2013-10-14 | 3 | -20/+24 |
| | | | | | | | | | | | | | | | | | | | | | | | It was noted in 2005 (BZ #832), 2006 (BZ #3266), and 2007 [1] that ldd fails on shells other than Bash >= 3.0 because of the pipefail option around try_trace (added on 2004-12-08). EGLIBC was patched in 2008 [2] (r6912) to make the pipefail check run only on shells that support it, but RTLD output would still be lost on other shells with certain SELinux policies. This patch rewrites try_trace to work on any POSIX-conformant shell in such a way as to also work with such SELinux policies. It also obviates one difference between glibc and EGLIBC. URL: https://sourceware.org/ml/libc-alpha/2007-01/msg00041.html URL: http://www.eglibc.org/archives/patches/msg00526.html 2013-09-11 P. J. McDermott <pj@pehjota.net> [BZ #832] * elf/ldd.bash.in (try_trace): More robustly and portably work around SELinux terminal write permissions by using a command substitution instead of a pipeline and pipefail option. | ||||
* | Adjust language-code fields of LC_ADDRESS. | Chris Leonard | 2013-10-13 | 17 | -27/+105 |
| | |||||
* | soft-fp: fix preprocessor indentation. | Joseph Myers | 2013-10-12 | 9 | -278/+290 |
| | |||||
* | Fix typos. | Yuri Chornoivan | 2013-10-12 | 7 | -8/+18 |
| | |||||
* | Fix typo in setlocale.c. Fixes BZ #15764 | Reuben Thomas | 2013-10-12 | 3 | -5/+11 |
| | |||||
* | soft-fp: make __unord* raise "invalid" for signaling NaNs (bug 16036). | Joseph Myers | 2013-10-12 | 5 | -1/+22 |
| | |||||
* | soft-fp: make ordered comparisons raise "invalid" for quiet NaNs (bug 14910). | Joseph Myers | 2013-10-12 | 8 | -12/+21 |
| | |||||
* | soft-fp: add missing FP_INIT_EXCEPTIONS and FP_INIT_ROUNDMODE calls. | Joseph Myers | 2013-10-12 | 40 | -0/+79 |
| | |||||
* | soft-fp: add macro FP_NO_EXCEPTIONS. | Joseph Myers | 2013-10-12 | 8 | -12/+48 |
| | |||||
* | soft-fp: fix _FP_DIV_MEAT_* returning results with wrong exponent (bug 16032). | Joseph Myers | 2013-10-12 | 4 | -5/+16 |
| | |||||
* | soft-fp: fix floating-point to integer unsigned saturation. | Joseph Myers | 2013-10-12 | 2 | -1/+6 |
| | |||||
* | Add systemtap markers to math function slow paths | Siddhesh Poyarekar | 2013-10-11 | 8 | -5/+160 |
| | | | | | | | Add systemtap probes to various slow paths in libm so that application developers may use systemtap to find out if their applications are hitting these slow paths. We have added probes for pow, exp, log, tan, atan and atan2. | ||||
* | Fix fwrite() reading beyond end of buffer in error path | Eric Biggers | 2013-10-11 | 8 | -36/+50 |
| | | | | | | | | | | | Partially revert commits 2b766585f9b4ffabeef2f36200c275976b93f2c7 and de2fd463b1c0310d75084b6d774fb974075a4ad9, which were intended to fix BZ#11741 but caused another, likely worse bug, namely that fwrite() and fputs() could, in an error path, read data beyond the end of the specified buffer, and potentially even write this data to the file. Fix BZ#11741 properly by checking the return value from _IO_padn() in stdio-common/vfprintf.c. | ||||
* | Fix readdir regressions on sparc 32-bit. | David S. Miller | 2013-10-10 | 2 | -2/+12 |
| | | | | | * sysdeps/posix/dirstream.h (struct __dirstream): Fix alignment of directory block. | ||||
* | Update copyright and license notices in soft-fp files from libgcc. | Joseph Myers | 2013-10-10 | 15 | -56/+58 |
| | |||||
* | Add soft-fp files from libgcc. | Joseph Myers | 2013-10-10 | 15 | -0/+663 |
| | |||||
* | Update sparc ULPs. | David S. Miller | 2013-10-10 | 2 | -0/+129 |
| | | | | * sysdeps/sparc/fpu/libm-test-ulps: Update. | ||||
* | Extend powerpc-nofpu -fno-builtin-fabsl workaround to more files. | Joseph Myers | 2013-10-10 | 2 | -0/+14 |
| | |||||
* | Avoid ordered comparisons of NaNs in ldbl-128ibm acosl and asinl. | Joseph Myers | 2013-10-10 | 3 | -0/+11 |
| | |||||
* | malloc/hooks.c: Correct check for overflow in memalign_check. | Will Newton | 2013-10-10 | 2 | -4/+12 |
| | | | | | | | | | | | | | A large value of bytes passed to memalign_check can cause an integer overflow in _int_memalign and heap corruption. This issue can be exposed by running tst-memalign with MALLOC_CHECK_=3. ChangeLog: 2013-10-10 Will Newton <will.newton@linaro.org> * malloc/hooks.c (memalign_check): Ensure the value of bytes passed to _int_memalign does not overflow. | ||||
* | benchtests: Add include-sources directive. | Torvald Riegel | 2013-10-10 | 3 | -6/+28 |
| | | | | | | This adds the "include-sources" directive to scripts/bench.pl. This allows for including source code (vs including headers, which might get a different search path) after the inclusion of any headers. | ||||
* | soft-fp: split FP_INIT_EXCEPTIONS from FP_INIT_ROUNDMODE. | Joseph Myers | 2013-10-10 | 5 | -3/+17 |
| | |||||
* | soft-fp: fix negation NaN handling (bug 16034). | Joseph Myers | 2013-10-10 | 7 | -24/+21 |
| | |||||
* | soft-fp: Remove trailing semicolon from _FP_FRAC_DISASSEMBLE_4. | Joseph Myers | 2013-10-09 | 2 | -1/+6 |
| | |||||
* | soft-fp: fix typo in comment. | Adam Buchbinder | 2013-10-09 | 2 | -1/+5 |
| | |||||
* | Update gethostbyname2_r documentation. Fixes bug #156. | Yogesh Chaudhari | 2013-10-08 | 3 | -10/+18 |
| | |||||
* | Fix typo in last change | Andreas Schwab | 2013-10-08 | 1 | -1/+1 |
| |