Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-03 | xdr_pri_free() ansi; pvalchev ok | Theo de Raadt | |
2002-08-03 | in fact, no need for switch_exit() completely, cpu_exit() handles the reins ↵ | Michael Shalayeff | |
to the cpu_switch and basta! | |||
2002-08-03 | reorder stack_alloc() and add a comment | Michael Shalayeff | |
2002-08-03 | store md_regs ptr before interrupts are enabled on syscall, do not store the ↵ | Michael Shalayeff | |
frame pointer on the stack on traps, just offset back from sp upon return | |||
2002-08-03 | some more opt and diagnostic checks in set/remrunqueue | Michael Shalayeff | |
2002-08-03 | opt {set,rem}runqueue a littlebit | Michael Shalayeff | |
2002-08-03 | no need for a stack on exit() since u gets freed in a different context, ↵ | Michael Shalayeff | |
also s/P_MD/P_MD_REGS | |||
2002-08-03 | u could get a little higher | Michael Shalayeff | |
2002-08-03 | rework boot() w/o a goto | Michael Shalayeff | |
2002-08-03 | we do not use _c_label() even | Michael Shalayeff | |
2002-08-03 | hppa stub, from miod | Michael Shalayeff | |
2002-08-03 | register -> int | Marco S Hyman | |
2002-08-03 | Correct RA82 disktab alias. Spotted by Fred van Kempen. | Hugh Graham | |
2002-08-03 | Don't depend on curproc, pass the proc * down to the functions that need it ↵ | Jason Wright | |
(fmovr/fmovcc). | |||
2002-08-03 | check return value from read; from thorsten | Jakob Schlyter | |
2002-08-03 | use getifaddrs, not SIOCGIFCONF. | Jun-ichiro itojun Hagino | |
2002-08-03 | spell 'debugging' correctly with double 'g' (in comments) | Peter Valchev | |
2002-08-03 | various KNF and code cleanup/simplification, parts checked by millert/deraadt | Peter Valchev | |
2002-08-03 | fix a comment: libdl no longer exists; explain ELF_TOOLCHAIN | Peter Valchev | |
2002-08-03 | - don't use unexistant as(1) .weakext pseudo; found by todd@ | Federico G. Schwindt | |
- remove unused code. mickey@ ok. libc cross-compiling (i386->hppa) reported to work now. | |||
2002-08-02 | the kerberos people can bite me. or enable kerberos themselves if they | Theo de Raadt | |
really want this. secure by default, and as i say, bite me. millert and markus and miod ok | |||
2002-08-02 | Change value of LOGIN_DEFSTYLE from "krb4-or-pwd" to just "passwd". | Todd C. Miller | |
If there is no login.conf or it is corrupt we don't want to make any assumptions about kerberos. By request of deraadt@ | |||
2002-08-02 | no rpc by default | Theo de Raadt | |
2002-08-02 | o Instead of passing "*system*" as the fname to process_crontab() | Todd C. Miller | |
for the system crontab file, pass a NULL pointer instead. This prevents someone from creating a "*system*" file in the tabs directory that acts as an alternate root crontab. o Fix the check for tab file ownership. This really only affected the system crontab file, which must not be owned by root. deraadt@ OK | |||
2002-08-02 | replace RSA_verify with our own version and avoid the OpenSSL ASN.1 parser | Markus Friedl | |
for authentication; ok deraadt/djm | |||
2002-08-02 | _sshagnt will be used to secure ssh-agent(1) more | Theo de Raadt | |
2002-08-02 | typo; from openssl cvs | Markus Friedl | |
2002-08-02 | diff is u_int (2x); ok deraadt/provos | Markus Friedl | |
2002-08-02 | More possible int overflows found by Silvio Cesare. | Todd C. Miller | |
ibcs2_stat.c one OK by provos@ | |||
2002-08-02 | Check inet_aton() failure with == 0, not == -1; millert@ ok. | Aaron Campbell | |
2002-08-02 | registers should be volatile, also add yet more register defns | Jason Wright | |
2002-08-02 | Do correct bounds checking in get/set/put cmap routines. A few of | Todd C. Miller | |
these check were already OK but have been modified for consistency. Problem found by Silvio Cesare. | |||
2002-08-02 | In hpux_sys_getcontext(), check for len <= 0 and return EINVAL. | Todd C. Miller | |
Noted by Silvio Cesare | |||
2002-08-02 | note that .ssh/environment is only read when | Marco S Hyman | |
allowed (PermitUserEnvironment in sshd_config). OK markus@ | |||
2002-08-02 | Change mm_zalloc() sanity checks to be more in line with what | Todd C. Miller | |
we do in calloc() and add a check to monitor_mm.c. OK provos@ and markus@ | |||
2002-08-02 | Mention CRL support, tag and default value. | Hakan Olsson | |
2002-08-02 | CRL support for isakmpd. From <Thomas.Walpuski@gmx.net> with some minor | Hakan Olsson | |
modifications by me. ok niklas@. | |||
2002-08-02 | 2 missing #includes | Henning Brauer | |
2002-08-02 | add string for cputype (bad art =) | Jason Wright | |
2002-08-02 | whitespace | Jason Wright | |
2002-08-02 | performance improvement, reduces number of ioctl calls | Niels Provos | |
2002-08-02 | prevent integer overflow by verifying that ua.num is not too large. | Nathan Binkert | |
ok niels, millert, art | |||
2002-08-01 | Fix handling of 0-length RPC fragments | Constantine Sapuntzakis | |
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-08-01 | whoops, last write tracker should be updated on every write to avoid the ↵ | Jason Wright | |
burst write problem on 7811. | |||
2002-08-01 | add support for mapping interrupts. | Jason Wright | |
2002-08-01 | Limit max file size based on PAGE_SIZE. Even though ffs can handle | Todd C. Miller | |
files up to 16TB, we do limit the max file to 2^31 pages to prevent overflow of a 32-bit unsigned int. The buffer cache has its own checks but a little added paranoia never hurts. Adapted from a patch in FreeBSD. | |||
2002-08-01 | knf and minor tweeking from thorsten | Jakob Schlyter | |