about summary refs log tree commit diff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* dns query core: detect udp truncation at recv timeRich Felker2022-10-191-4/+13
* getaddrinfo dns lookup: use larger answer buffer to handle long CNAMEsRich Felker2022-10-191-3/+5
* dns: implement tcp fallback in __res_msend query coreRich Felker2022-09-221-2/+117
* res_send: use a temp buffer if caller's buffer is under 512 bytesRich Felker2022-09-221-1/+9
* adapt res_msend DNS query core for working with multiple socketsRich Felker2022-09-211-6/+11
* getaddrinfo: add EAI_NODATA error code to distinguish NODATA vs NxDomainRich Felker2022-09-205-6/+12
* fix error cases in gethostbyaddr_rRich Felker2022-09-191-2/+3
* remove impossible error case from gethostbyname2_rRich Felker2022-09-191-1/+0
* fix return value of gethostnbyname[2]_r on result not foundRich Felker2022-09-191-1/+1
* dns: treat names rejected by res_mkquery as nonexistent rather than errorRich Felker2022-09-191-1/+1
* res_mkquery: error out on consecutive final dots in nameRich Felker2022-09-191-0/+1
* fix thread leak on timer_create(SIGEV_THREAD) failureAlexey Izbyshev2022-09-191-1/+5
* re-enable vdso clock_gettime on arm (32-bit) with workaroundRich Felker2022-09-191-0/+3
* fix fwprintf missing output to open_wmemstream FILEsRich Felker2022-09-071-1/+5
* dns: fail if ipv6 is disabled and resolv.conf has only v6 nameservesRich Felker2022-08-261-0/+5
* use kernel-provided AT_MINSIGSTKSZ for sysconf(_SC_[MIN]SIGSTKSZ)Rich Felker2022-08-261-2/+12
* add sysconf keys/values for signal stack sizeRich Felker2022-08-261-0/+3
* fix fallback when ipv6 is disabled but resolv.conf has v6 nameservesRich Felker2022-08-241-1/+2
* epoll_create: fail with EINVAL if size is non-positiveKristina Martsenko2022-08-241-0/+1
* use alt signal stack when present for implementation-internal signalsRich Felker2022-08-203-3/+3
* freopen: reset stream orientation (byte/wide) and encoding ruleRich Felker2022-08-171-0/+2
* ldso: support DT_RELR relative relocation formatFangrui Song2022-08-021-1/+1
* use syscall_arg_t and __scc macro for arguments to __alt_socketcallAlex Xu (Hello71)2022-08-021-3/+3
* fix ESRCH error handling for clock_getcpuclockidEugene Yudin2022-08-011-0/+1
* aarch64: add vforkSzabolcs Nagy2022-08-011-0/+9
* fix mishandling of errno in getaddrinfo AI_ADDRCONFIG logicRich Felker2022-08-011-0/+2
* avoid limited space of random temp file names if clock resolution is lowRich Felker2022-06-231-1/+1
* remove random filename obfuscation that leaks ASLR informationRich Felker2022-06-031-1/+2
* ensure distinct query id for parallel A and AAAA queries in resolverRich Felker2022-06-031-0/+3
* mntent: fix potential mishandling of extremely long linesRich Felker2022-05-151-0/+2
* mntent: fix parsing lines with optional fieldsAlyssa Ross2022-05-151-3/+7
* fix constraint violation in qsort wrapper around qsort_rRich Felker2022-05-061-1/+1
* use __fstat instead of __fstatat with AT_EMPTY_PATH in __map_fileRich Felker2022-05-041-2/+1
* provide an internal namespace-safe __fstatRich Felker2022-05-042-2/+5
* only use fstatat and others legacy stat syscalls if they existRich Felker2022-05-011-1/+9
* drop direct use of stat syscalls in internal __map_fileRich Felker2022-05-011-3/+3
* provide an internal namespace-safe __fstatatRich Felker2022-05-012-1/+11
* drop direct use of stat syscalls in fchmodatRich Felker2022-05-011-8/+7
* drop use of stat operation in temporary file name generationRich Felker2022-05-012-10/+6
* only fallback to gettimeofday/settimeofday syscalls if they existStefan O'Rear2022-05-011-0/+4
* only use getrlimit/setrlimit syscalls if they existStefan O'Rear2022-05-012-1/+11
* don't remap internal-use syscall macros to nonexistent time32 syscallsStefan O'Rear2022-04-271-10/+10
* add missing POSIX confstr keys for pthread CFLAGS/LDFLAGSRich Felker2022-04-201-1/+1
* fix incorrect parameter name in internal netlink.h RTA_OK macroOndrej Jirman2022-04-101-1/+1
* accept null pointer as message argument to gettext functionspsykose2022-03-271-0/+3
* fix invalid free of duplocale object when malloc has been replacedIsaiah Poston2022-03-161-0/+5
* nice: return EPERM instead of EACCESAlexey Kodanev2022-03-081-1/+8
* protect stack canary from leak via read-as-string by zeroing second bytejvoisin2022-03-081-0/+9
* math: avoid runtime conversions of floating-point constantsSzabolcs Nagy2022-03-082-2/+6
* fix spurious failures by fgetws when buffer ends with partial characterRich Felker2022-02-201-6/+1