prof_attr.h revision 6059:6f4d284e50d9
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#ifndef	_PROF_ATTR_H
27#define	_PROF_ATTR_H
28
29#pragma ident	"%Z%%M%	%I%	%E% SMI"
30
31#ifdef	__cplusplus
32extern "C" {
33#endif
34
35
36#include <sys/types.h>
37#include <secdb.h>
38
39
40#define	PROFATTR_FILENAME		"/etc/security/prof_attr"
41#define	PROFATTR_DB_NAME		"prof_attr.org_dir"
42#define	PROFATTR_DB_NCOL		5	/* total columns */
43#define	PROFATTR_DB_NKEYCOL		1	/* total searchable columns */
44#define	PROFATTR_DB_TBLT		"prof_attr_tbl"
45#define	PROFATTR_NAME_DEFAULT_KW	"nobody"
46
47#define	PROFATTR_COL0_KW		"name"
48#define	PROFATTR_COL1_KW		"res1"
49#define	PROFATTR_COL2_KW		"res2"
50#define	PROFATTR_COL3_KW		"desc"
51#define	PROFATTR_COL4_KW		"attr"
52
53#define	DEF_PROF			"PROFS_GRANTED="
54#define	DEF_CONSUSER			"CONSOLE_USER="
55
56#define	MAXPROFS			4096
57
58/*
59 * indices of searchable columns
60 */
61#define	PROFATTR_KEYCOL0		0	/* name */
62
63
64/*
65 * Key words used in the prof_attr database
66 */
67#define	PROFATTR_AUTHS_KW		"auths"
68#define	PROFATTR_PROFS_KW		"profiles"
69#define	PROFATTR_PRIVS_KW		"privs"
70
71
72/*
73 * Nsswitch representation of profile attributes.
74 */
75
76typedef struct profstr_s {
77	char   *name;	/* proforization name */
78	char   *res1;	/* RESERVED */
79	char   *res2;	/* RESERVED */
80	char   *desc;	/* description */
81	char   *attr;	/* string of key-value pair attributes */
82} profstr_t;
83
84typedef struct profattr_s {
85	char   *name;	/* proforization name */
86	char   *res1;	/* RESERVED */
87	char   *res2;	/* RESERVED */
88	char   *desc;	/* description */
89	kva_t  *attr;	/* array of key-value pair attributes */
90} profattr_t;
91
92#ifdef    __STDC__
93extern profattr_t *getprofnam(const char *);
94extern profattr_t *getprofattr(void);
95extern void getproflist(const char *, char **, int *);
96extern void setprofattr(void);
97extern void endprofattr(void);
98extern void free_profattr(profattr_t *);
99extern void free_proflist(char **, int);
100
101#else				/* not __STDC__ */
102
103extern profattr_t *getprofnam();
104extern profattr_t *getprofattr();
105extern void getproflist();
106extern int setprofattr();
107extern int endprofattr();
108extern void free_profattr();
109extern void free_proflist();
110
111#endif
112
113#ifdef __cplusplus
114}
115#endif
116
117#endif	/* _PROF_ATTR_H */
118