159deaec5SRodney W. Grimes /*- 2*2321c474SPedro F. Giffuni * SPDX-License-Identifier: BSD-3-Clause 3*2321c474SPedro F. Giffuni * 459deaec5SRodney W. Grimes * Copyright (c) 1989, 1993 559deaec5SRodney W. Grimes * The Regents of the University of California. All rights reserved. 659deaec5SRodney W. Grimes * (c) UNIX System Laboratories, Inc. 759deaec5SRodney W. Grimes * All or some portions of this file are derived from material licensed 859deaec5SRodney W. Grimes * to the University of California by American Telephone and Telegraph 959deaec5SRodney W. Grimes * Co. or Unix System Laboratories, Inc. and are reproduced herein with 1059deaec5SRodney W. Grimes * the permission of UNIX System Laboratories, Inc. 1159deaec5SRodney W. Grimes * 1259deaec5SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 1359deaec5SRodney W. Grimes * modification, are permitted provided that the following conditions 1459deaec5SRodney W. Grimes * are met: 1559deaec5SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 1659deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1759deaec5SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1859deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1959deaec5SRodney W. Grimes * documentation and/or other materials provided with the distribution. 20f2556687SWarner Losh * 3. Neither the name of the University nor the names of its contributors 2159deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 2259deaec5SRodney W. Grimes * without specific prior written permission. 2359deaec5SRodney W. Grimes * 2459deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2559deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2659deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2759deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2859deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2959deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 3059deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 3159deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 3259deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3359deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3459deaec5SRodney W. Grimes * SUCH DAMAGE. 3559deaec5SRodney W. Grimes */ 3659deaec5SRodney W. Grimes 3759deaec5SRodney W. Grimes #ifndef _GRP_H_ 3859deaec5SRodney W. Grimes #define _GRP_H_ 3959deaec5SRodney W. Grimes 40b73aa645SMaxim Sobolev #include <sys/cdefs.h> 41a681180aSMike Barcroft #include <sys/_types.h> 42b73aa645SMaxim Sobolev 4359deaec5SRodney W. Grimes #define _PATH_GROUP "/etc/group" 4459deaec5SRodney W. Grimes 45abbd8902SMike Barcroft #ifndef _GID_T_DECLARED 46abbd8902SMike Barcroft typedef __gid_t gid_t; 47abbd8902SMike Barcroft #define _GID_T_DECLARED 48834dcadeSMike Barcroft #endif 49834dcadeSMike Barcroft 5005f98035SJacques Vidrine #ifndef _SIZE_T_DECLARED 5105f98035SJacques Vidrine typedef __size_t size_t; 5205f98035SJacques Vidrine #define _SIZE_T_DECLARED 5305f98035SJacques Vidrine #endif 5405f98035SJacques Vidrine 5559deaec5SRodney W. Grimes struct group { 5659deaec5SRodney W. Grimes char *gr_name; /* group name */ 5759deaec5SRodney W. Grimes char *gr_passwd; /* group password */ 585567b258SMark Murray gid_t gr_gid; /* group id */ 5959deaec5SRodney W. Grimes char **gr_mem; /* group members */ 6059deaec5SRodney W. Grimes }; 6159deaec5SRodney W. Grimes 6259deaec5SRodney W. Grimes __BEGIN_DECLS 63448f5f73SJilles Tjoelker #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 64eb87df47SMike Barcroft void endgrent(void); 65eb87df47SMike Barcroft struct group *getgrent(void); 66eb87df47SMike Barcroft #endif 67bb28f3c2SWarner Losh struct group *getgrgid(gid_t); 68bb28f3c2SWarner Losh struct group *getgrnam(const char *); 69eb87df47SMike Barcroft #if __BSD_VISIBLE 70bb28f3c2SWarner Losh const char *group_from_gid(gid_t, int); 714c0d7cdfSBrooks Davis int gid_from_group(const char *, gid_t *); 724c0d7cdfSBrooks Davis int pwcache_groupdb(int (*)(int), void (*)(void), 734c0d7cdfSBrooks Davis struct group * (*)(const char *), 744c0d7cdfSBrooks Davis struct group * (*)(gid_t)); 7559deaec5SRodney W. Grimes #endif 76448f5f73SJilles Tjoelker #if __XSI_VISIBLE 779c242913SEd Schouten void setgrent(void); 786fb888fcSDavid Schultz #endif 79448f5f73SJilles Tjoelker #if __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 8005f98035SJacques Vidrine int getgrgid_r(gid_t, struct group *, char *, size_t, 8105f98035SJacques Vidrine struct group **); 8205f98035SJacques Vidrine int getgrnam_r(const char *, struct group *, char *, size_t, 8305f98035SJacques Vidrine struct group **); 84eb87df47SMike Barcroft #endif 85eb87df47SMike Barcroft #if __BSD_VISIBLE 8605f98035SJacques Vidrine int getgrent_r(struct group *, char *, size_t, struct group **); 87eb87df47SMike Barcroft int setgroupent(int); 88eb87df47SMike Barcroft #endif 8959deaec5SRodney W. Grimes __END_DECLS 9059deaec5SRodney W. Grimes 9159deaec5SRodney W. Grimes #endif /* !_GRP_H_ */ 92