aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_ktrace.c
Commit message (Expand)AuthorAgeFilesLines
* - When disabling ktracing on a process, free any pending requests thatJohn Baldwin2010-10-211-24/+102
* Fix a whitespace nit and remove a questioning comment. STAILQ_CONCAT()John Baldwin2010-08-191-2/+2
* Keep the process locked when calling ktrops() or ktrsetchildren() insteadJohn Baldwin2010-08-171-12/+13
* Add descriptions to a handful of sysctl nodes.Gavin Atkinson2010-08-091-1/+2
* - Document layout of KTR_STRUCT payload in a comment.John Baldwin2010-07-141-6/+4
* - Fix several off-by-one errors when using MAXCOMLEN. The p_comm[] andJohn Baldwin2009-10-231-1/+6
* Move "options MAC" from opt_mac.h to opt_global.h, as it's now in GENERICRobert Watson2009-06-051-1/+0
* Remove VOP_LEASE and supporting functions. This hasn't been used sinceRobert Watson2009-04-101-1/+0
* Add a new type of KTRACE record for sysctl(3) invocations. It uses theJohn Baldwin2009-03-111-1/+39
* Fix a credential reference leak. [1]Bjoern A. Zeeb2008-12-031-9/+16
* This patch adds a new ktrace(2) record type, KTR_STRUCT, whose payloadDag-Erling Smørgrav2008-02-231-1/+31
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-2/+2
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-1/+1
* A bunch more files that should probably print out a thread nameJulian Elischer2007-11-141-1/+1
* Merge first in a series of TrustedBSD MAC Framework KPI changesRobert Watson2007-10-241-1/+1
* Partially revert the previous change. I failed to notice that whereJohn Baldwin2007-08-291-2/+0
* Improve the ktrace locking somewhat to reduce overhead:John Baldwin2007-06-131-0/+2
* Eliminate now-unused SUSER_ALLOWJAIL arguments to priv_check_cred(); inRobert Watson2007-06-121-3/+2
* Revert UF_OPENING workaround for CURRENT.Konstantin Belousov2007-05-311-1/+1
* Further system call comment cleanup:Robert Watson2007-03-051-6/+0
* Remove 'MPSAFE' annotations from the comments above most system calls: allRobert Watson2007-03-041-10/+0
* Do not do a vn_close for all references to the ktraced file if we areMike Pritchard2007-02-131-10/+13
* Use FOREACH_PROC_IN_SYSTEM instead of using its unrolled form.Xin LI2007-01-171-2/+2
* ktrace_cv is no longer used - removeKip Macy2006-12-171-2/+0
* Sweep kernel replacing suser(9) calls with priv(9) calls, assigningRobert Watson2006-11-061-2/+4
* Complete break-out of sys/sys/mac.h into sys/security/mac/mac_framework.hRobert Watson2006-10-221-1/+2
* Trim an obsolete comment. ktrgenio() stopped doing crazy gymnastics whenJohn Baldwin2006-07-311-9/+0
* Use suser_cred(9) instead of checking cr_uid directly.Pawel Jakub Dawidek2006-06-271-1/+1
* - Conditionalize Giant around VFS operations for ALQ, ktrace, andJohn Baldwin2006-03-281-15/+15
* - Lock access to vrele() with VFS_LOCK_GIANT() rather than mtx_lock(&Giant).Jeff Roberson2006-01-301-2/+5
* Fix a vnode reference leak in the ktrace code. We always grab a referenceJohn Baldwin2006-01-231-0/+1
* In ktr_getrequest(), acquire ktrace_mtx earlier -- while the raceRobert Watson2005-11-141-2/+3
* Moderate rewrite of kernel ktrace code to attempt to generally improveRobert Watson2005-11-131-91/+191
* Reuse ktr_unused field in ktr_header structure as ktr_tid; populateRobert Watson2005-11-011-1/+1
* Replace ktr_buffer pointer in struct ktr_header with a ktr_unusedRobert Watson2005-11-011-9/+11
* Close another information leak in ktrace(2): one was able to find activePawel Jakub Dawidek2005-06-241-2/+16
* Add missing unlock.Pawel Jakub Dawidek2005-06-211-1/+3
* Remove process information leak from inside a jail, whenPawel Jakub Dawidek2005-06-091-0/+3
* Make a SYSCTL_NODE staticPoul-Henning Kamp2005-02-101-1/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This isColin Percival2004-07-261-1/+1
* Clean up and wash struct iovec and struct uio handling.Poul-Henning Kamp2004-07-101-2/+6
* Remove advertising clause from University of California Regent's license,Warner Losh2004-04-051-4/+0
* Replace the ktrace queue's semaphore with a condition variable instead asJohn Baldwin2004-02-261-5/+5
* Reduce gratuitous includes: don't include jail.h if it's not needed.Robert Watson2004-01-211-1/+0
* Bound the number of iterations a thread can perform insideJoseph Koshy2003-11-111-6/+8
* Have utrace(2) return ENOMEM if malloc() fails. Document this errorJoseph Koshy2003-11-111-1/+1
* Consistently use the BSD u_int and u_short instead of the SYSV uint andJohn Baldwin2003-08-071-10/+10
* The ktrace mutex does not need to be locked around the post of the ktraceJohn Baldwin2003-08-071-1/+1
* Add fdidx argument to vn_open() and vn_open_cred() and pass -1 throughout.Poul-Henning Kamp2003-07-271-1/+1