aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/filemon
Commit message (Expand)AuthorAgeFilesLines
* Remove filemon->lock wrappers.Bryan Drewery2016-03-023-45/+18
* Remove old compatibility checks.Bryan Drewery2016-02-272-39/+1
* Filemon: Fix panic when fork1() is called from kproc_create().Bryan Drewery2016-02-161-1/+1
* filemon: Track the process pointer rather than a pid.Bryan Drewery2016-01-292-7/+6
* filemon_open: Don't record a process to trace here.Bryan Drewery2016-01-291-2/+1
* filemon: Use process_exec EVENTHANDLER to capture sys_execve.Bryan Drewery2016-01-281-51/+23
* Follow-up r294967: Mark flags unused.Bryan Drewery2016-01-281-1/+1
* filemon: Trace fork via process_fork event.Bryan Drewery2016-01-281-47/+14
* filemon: Use process_exit EVENTHANDLER to capture process exit.Bryan Drewery2016-01-281-11/+12
* filemon_dtr: Lock the associated filemon handle before writing to it.Bryan Drewery2016-01-271-2/+5
* filemon_comment has nothing to do with wrappers so move it out of filemon_wra...Bryan Drewery2016-01-272-16/+16
* filemon_ioctl: Lock the associated filemon handle before writing to it.Bryan Drewery2016-01-272-7/+3
* filemon_ioctl: Handle error from devfs_get_cdevpriv(9).Bryan Drewery2016-01-271-1/+2
* Drop any previous fd when setting a new one.Bryan Drewery2016-01-271-0/+3
* Remove unneeded mutex.h include, missed in r287155.Bryan Drewery2015-11-041-1/+0
* Remove unneeded NULL as this is initialized with M_ZERO.Bryan Drewery2015-10-291-3/+0
* Fix filemon locking races.Bryan Drewery2015-08-262-82/+22
* Avoid taking proctree_lock and searching parents in wrappers if not needed.Bryan Drewery2015-08-261-0/+4
* Remove unneeded inuse list locking in filemon_comment().Bryan Drewery2015-08-261-6/+0
* Move common locking for filemon_inuse and struct filemon* to filemon_pid_chec...Bryan Drewery2015-08-261-135/+5
* sx_sunlock for sx_slockSimon J. Gerraty2015-06-191-2/+2
* filemon_pid_check needs to hold proctree_lockSimon J. Gerraty2015-06-191-3/+9
* Bump the version since we now handle openatSimon J. Gerraty2015-06-161-1/+1
* Latest clang uses openat(2).Simon J. Gerraty2015-06-141-0/+66
* Update kernel inclusions of capability.h to use capsicum.h instead; someRobert Watson2014-03-161-1/+1
* Change the cap_rights_t type from uint64_t to a structure that we can extendPawel Jakub Dawidek2013-09-051-7/+9
* - Use pget(PGET_CANDEBUG | PGET_NOTWEXIT) to determine if the specifiedHiroki Sato2013-08-062-6/+6
* Add p_candebug() check to FILEMON_SET_PID ioctl.Hiroki Sato2013-08-021-1/+8
* Build fix: Only <sys/cdefs.h> should be included before __FBSDID().John Baldwin2013-06-041-1/+2
* Match the options of the kernel.David E. O'Brien2013-06-042-2/+5
* A little bit easier to read.David E. O'Brien2012-10-261-6/+7
* Iterate rather than use recursion. We can blow out the kernel stack if thereDavid E. O'Brien2012-10-261-8/+7
* Desupport pre-FreeBSD 7.1.David E. O'Brien2012-10-251-75/+0
* There's no need to make filemon specific to i386 and amd64. AllMarcel Moolenaar2012-07-021-8/+4
* Add the 'filemon' device. 'filemon' is a kernel module that provides a deviceDavid E. O'Brien2012-06-044-0/+1279