4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
22 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
26 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
27 /* All Rights Reserved */
30 * Copyright (c) 2013 RackTop Systems.
34 #include <sys/types.h>
38 #include <libcmdutils.h>
40 static int findunusedgid(gid_t start
, gid_t stop
, gid_t
*ret
);
41 static boolean_t
isreservedgid(gid_t gid
);
44 * Find the highest unused uid. If the highest unused gid is "stop",
45 * then attempt to find a hole in the range. Returns 0 on success.
48 findnextgid(gid_t start
, gid_t stop
, gid_t
*ret
)
52 boolean_t overflow
= B_FALSE
;
55 for (grp
= getgrent(); grp
!= NULL
; grp
= getgrent()) {
56 if (isreservedgid(grp
->gr_gid
)) /* Skip reserved IDs */
58 if (grp
->gr_gid
>= gid
) {
59 if (grp
->gr_gid
== stop
) { /* Overflow check */
63 gid
= grp
->gr_gid
+ 1;
66 if (grp
== NULL
&& errno
!= 0) {
71 if (overflow
== B_TRUE
) /* Find a hole */
72 return (findunusedgid(start
, stop
, ret
));
73 while (isreservedgid(gid
) && gid
< stop
) /* Skip reserved IDs */
80 * Check to see whether the gid is a reserved gid
81 * -- nobody, noaccess or nogroup
84 isreservedgid(gid_t gid
)
86 return (gid
== 60001 || gid
== 60002 || gid
== 65534);
90 * findunusedgid() attempts to return the next valid usable id between the
91 * supplied upper and lower limits. Returns 0 on success.
94 findunusedgid(gid_t start
, gid_t stop
, gid_t
*ret
)
98 for (gid
= start
; gid
<= stop
; gid
++) {
99 if (isreservedgid(gid
))
101 if (getgrgid(gid
) == NULL
) {