summaryrefslogtreecommitdiffstats
path: root/usr.bin/id
Commit message (Collapse)AuthorAgeFilesLines
* Correct the change made in r227166.ed2011-11-061-0/+2
| | | | This function is only compiled in when building WITH_AUDIT.
* Add missing static keywords to id(1)ed2011-11-061-17/+17
|
* Add two new system calls, setloginclass(2) and getloginclass(2). This makestrasz2011-03-052-5/+23
| | | | | | | | | it possible for the kernel to track login class the process is assigned to, which is required for RCTL. This change also make setusercontext(3) call setloginclass(2) and makes it possible to retrieve current login class using id(1). Reviewed by: kib (as part of a larger patch)
* Remove the advertising clause from UCB copyrighted files in usr.bin. Thisjoel2010-12-114-16/+0
| | | | | | | | | is in accordance with the information provided at ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change Also add $FreeBSD$ to a few files to keep svn happy. Discussed with: imp, rwatson
* Build usr.bin/ with WARNS=6 by default.ed2010-01-021-1/+0
| | | | Also add some missing $FreeBSD$ to keep svn happy.
* In preparation for raising NGROUPS and NGROUPS_MAX, change basebrooks2009-06-191-7/+18
| | | | | | | | | | | | | | | | | | | | | | system callers of getgroups(), getgrouplist(), and setgroups() to allocate buffers dynamically. Specifically, allocate a buffer of size sysconf(_SC_NGROUPS_MAX)+1 (+2 in a few cases to allow for overflow). This (or similar gymnastics) is required for the code to actually follow the POSIX.1-2008 specification where {NGROUPS_MAX} may differ at runtime and where getgroups may return {NGROUPS_MAX}+1 results on systems like FreeBSD which include the primary group. In id(1), don't pointlessly add the primary group to the list of all groups, it is always the first result from getgroups(). In principle the old code was more portable, but this was only done in one of the two places where getgroups() was called to the overall effect was pointless. Document the actual POSIX requirements in the getgroups(2) and setgroups(2) manpages. We do not yet support a dynamic NGROUPS, but we may in the future. MFC after: 2 weeks
* Fix id -A when the subject has an extended subject token associated withcsjp2007-10-141-7/+39
| | | | | | | | | | | | | them (for example when they have logged in from an ip6 source). - Stick with the initial call to getaudit(2), if it returns E2BIG, use getaudit_addr(2) instead and set the "extended" flag to indicate that we the calling credential has an extended subject state. - Additionally, add the printing of the machine/at_addr (the ip/ip6 addresses) MFC after: 1 week Obtained from: TrustedBSD Project
* Fix SUSv3 compliance: Use a single comma instead of comma and space to separatestefanf2006-12-291-1/+1
| | | | | | | additional group entries. PR: 107298 Submitted by: Joost Bekkers
* Improve markup.ru2006-12-231-1/+2
|
* Do not exit without printing the id information if the uid of thempp2006-12-091-6/+15
| | | | user executing the command cannot be looked up in the password file.
* Add a -a option as a no-op for Solaris compatibility, as brieflyceri2006-09-262-2/+8
| | | | | | | | discussed on src-committers. This is intentionally not included in the usage() function as it would confuse the output too much. Approved by: jhb MFC after: 1 week
* Fix both arguments to err().ru2006-09-261-1/+1
|
* Rename "-a" flag to "-A" in order to avoid conflicting with the "-a" flagrwatson2006-09-232-21/+20
| | | | | | | as found on Solaris. Requested by: ceri MFC after: 3 days
* Add a -a argument to id(1), which causes id(1) to print out processrwatson2006-09-233-3/+57
| | | | | | | | audit properties, including the audit user id. This can be quite helpful in debugging audit problems. Obtained from: TrustedBSD Project MFC after: 3 days
* Print the euid after the gid as demanded by POSIX.stefanf2006-05-281-3/+3
| | | | | | Submitted by: Martin Nagy <nagy.martin@gmail.com> PR: 96239 MFC after: 2 weeks
* Add flag to choose whether to use getgrouplist(3) or getgroups(2)robert2005-04-291-6/+11
| | | | | | | | | to the id_print() function. Use getgrouplist(3) for the case when an user was specified, and getgroups(2) when no user was given. That reverts to the expected behaviour and makes it easy to implement an option later to force using getgrouplist(3).
* Fix spelling error.robert2005-04-291-1/+1
|
* We need to pass NGROUPS + 1 to getgrouplist(3) to displayrobert2005-04-281-1/+1
| | | | | | NGROUPS groups. getgrouplist(3) may put a duplicate group id into the passed array (it sets [0] and [1] to the value of the gid argument), but id_print() sorts them out.
* - Merge two functions for printing `id' output.robert2005-04-281-57/+33
| | | | | | | | | | | | Showing the ids of both an user given by an argument to `id', and the current user, is now handled in a single function. Displaying the current user's ids was inaccurate because getgroups(2) had been used. getgroups(2) returns the current kernel state of a user's groups, which may not always be correct if /etc/group was recently changed. - Fix a few style bugs. PR: bin/78085
* Remove unused variables.stefanf2005-04-091-2/+1
|
* Added the EXIT STATUS section where appropriate.ru2005-01-173-3/+3
|
* Pass an array of gid_t rather than an array of int to getgroups().stefanf2004-10-021-1/+2
| | | | PR: 56646
* Add missing %s so that all of the usage message gets printed.dwmalone2004-05-192-1/+2
| | | | Bump WARNS to 6 while I'm here.
* Bump document date on behalf of the -M option.ru2004-05-181-1/+1
|
* Add "-M" argument to id(1), which permits the id command to be usedrwatson2004-05-032-3/+46
| | | | | | | | to print the MAC label of the current process. "-M" selected as that's what is used in Trusted IRIX. Obtained from: TrustedBSD Project Sponsored by: DARPA, McAfee Research
* ANSIify function definitions.dwmalone2002-09-041-16/+8
| | | | | | | | | Add some constness to avoid some warnings. Remove use register keyword. Deal with missing/unneeded extern/prototypes. Some minor type changes/casts to avoid warnings. Reviewed by: md5
* Remove local prototypes for main().jmallett2002-08-191-1/+0
|
* Consistently use FBSDIDobrien2002-06-301-2/+2
|
* remove __Pimp2002-03-221-8/+8
|
* Remove leaf node WARNS?=2 (that mainly I added). This shouldmarkm2002-02-081-1/+0
| | | | help the GCC3 transition and CURRENT in general.
* Fold groups(1) and whoami(1) into id(1).ru2001-09-144-87/+35
|
* Now that we have it, replace `afterinstall' target with SCRIPTS.ru2001-09-131-7/+1
|
* mdoc(7) police: utilize the new .Ex macro.ru2001-08-153-9/+3
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-101-1/+1
|
* Silence warnings (most about constness) and clamp down with WARNS=2.dd2001-05-282-5/+7
| | | | Tested on i386 and alpha.
* Print commas in the group list in user(). current() already did this.dd2001-05-201-1/+1
| | | | | Reviewed by: ru, sheldonh Inspired by: OpenBSD, NetBSD
* MAN[1-9] -> MAN.ru2001-03-271-1/+2
|
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-203-8/+8
|
* .UC -> .Osru2000-11-062-2/+2
|
* DIAGNOSTICS section name missing and .Nm changescharnier2000-03-263-11/+11
|
* Cast pw_change and pw_expire to long and fix the format specifier accordingly.billf1999-09-061-2/+2
|
* Remove unused variables.chris1999-09-051-3/+1
|
* Properly document -P and -p flags.chris1999-09-012-1/+4
|
* $Id$ -> $FreeBSD$peter1999-08-286-6/+6
|
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-122-0/+2
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Clean up some ambiguous nested if/elses.billf1999-07-041-3/+5
|
* Add "-P" display the id as a password file entry.obrien1998-08-212-6/+40
| | | | Submitted by: terry
* Use `.Nm id' instead of `.Nm' for the synopsis lines.alex1998-02-281-5/+5
| | | | PR: 5876
* Missing newline when euid != ruid.steve1998-02-181-3/+3
| | | | | PR: 5778 Submitted by: Martin Kammerhofer <dada@sbox.tu-graz.ac.at>
* Use err(3) instead of local redefinition. Silent -Wall.charnier1997-07-151-51/+26
|
OpenPOWER on IntegriCloud