| Commit message (Expand) | Author | Age | Files | Lines |
* | close all fds > STDERR_FILENO before executing the pipe program. |  martijn | 2020-09-16 | 1 | -1/+2 |
* | When syslogd(8) parent process terminates, the file cleanup code |  bluhm | 2019-07-05 | 1 | -7/+3 |
* | When system calls indicate an error they return -1, not some arbitrary |  deraadt | 2019-06-28 | 1 | -8/+8 |
* | Unveil fits nicely into the syslogd privsep model. Unveiled files |  deraadt | 2018-08-07 | 1 | -2/+27 |
* | Globally remember the passwd entry for _syslogd. The user id is |  bluhm | 2018-04-26 | 1 | -7/+9 |
* | Replace logdebug() with generic log_debug() from log.c. Implement |  bluhm | 2017-04-05 | 1 | -12/+13 |
* | When syslogd received a SIGHUP during startup, it died instead of |  bluhm | 2016-12-30 | 1 | -1/+10 |
* | If syslogd was started with a relative path, the program could not |  bluhm | 2016-12-27 | 1 | -5/+13 |
* | Fix trailing whitespace and shorten long lines. |  bluhm | 2016-10-16 | 1 | -2/+2 |
* | Use closefrom(4) in privsep parent and avoid some global file |  bluhm | 2016-10-16 | 1 | -24/+4 |
* | Do an exec on itself in the privileged syslogd(8) parent process |  bluhm | 2016-10-06 | 1 | -86/+103 |
* | whitespace nit |  jca | 2016-06-28 | 1 | -2/+2 |
* | Eliminate superfluous 3rd params in fcntl(F_GETFL) calls. |  krw | 2016-04-02 | 1 | -2/+2 |
* | After pledge "dns" has been refactored and setsockopt(SO_RCVBUF) |  bluhm | 2015-10-20 | 1 | -2/+2 |
* | Add "id" pledge to syslogd privsep process. Needed for logging to pipe. |  bluhm | 2015-10-18 | 1 | -2/+2 |
* | Pledge the syslogd privsep process with "stdio rpath wpath cpath |  bluhm | 2015-10-16 | 1 | -1/+5 |
* | In syslogd replace the dprintf() macro with a logdebug() function |  bluhm | 2015-10-15 | 1 | -10/+11 |
* | If syslogd is started with -S, it accepts TLS connections to receive |  bluhm | 2015-10-09 | 1 | -1/+3 |
* | When syslogd is invoked with -T listen_address, it creates a TCP |  bluhm | 2015-07-07 | 1 | -1/+3 |
* | Remove some unneeded includes. OK deraadt@ |  millert | 2015-07-06 | 1 | -7/+1 |
* | Add a -U command line switch for syslogd to specify an explict bind |  bluhm | 2015-06-30 | 1 | -1/+3 |
* | Replace HOST_NAME_MAX+1 with NI_MAXHOST when the hostname is used |  bluhm | 2015-01-19 | 1 | -5/+7 |
* | Replace <sys/param.h> with <limits.h> and other less dirty headers where |  deraadt | 2015-01-16 | 1 | -9/+10 |
* | Implement sending syslog messages over TCP streams. |  bluhm | 2014-12-31 | 1 | -8/+25 |
* | Switch syslogd from using poll(2) to libevent. |  bluhm | 2014-10-05 | 1 | -17/+17 |
* | Cleanup the reporting socket code in syslogd. |  bluhm | 2014-10-03 | 1 | -3/+3 |
* | Also in debug mode, close nullfd when it is not needed anymore. |  bluhm | 2014-09-27 | 1 | -2/+1 |
* | Remove redundant null check and rename vars consistently in syslogd |  doug | 2014-09-10 | 1 | -5/+5 |
* | Fix a syslogd regression when specifying all 20 additional log paths |  doug | 2014-09-08 | 1 | -2/+4 |
* | Call check_tty_name() and check_log_name() with the string size and |  bluhm | 2014-08-25 | 1 | -9/+9 |
* | Allow to restrict syslogd to a protocol family with -4 and -6 command |  bluhm | 2014-08-25 | 1 | -10/+31 |
* | Fix the gcc compiler warnings "comparison between signed and |  bluhm | 2014-08-25 | 1 | -9/+12 |
* | Send and receive UDP syslog packets on the IPv6 socket. |  bluhm | 2014-08-21 | 1 | -3/+5 |
* | Parse loghost in a separate function. Allow [] around hostname, |  bluhm | 2014-08-21 | 1 | -3/+3 |
* | Replace gethostbyaddr(3) with getnameinfo(3). Remove the sigprocmask() |  bluhm | 2014-08-20 | 1 | -33/+33 |
* | Rename priv_gethostserv() to priv_getaddrinfo() as this is what the |  bluhm | 2014-08-20 | 1 | -10/+12 |
* | The _exit codes in syslogd privsep.c were the wrong way around. |  bluhm | 2014-08-19 | 1 | -9/+9 |
* | Replace manually written function names with __func__. |  bluhm | 2014-08-19 | 1 | -15/+13 |
* | Remove some whitespace. |  brad | 2008-11-23 | 1 | -3/+3 |
* | do not close a random file descriptor in debug mode, PR 5938 from mickey |  deraadt | 2008-09-29 | 1 | -2/+2 |
* | avoid errno trashing, ok mpf henning |  deraadt | 2008-03-16 | 1 | -3/+5 |
* | syslogd leaves zombies around if multiple |/pathto/mylogprog |  mpf | 2008-03-16 | 1 | -6/+4 |
* | use warnx and not logerror in monitor, logerror is for the slave; |  djm | 2007-03-15 | 1 | -5/+7 |
* | implement logging to other program's stdin. |  henning | 2007-02-20 | 1 | -5/+105 |
* | Use sigaction() instead of signal() in the parent and use the |  millert | 2006-07-09 | 1 | -7/+15 |
* | unlink() pid file on exit. ok deraadt@ |  moritz | 2005-12-02 | 1 | -1/+2 |
* | fix fd leak on SIGHUP after config change, spotted by Stephen Marley; ok avsm@ |  djm | 2005-06-06 | 1 | -1/+3 |
* | noo need for endpwent() here at all, ok theo |  henning | 2005-05-23 | 1 | -2/+1 |
* | setres[ug]id; ok deraadt@ |  djm | 2005-05-03 | 1 | -13/+6 |
* | portable code should not use that gcc __func__ specific junk when it is not needed |  deraadt | 2004-09-14 | 1 | -15/+17 |