summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'origin/releng/10.3' into RELENG_2_3Renato Botelho2016-05-041-1/+2
|\
| * Fix multiple OpenSSL vulnerabilitites. [SA-16:17]delphij2016-05-041-1/+2
| | | | | | | | | | | | | | | | | | | | Fix performance regression in libc hash(3). [EN-16:06] Fix excessive latency in x86 IPI delivery. [EN-16:07] Fix memory leak in ZFS. [EN-16:08] Approved by: so
* | Merge remote-tracking branch 'origin/releng/10.3' into RELENG_2_3Renato Botelho2016-03-071-1/+5
|\ \ | |/
| * Merge 296424 from stable/10 - contains the following changes to -current:dwmalone2016-03-061-1/+5
| | | | | | | | | | | | | | | | | | r295924: Make sure that hash-based db files fsync befor closing/syncing. r295925: We no longer need O_SYNC pwd_mkd r295465: We no longer need O_SYNC on services_mkdb r295800: We no longer need O_SYNC on cap_mkdb Approved by: re (marius)
* | Revert "Import patch from https://reviews.freebsd.org/D5186"Renato Botelho2016-03-071-5/+1
| | | | | | | | This reverts commit 3882f7f0612f5660c6287cfa1ba025f2843a1957.
* | Import patch from https://reviews.freebsd.org/D5186Renato Botelho2016-02-151-1/+5
| | | | | | | | | | This is a new approach to fix pfSense ticket #4523. The fix we had in place works but makes the process really slow for big user databases.
* | Merge remote-tracking branch 'origin/stable/10' into develLuiz Otavio O Souza2016-02-091-1/+6
|\ \ | |/
| * MFC r294597:wblock2016-02-061-1/+6
| | | | | | | | | | | | Add a standards compliance note for strtok_r Approved by: re (marius@)
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-02-032-15/+37
|\ \ | |/
| * MFC r294691:sobomax2016-01-301-8/+16
| | | | | | | | | | | | Fix readpassphrase(3) when it's called with stdin being closed. Approved by: re (delphij)
| * MFC r294515:brooks2016-01-281-7/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | Fix the implementations of PSEUDO_NOERROR and PSEUDO. The PSEUDO* macros should not declare <syscall>, only _<syscall> and __sys_<syscall>. This was causing the interposing C wrappers to be ignored due to link order. Reviewed by: kib Obtained from: CheriBSD (4e8e13c90fc6a80e1520de44a6864cfd78b3b56d) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D4097
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-02-011-1/+3
|\ \ | |/
| * MFC r294565: sem: Don't free nameinfo that is still in list when open()jilles2016-01-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | fails. This bug could be reproduced easily by calling sem_open() with O_CREAT | O_EXCL on a semaphore that is already open in the process. The struct sem_nameinfo would be freed while still in sem_list and later calls to sem_open() or sem_close() could access freed memory. PR: 206396
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-01-273-11/+28
|\ \ | |/
| * MFC r294694:tuexen2016-01-271-2/+7
| | | | | | | | sctp_sendx() needs to provide the assoc_id back.
| * MFC r294688:tuexen2016-01-271-0/+7
| | | | | | | | sctp_sendv() needs to fill in the association id on return.
| * MFH (r291197): markup fixesdes2016-01-261-3/+9
| |
| * Revert r279010:pfg2016-01-261-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | tdelete(3): don't delete the node we are about to return. The original change, from NetBSD, was bogus; introduced a memory leak and and broke POSIX. By reverting we actually match NetBSD's latest revision. This is a direct commit to 10 since this function was rewritten in 11-current. Reported by: Markiyan Kushnir Obtained from: NetBSD (CVS rev. 1.7, 1.8)
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-01-2510-15/+24
|\ \ | |/
| * MFC r294234: utimensat(2): Correct description of [EINVAL] error.jilles2016-01-211-3/+6
| |
| * MFC r293856:brooks2016-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | Avoid reading pass the end of the source buffer when it is not NUL terminated. If this buffer is adjacent to an unmapped page or a version of C with bounds checked is used this may result in a crash. PR: 206178 Submitted by: Alexander Cherepanov <cherepan@mccme.ru>
| * MFC r293855:brooks2016-01-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | Avoid reading pass the end of the source buffer when it is not NUL terminated. If this buffer is adjacent to an unmapped page or a version of C with bounds checked is used this may result in a crash. PR: 206177 Submitted by: Alexander Cherepanov <cherepan@mccme.ru>
| * Default __MAKE_SHELL to /bin/sh when generating aton_ether_subr.c viangie2016-01-191-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | `gen_ether_subr`. __MAKE_SHELL is only defined when installworld is run on stable/10, which breaks workflows dealing with source trees mounted with noexec [*] This is a direct commit to stable/10 Reported by: Mark Martinec <Mark.Martinec+freebsd@ijs.si> Sponsored by: EMC / Isilon Storage Division
| * MFC r293715:ngie2016-01-191-2/+2
| | | | | | | | | | | | | | | | | | | | Fix a mismerge from NetBSD in r162194 with `xdr_rpcb_entry_list_ptr(..)` This fixes the potential NULL pointer dereference properly, and also fixes memory leaks encountered in the process of iterating through `*rp`. Found by: Valgrind Submitted by: Miles Ohlrich <miles.ohlrich@isilon.com>
| * MFC r293705:ngie2016-01-181-2/+2
| | | | | | | | | | | | | | | | | | Similar to r293704, fix theoretical leak of netconfig(3) resources in __rpcbind_is_up(..) if getnetconfig(3) is partly successful in allocating resources, but not completely successful by moving the endnetconfig(3) call up before we return from the function if nconf == NULL. Submitted by: Miles Ohlrich <miles.ohlrich@isilon.com>
| * MFC r293704:ngie2016-01-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Fix theoretical leak of netconfig(3) resources in svcunix_create(..) In the event that the getconfig(3) call in svcunix_create is partly successful, some of the netconfig(3) resources allocated might be leaked if the call returns NULL as endnetconfig(3) wasn't called explicitly in that case. Ensure that the resources are fully cleaned up by going to the `done` label, which will call endnetconfig(3) for us. Submitted by: Miles Ohlrich <miles.ohlrich@isilon.com>
| * MFC r287619:tuexen2016-01-161-2/+0
| | | | | | | | | | | | | | | | | | Zero out a local variable also when PURIFY is not defined. This silence a warning brought up by valgrind whenever if_nametoindex is used. This was already discussed in PR 166483, but the code committed in r234329 guards the initilization with #ifdef PURIFY. Therefore, valgrind still complains. Since this code is not performance critical, always zero out the local variable to silence valgrind.
| * MFC r293783: futimens/utimensat: Use the new system calls.jilles2016-01-153-4/+10
| | | | | | | | | | | | | | | | | | Update the __FreeBSD_version check in lib/libc/sys/futimens.c and lib/libc/sys/utimensat.c. Before this, fallback code using futimes/futimesat/lutimes was used except when running on a sufficiently recent 11-current kernel. Also, update the history section in the man page.
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-01-1313-111/+559
|\ \ | |/
| * MFC r287964:trasz2016-01-121-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | Kernel part of reroot support - a way to change rootfs without reboot. Note that the mountlist manipulations are somewhat fragile, and not very pretty. The reason for this is to avoid changing vfs_mountroot(), which is (obviously) rather mission-critical, but not very well documented, and thus hard to test properly. It might be possible to rework it to use its own simple root mount mechanism instead of vfs_mountroot(). Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2698
| * MFC r285240:trasz2016-01-124-99/+2
| | | | | | | | | | | | | | Remove reboot.S (part of libc). It's not needed and was actually broken - returning 0 from reboot(2) resulted in SIGBUS. Sponsored by: The FreeBSD Foundation
| * MFC r277610 (by jillies):dchagin2016-01-096-0/+510
| | | | | | | | Add futimens and utimensat system calls.
| * MFC r291114: popen() requires check for fdopen() failurerpokala2016-01-091-10/+24
| | | | | | | | | | | | | | | | Move fdopen() up near other resource allocation like malloc(); do proper deallocation on failure later on in the function. Approved by: jhb Sponsored by: Panasas, Inc.
| * MFC r292047: RPC: populate local address for rendezvous transporter.stas2016-01-081-2/+16
| |
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2016-01-072-57/+0
|\ \ | |/
| * MFC r292719:ume2016-01-012-57/+0
| | | | | | | | | | Remove _gethostbynisname() and _gethostbynisaddr(). These functions used to be called from getipnodebyname().
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2015-12-3015-12/+5797
|\ \ | |/
| * MFC r292550, r292595:ume2015-12-291-12/+4
| | | | | | | | | | Simplify _map_v4v6_address(). We don't need to use a temporary buffer, here.
| * MFC r292317,r292318,r292323,r292324,r292665:ngie2015-12-2814-0/+5793
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | r292317: Integrate tools/regression/lib/libc/resolv into the FreeBSD test suite as lib/libc/tests/resolv Convert the testcases to ATF Sponsored by: EMC / Isilon Storage Division r292318: Add Makefile accidentally missed in r292317 Sponsored by: EMC / Isilon Storage Division r292323: Integrate tools/regression/lib/libc/nss into the FreeBSD test suite as lib/libc/tests/nss - Convert the testcases to ATF - Do some style(9) cleanups: -- Sort headers -- Apply indentation fixes -- Remove superfluous parentheses - Explicitly print out debug printfs for use with `kyua {debug,report}`; for items that were overly noisy, they've been put behind #ifdef DEBUG conditionals - Fix some format strings Sponsored by: EMC / Isilon Storage Division r292324: Iterate down lib/libc/tests/nss... Sponsored by: EMC / Isilon Storage Division r292665: Increase the timeout for resolv_test from the default (300 seconds) to 450 seconds This is required on slower network connections, and on older releases (stable/10 seems to be slower as far as name resolution goes.. not sure why yet). Remove an outdated comment in the Makefile from when I was working on this code over a year ago on github Sponsored by: EMC / Isilon Storage Division
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2015-12-286-55/+205
|\ \ | |/
| * MFC r292445, r292554:ume2015-12-282-8/+6
| | | | | | | | Use _map_v4v6_address().
| * MFC r292539:ume2015-12-281-1/+6
| | | | | | | | | | | | | | If we end up following a CNAME chain that does not find any data return that instead of internal error. PR: 156684
| * MFC r292513: clock_gettime(2),gettimeofday(2): Remove [EFAULT] error.jilles2015-12-272-8/+2
| | | | | | | | | | | | | | | | | | Depending on system configuration and parameters, clock_gettime() and gettimeofday() may not be system calls. If so, passing an invalid pointer will cause a signal and not an [EFAULT] error. From a standards perspective, this is OK since passing an invalid pointer is undefined behaviour.
| * MFC r292510:kib2015-12-271-3/+8
| | | | | | | | Fix lockf(3) cancellation behaviour.
| * MFC r292514:ume2015-12-271-8/+8
| | | | | | | | | | | | addrinfo.ai_family is an address family, not a protocol family. PR: 162434
| * Add AI_V4MAPPED and AI_ALL support for getaddrinfo(3).ume2015-12-252-28/+176
| | | | | | | | PR: 198092
* | Merge remote-tracking branch 'origin/stable/10' into develRenato Botelho2015-12-2212-58/+163
|\ \ | |/
| * MFC: r291073araujo2015-12-211-5/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If a NIS server has long entries on its database that is bigger than 1024 specified on YPMAXRECORD the ypmatch can get in an infinite retry loop when is requesting the information from the NIS server. The ypmatch(1) will return an error until the command receives an kill(1). To avoid this problem, we check the MAX_RETRIES that is by default set to 20 and avoid get in infinet loop at the client side. NOTE: FreeBSD nis(8) server doesn't present this issue. Submitted by: Ravi Pokala <rpokala at panasas.com>, Lakshmi N. Sundararajan <lakshmi.n at msystechnologies.com>, Lewis, Fred <flewis at panasas.com>, Pushkar Kothavade <pushkar.kothavade at msystechnologies.com>
| * MFC r292130: exec(3): Fix COMPATIBILITY section: default path does notjilles2015-12-201-2/+2
| | | | | | | | contain cwd.
| * MFC r292153:ngie2015-12-201-1/+1
| | | | | | | | | | | | | | | | | | Add -static to CFLAGS to unbreak the tests by using a libc.a with the xlocale private symbols exposed which aren't exposed publicly via the DSO PR: 191354 Sponsored by: EMC / Isilon Storage Division
OpenPOWER on IntegriCloud