summaryrefslogtreecommitdiff
path: root/source/lib/util_hnd.c
blob: 7715ba7aefc5b7516018ae12ab9906ff1e622672 (plain)
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516

/* 
 *  Unix SMB/Netbios implementation.
 *  Version 1.9.
 *  RPC Pipe client / server routines
 *  Copyright (C) Andrew Tridgell              1992-2000,
 *  Copyright (C) Luke Kenneth Casson Leighton 1996-2000,
 *  Copyright (C) Elrond                            2000
 *  
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *  
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *  
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */


#include "includes.h"


extern int DEBUGLEVEL;

#ifndef MAX_OPEN_POLS
#define MAX_OPEN_POLS 64
#endif

#define POL_NO_INFO 0
#define POL_REG_INFO 1
#define POL_SAMR_INFO 2
#define POL_CLI_INFO 3
#define POL_SVC_INFO 4


struct policy
{
	struct policy *next, *prev;
	int pnum;
	BOOL open;
	POLICY_HND pol_hnd;
	uint32 access_mask;
	vuser_key key;

	char *name;

	int type;
	void (*free_fn)(void*);
	void *dev;
};

/****************************************************************************
  i hate this.  a global policy handle cache.  yuk.
****************************************************************************/
struct policy_cache *get_global_hnd_cache(void)
{
	static struct policy_cache *cache = NULL;

	if (cache == NULL)
	{
		cache = init_policy_cache(1024);
	}
	return cache;
}

/****************************************************************************
  create a unique policy handle
****************************************************************************/
static void create_pol_hnd(POLICY_HND *hnd)
{
	static uint32 pol_hnd_low  = 0;
	static uint32 pol_hnd_high = 0;

	if (hnd == NULL) return;

	/* i severely doubt that pol_hnd_high will ever be non-zero... */
	pol_hnd_low++;
	if (pol_hnd_low == 0) pol_hnd_high++;

	SIVAL(hnd->data, 0 , 0x0);  /* first bit must be null */
	SIVAL(hnd->data, 4 , pol_hnd_low ); /* second bit is incrementing */
	SIVAL(hnd->data, 8 , pol_hnd_high); /* second bit is incrementing */
	SIVAL(hnd->data, 12, time(NULL)); /* something random */
	SIVAL(hnd->data, 16, getpid()); /* something more random */
}

/****************************************************************************
  initialise policy handle states...
****************************************************************************/
struct policy_cache *init_policy_cache(int num_pol_hnds)
{
	struct policy_cache *cache = malloc(sizeof(struct policy_cache));
	if (cache != NULL)
	{
		cache->bmap = NULL;
		cache->Policy = NULL;
	}
	return cache;
}

/****************************************************************************
 free policy handle states...
****************************************************************************/
void free_policy_cache(struct policy_cache *cache)
{
	free(cache);
}

/****************************************************************************
  find policy by handle
****************************************************************************/
static struct policy *find_policy(struct policy_cache *cache,
				const POLICY_HND *hnd)
{
	struct policy *p;

	for (p=cache->Policy;p;p=p->next) {
		if (memcmp(&p->pol_hnd, hnd, sizeof(*hnd)) == 0) {
			DEBUG(4,("Found policy hnd[%x] ", p->pnum));
			dump_data(4, (const char *)hnd->data,
			sizeof(hnd->data));
			return p;
		}
	}

	DEBUG(4,("cache->Policy not found: "));
	dump_data(4, (const char *)hnd->data, sizeof(hnd->data));

	return NULL;
}

/****************************************************************************
  set the name of a POLICY_HND
****************************************************************************/
BOOL policy_hnd_set_name(struct policy_cache *cache,
			 POLICY_HND *hnd, const char *name)
{
	struct policy *p = find_policy(cache, hnd);
	if (!p)
	{
		DEBUG(3, ("Error setting name for policy\n"));
		return False;
	}
	safe_free(p->name);
	if (name)
	{
		DEBUG(4, ("policy pnum=%x setting name to %s\n",
			  p->pnum, name));
		p->name = strdup(name);
		return (p->name != NULL);
	}
	else
	{
		DEBUG(4, ("policy pnum=%x setting name to %s\n",
			  p->pnum, "NULL"));
		p->name = NULL;
		return True;
	}
}

/****************************************************************************
  get the name of a POLICY_HND
****************************************************************************/
static const char *pol_get_name(const struct policy *p)
{
	if (!p)
	{
		return "(NULL)";
	}
	if (p->name)
	{
		return p->name;
	}
	return "";
}

