stdusers.c revision 0adc16190e36914964740716575460dda750de39
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <string.h>
#include "stdusers.h"
/* LINTLIBRARY */
const struct stdlist usernames[] = {
{ "root", 0 },
{ "daemon", 1 },
{ "bin", 2 },
{ "sys", 3 },
{ "adm", 4 },
{ "uucp", 5 },
{ "nuucp", 9 },
{ "smmsp", 25 },
{ "listen", 37 },
{ "gdm", 50 },
{ "lp", 71 },
{ "webservd", 80 },
{ "nobody", 60001 },
{ "noaccess", 60002 },
{ "nobody4", 65534 },
{ NULL, 0 }
};
const struct stdlist groupnames[] = {
{ "root", 0 },
{ "other", 1 },
{ "bin", 2 },
{ "sys", 3 },
{ "adm", 4 },
{ "uucp", 5 },
{ "mail", 6 },
{ "tty", 7 },
{ "lp", 8 },
{ "nuucp", 9 },
{ "staff", 10 },
{ "daemon", 12 },
{ "sysadmin", 14 },
{ "smmsp", 25 },
{ "gdm", 50 },
{ "webservd", 80 },
{ "nobody", 60001 },
{ "noaccess", 60002 },
{ "nogroup", 65534 },
{ NULL, 0 }
};
int
stdfind(const char *name, const struct stdlist *list)
{
while (list->name != NULL) {
if (strcmp(name, list->name) == 0)
return (list->value);
list++;
}
return (-1);
}
const char *
stdfindbyvalue(int value, const struct stdlist *list)
{
while (list->name != NULL) {
if (value == list->value)
return (list->name);
list++;
}
return (NULL);
}