Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-12 | Swap args to calloc(3) so they are in the correct order; art@ ok. | Aaron Campbell | |
2002-08-11 | enable COMPLEX_HISTORY. sh/ksh history will now work | Marco S Hyman | |
as described in the man page. OK millert@ | |||
2002-08-08 | no \n in err | Niels Provos | |
2002-08-08 | if getcwd fails and we continue dont restcwd. | Niels Provos | |
2002-08-07 | deal better with interrupted system calls | Niels Provos | |
2002-08-07 | typo | Vincent Labrecque | |
ok provos@ | |||
2002-08-05 | allow to specify an alternate directory for policy loading and writing | Niels Provos | |
2002-08-05 | uid and gid are not guaranteed to be aligned on a register_t sized boundary. | Jason Wright | |
Use a temporary location and then copy the value into place. provos ok. | |||
2002-08-05 | increase buffer size for getstring, useful for execve arguments. | Niels Provos | |
intercept_filename deals better with symlinked last component lookups. change some translations to use unlinkname. | |||
2002-08-05 | different translation for lstat | Niels Provos | |
2002-08-04 | keep track of ppid and allow matching rules to be logged via syslog. | Niels Provos | |
2002-08-03 | register -> int | Marco S Hyman | |
2002-08-02 | performance improvement, reduces number of ioctl calls | Niels Provos | |
2002-08-01 | utmp.h not needed | Theo de Raadt | |
2002-08-01 | correctly separate execve argv arguments. increase buffer size for | Niels Provos | |
get_string | |||
2002-08-01 | the last component in a filename for unlink may be a symlink | Niels Provos | |
2002-07-31 | bring in doc updates from netbsd. niels ok | Jun-ichiro itojun Hagino | |
2002-07-30 | obey section order to mandoc. sync with netbsd. | Jun-ichiro itojun Hagino | |
2002-07-30 | use Nm | Jun-ichiro itojun Hagino | |
2002-07-30 | sometimes no-return syscalls (execve) emit errno < 0. ignore them. | Jun-ichiro itojun Hagino | |
2002-07-30 | sync function decl and prototype (static-ness) | Jun-ichiro itojun Hagino | |
2002-07-30 | avoid using same variable name for global and auto variable. | Jun-ichiro itojun Hagino | |
2002-07-30 | oops, i've been looking at older tree.h | Jun-ichiro itojun Hagino | |
2002-07-30 | SPLAY_INSERT is a void function | Jun-ichiro itojun Hagino | |
2002-07-30 | sync prototype for yyerror(). | Jun-ichiro itojun Hagino | |
2002-07-30 | include filter.h, dont' duplicate prototype | Jun-ichiro itojun Hagino | |
2002-07-30 | extern decls should be outside of function. | Jun-ichiro itojun Hagino | |
2002-07-30 | solve a problem with realpath when the last component of the path is | Niels Provos | |
a directory without S_IXUSR; tested by me and dugsong. | |||
2002-07-24 | Fix a bug I inadvertanly introduced while fixing the last problem in here. | Todd C. Miller | |
The item list really did want to be zero-filled since free_items() relies on this to find the end point. However, this is really pretty dumb since we *know* how many items are in the list. This highlights the elusive bug I was trying to fix--free_items() expects the list to be NULL-terminated which was not the case if the list was full. The fix is to simply pass free_items() the number of elements in the list. | |||
2002-07-22 | add seqnr to message from kernel, userland needs to quote correct seqnr. | Niels Provos | |
avoids problems where tsleep has been interrupted by a signal. | |||
2002-07-20 | compile on sparc64 | Niels Provos | |
2002-07-19 | you can't always cast pointer to int; use intptr_t. | Jun-ichiro itojun Hagino | |
2002-07-19 | constify, have missing prototypes, use pedantic compilation options. | Jun-ichiro itojun Hagino | |
niels ok | |||
2002-07-19 | Fix format bug with ps -o group. ok deraadt@ | Dale Rahn | |
2002-07-17 | Pass the size of the name buffer to rep_name() for use with strlcpy(). | Christian Weisgerber | |
Fixes truncation of replacement string. ok millert@ | |||
2002-07-17 | on detach or kill do not do argument replacement | Niels Provos | |
2002-07-16 | link translation for linux emulation, too. | Niels Provos | |
2002-07-16 | translation for link system call | Niels Provos | |
2002-07-16 | internal uid/gid tracking. permit can not detach systrace, useful for | Niels Provos | |
sshd. | |||
2002-07-15 | Remove 1024 directory entry limit for tenex-style file completion. | Todd C. Miller | |
This fixes a mysterious segv when doing file completion twice in directories w/ more than 1024 files. | |||
2002-07-14 | argv translation for exeve | Niels Provos | |
2002-07-13 | uname translation | Niels Provos | |
2002-07-13 | use correct length for PF_LOCAL sockets; not all applications fill in | Niels Provos | |
sa_len | |||
2002-07-12 | some clean up. install argument replacements only if we are going to | Niels Provos | |
permit the system call. translate some set[e]{g,u}id calls | |||
2002-07-11 | cleanup | Niels Provos | |
2002-07-10 | make it work with chroot | Niels Provos | |
2002-07-10 | add fchmod translation | Niels Provos | |
2002-07-10 | do not close fds in daemon. | Niels Provos | |
2002-07-09 | allow systrace to run in the background if possible so that the executed | Niels Provos | |
process gets the terminal correctly and exit status reporting works; based on a diff from atatat@atatdot.net from netbsd. | |||
2002-07-09 | support for system call aliasing. stat/fstat/readlink/access etc... gets | Niels Provos | |
grouped into fsread, unlink/rmdir/mkdir goes to fswrite. open switches back between fsread and fswrite depending on oflags parameter. |