| Commit message (Expand) | Author | Age | Files | Lines |
| * | $Id$ -> $FreeBSD$ | Peter Wemm | 1999-08-28 | 1 | -1/+1 |
| * | This Implements the mumbled about "Jail" feature. | Poul-Henning Kamp | 1999-04-28 | 1 | -19/+27 |
| * | Change suser_xxx() to suser() where it applies. | Poul-Henning Kamp | 1999-04-27 | 1 | -10/+10 |
| * | Suser() simplification: | Poul-Henning Kamp | 1999-04-27 | 1 | -12/+19 |
| * | Fix warnings in preparation for adding -Wall -Wcast-qual to the | Matthew Dillon | 1999-01-28 | 1 | -9/+9 |
| * | getpgid() and getsid() were doing a comparision rather than an assignment, | Don Lewis | 1998-12-13 | 1 | -5/+11 |
| * | add #include <sys/kernel.h> where it's needed by MALLOC_DEFINE() | Peter Wemm | 1998-11-10 | 1 | -1/+2 |
| * | If the session leader dies, s_leader is set to NULL and getsid() may | Don Lewis | 1998-11-09 | 1 | -2/+2 |
| * | 64bit fixes: use size_t not u_int for sizes. | Doug Rabson | 1998-06-10 | 1 | -2/+2 |
| * | Clear the p_stops field on change of user/group id, unless the correct | Sean Eric Fagan | 1997-12-20 | 1 | -16/+26 |
| * | Make COMPAT_43 and COMPAT_SUNOS new-style options. | Eivind Eklund | 1997-12-16 | 1 | -1/+3 |
| * | Move the "retval" (3rd) parameter from all syscall functions and put | Poul-Henning Kamp | 1997-11-06 | 1 | -60/+38 |
| * | Killed non-sensical call to splimp/splx in crfree(). | David Greenman | 1997-10-17 | 1 | -5/+1 |
| * | Last major round (Unless Bruce thinks of somthing :-) of malloc changes. | Poul-Henning Kamp | 1997-10-12 | 1 | -1/+3 |
| * | Implement XPG/SYSV-style getpgid()/getsid() syscalls. getpgid() uses the | Peter Wemm | 1997-08-19 | 1 | -1/+50 |
| * | Removed unused #includes. | Bruce Evans | 1997-08-02 | 1 | -4/+1 |
| * | Don't incorrectly set P_SUGID in setre[ug]id() for no reason, as noticed | Peter Wemm | 1997-04-02 | 1 | -5/+9 |
| * | Implement code for an OpenBSD-style issetuigid(). | Peter Wemm | 1997-03-31 | 1 | -1/+26 |
| * | Do not set the P_SUGID flag in seteuid()/setegid() if nothing has changed. | Peter Wemm | 1997-03-31 | 1 | -11/+20 |
| * | Do not set the P_SUGID flag in seteuid()/setegid() if nothing has changed. | Peter Wemm | 1997-03-31 | 1 | -9/+15 |
| * | Fully implement the clause in Appendix B.4.2.2 from Posix 1003.1 | Peter Wemm | 1997-03-31 | 1 | -31/+132 |
| * | Make setgroups(0, xxx) behave as it does on SYSV, namely clear the groups | Peter Wemm | 1997-03-31 | 1 | -6/+20 |
| * | Oops, fix typo. | Andrey A. Chernov | 1997-03-03 | 1 | -2/+2 |
| * | Don't copy more than MAXLOGNAME bytes in getlogin() syscall, | Andrey A. Chernov | 1997-03-03 | 1 | -3/+3 |
| * | Use MAXLOGNAME for stricter size check in setlogin() syscall instead of | Andrey A. Chernov | 1997-03-03 | 1 | -3/+3 |
| * | Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are not | Peter Wemm | 1997-02-22 | 1 | -1/+1 |
| * | Fix off by one error in setlogin() syscall. | David Nugent | 1997-02-10 | 1 | -3/+6 |
| * | Make the long-awaited change from $Id$ to $FreeBSD$ | Jordan K. Hubbard | 1997-01-14 | 1 | -1/+1 |
| * | Fixed setpgid(). Negative pgids were accepted. | Bruce Evans | 1996-12-19 | 1 | -1/+3 |
| * | Added #include of <unistd.h> so that there is some chance that | Bruce Evans | 1996-09-03 | 1 | -1/+2 |
| * | Conditionalize POSIX saved ids code on _POSIX_SAVED_IDS define | Andrey A. Chernov | 1996-09-01 | 1 | -4/+22 |
| * | Fix a panic caused by (proc)->p_session being dereferenced for a process | David Greenman | 1996-05-30 | 1 | -2/+2 |
| * | Included <sys/sysproto.h> to get central declarations for syscall args | Bruce Evans | 1995-11-12 | 1 | -1/+40 |
| * | Fixed type of setsid(). It used used the bogus `getsid_args'. | Bruce Evans | 1995-11-11 | 1 | -3/+3 |
| * | Return EINVAL if the number of groups is less than 1 in setgroups(). | David Greenman | 1995-11-04 | 1 | -2/+3 |
| * | Remove prototype definitions from <sys/systm.h>. | Steven Wallace | 1995-10-08 | 1 | -10/+37 |
| * | Optimized and simplified version of setreuid/gid | Andrey A. Chernov | 1995-06-15 | 1 | -34/+33 |
| * | set[ug]id(): call suser() only when neccesarry | Andrey A. Chernov | 1995-04-29 | 1 | -9/+9 |
| * | Implement POSIX SAVED_IDS for setuid/setgid | Andrey A. Chernov | 1995-04-28 | 1 | -10/+17 |
| * | setre*(): simplify return scheme, pointed by Bruce | Andrey A. Chernov | 1995-04-28 | 1 | -23/+19 |
| * | Implement setreuid/setregid according to SunOS manpage | Andrey A. Chernov | 1995-04-27 | 1 | -23/+41 |
| * | Make setreuid/setregid active syscalls | Andrey A. Chernov | 1995-04-23 | 1 | -5/+3 |
| * | Correct the type of the `acflag' arg to suser(). | Bruce Evans | 1995-04-23 | 1 | -2/+2 |
| * | Added ifdef COMPAT_IBCS2 around setre[ug]id. | Søren Schmidt | 1994-10-13 | 1 | -3/+3 |
| * | While in the real world, I had a bad case of being swapped out for a lot of | Poul-Henning Kamp | 1994-09-25 | 1 | -7/+7 |
| * | Added $Id$ | David Greenman | 1994-08-02 | 1 | -0/+1 |
| * | The big 4.4BSD Lite to FreeBSD 2.0.0 (Development) patch. | Rodney W. Grimes | 1994-05-25 | 1 | -0/+22 |
| * | BSD 4.4 Lite Kernel Sources | Rodney W. Grimes | 1994-05-24 | 1 | -0/+566 |