xref: /titanic_52/usr/src/lib/libidmap/common/idmap.h (revision 1fdeec650620e8498c06f832ea4bd2292f7e9632)
1c5c4113dSnw141292 /*
2c5c4113dSnw141292  * CDDL HEADER START
3c5c4113dSnw141292  *
4c5c4113dSnw141292  * The contents of this file are subject to the terms of the
5c5c4113dSnw141292  * Common Development and Distribution License (the "License").
6c5c4113dSnw141292  * You may not use this file except in compliance with the License.
7c5c4113dSnw141292  *
8c5c4113dSnw141292  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9c5c4113dSnw141292  * or http://www.opensolaris.org/os/licensing.
10c5c4113dSnw141292  * See the License for the specific language governing permissions
11c5c4113dSnw141292  * and limitations under the License.
12c5c4113dSnw141292  *
13c5c4113dSnw141292  * When distributing Covered Code, include this CDDL HEADER in each
14c5c4113dSnw141292  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15c5c4113dSnw141292  * If applicable, add the following below this CDDL HEADER, with the
16c5c4113dSnw141292  * fields enclosed by brackets "[]" replaced with your own identifying
17c5c4113dSnw141292  * information: Portions Copyright [yyyy] [name of copyright owner]
18c5c4113dSnw141292  *
19c5c4113dSnw141292  * CDDL HEADER END
20c5c4113dSnw141292  */
21c5c4113dSnw141292 /*
22c5866007SKeyur Desai  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
23c5c4113dSnw141292  */
24c5c4113dSnw141292 
25c5c4113dSnw141292 /*
26c5c4113dSnw141292  * Header File for Clients of Native Identity Mapping Service
27c5c4113dSnw141292  */
28c5c4113dSnw141292 
29c5c4113dSnw141292 #ifndef _IDMAP_H
30c5c4113dSnw141292 #define	_IDMAP_H
31c5c4113dSnw141292 
32c5c4113dSnw141292 
33c5c4113dSnw141292 #include <stdlib.h>
34c5c4113dSnw141292 #include <ctype.h>
35c5c4113dSnw141292 #include <sys/param.h>
36c5c4113dSnw141292 #include <sys/types.h>
37c5c4113dSnw141292 #include <sys/stat.h>
38c5c4113dSnw141292 #include <sys/idmap.h>
39c5c4113dSnw141292 
40c5c4113dSnw141292 #ifdef __cplusplus
41c5c4113dSnw141292 extern "C" {
42c5c4113dSnw141292 #endif
43c5c4113dSnw141292 
44c5c4113dSnw141292 /* Status */
45c5c4113dSnw141292 typedef int32_t	idmap_stat;
46c5c4113dSnw141292 
47c5c4113dSnw141292 typedef uint32_t	idmap_rid_t;
48c5c4113dSnw141292 
49c5c4113dSnw141292 /* Opaque "get-mapping" handle */
50c5c4113dSnw141292 typedef struct idmap_get_handle idmap_get_handle_t;
51c5c4113dSnw141292 
527a8a68f5SJulian Pullen /* Logger prototype which is based on syslog */
53c5866007SKeyur Desai typedef void (*idmap_logger_t)(int, const char *, ...);
54479ac375Sdm199847 
55c5c4113dSnw141292 /*
56c5c4113dSnw141292  * Setup API
57c5c4113dSnw141292  */
58c5c4113dSnw141292 
59c5c4113dSnw141292 /* Status code to string */
60*1fdeec65Sjoyce mcintosh extern const char *idmap_stat2string(idmap_stat);
61c5c4113dSnw141292 
62c5c4113dSnw141292 /* Free memory allocated by the API */
63c5c4113dSnw141292 extern void idmap_free(void *);
64c5c4113dSnw141292 
65c5c4113dSnw141292 
66c5c4113dSnw141292 /*
673ee87bcaSJulian Pullen  * Supported flag values for mapping requests.
683ee87bcaSJulian Pullen  * These flag values are applicable to the batch API and the
693ee87bcaSJulian Pullen  * Windows Name API below.
703ee87bcaSJulian Pullen  */
713ee87bcaSJulian Pullen /* Use the libidmap cache */
723ee87bcaSJulian Pullen #define	IDMAP_REQ_FLG_USE_CACHE	0x00000010
733ee87bcaSJulian Pullen 
743ee87bcaSJulian Pullen /*
75c5c4113dSnw141292  * API to batch SID to UID/GID mapping requests
76c5c4113dSnw141292  */
77c5c4113dSnw141292 /* Create handle */
78*1fdeec65Sjoyce mcintosh extern idmap_stat idmap_get_create(idmap_get_handle_t **);
79c5c4113dSnw141292 
80c5c4113dSnw141292 /* Given SID, get UID */
81c5c4113dSnw141292 extern idmap_stat idmap_get_uidbysid(idmap_get_handle_t *, char *,
82c5c4113dSnw141292 	idmap_rid_t, int, uid_t *, idmap_stat *);
83c5c4113dSnw141292 
84c5c4113dSnw141292 /* Given SID, get GID */
85c5c4113dSnw141292 extern idmap_stat idmap_get_gidbysid(idmap_get_handle_t *, char *,
86c5c4113dSnw141292 	idmap_rid_t, int, gid_t *, idmap_stat *);
87c5c4113dSnw141292 
88c5c4113dSnw141292 /* Given SID, get UID or GID */
89c5c4113dSnw141292 extern idmap_stat idmap_get_pidbysid(idmap_get_handle_t *, char *,
90c5c4113dSnw141292 	idmap_rid_t, int, uid_t *, int *, idmap_stat *);
91c5c4113dSnw141292 
92c5c4113dSnw141292 /* Given UID, get SID */
93c5c4113dSnw141292 extern idmap_stat idmap_get_sidbyuid(idmap_get_handle_t *, uid_t, int,
94c5c4113dSnw141292 	char **, idmap_rid_t *, idmap_stat *);
95c5c4113dSnw141292 
96c5c4113dSnw141292 /* Given GID, get SID */
97c5c4113dSnw141292 extern idmap_stat idmap_get_sidbygid(idmap_get_handle_t *, gid_t, int,
98c5c4113dSnw141292 	char **, idmap_rid_t *, idmap_stat *);
99c5c4113dSnw141292 
100c5c4113dSnw141292 /* Process the batched requests */
101c5c4113dSnw141292 extern idmap_stat idmap_get_mappings(idmap_get_handle_t *);
102c5c4113dSnw141292 
103c5c4113dSnw141292 /* Destroy the handle */
104c5c4113dSnw141292 extern void idmap_get_destroy(idmap_get_handle_t *);
105c5c4113dSnw141292 
106dd5829d1Sbaban 
107dd5829d1Sbaban /*
108dd5829d1Sbaban  * API to get Windows name by UID/GID and vice-versa
109dd5829d1Sbaban  */
110dd5829d1Sbaban /* Given UID, get Windows name */
1113ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebyuid(uid_t, int, char **, char **);
112dd5829d1Sbaban 
113dd5829d1Sbaban /* Given GID, get Windows name */
1143ee87bcaSJulian Pullen extern idmap_stat idmap_getwinnamebygid(gid_t, int, char **, char **);
115dd5829d1Sbaban 
116dd5829d1Sbaban /* Given Windows name, get UID */
1173ee87bcaSJulian Pullen extern idmap_stat idmap_getuidbywinname(const char *, const char *,
1183ee87bcaSJulian Pullen 	int, uid_t *);
119dd5829d1Sbaban 
120dd5829d1Sbaban /* Given Windows name, get GID */
1213ee87bcaSJulian Pullen extern idmap_stat idmap_getgidbywinname(const char *, const char *,
1223ee87bcaSJulian Pullen 	int, gid_t *);
123dd5829d1Sbaban 
124dd5829d1Sbaban 
1257a8a68f5SJulian Pullen /* Logger */
126c5866007SKeyur Desai extern void idmap_set_logger(idmap_logger_t funct);
1277a8a68f5SJulian Pullen 
128c5c4113dSnw141292 #ifdef __cplusplus
129c5c4113dSnw141292 }
130c5c4113dSnw141292 #endif
131c5c4113dSnw141292 
132c5c4113dSnw141292 #endif /* _IDMAP_H */
133