159deaec5SRodney W. Grimes /*- 259deaec5SRodney W. Grimes * Copyright (c) 1989, 1993 359deaec5SRodney W. Grimes * The Regents of the University of California. All rights reserved. 459deaec5SRodney W. Grimes * (c) UNIX System Laboratories, Inc. 559deaec5SRodney W. Grimes * All or some portions of this file are derived from material licensed 659deaec5SRodney W. Grimes * to the University of California by American Telephone and Telegraph 759deaec5SRodney W. Grimes * Co. or Unix System Laboratories, Inc. and are reproduced herein with 859deaec5SRodney W. Grimes * the permission of UNIX System Laboratories, Inc. 959deaec5SRodney W. Grimes * 1059deaec5SRodney W. Grimes * Redistribution and use in source and binary forms, with or without 1159deaec5SRodney W. Grimes * modification, are permitted provided that the following conditions 1259deaec5SRodney W. Grimes * are met: 1359deaec5SRodney W. Grimes * 1. Redistributions of source code must retain the above copyright 1459deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer. 1559deaec5SRodney W. Grimes * 2. Redistributions in binary form must reproduce the above copyright 1659deaec5SRodney W. Grimes * notice, this list of conditions and the following disclaimer in the 1759deaec5SRodney W. Grimes * documentation and/or other materials provided with the distribution. 18f2556687SWarner Losh * 3. Neither the name of the University nor the names of its contributors 1959deaec5SRodney W. Grimes * may be used to endorse or promote products derived from this software 2059deaec5SRodney W. Grimes * without specific prior written permission. 2159deaec5SRodney W. Grimes * 2259deaec5SRodney W. Grimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 2359deaec5SRodney W. Grimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2459deaec5SRodney W. Grimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2559deaec5SRodney W. Grimes * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2659deaec5SRodney W. Grimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2759deaec5SRodney W. Grimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2859deaec5SRodney W. Grimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2959deaec5SRodney W. Grimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 3059deaec5SRodney W. Grimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 3159deaec5SRodney W. Grimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 3259deaec5SRodney W. Grimes * SUCH DAMAGE. 3359deaec5SRodney W. Grimes * 3459deaec5SRodney W. Grimes * @(#)grp.h 8.2 (Berkeley) 1/21/94 355567b258SMark Murray * $FreeBSD$ 3659deaec5SRodney W. Grimes */ 3759deaec5SRodney W. Grimes 3859deaec5SRodney W. Grimes #ifndef _GRP_H_ 3959deaec5SRodney W. Grimes #define _GRP_H_ 4059deaec5SRodney W. Grimes 41b73aa645SMaxim Sobolev #include <sys/cdefs.h> 42a681180aSMike Barcroft #include <sys/_types.h> 43b73aa645SMaxim Sobolev 4459deaec5SRodney W. Grimes #define _PATH_GROUP "/etc/group" 4559deaec5SRodney W. Grimes 46abbd8902SMike Barcroft #ifndef _GID_T_DECLARED 47abbd8902SMike Barcroft typedef __gid_t gid_t; 48abbd8902SMike Barcroft #define _GID_T_DECLARED 49834dcadeSMike Barcroft #endif 50834dcadeSMike Barcroft 5105f98035SJacques Vidrine #ifndef _SIZE_T_DECLARED 5205f98035SJacques Vidrine typedef __size_t size_t; 5305f98035SJacques Vidrine #define _SIZE_T_DECLARED 5405f98035SJacques Vidrine #endif 5505f98035SJacques Vidrine 5659deaec5SRodney W. Grimes struct group { 5759deaec5SRodney W. Grimes char *gr_name; /* group name */ 5859deaec5SRodney W. Grimes char *gr_passwd; /* group password */ 595567b258SMark Murray gid_t gr_gid; /* group id */ 6059deaec5SRodney W. Grimes char **gr_mem; /* group members */ 6159deaec5SRodney W. Grimes }; 6259deaec5SRodney W. Grimes 6359deaec5SRodney W. Grimes __BEGIN_DECLS 64eb87df47SMike Barcroft #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 65eb87df47SMike Barcroft void endgrent(void); 66eb87df47SMike Barcroft struct group *getgrent(void); 67eb87df47SMike Barcroft #endif 68bb28f3c2SWarner Losh struct group *getgrgid(gid_t); 69bb28f3c2SWarner Losh struct group *getgrnam(const char *); 70eb87df47SMike Barcroft #if __BSD_VISIBLE 71bb28f3c2SWarner Losh const char *group_from_gid(gid_t, int); 72*4c0d7cdfSBrooks Davis int gid_from_group(const char *, gid_t *); 73*4c0d7cdfSBrooks Davis int pwcache_groupdb(int (*)(int), void (*)(void), 74*4c0d7cdfSBrooks Davis struct group * (*)(const char *), 75*4c0d7cdfSBrooks Davis struct group * (*)(gid_t)); 7659deaec5SRodney W. Grimes #endif 776fb888fcSDavid Schultz #if __BSD_VISIBLE || __XSI_VISIBLE 7805f98035SJacques Vidrine /* XXX IEEE Std 1003.1, 2003 specifies `void setgrent(void)' */ 79eb87df47SMike Barcroft int setgrent(void); 806fb888fcSDavid Schultz #endif 816fb888fcSDavid Schultz #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 8205f98035SJacques Vidrine int getgrgid_r(gid_t, struct group *, char *, size_t, 8305f98035SJacques Vidrine struct group **); 8405f98035SJacques Vidrine int getgrnam_r(const char *, struct group *, char *, size_t, 8505f98035SJacques Vidrine struct group **); 86eb87df47SMike Barcroft #endif 87eb87df47SMike Barcroft #if __BSD_VISIBLE 8805f98035SJacques Vidrine int getgrent_r(struct group *, char *, size_t, struct group **); 89eb87df47SMike Barcroft int setgroupent(int); 90eb87df47SMike Barcroft #endif 9159deaec5SRodney W. Grimes __END_DECLS 9259deaec5SRodney W. Grimes 9359deaec5SRodney W. Grimes #endif /* !_GRP_H_ */ 94