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