Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove ugly prng from mk*temp and just re-poll time on retry | Rich Felker | 2011-07-28 | 1 | -6/+5 |
| | |||||
* | eliminate mk*temp dependency on snprintf | Rich Felker | 2011-07-28 | 1 | -3/+4 |
| | | | | | this helps some tiny programs be even more tiny, and barly increases code size even if both are used. | ||||
* | another return value fix for mktemp... | Rich Felker | 2011-06-12 | 1 | -1/+2 |
| | |||||
* | make mktemp match the historic behavior, and update functions that use it | Rich Felker | 2011-02-19 | 3 | -5/+8 |
| | | | | | | the historic mktemp is supposed to blank the template string on failure, rather than returning 0. just zero the first character so that mkstemp and mkdtemp can still retry with O(1) space requirement. | ||||
* | fix major bug created from copying mkdtemp logic | Rich Felker | 2011-02-19 | 1 | -1/+1 |
| | |||||
* | major improvements to temp file name generator | Rich Felker | 2011-02-18 | 3 | -16/+21 |
| | | | | | | | | use current time in nanoseconds and some potentially-random (if aslr is enabled) pointer values for the initial tempfile name generation, and step via a cheap linear prng on collisions. limit the number of retry attempts to prevent denial of service attacks even if an attacker can guess the filenames. | ||||
* | reformat mkstemp like mkdtemp | Rich Felker | 2011-02-18 | 1 | -7/+5 |
| | | | | | this is cleaner and makes it easy to impose a limit on the number of retries later if it seems desirable to do so. | ||||
* | ensure standard functions mk[sd]temp don't depend on removed function mktemp | Rich Felker | 2011-02-14 | 3 | -5/+9 |
| | |||||
* | begin namespace-cleanup of standard C headers | Rich Felker | 2011-02-14 | 2 | -0/+2 |
| | |||||
* | initial check-in, version 0.5.0 v0.5.0 | Rich Felker | 2011-02-12 | 3 | -0/+76 |