xref: /illumos-gate/usr/src/tools/protocmp/stdusers.c (revision 62536318)
1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 #include <string.h>
29 #include "stdusers.h"
30 
31 /* LINTLIBRARY */
32 
33 const struct stdlist usernames[] = {
34 	{ "root", 0 },
35 	{ "daemon", 1 },
36 	{ "bin", 2 },
37 	{ "sys", 3 },
38 	{ "adm", 4 },
39 	{ "uucp", 5 },
40 	{ "nuucp", 9 },
41 	{ "dladm", 15 },
42 	{ "smmsp", 25 },
43 	{ "listen", 37 },
44 	{ "gdm", 50 },
45 	{ "lp", 71 },
46 	{ "webservd", 80 },
47 	{ "postgres", 90 },
48 	{ "nobody", 60001 },
49 	{ "noaccess", 60002 },
50 	{ "nobody4", 65534 },
51 	{ NULL, 0 }
52 };
53 
54 const struct stdlist groupnames[] = {
55 	{ "root", 0 },
56 	{ "other", 1 },
57 	{ "bin", 2 },
58 	{ "sys", 3 },
59 	{ "adm", 4 },
60 	{ "uucp", 5 },
61 	{ "mail", 6 },
62 	{ "tty", 7 },
63 	{ "lp", 8 },
64 	{ "nuucp", 9 },
65 	{ "staff", 10 },
66 	{ "daemon", 12 },
67 	{ "sysadmin", 14 },
68 	{ "smmsp", 25 },
69 	{ "gdm", 50 },
70 	{ "webservd", 80 },
71 	{ "postgres", 90 },
72 	{ "nobody", 60001 },
73 	{ "noaccess", 60002 },
74 	{ "nogroup", 65534 },
75 	{ NULL, 0 }
76 };
77 
78 int
79 stdfind(const char *name, const struct stdlist *list)
80 {
81 	while (list->name != NULL) {
82 		if (strcmp(name, list->name) == 0)
83 			return (list->value);
84 		list++;
85 	}
86 	return (-1);
87 }
88 
89 const char *
90 stdfindbyvalue(int value, const struct stdlist *list)
91 {
92 	while (list->name != NULL) {
93 		if (value == list->value)
94 			return (list->name);
95 		list++;
96 	}
97 	return (NULL);
98 }
99