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 5c651b32eSJohn Sonnenschein * Common Development and Distribution License (the "License"). 6c651b32eSJohn 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*0a1278f2SGary Mills * Copyright (c) 2013 Gary Mills 23*0a1278f2SGary Mills * 24230167a0Sgww * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. 257c478bd9Sstevel@tonic-gate */ 267c478bd9Sstevel@tonic-gate 277c478bd9Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 287c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate 317c478bd9Sstevel@tonic-gate #ifndef _USERS_H 327c478bd9Sstevel@tonic-gate #define _USERS_H 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate 357c478bd9Sstevel@tonic-gate #include <pwd.h> 367c478bd9Sstevel@tonic-gate #include <grp.h> 377c478bd9Sstevel@tonic-gate #include <project.h> 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate #define GROUP "/etc/group" 407c478bd9Sstevel@tonic-gate 417c478bd9Sstevel@tonic-gate /* max number of projects that can be specified when adding a user */ 427c478bd9Sstevel@tonic-gate #define NPROJECTS_MAX 1024 437c478bd9Sstevel@tonic-gate 447c478bd9Sstevel@tonic-gate /* validation returns */ 457c478bd9Sstevel@tonic-gate #define NOTUNIQUE 0 /* not unique */ 467c478bd9Sstevel@tonic-gate #define RESERVED 1 /* reserved */ 477c478bd9Sstevel@tonic-gate #define UNIQUE 2 /* is unique */ 487c478bd9Sstevel@tonic-gate #define TOOBIG 3 /* number too big */ 497c478bd9Sstevel@tonic-gate #define INVALID 4 50*0a1278f2SGary Mills #define LONGNAME 5 /* string too long */ 517c478bd9Sstevel@tonic-gate 527c478bd9Sstevel@tonic-gate /* 537c478bd9Sstevel@tonic-gate * Note: constraints checking for warning (release 2.6), 547c478bd9Sstevel@tonic-gate * and these may be enforced in the future releases. 557c478bd9Sstevel@tonic-gate */ 567c478bd9Sstevel@tonic-gate #define WARN_NAME_TOO_LONG 0x1 577c478bd9Sstevel@tonic-gate #define WARN_BAD_GROUP_NAME 0x2 587c478bd9Sstevel@tonic-gate #define WARN_BAD_LOGNAME_CHAR 0x4 597c478bd9Sstevel@tonic-gate #define WARN_BAD_LOGNAME_FIRST 0x8 607c478bd9Sstevel@tonic-gate #define WARN_NO_LOWERCHAR 0x10 617c478bd9Sstevel@tonic-gate #define WARN_BAD_PROJ_NAME 0x20 627c478bd9Sstevel@tonic-gate #define WARN_LOGGED_IN 0x40 637c478bd9Sstevel@tonic-gate 64230167a0Sgww /* Exit codes from passmgmt */ 657c478bd9Sstevel@tonic-gate #define PEX_SUCCESS 0 667c478bd9Sstevel@tonic-gate #define PEX_NO_PERM 1 677c478bd9Sstevel@tonic-gate #define PEX_SYNTAX 2 687c478bd9Sstevel@tonic-gate #define PEX_BADARG 3 697c478bd9Sstevel@tonic-gate #define PEX_BADUID 4 707c478bd9Sstevel@tonic-gate #define PEX_HOSED_FILES 5 717c478bd9Sstevel@tonic-gate #define PEX_FAILED 6 727c478bd9Sstevel@tonic-gate #define PEX_MISSING 7 737c478bd9Sstevel@tonic-gate #define PEX_BUSY 8 747c478bd9Sstevel@tonic-gate #define PEX_BADNAME 9 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate #define REL_PATH(x) (x && *x != '/') 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate /* 797c478bd9Sstevel@tonic-gate * interfaces available from the library 807c478bd9Sstevel@tonic-gate */ 817c478bd9Sstevel@tonic-gate extern int valid_login(char *, struct passwd **, int *); 827c478bd9Sstevel@tonic-gate extern int valid_gname(char *, struct group **, int *); 837c478bd9Sstevel@tonic-gate extern int valid_group(char *, struct group **, int *); 847c478bd9Sstevel@tonic-gate extern int valid_project(char *, struct project *, void *buf, size_t, int *); 857c478bd9Sstevel@tonic-gate extern int valid_projname(char *, struct project *, void *buf, size_t, int *); 867c478bd9Sstevel@tonic-gate extern void warningmsg(int, char *); 877c478bd9Sstevel@tonic-gate extern void putgrent(struct group *, FILE *); 887c478bd9Sstevel@tonic-gate 89c651b32eSJohn Sonnenschein /* passmgmt */ 90230167a0Sgww #define PASSMGMT "/usr/lib/passmgmt"; 917c478bd9Sstevel@tonic-gate #endif /* _USERS_H */ 92