Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-03-02 | Add noatime option to not update atime on files in a filesystem (unless | Todd C. Miller | |
ctime or mtime has changed). Useful for laptops and news servers. | |||
1997-03-01 | Don't dereference a vnode pointer that is NULL | Thorsten Lockert | |
1997-03-01 | prevent warning about unused variable when NO_KMEMSTATS is in effect | kstailey | |
1997-02-28 | Moved IPsec socket state to the PCB. | Angelos D. Keromytis | |
1997-02-28 | New variables for system-wide security default levels. | Angelos D. Keromytis | |
1997-02-28 | IPsec socket API additions. | Angelos D. Keromytis | |
1997-02-26 | From tholo: Do not do strict POSIX offset checking on character devices. | Niklas Hallqvist | |
This fixes the problem of not being able to read kernel virtual memory on the alpha, thus breaking things like ps etc. | |||
1997-02-24 | OpenBSD tags | Niklas Hallqvist | |
1997-02-22 | Upodate to lite2 -- don't allow setting back the clock if securelevel > 0 | Todd C. Miller | |
1997-02-21 | shmdt before shmdt (in child) fix | Theo de Raadt | |
1997-02-21 | do not allow SO_SNDBUF/SO_RCVBUF len 0 | Theo de Raadt | |
1997-02-20 | IPSEC package by John Ioannidis and Angelos D. Keromytis. Written in | Theo de Raadt | |
Greece. From ftp.funet.fi:/pub/unix/security/net/ip/BSDipsec.tar.gz | |||
1997-02-18 | if a P_SUGIDEXEC proc execve()'s a non-set[ug]id program while running | Theo de Raadt | |
with uid/gid mismatches, P_SUGIDEXEC should persist (in case the environment has not been cleaned). pointed out by wietse@porcupine.org | |||
1997-02-18 | cp P_SUGID/P_SUGIDEXEC to child, doh; half from freebsd | Theo de Raadt | |
1997-02-14 | hide fsid in getfsstat too, clone of millert fix, problem spotted by bitblt | Theo de Raadt | |
1997-02-14 | round RLIMIT_STACK; problem spotted by jfw@jfwhome.funhousecom | Theo de Raadt | |
1997-02-13 | Don't expose f_fsid to non-root. | Todd C. Miller | |
1997-02-11 | Add fs_id support and random inode generation numbers for ffs. | Todd C. Miller | |
1997-02-06 | terminate copyinstr, copyoutstr full name; Don.Lewis@tsc.tdk.com | Theo de Raadt | |
1997-02-03 | hp300 needs device_register(), too. | Jason Downs | |
1997-02-02 | Prevent seeking to negative offsets when seeking from the end of a file; | Thorsten Lockert | |
noticed by Tim Newsham <newsham@aloha.net> | |||
1997-02-01 | add type & union sigval args to sendsig/trapsignal | Theo de Raadt | |
1997-02-01 | Correct early termination case of read clustering which could cause | Niklas Hallqvist | |
buffer cache poisoning when bufpages/nbuf is larger than 1. Also correct readahead amount calculation. Optimize page moving when buffers have excess pages. | |||
1997-01-27 | select subsystem si_pid becomes si_selpid, to not conflict against ↵ | Theo de Raadt | |
user/kernel siginfo si_pid #define | |||
1997-01-27 | add another parameter to trapsignal() and sendsig() -- fault addr to be | Theo de Raadt | |
delivered with in the siginfo information | |||
1997-01-27 | initial cut at SA_SIGINFO support | Theo de Raadt | |
1997-01-26 | Regen. | Jason Downs | |
1997-01-26 | Add lchown(2). | Jason Downs | |
1997-01-25 | Don't do disruptive time corrections if tick size is not integral; from | Thorsten Lockert | |
Dennis Ferguson (NetBSD PR #2788) | |||
1997-01-25 | Improve adjtime() for odd hz values; from Dennis Ferguson (NetBSD PR# 2787) | Thorsten Lockert | |
1997-01-25 | Changed my mind about where to do this. | dm | |
1997-01-25 | Only disclose generation number to root. | dm | |
1997-01-19 | asm -> __asm | briggs | |
1997-01-13 | Import compat_m68k4k from NetBSD | Niklas Hallqvist | |
1997-01-12 | Be more Posixly correct; from FreeBSD | Thorsten Lockert | |
1997-01-10 | Correct a panic condition hitting on machines with NBPG != ffs blocksize, | Niklas Hallqvist | |
plus having a large bufpages value compared to nbuf. | |||
1997-01-08 | If config-file is not starting with /, consider it to be a | Niklas Hallqvist | |
relative path. | |||
1997-01-05 | Remove lots of timer_state structs as they just ate memory and only a few was | Niklas Hallqvist | |
ever used. Now a single state is kept for net, tty and disk events resp. Also, call the randomness from disk_unbusy instead of biodone, as biodone gets a lot of virtual events (from virtual filesystems etc), and as a bonus: feed xfer time and size into the entropy pool too. | |||
1997-01-04 | spec_advlock() via lf_advlock() | kstailey | |
1997-01-02 | pulled out the duplicated, conditional code from both kern/vfs_syscalls.c | Michael Shalayeff | |
and compat/common/vfs_syscalls_43.c and placed a single copy of that code into miscfs/union/union_subr.c (seemed like a good place to put it, since it's union-fs related). as a side effect you can build unionfs in lkm. (netbsd pr#2950, Paul Goyette <paul@pgoyette.bdt.com>) | |||
1996-12-23 | use _{NLIST,KERN}_DO_{AOUT,ELF,ECOFF} to select binary types | Theo de Raadt | |
1996-12-22 | make spec_advlock() perform indirect call to lf_advlock() | kstailey | |
1996-12-19 | Really set column to 0 when outputting a carriage return... | Thorsten Lockert | |
1996-12-17 | Fix oversight in column handling with OCRNL enabled | Thorsten Lockert | |
1996-12-17 | Reset output column when outputting \r with ONLCR | Thorsten Lockert | |
1996-12-16 | Implement more tty flags for better portability from other systems: | Thorsten Lockert | |
XCASE - canonical input/output processing IUCLC - translate uppercase to lowercase on input OLCUC - translate lowercase to uppercase on output OCRNL - translate carriage return to newline on output ONOCR - do not output carriage return at column 0 ONLRET - newline performs carriage return function In addition the tty compatibility interface supports LCASE properly. Look at termios(4) for a more complete description of the above flags. | |||
1996-12-16 | uiomove not checked for failure; wpaul@skynet.ctr.columbia.edu | Theo de Raadt | |
1996-12-09 | Import extent manager from NetBSD | Niklas Hallqvist | |
1996-12-08 | -Wcast-qual happiness | Niklas Hallqvist | |
1996-12-06 | -Wcast-qual cleanup | Niklas Hallqvist | |