aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_exec.c
Commit message (Expand)AuthorAgeFilesLines
...
* Switch to use shared vnode locks for text files during image activation.Konstantin Belousov2019-05-051-28/+23
* Remove unneeded conditionals for sv_ functions - all the ABIsEdward Tomasz Napierala2019-04-121-18/+5
* amd64: Add md process flags and first P_MD_PTI flag.Konstantin Belousov2019-03-161-1/+2
* Implement Address Space Layout Randomization (ASLR)Konstantin Belousov2019-02-101-2/+7
* do_execve(): lock vnode when needed.Konstantin Belousov2019-02-081-1/+3
* Remove unused argument to priv_check_cred.Mateusz Guzik2018-12-111-1/+1
* Add helper functions to copy strings into struct image_args.Brooks Davis2018-11-291-45/+138
* Provide storage for the process feature control flags in struct proc.Konstantin Belousov2018-11-231-0/+1
* Add const to input-only char * arguments.Brooks Davis2018-11-021-1/+1
* capsicum: allow the setproctitle(3) function in capability modeMariusz Zaborski2018-08-171-1/+1
* Round down the location of execpathp to slightly improve copyout speed.Brooks Davis2018-07-131-0/+1
* Create a new macro for static DPCPU data.Andrew Turner2018-07-051-1/+1
* Use a single, consistent approach to returning success versus failure inAlan Cox2018-06-041-1/+1
* ANSIfy sys/kernEd Maste2018-06-011-2/+1
* Avoid two suword() calls per auxarg entry.Brooks Davis2018-05-241-2/+5
* Eliminate the overhead of gratuitous repeated reinitialization of cap_rightsMatt Macy2018-05-091-3/+1
* Rename PROC_PDEATHSIG_SET -> PROC_PDEATHSIG_CTL and PROC_PDEATHSIG_GETKonstantin Belousov2018-04-201-1/+1
* Simplify the code to allocate stack for auxv, argv[], and environment vectors.John Baldwin2018-04-191-23/+11
* Add PROC_PDEATHSIG_SET to procctl interface.Konstantin Belousov2018-04-181-0/+4
* Move most of the contents of opt_compat.h to opt_global.h.Brooks Davis2018-04-061-1/+0
* exec_map_first_page: fix an inverse condition introduced in r254138Andriy Gapon2018-02-071-1/+1
* Unsign some values related to allocation.Pedro F. Giffuni2018-01-221-1/+1
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Don't let cpu_set_syscall_retval() clobber exec_setregs().Ed Schouten2017-11-241-2/+8
* Introduce EVENTHANDLER_LIST and some users.Matt Joras2017-11-091-1/+3
* execve: avoid one proc lock/unlock trip unless PTRACE_EXEC is setMateusz Guzik2017-10-191-4/+6
* Tidy up pmc support at execve.Mateusz Guzik2017-10-191-8/+3
* Resolve confusion between different error code spaces.Konstantin Belousov2017-07-031-9/+8
* Clear the MAP_WIREFUTURE flag on the vm map in exec_new_vmspace() when itAlan Cox2017-06-301-0/+4
* Remove register keyword from sys/ and ANSIfy prototypesEd Maste2017-05-171-17/+7
* Apply MADV_FREE to exec_map entries only after a lowmem event.Mark Johnston2017-02-151-5/+49
* Explicitely add "opt_compat.h" to kern_exec.c: fix powerpc LINT builds.Konstantin Belousov2017-01-061-0/+1
* Add a small allocator for exec_map entries.Mark Johnston2017-01-051-6/+70
* Sort includes in kern_exec.c.Mark Johnston2017-01-051-16/+16
* Remove most of the code for implementing PG_CACHED pages. (This change doesAlan Cox2016-11-151-1/+1
* Mark a bunch of mpsafe sysctls as such.Mateusz Guzik2016-10-191-4/+4
* Eliminate unneeded vm_page_xbusy() and vm_page_xunbusy() operations whenAlan Cox2016-08-141-2/+3
* Eliminate two calls to vm_page_xunbusy() that are both unnecessary andAlan Cox2016-08-131-2/+0
* The assertion re-added in r302614 was triggered when stopping signalKonstantin Belousov2016-07-181-0/+2
* Add a mask of optional ptrace() events.John Baldwin2016-07-151-1/+3
* When filt_proc() removes event from the knlist due to the processKonstantin Belousov2016-06-271-1/+1
* Old process credentials for setuid execve must not be dereferencedKonstantin Belousov2016-06-081-3/+7
* exec: get rid of one vnode lock/unlock pair in do_execveMateusz Guzik2016-05-271-42/+30
* exec: Provide execpath in imgp for the process_exec hook.Bryan Drewery2016-05-261-8/+16
* exec: Add credential change information into imgp for process_exec hook.Bryan Drewery2016-05-261-86/+102
* sys/kern: spelling fixes in comments.Pedro F. Giffuni2016-04-291-1/+1
* Remove some NULL checks for M_WAITOK allocations.Edward Tomasz Napierala2016-03-291-4/+0
* Correct a comment.Bryan Drewery2016-03-011-1/+1
* Fix style issues around existing SDT probes.Mark Johnston2015-12-161-6/+6
* A change to KPI of vm_pager_get_pages() and underlying VOP_GETPAGES().Gleb Smirnoff2015-12-161-9/+22