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