summaryrefslogtreecommitdiff
path: root/src/misc
AgeCommit message (Collapse)AuthorFilesLines
2012-05-06add isastream (obsolete STREAMS junk)Rich Felker1-0/+7
apparently some packages see stropts.h and want to be able to use this. the implementation checks that the file descriptor is valid by using fcntl/F_GETFD so it can report an error if not (as specified).
2012-05-03implement stub versions of sched_*Rich Felker1-10/+0
these actually work, but for now they prohibit actually setting priority levels and report min/max priority as 0.
2012-04-24ditch the priority inheritance locks; use malloc's version of lockRich Felker1-9/+9
i did some testing trying to switch malloc to use the new internal lock with priority inheritance, and my malloc contention test got 20-100 times slower. if priority inheritance futexes are this slow, it's simply too high a price to pay for avoiding priority inversion. maybe we can consider them somewhere down the road once the kernel folks get their act together on this (and perferably don't link it to glibc's inefficient lock API)... as such, i've switch __lock to use malloc's implementation of lightweight locks, and updated all the users of the code to use an array with a waiter count for their locks. this should give optimal performance in the vast majority of cases, and it's simple. malloc is still using its own internal copy of the lock code because it seems to yield measurably better performance with -O3 when it's inlined (20% or more difference in the contention stress test).
2012-04-22implement getusershell, etc. legacy functionsRich Felker1-0/+33
I actually wrote these a month ago but forgot to integrate them. ugly, probably-harmful-to-use functions, but some legacy apps want them...
2012-04-22add getresuid and getresgid syscall wrappersRich Felker2-0/+16
2012-04-16wordexp must set the we_offs entries of we_wordv to null pointersRich Felker1-0/+4
2012-04-16fix crash in wordfree if we_offs is not initialized by the callerRich Felker1-0/+2
I'm not sure if it's legal for wordexp to modify this field, but this is the only easy/straightforward fix, and applications should not care. if it's an issue, i can work out a different (but more complex) solution later.
2012-03-01implement a64l and l64a (legacy xsi stuff)Rich Felker1-0/+26
2012-02-23fix (hopefully) PTRACE_TRACEME (command 0) argument handlingRich Felker1-2/+2
2012-02-17fix get_current_dir_name behaviorRich Felker1-2/+6
2012-02-17add get_current_dir_name functionRich Felker1-0/+12
2012-01-24add legacy futimes and lutimes functionsRich Felker2-0/+26
based on patch by sh4rm4. these functions are deprecated; futimens and utimensat should be used instead in new programs.
2012-01-20use prlimit syscall for getrlimit/setrlimitRich Felker2-4/+14
this allows the full range of 64-bit limit arguments even on 32-bit systems. fallback to the old syscalls on old kernels that don't support prlimit.
2012-01-20add prlimit syscall wrapperRich Felker1-0/+8
2012-01-18alias basename to glibc name for it, to meet abi goalsRich Felker1-0/+3
note that regardless of the name used, basename is always conformant. it never takes on the bogus gnu behavior, unlike glibc where basename is nonconformant when declared manually without including libgen.h.
2011-09-16fix ptrace (maybe)Rich Felker1-1/+8
2011-09-15implement ptrace syscall wrapper (untested)Rich Felker1-0/+18
2011-09-13remove some stray trailing space charactersRich Felker1-1/+1
2011-07-30fix some bugs in setxid and update setrlimit to use __synccallRich Felker1-2/+27
setrlimit is supposed to be per-process, not per-thread, but again linux gets it wrong. work around this in userspace. not only is it needed for correctness; setxid also depends on the resource limits for all threads being the same to avoid situations where temporarily unlimiting the limit succeeds in some threads but fails in others.
2011-07-22check for fd exhaustion in forkptyRich Felker1-2/+15
we cannot report failure after forking, so the idea is to ensure prior to fork that fd 0,1,2 exist. this will prevent dup2 from possibly hitting a resource limit and failing in the child process. fcntl rather than dup2 is used prior to forking to avoid race conditions.
2011-07-22incorrect check for open failure in openpty functionRich Felker1-1/+1
-1, not 0, indicates failure
2011-06-25wordexp cannot use we_offs unless WRDE_DOOFFS flag is setRich Felker1-1/+2
previously, a potentially-indeterminate value from we_offs was being used, resulting in wrong we_wordc and subsequent crashes in the caller.
2011-06-18fix memory leak on failure in realpathRich Felker1-4/+4
2011-05-29add useless, obsolescent function ulimitRich Felker1-0/+19
2011-04-20properly create new session/controlling terminal in forkptyRich Felker1-1/+4
2011-04-20implement (nonstandard) forkptyRich Felker1-0/+22
2011-04-19block cancellation in wordexp, handle more errorsRich Felker1-2/+17
2011-04-19avoid malloc of potentially-large string in wordexpRich Felker1-10/+28
2011-04-18protect ftw and nftw against cancellationRich Felker1-1/+6
2011-04-18protect syslog against cancellationRich Felker1-5/+19
these functions are allowed to be cancellation points, but then we would have to install cleanup handlers to avoid termination with locks held.
2011-04-17minimal realpath implementation using /procRich Felker1-0/+43
clean and simple, but fails when the caller does not have permissions to open the file for reading or when /proc is not available. i may replace this with a full implementation later, possibly leaving this version as an optimization to use when it works.
2011-04-15remove stupid debug code in wordexpRich Felker1-1/+0
2011-04-15implement wordexp. first try, may be buggy. intended to be safe.Rich Felker1-0/+128
2011-04-13simplify syslog, add vsyslog interface (nonstandard)Rich Felker1-31/+36
with datagram sockets, depending on fprintf not to flush the output early was very fragile; the new version simply uses a small fixed-size buffer. it could be updated to dynamic-allocate large buffers if needed, but i can't envision any admin being happy about finding 64kb-long lines in their syslog...
2011-04-13remove useless SIGPIPE protection from syslogRich Felker1-9/+0
per the standard, SIGPIPE is not generated for SOCK_DGRAM.
2011-04-13fix syslog (corrected SIGPIPE blocking, and using dgram instead of stream)Rich Felker1-10/+8
it actually appears the hacks to block SIGPIPE are probably not necessary, and potentially harmful. if i can confirm this, i'll remove them.
2011-04-13implement getgrouplist (for initgroups), formerly dummied-outv0.7.8Rich Felker1-4/+16
2011-04-13add ptsname_r (nonstandard) and split ptsname (standard) to separate fileRich Felker2-11/+16
this eliminates the ugly static buffer in programs that use ptsname_r.
2011-04-12move bswap functions to static inline in byteswap.hRich Felker2-16/+0
2011-04-12fix broken bswap_32Rich Felker1-1/+1
2011-04-11remove ugly warning-suppression hack from crypt - this invokes UB!Rich Felker1-1/+1
2011-03-25fix all implicit conversion between signed/unsigned pointersRich Felker1-2/+2
sadly the C language does not specify any such implicit conversion, so this is not a matter of just fixing warnings (as gcc treats it) but actual errors. i would like to revisit a number of these changes and possibly revise the types used to reduce the number of casts required.
2011-03-20global cleanup to use the new syscall interfaceRich Felker8-20/+8
2011-02-16fix compile failure: legacy cuserid needs to define feature testRich Felker1-0/+1
2011-02-15fix getrlimit handling on 32-bit systems, and ease porting to 64-bitRich Felker1-3/+3
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker26-0/+3194