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