summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-08-03xdr_pri_free() ansi; pvalchev okTheo de Raadt
2002-08-03in fact, no need for switch_exit() completely, cpu_exit() handles the reins ↵Michael Shalayeff
to the cpu_switch and basta!
2002-08-03reorder stack_alloc() and add a commentMichael Shalayeff
2002-08-03store 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-03some more opt and diagnostic checks in set/remrunqueueMichael Shalayeff
2002-08-03opt {set,rem}runqueue a littlebitMichael Shalayeff
2002-08-03no 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-03u could get a little higherMichael Shalayeff
2002-08-03rework boot() w/o a gotoMichael Shalayeff
2002-08-03we do not use _c_label() evenMichael Shalayeff
2002-08-03hppa stub, from miodMichael Shalayeff
2002-08-03register -> intMarco S Hyman
2002-08-03Correct RA82 disktab alias. Spotted by Fred van Kempen.Hugh Graham
2002-08-03Don't depend on curproc, pass the proc * down to the functions that need it ↵Jason Wright
(fmovr/fmovcc).
2002-08-03check return value from read; from thorstenJakob Schlyter
2002-08-03use getifaddrs, not SIOCGIFCONF.Jun-ichiro itojun Hagino
2002-08-03spell 'debugging' correctly with double 'g' (in comments)Peter Valchev
2002-08-03various KNF and code cleanup/simplification, parts checked by millert/deraadtPeter Valchev
2002-08-03fix a comment: libdl no longer exists; explain ELF_TOOLCHAINPeter 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-02the kerberos people can bite me. or enable kerberos themselves if theyTheo de Raadt
really want this. secure by default, and as i say, bite me. millert and markus and miod ok
2002-08-02Change 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-02no rpc by defaultTheo de Raadt
2002-08-02o 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-02replace RSA_verify with our own version and avoid the OpenSSL ASN.1 parserMarkus Friedl
for authentication; ok deraadt/djm
2002-08-02_sshagnt will be used to secure ssh-agent(1) moreTheo de Raadt
2002-08-02typo; from openssl cvsMarkus Friedl
2002-08-02diff is u_int (2x); ok deraadt/provosMarkus Friedl
2002-08-02More possible int overflows found by Silvio Cesare.Todd C. Miller
ibcs2_stat.c one OK by provos@
2002-08-02Check inet_aton() failure with == 0, not == -1; millert@ ok.Aaron Campbell
2002-08-02registers should be volatile, also add yet more register defnsJason Wright
2002-08-02Do correct bounds checking in get/set/put cmap routines. A few ofTodd C. Miller
these check were already OK but have been modified for consistency. Problem found by Silvio Cesare.
2002-08-02In hpux_sys_getcontext(), check for len <= 0 and return EINVAL.Todd C. Miller
Noted by Silvio Cesare
2002-08-02note that .ssh/environment is only read whenMarco S Hyman
allowed (PermitUserEnvironment in sshd_config). OK markus@
2002-08-02Change mm_zalloc() sanity checks to be more in line with whatTodd C. Miller
we do in calloc() and add a check to monitor_mm.c. OK provos@ and markus@
2002-08-02Mention CRL support, tag and default value.Hakan Olsson
2002-08-02CRL support for isakmpd. From <Thomas.Walpuski@gmx.net> with some minorHakan Olsson
modifications by me. ok niklas@.
2002-08-022 missing #includesHenning Brauer
2002-08-02add string for cputype (bad art =)Jason Wright
2002-08-02whitespaceJason Wright
2002-08-02performance improvement, reduces number of ioctl callsNiels Provos
2002-08-02prevent integer overflow by verifying that ua.num is not too large.Nathan Binkert
ok niels, millert, art
2002-08-01Fix handling of 0-length RPC fragmentsConstantine Sapuntzakis
2002-08-01utmp.h not neededTheo de Raadt
2002-08-01correctly separate execve argv arguments. increase buffer size forNiels Provos
get_string
2002-08-01the last component in a filename for unlink may be a symlinkNiels Provos
2002-08-01whoops, last write tracker should be updated on every write to avoid the ↵Jason Wright
burst write problem on 7811.
2002-08-01add support for mapping interrupts.Jason Wright
2002-08-01Limit max file size based on PAGE_SIZE. Even though ffs can handleTodd 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-01knf and minor tweeking from thorstenJakob Schlyter