xref: /illumos-gate/usr/src/cmd/idmap/idmapd/idmapd.h (revision 479ac375)
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 _IDMAPD_H
27 #define	_IDMAPD_H
28 
29 #pragma ident	"%Z%%M%	%I%	%E% SMI"
30 
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <stdarg.h>
34 #include <rpc/rpc.h>
35 #include <synch.h>
36 #include <thread.h>
37 #include <libintl.h>
38 #include <strings.h>
39 #include <sqlite/sqlite.h>
40 #include <inttypes.h>
41 #include "idmap_prot.h"
42 #include "adutils.h"
43 #include "idmap_config.h"
44 
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48 
49 /* States a server can be in wrt request */
50 #define	_IDLE	0
51 #define	_SERVED	1
52 
53 #define	SENTINEL_PID	UINT32_MAX
54 #define	CHECK_NULL(s)	(s != NULL ? s : "null")
55 
56 extern int _rpcsvcstate;	/* set when a request is serviced */
57 extern int _rpcsvccount;	/* number of requests being serviced */
58 extern mutex_t _svcstate_lock;	/* lock for _rpcsvcstate, _rpcsvccount */
59 
60 typedef enum idmap_namemap_mode {
61 	IDMAP_NM_NONE = 0,
62 	IDMAP_NM_AD,
63 	IDMAP_NM_NLDAP,
64 	IDMAP_NM_MIXED
65 } idmap_namemap_mode_t;
66 
67 /*
68  * Global state of idmapd daemon.
69  */
70 #define	IDMAP_MAX_NAME_LEN	512
71 typedef struct idmapd_state {
72 	rwlock_t	rwlk_cfg;		/* config lock */
73 	idmap_cfg_t	*cfg;			/* config */
74 	bool_t		daemon_mode;
75 	bool_t		debug_mode;
76 	char		hostname[MAX_NAME_LEN];	/* my hostname */
77 	uid_t		next_uid;
78 	gid_t		next_gid;
79 	uid_t		limit_uid;
80 	gid_t		limit_gid;
81 	int		new_eph_db;	/* was the ephem ID db [re-]created? */
82 	ad_t		*ad;
83 } idmapd_state_t;
84 extern idmapd_state_t	_idmapdstate;
85 
86 #define	RDLOCK_CONFIG() \
87 	(void) rw_rdlock(&_idmapdstate.rwlk_cfg);
88 #define	WRLOCK_CONFIG() \
89 	(void) rw_wrlock(&_idmapdstate.rwlk_cfg);
90 #define	UNLOCK_CONFIG() \
91 	(void) rw_unlock(&_idmapdstate.rwlk_cfg);
92 
93 typedef struct hashentry {
94 	uint_t	key;
95 	uint_t	next;
96 } hashentry_t;
97 
98 typedef struct lookup_state {
99 	bool_t			sid2pid_done;
100 	bool_t			pid2sid_done;
101 	int			ad_nqueries;
102 	int			nldap_nqueries;
103 	uint_t			curpos;
104 	hashentry_t		*sid_history;
105 	uint_t			sid_history_size;
106 	idmap_mapping_batch	*batch;
107 	idmap_ids_res		*result;
108 	idmap_namemap_mode_t	nm_siduid;
109 	idmap_namemap_mode_t	nm_sidgid;
110 	char			*ad_unixuser_attr;
111 	char			*ad_unixgroup_attr;
112 	char			*nldap_winname_attr;
113 	char			*defdom;
114 	sqlite			*cache;
115 	sqlite			*db;
116 } lookup_state_t;
117 
118 #define	NLDAP_OR_MIXED(nm) \
119 	(nm == IDMAP_NM_NLDAP || nm == IDMAP_NM_MIXED)
120 #define	AD_OR_MIXED(nm) \
121 	(nm == IDMAP_NM_AD || nm == IDMAP_NM_MIXED)
122 
123 #define	NLDAP_OR_MIXED_MODE(pidtype, ls) \
124 	((pidtype == IDMAP_UID && NLDAP_OR_MIXED(ls->nm_siduid)) || \
125 	(pidtype == IDMAP_GID && NLDAP_OR_MIXED(ls->nm_sidgid)))
126 #define	AD_OR_MIXED_MODE(pidtype, ls)\
127 	((pidtype == IDMAP_UID && AD_OR_MIXED(ls->nm_siduid)) || \
128 	(pidtype == IDMAP_GID && AD_OR_MIXED(ls->nm_sidgid)))
129 #define	NLDAP_MODE(pidtype, ls) \
130 	((pidtype == IDMAP_UID && ls->nm_siduid == IDMAP_NM_NLDAP) || \
131 	(pidtype == IDMAP_GID && ls->nm_sidgid == IDMAP_NM_NLDAP))
132 #define	AD_MODE(pidtype, ls) \
133 	((pidtype == IDMAP_UID && ls->nm_siduid == IDMAP_NM_AD) || \
134 	(pidtype == IDMAP_GID && ls->nm_sidgid == IDMAP_NM_AD))
135 #define	MIXED_MODE(pidtype, ls) \
136 	((pidtype == IDMAP_UID && ls->nm_siduid == IDMAP_NM_MIXED) || \
137 	(pidtype == IDMAP_GID && ls->nm_sidgid == IDMAP_NM_MIXED))
138 
139 
140 typedef struct list_cb_data {
141 	void		*result;
142 	uint64_t	next;
143 	uint64_t	len;
144 	uint64_t	limit;
145 	int		flag;
146 } list_cb_data_t;
147 
148 typedef struct msg_table {
149 	idmap_retcode	retcode;
150 	const char	*msg;
151 } msg_table_t;
152 
153 #define	IDMAPD_SEARCH_TIMEOUT		3   /* seconds */
154 #define	IDMAPD_LDAP_OPEN_TIMEOUT	1   /* secs; initial, w/ exp backoff */
155 
156 /*
157  * The following flags are used by idmapd while processing a
158  * given mapping request. Note that idmapd uses multiple passes to
159  * process the request and the flags are used to pass information
160  * about the state of the request between these passes.
161  */
162 
163 /* Initial state. Done. Reset all flags. Remaining passes can be skipped */
164 #define	_IDMAP_F_DONE			0x00000000
165 /* Set when subsequent passes are required */
166 #define	_IDMAP_F_NOTDONE		0x00000001
167 /* Don't update name_cache. (e.g. set when winname,SID found in name_cache) */
168 #define	_IDMAP_F_DONT_UPDATE_NAMECACHE	0x00000002
169 /* Batch this request for AD lookup */
170 #define	_IDMAP_F_LOOKUP_AD		0x00000004
171 /* Batch this request for nldap directory lookup */
172 #define	_IDMAP_F_LOOKUP_NLDAP		0x00000008
173 /*
174  * Expired ephemeral mapping found in cache when processing sid2uid request.
175  * Use it if the given SID cannot be mapped by name
176  */
177 #define	_IDMAP_F_EXP_EPH_UID		0x00000010
178 /* Same as above. Used for sid2gid request */
179 #define	_IDMAP_F_EXP_EPH_GID		0x00000020
180 
181 /*
182  * Check if we are done. If so, subsequent passes can be skipped
183  * when processing a given mapping request.
184  */
185 #define	ARE_WE_DONE(f)	((f & _IDMAP_F_NOTDONE) == 0)
186 
187 #define	SIZE_INCR	5
188 #define	MAX_TRIES	5
189 #define	IDMAP_DBDIR	"/var/idmap"
190 #define	IDMAP_CACHEDIR	"/var/run/idmap"
191 #define	IDMAP_DBNAME	IDMAP_DBDIR "/idmap.db"
192 #define	IDMAP_CACHENAME	IDMAP_CACHEDIR "/idmap.db"
193 
194 #define	EMPTY_STRING(str)	(str == NULL || *str == 0)
195 
196 #define	IS_BATCH_SID(batch, i) \
197 	(batch.idmap_mapping_batch_val[i].id1.idtype == IDMAP_SID ||	\
198 	batch.idmap_mapping_batch_val[i].id1.idtype == IDMAP_USID ||	\
199 	batch.idmap_mapping_batch_val[i].id1.idtype == IDMAP_GSID)
200 
201 #define	IS_BATCH_UID(batch, i) \
202 	(batch.idmap_mapping_batch_val[i].id1.idtype == IDMAP_UID)
203 
204 #define	IS_BATCH_GID(batch, i) \
205 	(batch.idmap_mapping_batch_val[i].id1.idtype == IDMAP_GID)
206 
207 #define	IS_REQUEST_SID(req, n) \
208 	((req).id##n.idtype == IDMAP_SID ||	\
209 	(req).id##n.idtype == IDMAP_USID ||	\
210 	(req).id##n.idtype == IDMAP_GSID)	\
211 
212 
213 #define	IS_REQUEST_UID(request) \
214 	((request).id1.idtype == IDMAP_UID)
215 
216 #define	IS_REQUEST_GID(request) \
217 	((request).id1.idtype == IDMAP_GID)
218 
219 typedef idmap_retcode (*update_list_res_cb)(void *, const char **, uint64_t);
220 typedef int (*list_svc_cb)(void *, int, char **, char **);
221 
222 extern void	idmap_prog_1(struct svc_req *, register SVCXPRT *);
223 extern void	idmapdlog(int, const char *, ...);
224 extern int	init_mapping_system();
225 extern void	fini_mapping_system();
226 extern void	print_idmapdstate();
227 extern int	create_directory(const char *, uid_t, gid_t);
228 extern int	load_config();
229 extern void	reload_ad();
230 extern int	idmap_init_tsd_key(void);
231 extern void	degrade_svc(int, const char *);
232 extern void	restore_svc(void);
233 
234 
235 extern int		init_dbs();
236 extern void		fini_dbs();
237 extern idmap_retcode	get_db_handle(sqlite **);
238 extern idmap_retcode	get_cache_handle(sqlite **);
239 extern idmap_retcode	sql_exec_no_cb(sqlite *, const char *, char *);
240 extern idmap_retcode	add_namerule(sqlite *, idmap_namerule *);
241 extern idmap_retcode	rm_namerule(sqlite *, idmap_namerule *);
242 extern idmap_retcode	flush_namerules(sqlite *);
243 
244 extern char 		*tolower_u8(const char *);
245 
246 extern idmap_retcode	gen_sql_expr_from_rule(idmap_namerule *, char **);
247 extern idmap_retcode	validate_list_cb_data(list_cb_data_t *, int,
248 				char **, int, uchar_t **, size_t);
249 extern idmap_retcode	process_list_svc_sql(sqlite *, const char *, char *,
250 				uint64_t, int, list_svc_cb, void *);
251 extern idmap_retcode	sid2pid_first_pass(lookup_state_t *,
252 				idmap_mapping *, idmap_id_res *);
253 extern idmap_retcode	sid2pid_second_pass(lookup_state_t *,
254 				idmap_mapping *, idmap_id_res *);
255 extern idmap_retcode	pid2sid_first_pass(lookup_state_t *,
256 				idmap_mapping *, idmap_id_res *, int, int);
257 extern idmap_retcode	pid2sid_second_pass(lookup_state_t *,
258 				idmap_mapping *, idmap_id_res *, int);
259 extern idmap_retcode	update_cache_sid2pid(lookup_state_t *,
260 				idmap_mapping *, idmap_id_res *);
261 extern idmap_retcode	update_cache_pid2sid(lookup_state_t *,
262 				idmap_mapping *, idmap_id_res *);
263 extern idmap_retcode	get_u2w_mapping(sqlite *, sqlite *, idmap_mapping *,
264 				idmap_mapping *, int);
265 extern idmap_retcode	get_w2u_mapping(sqlite *, sqlite *, idmap_mapping *,
266 				idmap_mapping *);
267 extern idmap_retcode	load_cfg_in_state(lookup_state_t *);
268 extern void		cleanup_lookup_state(lookup_state_t *);
269 
270 extern idmap_retcode	ad_lookup_batch(lookup_state_t *,
271 				idmap_mapping_batch *, idmap_ids_res *);
272 extern idmap_retcode	lookup_name2sid(sqlite *, const char *, const char *,
273 				int *, char **, char **, idmap_rid_t *,
274 				idmap_mapping *, int);
275 extern idmap_retcode	lookup_wksids_name2sid(const char *, char **, char **,
276 				idmap_rid_t *, int *);
277 
278 #ifdef __cplusplus
279 }
280 #endif
281 
282 #endif /* _IDMAPD_H */
283