summaryrefslogtreecommitdiff
path: root/sys/kern
AgeCommit message (Collapse)Author
2002-07-20Instead of copying out the signal trampoline on top of the stack, createArtur Grabowski
an uvm aobj, copy out the signal trampoline into it and share that page among all processes for the same emulation. This also requires us to actually be able to tell signal code where the trampoline is located, so introduce a new field in struct proc - p_sigcode that is a pointer to sigcode. This allows us to remove all the ugly calculations of the signal trampoline address done in every sendsig function in the tree (that's why so many files are changed). Tested by various people. ok deraadt@
2002-07-16minor formatting.Artur Grabowski
2002-07-15repair tags building (due to obj dirs in /sys)Michael Shalayeff
2002-07-14be more permissive, and let close relatives do SIGALRMTheo de Raadt
2002-07-12Detect the case where we LK_RELEASE a lock when noone is holding it.Artur Grabowski
2002-07-12Change the locking on the mountpoint slightly. Instead of using mnt_lockArtur Grabowski
to get shared locks for lookup and get the exclusive lock only with LK_DRAIN on unmount and do the real exclusive locking with flags in mnt_flags, we now use shared locks for lookup and an exclusive lock for unmount. This is accomplished by slightly changing the semantics of vfs_busy. Old vfs_busy behavior: - with LK_NOWAIT set in flags, a shared lock was obtained if the mountpoint wasn't being unmounted, otherwise we just returned an error. - with no flags, a shared lock was obtained if the mountpoint was being unmounted, otherwise we slept until the unmount was done and returned an error. LK_NOWAIT was used for sync(2) and some statistics code where it isn't really critical that we get the correct results. 0 was used in fchdir and lookup where it's critical that we get the right directory vnode for the filesystem root. After this change vfs_busy keeps the same behavior for no flags and LK_NOWAIT. But if some other flags are passed into it, they are passed directly into lockmgr (actually LK_SLEEPFAIL is always added to those flags because if we sleep for the lock, that means someone was holding the exclusive lock and the exclusive lock is only held when the filesystem is being unmounted. More changes: dounmount must now be called with the exclusive lock held. (before this the caller was supposed to hold the vfs_busy lock, but that wasn't always true). Zap some (now) unused mount flags. And the highlight of this change: Add some vfs_busy calls to match some vfs_unbusy calls, especially in sys_mount. (lockmgr doesn't detect the case where we release a lock noone holds (it will do that soon)). If you've seen hangs on reboot with mfs this should solve it (I repeat this for the fourth time now, but this time I spent two months fixing and redesigning this and reading the code so this time I must have gotten this right).
2002-07-12- Add a flags argument to dohooks.Artur Grabowski
The flag can be either HOOK_REMOVE or HOOK_REMOVE|HOOK_FREE. o HOOK_REMOVE removes the hook from the list before executing it. o HOOK_FREE frees the hook after that. - Let dostartuphooks use HOOK_REMOVE|HOOK_FREE so we can reclaim the memory. - Let doshutdownhooks use HOOK_REMOVE so that when some shutdown hook panics (they do that all the #@$%! time these days) we don't loop for ever. Don't HOOK_FREE, it doesn't matter and I don't want to add another possible panic condition for shutdown hooks. - Actually free the pointer we're throwing away in hook_disestablish (I wonder how much memory this has leaked over the years).
2002-07-12Fix vm -> uvm in a comment.Artur Grabowski
2002-07-11Make sure to protect ttypend with spltty all the time.Artur Grabowski
Implemented with paranoia.
2002-07-06syncThomas Nordin
2002-07-06Remove kernel support for NTP. ok deraadt@ and tholo@Thomas Nordin
2002-07-03Change all variables definitions (int foo) in sys/sys/*.h to variableMiod Vallat
declarations (extern int foo), and compensate in the appropriate locations.
2002-07-02use hash.h for nfs_hash as well as namei's hashEric Jackson
ok art@ costa@
2002-07-01Don't abuse VM_PROT_ALL. Use VM_PROT_READ|VM_PROT_WRITE here.Artur Grabowski
We'll never want to exec code in malloc mappings.
2002-06-29kqfilter for the log. niels said i can commit it if it worksMichael Shalayeff
and i converted syslog to libevent and it works now (;
2002-06-28Use %b and print the bitmask of the flags in the debugging message for the ↵Jason Wright
extent.
2002-06-27do not permit ktrace on P_SUGID; millert okTheo de Raadt
2002-06-27KNFTheo de Raadt
2002-06-24Redo the logic of reading of proc arguments to be more readable.Artur Grabowski
kjell@ says that it fixes his problems, noone else responded.
2002-06-16When processing the KERN_VNODE sysctl, the kernel builds a packed structure,Miod Vallat
while pstat(8) expects a C structure abiding the regular structure packing rules. This caused pstat -v to break on powerpc. Unbreak the confusion by defining the structure in a common header file, and having the kernel use it. ok millert@ deraadt@
2002-06-14spelling; from Brian Poole <raj@cerias.purdue.edu>Todd T. Fries
2002-06-11kernel changes to make asymmetric crypto work in userlandBob Beck
- modify getfeat to return something more useful to us on devices (like lofn and everything else until jason fixes it) that can't do rsa stuff, etc and can only do mod_exp.. - error handling fixes so we correctly fail to software when we can't deal with a particular key size - add sysctl kern.userasymcrypto to turn on/off userland asymmetric crypto via /dev/crypto - 1 == on, 0 == off, default is off
2002-06-11Protect mi_switch with splstatclock.Artur Grabowski
2002-06-11ANSIfyArtur Grabowski
2002-06-11Remove unnecessary spllowersoftclock(). ok art@Thomas Nordin
2002-06-11splvm, not splimp.Artur Grabowski
2002-06-11splvm, not splimpArtur Grabowski
2002-06-11splassert where necessaryArtur Grabowski
2002-06-11splassert(IPL_TTY) where comments tell us we shouldArtur Grabowski
2002-06-11splassert(IPL_STATCLOCK) mi_switchArtur Grabowski
2002-06-11splassert where neededArtur Grabowski
2002-06-10Grammar.Thomas Nordin
2002-06-09add struct pstats to struct eprocArtur Grabowski
2002-06-09Use LIST_FOREACH.Artur Grabowski
2002-06-09KERN_MBSTATAngelos D. Keromytis
2002-06-09ANSIfy (started as some other change that just ran away).Artur Grabowski
2002-06-09different magics for malloc and pool, art@ okNiklas Hallqvist
2002-06-08TTYCOUNT and NUMVNODES.Angelos D. Keromytis
2002-06-08Add read-only KERN_NFILES (number of open files).Angelos D. Keromytis
2002-06-08Sysctl for getting process arguments and environment.Artur Grabowski
2002-06-08Use ltsleep in vfs_busy.Artur Grabowski
2002-06-07Change addupc_intr to not use fuswintr and suswintr to update the profilingArtur Grabowski
info. Since we only use it to profile processes in user mode and there is no way to get back user mode without going past the AST that will write out the profiling info in a context where copyout works. Sitting in my tree for ages. Reviewed and with some suggestions from nordin@
2002-06-07Simplify so that we can remove CLKF_BASEPRI() and spllowersoftclock()Thomas Nordin
infrastructure. ok art@ and miod@
2002-06-06Fix *documentation*: one arg of the ktrace(2) is pid_t not int, found whileMike Pechkin
have fun w/ pid_t cleanups. millert@ ok
2002-06-03compatiblity -> compatibilityTheo de Raadt
decriptor -> descriptor authentciated -> authenticated transmition -> transmission
2002-05-27if_attach() gets called before domaininit(). scan all interfaces for if_afdataJun-ichiro itojun Hagino
initialization after domaininit().
2002-05-24protect more of the bookkeeping variables with splbio.Artur Grabowski
2002-05-24typoArtur Grabowski
2002-05-24cluster_callback is a b_iodone handler. Since it calls functionsArtur Grabowski
that assume splbio, splassert(IPL_BIO) in it.
2002-05-23In sys_accept don't FILE_SET_MATURE the file if we got an error and we've ↵Artur Grabowski
freed it. Noticed by enami@netbsd in a recent discussion on tech-kern@netbsd. Thanks to miod@ for helping me understand my code and realize that what the discussion was originally about (a diff by itojun@) didn't apply to us because I tweaked the semantics of closef() to solve the problem automagically for us (and I forgot about it). miod@ ok.