/****************************************************************************
  get the name of a POLICY_HND, public interface
****************************************************************************/
const char *policy_hnd_get_name(struct policy_cache *cache,
				const POLICY_HND *hnd)
{
	const char *name;
	struct policy *p = find_policy(cache, hnd);

	if (!p)
	{
		DEBUG(3, ("Error getting name for policy\n"));
		return "(invalid POLICY_HND)";
	}
	name = pol_get_name(p);
	DEBUG(4, ("policy(pnum=%x %s): getting name\n",
		  p->pnum, name));
	return name;
}


/****************************************************************************
  find first available policy slot.  copies a policy handle for you.
****************************************************************************/
BOOL dup_policy_hnd(struct policy_cache *cache,
				POLICY_HND *hnd,
				const POLICY_HND *from)
{
	struct policy *p = find_policy(cache, from);

	if (!p || !p->open)
	{
		return False;
	}
	DEBUG(3,("Duplicating policy state pnum=%x\n", p->pnum));
	return register_policy_hnd(cache, &p->key, hnd, p->access_mask);
}

/****************************************************************************
  find first available policy slot.  creates a policy handle for you.
****************************************************************************/
BOOL register_policy_hnd(struct policy_cache *cache,
				const vuser_key *key,
				POLICY_HND *hnd,
				uint32 access_mask)
{
	struct policy *p;
	static int count = 1;

	p = (struct policy *)malloc(sizeof(*p));
	if (!p)
	{
		DEBUG(0,("ERROR: out of memory!\n"));
		return False;
	}

	ZERO_STRUCTP(p);

	p->open = True;				
	p->pnum = count++;
	p->access_mask = access_mask;
	if (key != NULL)
	{
		p->key = *key;
	}
	else
	{
		p->key.vuid = UID_FIELD_INVALID;
		p->key.pid = getpid();
	}


	DLIST_ADD(cache->Policy, p);
	
	DEBUG(4,("Opened policy hnd[%x] ", p->pnum));
	DEBUG(10,("register_policy_hnd: vuser [%d, %x]\n",
	           p->key.pid, p->key.vuid));

	memcpy(&p->pol_hnd, hnd, sizeof(*hnd));
	dump_data(4, (char *)hnd->data, sizeof(hnd->data));

	return True;
}

/****************************************************************************
  find first available policy slot.  creates a policy handle for you.
****************************************************************************/
BOOL open_policy_hnd(struct policy_cache *cache, 
				const vuser_key *key,
				POLICY_HND *hnd,
				uint32 access_mask)
{
	create_pol_hnd(hnd);
	return register_policy_hnd(cache, key, hnd, access_mask);
}

/****************************************************************************
  find first available policy slot.  creates a policy handle for you.
****************************************************************************/
BOOL open_policy_hnd_link(struct policy_cache *cache, 
				const POLICY_HND *parent_hnd,
				POLICY_HND *hnd,
				uint32 access_mask)
{
	const vuser_key *key = get_policy_vuser_key(cache, parent_hnd);
	if (key == NULL)
	{
		return False;
	}
	create_pol_hnd(hnd);
	return register_policy_hnd(cache, key, hnd, access_mask);
}

/****************************************************************************
  find policy index by handle
****************************************************************************/
int find_policy_by_hnd(struct policy_cache *cache, const POLICY_HND *hnd)
{
	struct policy *p = find_policy(cache, hnd);

	return p?p->pnum:-1;
}


/****************************************************************************
  set pol state.
****************************************************************************/
BOOL set_policy_state(struct policy_cache *cache, POLICY_HND *hnd, 
				void(*fn)(void*), void *dev)
{
	struct policy *p = find_policy(cache, hnd);

	if (p && p->open)
	{
		DEBUG(3, ("policy(pnum=%x %s): Setting policy state\n",
			  p->pnum, pol_get_name(p)));

		p->dev = dev;
		p->free_fn = fn;
		return True;
	} 

	DEBUG(3,("Error setting policy state\n"));

	return False;
}

/****************************************************************************
  get pol state.
****************************************************************************/
void *get_policy_state_info(struct policy_cache *cache, const POLICY_HND *hnd)
{
	struct policy *p = find_policy(cache, hnd);

	if (p != NULL && p->open)
	{
		DEBUG(3, ("policy(pnum=%x %s): Getting policy state\n",
			  p->pnum, pol_get_name(p)));
		return p->dev;
	}

	DEBUG(3,("Error getting policy state\n"));
	return NULL;
}

