aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_ktrace.c
Commit message (Expand)AuthorAgeFilesLines
* ktrace: Use designated initializers for the data_lengths array.Jilles Tjoelker2014-06-061-15/+14
* Update kernel inclusions of capability.h to use capsicum.h instead; someRobert Watson2014-03-161-1/+1
* Fix panic in ktrcapfail() when no capability rights are passed.Pawel Jakub Dawidek2013-09-181-2/+9
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-4/+4
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-221-29/+6
* Include the associated wait channel message for context switch ktraceJohn Baldwin2012-04-201-1/+6
* Add new ktrace records for the start and end of VM faults. This givesJohn Baldwin2012-04-051-0/+40
* Fix found places where uio_resid is truncated to int.Konstantin Belousov2012-02-211-1/+1
* - Fix ktrace leakage if error is setEitan Adler2011-12-081-1/+1
* Revisit the capability failure trace points. The initial implementationDag-Erling Smørgrav2011-10-181-1/+3
* Add a new trace point, KTRFAC_CAPFAIL, which traces capability checkDag-Erling Smørgrav2011-10-111-0/+21
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-2/+2
* Fix several places to ignore processes that are not yet fully constructed.John Baldwin2011-04-061-1/+2
* Style(9) fix.Dmitry Chagin2011-03-051-2/+2
* Partially reworked r219042.Dmitry Chagin2011-03-051-29/+21
* Introduce preliminary support of the show description of the ABI ofDmitry Chagin2011-02-251-8/+72
* ktrace_resize_pool() locking slightly reworked:Dmitry Chagin2011-02-251-18/+16
* Add some FEATURE macros for various features (AUDIT/CAM/IPC/KTR/MAC/NFS/NTP/Alexander Leidinger2011-02-251-0/+2
* - 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