Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-06-23 | uid_t and gid_t are unsigned | Theo de Raadt | |
2002-06-19 | stretch some ugly while(); | Theo de Raadt | |
2002-06-14 | spelling; from Brian Poole <raj@cerias.purdue.edu> | Todd T. Fries | |
2002-06-13 | Fixed some lpd bugs while on the plane from Calgary: | Todd C. Miller | |
o mark fatal() as __dead o add SIGINT to the signal mask when installing abort() as a handler. We can end up in abortpr() due to several different signals and since abortpr() kill()s itself with SIGINT we need to explicately protect against the current process receiving SIGINT while in abortpr() o Don't leak the lock fd to children spawned by lpd o Close the lock file (and thus unlocke immediately in abortpr(). Otherwise, if there is an output filter the lock file only gets closed after we finish waiting for the output filter to die. This causes a race condition in lprm such that the per-printer daemon does not get restarted when lprm kills the active job (noticed during c2k2 with the mp3 printer spool ;-) o Open the printcap file with privs raised just in case it is not world-readable. | |||
2002-06-11 | lprm needs to be setuid daemon after all | Todd C. Miller | |
2002-06-09 | Better fix for correct queue printing when things have been moved around. | Todd C. Miller | |
2002-06-09 | Don't print jobs in transit to a remote queue as being "active" | Todd C. Miller | |
2002-06-09 | Convert remaining K&R function headers to ANSI | Todd C. Miller | |
2002-06-09 | o Kill "garbage" global (unused) | Todd C. Miller | |
o Kill "rank" global (doesn't need to be global) o Make inform() static (local to displayq.c) o Pass in rank to inform() based on index within sorted mtime array o Simplify compar() | |||
2002-06-08 | o Replace some hard-coded octal constants w/ S_I* | Todd C. Miller | |
o Remove some unneeded casts to char * when calling free() | |||
2002-06-08 | use the dirfd macro instead of reaching into the DIR and pulling out dd_fd | Todd C. Miller | |
2002-06-08 | make this actually compile | Todd C. Miller | |
2002-06-08 | Force lpd socket to be mode 0660, group daemon | Todd C. Miller | |
2002-06-08 | Remove some debugging code | Todd C. Miller | |
2002-06-08 | Remove setuid root from lp*. lpr needs to be setuid daemon so the | Todd C. Miller | |
files it creates are not owned by the user spooling them but the others (lpc, lpq, lprm) can get away with setgid daemon. lpd runs as user daemon for most things, only changing its uid to 0 for things that must be done as root. For the time being, don't require connections to come from a reserved port since lpq/lpr/lprm can't acquire that w/o setuid root. In the near future we will have a mechanism for select non-root processes to grab reserved ports. The upshot of this is that spool directories must be writable by group daemon and the files within the spool dirs must be owned by daemon. | |||
2002-05-28 | Repair remote printing; maxfd was not set correctly for remote connections. | Todd C. Miller | |
2002-05-28 | Remove useless sigaddset() | Todd C. Miller | |
2002-05-22 | unlink lpd.pid if killed by a signal | Todd C. Miller | |
2002-05-22 | Use O_EXLOCK in open() instead of flock() to eliminate a potential locking | Todd C. Miller | |
race on the pid file. | |||
2002-05-20 | Pull in useful bits from NetBSD and make our lp* easier to diff and | Todd C. Miller | |
do some minor cleanup of my own: o IPv6 support o ANSI function headers o use getopt() o synce usage() with man pages o passes -Wall on both 32bit and 64bit platforms o add an option to set the max number of children lpd will fork off o add an lpd option to bind to specific addresses instead of INADDR_ANY. o allow user to specify how long to wait for a connection to remote servers o more strlcpy() and snprintf() usage o Use FOO_FILENO constants instead of hard-coding 0-2 o Add some keeps to man the page SYNOPSIS to avoid options being split | |||
2002-05-18 | Update paths from 4.3BSD to 4.4BSD; partially from NetBSD | Todd C. Miller | |
2002-02-24 | getc, getchar, etc return an int, not a char | Peter Valchev | |
2002-02-19 | We live in an ANSI C world. Remove lots of gratuitous #ifdef __STDC__ cruft. | Todd C. Miller | |
2002-02-17 | Manual cleanup of remaining userland __P use (excluding packages maintained ↵ | Todd C. Miller | |
outside the tree) | |||
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ↵ | Todd C. Miller | |
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically. | |||
2002-02-13 | When you give command examples and etc., in a manual page prefix them with: | Mike Pechkin | |
$ command or # command deraadt@ ok | |||
2002-01-21 | s/deamon/daemon/ | Theo de Raadt | |
2002-01-07 | Revert local changes that should not have been committed | Todd C. Miller | |
2002-01-07 | To disable a SIGCHLD signal handler use SIG_DFL, *not* SIG_IGN | Todd C. Miller | |
which now has a different meaning. | |||
2001-12-06 | use err/warn and friends instead of printf/exit. | Eric Jackson | |
also, remove fatal2() which is just errx anyway. millert@ ok | |||
2001-11-27 | Fix check for '/' in cf file and change the check for '/' in df file | Todd C. Miller | |
for consistency. Based on a patch from Sebastian Krahmer. | |||
2001-11-23 | use the same siginterrupt() trick in lpc(1) as in timedc(1). we have to hack | Theo de Raadt | |
a global into the other programs since they share some source. | |||
2001-11-19 | only slight fixes needed in signal handlers | Theo de Raadt | |
2001-11-19 | use _exit in signal handler | Theo de Raadt | |
2001-11-01 | displayq to honor the terminal width; millert@ ok | Michael Shalayeff | |
2001-10-29 | MacOS 10.1 lpr clients send a format character of "o" to indicate ↵ | Theo de Raadt | |
postscript; jabley@automagic.org | |||
2001-09-19 | occured->occurred | Mike Pechkin | |
idea from deraadt@ via NetBSD millert@ ok p.s. Next commit will fix a typo in the sys/ | |||
2001-09-05 | do not select(20, ...) | Theo de Raadt | |
2001-09-04 | Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their ↵ | Todd C. Miller | |
POSIX counterparts. | |||
2001-08-30 | When using dup2() to make a socket be stdout, first check that it | Todd C. Miller | |
is not already stdout (fd 1). Otherwise we end up closing stdout which is not the intention. Also use STDOUT_FILENO instead of 1. From a conversation with huntting@glarp.com. | |||
2001-08-30 | o kill register | Todd C. Miller | |
o add const to rcsid and copyright strings o placate -Wall | |||
2001-08-30 | Better buffer lengths (MAXFOO and FOO_MAX) based on a patch from | Todd C. Miller | |
ianm@cit.uws.edu.au. | |||
2001-08-30 | Use NAME_MAX, not MAXPATHLEN for buffer sizes since they are not | Todd C. Miller | |
full paths (cannot contain a slash). From discussion with drosih@rpi.edu | |||
2001-08-29 | Fix buffer oflow reading from queue file. While we are at it, crank | Todd C. Miller | |
the size of buffers that can hold filenames to MAXPATHLEN. | |||
2001-07-09 | correct type on last arg to execl(); nordin@cse.ogi.edu | Theo de Raadt | |
2001-06-25 | Fix a bunch of one-byte possible overflows | Paul Janzen | |
2001-06-25 | A little more careful with buffers, only relevant if /etc/printcap was set | Paul Janzen | |
up insanely wrong. | |||
2001-06-22 | use strlcpy vs strncpy+a[len-1]='\0' | lebel | |
2001-04-05 | another euid mixup; wiz@danbala.ifoer.tuwien.ac.at | Theo de Raadt | |
2001-04-04 | missung euid swapout; j@ida.interface-business.de | Theo de Raadt | |