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 2008 Sun Microsystems, Inc. All rights reserved. 23 * Use is subject to license terms. 24 */ 25 26 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 27 /* All Rights Reserved */ 28 29 30 #ifndef _USERS_H 31 #define _USERS_H 32 33 34 #include <pwd.h> 35 #include <grp.h> 36 #include <project.h> 37 38 #define GROUP "/etc/group" 39 40 /* max number of projects that can be specified when adding a user */ 41 #define NPROJECTS_MAX 1024 42 43 /* validation returns */ 44 #define NOTUNIQUE 0 /* not unique */ 45 #define RESERVED 1 /* reserved */ 46 #define UNIQUE 2 /* is unique */ 47 #define TOOBIG 3 /* number too big */ 48 #define INVALID 4 49 50 /* 51 * Note: constraints checking for warning (release 2.6), 52 * and these may be enforced in the future releases. 53 */ 54 #define WARN_NAME_TOO_LONG 0x1 55 #define WARN_BAD_GROUP_NAME 0x2 56 #define WARN_BAD_LOGNAME_CHAR 0x4 57 #define WARN_BAD_LOGNAME_FIRST 0x8 58 #define WARN_NO_LOWERCHAR 0x10 59 #define WARN_BAD_PROJ_NAME 0x20 60 #define WARN_LOGGED_IN 0x40 61 62 /* Exit codes from passmgmt(1) */ 63 #define PEX_SUCCESS 0 64 #define PEX_NO_PERM 1 65 #define PEX_SYNTAX 2 66 #define PEX_BADARG 3 67 #define PEX_BADUID 4 68 #define PEX_HOSED_FILES 5 69 #define PEX_FAILED 6 70 #define PEX_MISSING 7 71 #define PEX_BUSY 8 72 #define PEX_BADNAME 9 73 74 #define REL_PATH(x) (x && *x != '/') 75 76 /* 77 * interfaces available from the library 78 */ 79 extern int valid_login(char *, struct passwd **, int *); 80 extern int valid_gname(char *, struct group **, int *); 81 extern int valid_group(char *, struct group **, int *); 82 extern int valid_project(char *, struct project *, void *buf, size_t, int *); 83 extern int valid_projname(char *, struct project *, void *buf, size_t, int *); 84 extern void warningmsg(int, char *); 85 extern void putgrent(struct group *, FILE *); 86 87 /* passmgmt */ 88 #define PASSMGMT "/usr/bin/passmgmt"; 89 #endif /* _USERS_H */ 90