158f0484fSRodney W. Grimes.\" Copyright (c) 1989, 1991, 1993 258f0484fSRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 358f0484fSRodney W. Grimes.\" 458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions 658f0484fSRodney W. Grimes.\" are met: 758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 858f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 1058f0484fSRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 1158f0484fSRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 12*fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors 1358f0484fSRodney W. Grimes.\" may be used to endorse or promote products derived from this software 1458f0484fSRodney W. Grimes.\" without specific prior written permission. 1558f0484fSRodney W. Grimes.\" 1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2658f0484fSRodney W. Grimes.\" SUCH DAMAGE. 2758f0484fSRodney W. Grimes.\" 289c242913SEd Schouten.Dd July 31, 2016 2958f0484fSRodney W. Grimes.Dt GETGRENT 3 3058f0484fSRodney W. Grimes.Os 3158f0484fSRodney W. Grimes.Sh NAME 3258f0484fSRodney W. Grimes.Nm getgrent , 3305f98035SJacques Vidrine.Nm getgrent_r , 3458f0484fSRodney W. Grimes.Nm getgrnam , 3505f98035SJacques Vidrine.Nm getgrnam_r , 3658f0484fSRodney W. Grimes.Nm getgrgid , 3705f98035SJacques Vidrine.Nm getgrgid_r , 3858f0484fSRodney W. Grimes.Nm setgroupent , 3958f0484fSRodney W. Grimes.Nm setgrent , 4058f0484fSRodney W. Grimes.Nm endgrent 4158f0484fSRodney W. Grimes.Nd group database operations 4225bb73e0SAlexey Zelkin.Sh LIBRARY 4325bb73e0SAlexey Zelkin.Lb libc 4458f0484fSRodney W. Grimes.Sh SYNOPSIS 4532eef9aeSRuslan Ermilov.In grp.h 4658f0484fSRodney W. Grimes.Ft struct group * 4758f0484fSRodney W. Grimes.Fn getgrent void 4805f98035SJacques Vidrine.Ft int 4905f98035SJacques Vidrine.Fn getgrent_r "struct group *grp" "char *buffer" "size_t bufsize" "struct group **result" 5058f0484fSRodney W. Grimes.Ft struct group * 5158f0484fSRodney W. Grimes.Fn getgrnam "const char *name" 5205f98035SJacques Vidrine.Ft int 5305f98035SJacques Vidrine.Fn getgrnam_r "const char *name" "struct group *grp" "char *buffer" "size_t bufsize" "struct group **result" 5458f0484fSRodney W. Grimes.Ft struct group * 5558f0484fSRodney W. Grimes.Fn getgrgid "gid_t gid" 56712dc76eSMike Pritchard.Ft int 5705f98035SJacques Vidrine.Fn getgrgid_r "gid_t gid" "struct group *grp" "char *buffer" "size_t bufsize" "struct group **result" 5805f98035SJacques Vidrine.Ft int 5958f0484fSRodney W. Grimes.Fn setgroupent "int stayopen" 609c242913SEd Schouten.Ft void 6158f0484fSRodney W. Grimes.Fn setgrent void 6258f0484fSRodney W. Grimes.Ft void 6358f0484fSRodney W. Grimes.Fn endgrent void 6458f0484fSRodney W. Grimes.Sh DESCRIPTION 6558f0484fSRodney W. GrimesThese functions operate on the group database file 6658f0484fSRodney W. Grimes.Pa /etc/group 6758f0484fSRodney W. Grimeswhich is described 6858f0484fSRodney W. Grimesin 6958f0484fSRodney W. Grimes.Xr group 5 . 7058f0484fSRodney W. GrimesEach line of the database is defined by the structure 715c564baeSRuslan Ermilov.Vt group 7258f0484fSRodney W. Grimesfound in the include 7358f0484fSRodney W. Grimesfile 74fe08efe6SRuslan Ermilov.In grp.h : 7558f0484fSRodney W. Grimes.Bd -literal -offset indent 7658f0484fSRodney W. Grimesstruct group { 7758f0484fSRodney W. Grimes char *gr_name; /* group name */ 7858f0484fSRodney W. Grimes char *gr_passwd; /* group password */ 795567b258SMark Murray gid_t gr_gid; /* group id */ 801ffa6450SMike Pritchard char **gr_mem; /* group members */ 8158f0484fSRodney W. Grimes}; 8258f0484fSRodney W. Grimes.Ed 8358f0484fSRodney W. Grimes.Pp 8458f0484fSRodney W. GrimesThe functions 8558f0484fSRodney W. Grimes.Fn getgrnam 8658f0484fSRodney W. Grimesand 8758f0484fSRodney W. Grimes.Fn getgrgid 8858f0484fSRodney W. Grimessearch the group database for the given group name pointed to by 895c564baeSRuslan Ermilov.Fa name 9058f0484fSRodney W. Grimesor the group id pointed to by 915c564baeSRuslan Ermilov.Fa gid , 921a0a9345SRuslan Ermilovrespectively, returning the first one encountered. 931a0a9345SRuslan ErmilovIdentical group 9458f0484fSRodney W. Grimesnames or group gids may result in undefined behavior. 9558f0484fSRodney W. Grimes.Pp 9658f0484fSRodney W. GrimesThe 9758f0484fSRodney W. Grimes.Fn getgrent 9858f0484fSRodney W. Grimesfunction 9958f0484fSRodney W. Grimessequentially reads the group database and is intended for programs 10058f0484fSRodney W. Grimesthat wish to step through the complete list of groups. 10158f0484fSRodney W. Grimes.Pp 10205f98035SJacques VidrineThe functions 10305f98035SJacques Vidrine.Fn getgrent_r , 10405f98035SJacques Vidrine.Fn getgrnam_r , 10505f98035SJacques Vidrineand 10605f98035SJacques Vidrine.Fn getgrgid_r 10705f98035SJacques Vidrineare thread-safe versions of 10805f98035SJacques Vidrine.Fn getgrent , 10905f98035SJacques Vidrine.Fn getgrnam , 11005f98035SJacques Vidrineand 11105f98035SJacques Vidrine.Fn getgrgid , 11205f98035SJacques Vidrinerespectively. 11305f98035SJacques VidrineThe caller must provide storage for the results of the search in 11405f98035SJacques Vidrinethe 11505f98035SJacques Vidrine.Fa grp , 11605f98035SJacques Vidrine.Fa buffer , 11705f98035SJacques Vidrine.Fa bufsize , 11805f98035SJacques Vidrineand 11905f98035SJacques Vidrine.Fa result 12005f98035SJacques Vidrinearguments. 12105f98035SJacques VidrineWhen these functions are successful, the 12205f98035SJacques Vidrine.Fa grp 12305f98035SJacques Vidrineargument will be filled-in, and a pointer to that argument will be 12405f98035SJacques Vidrinestored in 12505f98035SJacques Vidrine.Fa result . 12605f98035SJacques VidrineIf an entry is not found or an error occurs, 12705f98035SJacques Vidrine.Fa result 12805f98035SJacques Vidrinewill be set to 12905f98035SJacques Vidrine.Dv NULL . 13005f98035SJacques Vidrine.Pp 13105f98035SJacques VidrineThese functions will open the group file for reading, if necessary. 13258f0484fSRodney W. Grimes.Pp 13358f0484fSRodney W. GrimesThe 13458f0484fSRodney W. Grimes.Fn setgroupent 13558f0484fSRodney W. Grimesfunction 1361a0a9345SRuslan Ermilovopens the file, or rewinds it if it is already open. 1371a0a9345SRuslan ErmilovIf 13858f0484fSRodney W. Grimes.Fa stayopen 13958f0484fSRodney W. Grimesis non-zero, file descriptors are left open, significantly speeding 1401a0a9345SRuslan Ermilovfunctions subsequent calls. 1411a0a9345SRuslan ErmilovThis functionality is unnecessary for 14258f0484fSRodney W. Grimes.Fn getgrent 1430227791bSRuslan Ermilovas it does not close its file descriptors by default. 1441a0a9345SRuslan ErmilovIt should also 14558f0484fSRodney W. Grimesbe noted that it is dangerous for long-running programs to use this 14658f0484fSRodney W. Grimesfunctionality as the group file may be updated. 14758f0484fSRodney W. Grimes.Pp 14858f0484fSRodney W. GrimesThe 14958f0484fSRodney W. Grimes.Fn setgrent 15058f0484fSRodney W. Grimesfunction 15158f0484fSRodney W. Grimesis identical to 15258f0484fSRodney W. Grimes.Fn setgroupent 15358f0484fSRodney W. Grimeswith an argument of zero. 15458f0484fSRodney W. Grimes.Pp 15558f0484fSRodney W. GrimesThe 15658f0484fSRodney W. Grimes.Fn endgrent 15758f0484fSRodney W. Grimesfunction 15858f0484fSRodney W. Grimescloses any open files. 15958f0484fSRodney W. Grimes.Sh RETURN VALUES 16058f0484fSRodney W. GrimesThe functions 16158f0484fSRodney W. Grimes.Fn getgrent , 16258f0484fSRodney W. Grimes.Fn getgrnam , 16358f0484fSRodney W. Grimesand 16458f0484fSRodney W. Grimes.Fn getgrgid , 16505f98035SJacques Vidrinereturn a pointer to a group structure on success or 16605f98035SJacques Vidrine.Dv NULL 16705f98035SJacques Vidrineif the entry is not found or if an error occurs. 1689b8f137bSTim KientzleIf an error does occur, 16905f98035SJacques Vidrine.Va errno 17005f98035SJacques Vidrinewill be set. 1719b8f137bSTim KientzleNote that programs must explicitly set 1729b8f137bSTim Kientzle.Va errno 1739b8f137bSTim Kientzleto zero before calling any of these functions if they need to 1749b8f137bSTim Kientzledistinguish between a non-existent entry and an error. 17505f98035SJacques VidrineThe functions 17605f98035SJacques Vidrine.Fn getgrent_r , 17705f98035SJacques Vidrine.Fn getgrnam_r , 17805f98035SJacques Vidrineand 17905f98035SJacques Vidrine.Fn getgrgid_r 18005f98035SJacques Vidrinereturn 0 if no error occurred, or an error number to indicate failure. 18105f98035SJacques VidrineIt is not an error if a matching entry is not found. 18205f98035SJacques Vidrine(Thus, if 18305f98035SJacques Vidrine.Fa result 18405f98035SJacques Vidrineis set to 18505f98035SJacques Vidrine.Dv NULL 18605f98035SJacques Vidrineand the return value is 0, no matching entry exists.) 18705f98035SJacques Vidrine.Pp 1889c242913SEd SchoutenThe function 18958f0484fSRodney W. Grimes.Fn setgroupent 1909c242913SEd Schoutenreturns the value 1 if successful, otherwise the value 19158f0484fSRodney W. Grimes0 is returned. 19258f0484fSRodney W. GrimesThe functions 1939c242913SEd Schouten.Fn endgrent , 1949c242913SEd Schouten.Fn setgrent 19558f0484fSRodney W. Grimesand 19658f0484fSRodney W. Grimes.Fn setgrfile 19758f0484fSRodney W. Grimeshave no return value. 19858f0484fSRodney W. Grimes.Sh FILES 19958f0484fSRodney W. Grimes.Bl -tag -width /etc/group -compact 20058f0484fSRodney W. Grimes.It Pa /etc/group 20158f0484fSRodney W. Grimesgroup database file 20258f0484fSRodney W. Grimes.El 20324a0682cSRuslan Ermilov.Sh COMPATIBILITY 20424a0682cSRuslan ErmilovThe historic function 20524a0682cSRuslan Ermilov.Fn setgrfile , 20624a0682cSRuslan Ermilovwhich allowed the specification of alternate password databases, has 20724a0682cSRuslan Ermilovbeen deprecated and is no longer available. 20858f0484fSRodney W. Grimes.Sh SEE ALSO 20928f86af2SMike Pritchard.Xr getpwent 3 , 210248aee62SJacques Vidrine.Xr group 5 , 211491a8429SRuslan Ermilov.Xr nsswitch.conf 5 , 212491a8429SRuslan Ermilov.Xr yp 8 21324a0682cSRuslan Ermilov.Sh STANDARDS 21424a0682cSRuslan ErmilovThe 21524a0682cSRuslan Ermilov.Fn getgrent , 21624a0682cSRuslan Ermilov.Fn getgrnam , 21724a0682cSRuslan Ermilov.Fn getgrnam_r , 21824a0682cSRuslan Ermilov.Fn getgrgid , 21924a0682cSRuslan Ermilov.Fn getgrgid_r 22024a0682cSRuslan Ermilovand 22124a0682cSRuslan Ermilov.Fn endgrent 22224a0682cSRuslan Ermilovfunctions conform to 22324a0682cSRuslan Ermilov.St -p1003.1-96 . 22424a0682cSRuslan ErmilovThe 22524a0682cSRuslan Ermilov.Fn setgrent 22624a0682cSRuslan Ermilovfunction differs from that standard in that its return type is 22724a0682cSRuslan Ermilov.Vt int 22824a0682cSRuslan Ermilovrather than 22924a0682cSRuslan Ermilov.Vt void . 23058f0484fSRodney W. Grimes.Sh HISTORY 23158f0484fSRodney W. GrimesThe functions 23258f0484fSRodney W. Grimes.Fn endgrent , 23358f0484fSRodney W. Grimes.Fn getgrent , 23458f0484fSRodney W. Grimes.Fn getgrnam , 23558f0484fSRodney W. Grimes.Fn getgrgid , 23658f0484fSRodney W. Grimesand 23758f0484fSRodney W. Grimes.Fn setgrent 23858f0484fSRodney W. Grimesappeared in 23958f0484fSRodney W. Grimes.At v7 . 24058f0484fSRodney W. GrimesThe functions 24158f0484fSRodney W. Grimes.Fn setgrfile 24258f0484fSRodney W. Grimesand 24358f0484fSRodney W. Grimes.Fn setgroupent 24458f0484fSRodney W. Grimesappeared in 24558f0484fSRodney W. Grimes.Bx 4.3 Reno . 24605f98035SJacques VidrineThe functions 24705f98035SJacques Vidrine.Fn getgrent_r , 24805f98035SJacques Vidrine.Fn getgrnam_r , 24905f98035SJacques Vidrineand 25005f98035SJacques Vidrine.Fn getgrgid_r 25105f98035SJacques Vidrineappeared in 25205f98035SJacques Vidrine.Fx 5.1 . 25358f0484fSRodney W. Grimes.Sh BUGS 25458f0484fSRodney W. GrimesThe functions 25558f0484fSRodney W. Grimes.Fn getgrent , 25658f0484fSRodney W. Grimes.Fn getgrnam , 25758f0484fSRodney W. Grimes.Fn getgrgid , 25858f0484fSRodney W. Grimes.Fn setgroupent 25958f0484fSRodney W. Grimesand 26058f0484fSRodney W. Grimes.Fn setgrent 26158f0484fSRodney W. Grimesleave their results in an internal static object and return 262c6ff3a1bSSheldon Hearna pointer to that object. 263c6ff3a1bSSheldon HearnSubsequent calls to 26458f0484fSRodney W. Grimesthe same function 26558f0484fSRodney W. Grimeswill modify the same object. 266248aee62SJacques Vidrine.Pp 267248aee62SJacques VidrineThe functions 268248aee62SJacques Vidrine.Fn getgrent , 26905f98035SJacques Vidrine.Fn getgrent_r , 270248aee62SJacques Vidrine.Fn endgrent , 271248aee62SJacques Vidrine.Fn setgroupent , 272248aee62SJacques Vidrineand 273248aee62SJacques Vidrine.Fn setgrent 274248aee62SJacques Vidrineare fairly useless in a networked environment and should be 275248aee62SJacques Vidrineavoided, if possible. 27695f4226bSRuslan ErmilovThe 277248aee62SJacques Vidrine.Fn getgrent 27805f98035SJacques Vidrineand 27905f98035SJacques Vidrine.Fn getgrent_r 28005f98035SJacques Vidrinefunctions 28105f98035SJacques Vidrinemake no attempt to suppress duplicate information if multiple 282248aee62SJacques Vidrinesources are specified in 283248aee62SJacques Vidrine.Xr nsswitch.conf 5 . 284