xref: /titanic_50/usr/src/cmd/oamuser/inc/users.h (revision c651b32e568cbf9b715a127805fe1cba321be5b0)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*c651b32eSJohn Sonnenschein  * Common Development and Distribution License (the "License").
6*c651b32eSJohn Sonnenschein  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22*c651b32eSJohn Sonnenschein  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
277c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #ifndef _USERS_H
317c478bd9Sstevel@tonic-gate #define	_USERS_H
327c478bd9Sstevel@tonic-gate 
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include <pwd.h>
357c478bd9Sstevel@tonic-gate #include <grp.h>
367c478bd9Sstevel@tonic-gate #include <project.h>
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate #define	GROUP		"/etc/group"
397c478bd9Sstevel@tonic-gate 
407c478bd9Sstevel@tonic-gate /* max number of projects that can be specified when adding a user */
417c478bd9Sstevel@tonic-gate #define	NPROJECTS_MAX	1024
427c478bd9Sstevel@tonic-gate 
437c478bd9Sstevel@tonic-gate /* validation returns */
447c478bd9Sstevel@tonic-gate #define	NOTUNIQUE	0	/* not unique */
457c478bd9Sstevel@tonic-gate #define	RESERVED	1	/* reserved */
467c478bd9Sstevel@tonic-gate #define	UNIQUE		2	/* is unique */
477c478bd9Sstevel@tonic-gate #define	TOOBIG		3	/* number too big */
487c478bd9Sstevel@tonic-gate #define	INVALID		4
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate /*
517c478bd9Sstevel@tonic-gate  * Note: constraints checking for warning (release 2.6),
527c478bd9Sstevel@tonic-gate  * and these may be enforced in the future releases.
537c478bd9Sstevel@tonic-gate  */
547c478bd9Sstevel@tonic-gate #define	WARN_NAME_TOO_LONG	0x1
557c478bd9Sstevel@tonic-gate #define	WARN_BAD_GROUP_NAME	0x2
567c478bd9Sstevel@tonic-gate #define	WARN_BAD_LOGNAME_CHAR	0x4
577c478bd9Sstevel@tonic-gate #define	WARN_BAD_LOGNAME_FIRST	0x8
587c478bd9Sstevel@tonic-gate #define	WARN_NO_LOWERCHAR	0x10
597c478bd9Sstevel@tonic-gate #define	WARN_BAD_PROJ_NAME	0x20
607c478bd9Sstevel@tonic-gate #define	WARN_LOGGED_IN		0x40
617c478bd9Sstevel@tonic-gate 
627c478bd9Sstevel@tonic-gate /* Exit codes from passmgmt(1) */
637c478bd9Sstevel@tonic-gate #define	PEX_SUCCESS	0
647c478bd9Sstevel@tonic-gate #define	PEX_NO_PERM	1
657c478bd9Sstevel@tonic-gate #define	PEX_SYNTAX	2
667c478bd9Sstevel@tonic-gate #define	PEX_BADARG	3
677c478bd9Sstevel@tonic-gate #define	PEX_BADUID	4
687c478bd9Sstevel@tonic-gate #define	PEX_HOSED_FILES	5
697c478bd9Sstevel@tonic-gate #define	PEX_FAILED	6
707c478bd9Sstevel@tonic-gate #define	PEX_MISSING	7
717c478bd9Sstevel@tonic-gate #define	PEX_BUSY	8
727c478bd9Sstevel@tonic-gate #define	PEX_BADNAME	9
737c478bd9Sstevel@tonic-gate 
747c478bd9Sstevel@tonic-gate #define	REL_PATH(x)	(x && *x != '/')
757c478bd9Sstevel@tonic-gate 
767c478bd9Sstevel@tonic-gate /*
777c478bd9Sstevel@tonic-gate  * interfaces available from the library
787c478bd9Sstevel@tonic-gate  */
797c478bd9Sstevel@tonic-gate extern int valid_login(char *, struct passwd **, int *);
807c478bd9Sstevel@tonic-gate extern int valid_gname(char *, struct group **, int *);
817c478bd9Sstevel@tonic-gate extern int valid_group(char *, struct group **, int *);
827c478bd9Sstevel@tonic-gate extern int valid_project(char *, struct project *, void *buf, size_t, int *);
837c478bd9Sstevel@tonic-gate extern int valid_projname(char *, struct project *, void *buf, size_t, int *);
847c478bd9Sstevel@tonic-gate extern void warningmsg(int, char *);
857c478bd9Sstevel@tonic-gate extern void putgrent(struct group *, FILE *);
867c478bd9Sstevel@tonic-gate 
87*c651b32eSJohn Sonnenschein /* passmgmt */
88*c651b32eSJohn Sonnenschein #define	PASSMGMT	"/usr/bin/passmgmt";
897c478bd9Sstevel@tonic-gate #endif	/* _USERS_H */
90