/****************************************************************************
  set the type of the state of a POLICY_HND
****************************************************************************/
BOOL policy_hnd_set_state_type(struct policy_cache *cache,
			       POLICY_HND *hnd, int type)
{
	struct policy *p = find_policy(cache, hnd);

	if (!p || !p->open)
	{
		DEBUG(3, ("Error setting type for policy state\n"));
		return False;
	}
	DEBUG(4, ("policy(pnum=%x %s): setting type to %d\n",
		  p->pnum, pol_get_name(p), type));
	p->type = type;
	return True;
}

/****************************************************************************
  get the type of the state of a POLICY_HND
****************************************************************************/
int policy_hnd_get_state_type(struct policy_cache *cache,
			      const POLICY_HND *hnd)
{
	struct policy *p = find_policy(cache, hnd);

	if (!p || !p->open)
	{
		DEBUG(3, ("Error getting type for policy state\n"));
		return -1;
	}
	DEBUG(4, ("policy(pnum=%x %s): getting type %d\n",
		  p->pnum, pol_get_name(p), p->type));

	return p->type;
}

/****************************************************************************
  check the type of the state of a POLICY_HND
****************************************************************************/
BOOL policy_hnd_check_state_type(struct policy_cache *cache,
				 const POLICY_HND *hnd, int type)
{
	struct policy *p = find_policy(cache, hnd);
	BOOL ret;

	if (!p || !p->open)
	{
		DEBUG(3, ("Error checking type for policy state\n"));
		return False;
	}

	ret = (p->type==type);

	if (ret)
	{
		DEBUG(4, ("policy(pnum=%x %s): checking if type %d is %d\n",
			  p->pnum, pol_get_name(p), p->type, type));
	}
	else
	{
		DEBUG(3, ("policy(pnum=%x %s): type %d is not %d\n",
			  p->pnum, pol_get_name(p), p->type, type));
	}

	return ret;
}

/****************************************************************************
  close an lsa policy
****************************************************************************/
BOOL close_policy_hnd(struct policy_cache *cache, POLICY_HND *hnd)
{
	struct policy *p = find_policy(cache, hnd);

	if (!p)
	{
		DEBUG(3,("Error closing policy\n"));
		return False;
	}

	DEBUG(3, ("policy(pnum=%x %s): Closing\n", p->pnum, pol_get_name(p)));

	DLIST_REMOVE(cache->Policy, p);

	if (p->free_fn != NULL)
	{
		p->free_fn(p->dev);
	}
	else
	{
		safe_free(p->dev);
	}

	safe_free(p->name);

	free(p);

	ZERO_STRUCTP(hnd);

	return True;
}

/****************************************************************************
  get pol state.
****************************************************************************/
BOOL policy_link_key(struct policy_cache *cache, const POLICY_HND *hnd,
				POLICY_HND *to)
{
	struct policy *p = find_policy(cache, hnd);
	struct policy *pto = find_policy(cache, to);

	if (p != NULL && p->open && pto != NULL && pto->open)
	{
		DEBUG(3,("Linking policy key pnum=%x pid=%d vuid=%x\n",
		          p->key.pid, p->key.vuid, p->pnum));
		pto->key = p->key;
		return True;
	}

	DEBUG(3,("Error getting policy link states\n"));
	return False;
}

/****************************************************************************
  get pol state.
****************************************************************************/
const vuser_key *get_policy_vuser_key(struct policy_cache *cache,
				const POLICY_HND *hnd)
{
	struct policy *p = find_policy(cache, hnd);

	if (p != NULL && p->open)
	{
		DEBUG(3,("Getting policy vuser_key pnum=%x pid=%d vuid=%x\n",
		          p->pnum, p->key.pid, p->key.vuid));
		return &p->key;
	}

	DEBUG(3,("Error getting policy state\n"));
	return NULL;
}

/****************************************************************************
  get user session key.
****************************************************************************/
BOOL pol_get_usr_sesskey(struct policy_cache *cache, const POLICY_HND *hnd,
				uchar usr_sess_key[16])
{
	const vuser_key *key = get_policy_vuser_key(cache, hnd);
	user_struct *vuser;

	if (key == NULL || key->vuid == UID_FIELD_INVALID)
	{
		memset(usr_sess_key, 0, 16);
		return True;
	}
	vuser = get_valid_user_struct(key);
	if (vuser == NULL)
	{
		DEBUG(10,("pol_get_usr_sesskey: no vuser struct\n"));
		return False;
	}
	memcpy(usr_sess_key, vuser->usr.user_sess_key, 16);
	vuid_free_user_struct(vuser);
	return True;
}