summaryrefslogtreecommitdiff
path: root/source4/sam/gums_helper.c
blob: 8526a2f1cc0ab4a84b86d4d81613502f30be94df (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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
/*
   Unix SMB/CIFS implementation.
   GUMS backends helper functions
   Copyright (C) Simo Sorce 2002
   
   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 GUMS_FUNCTIONS *gums_storage;

extern DOM_SID global_sid_World;
extern DOM_SID global_sid_Builtin_Administrators;
extern DOM_SID global_sid_Builtin_Power_Users;
extern DOM_SID global_sid_Builtin_Account_Operators;
extern DOM_SID global_sid_Builtin_Server_Operators;
extern DOM_SID global_sid_Builtin_Print_Operators;
extern DOM_SID global_sid_Builtin_Backup_Operators;
extern DOM_SID global_sid_Builtin_Replicator;
extern DOM_SID global_sid_Builtin_Users;
extern DOM_SID global_sid_Builtin_Guests;


/* defines */

#define ALLOC_CHECK(str, ptr, err, label) do { if ((ptr) == NULL) { DEBUG(0, ("%s: out of memory!\n", str)); err = NT_STATUS_NO_MEMORY; goto label; } } while(0)
#define NTSTATUS_CHECK(str1, str2, err, label) do { if (NT_STATUS_IS_ERR(err)) { DEBUG(0, ("%s: %s failed!\n", str1, str2)); } } while(0)

/****************************************************************************
 Check if a user is a mapped group.

   This function will check if the group SID is mapped onto a
   system managed gid or onto a winbind manged sid.
   In the first case it will be threated like a mapped group
   and the backend should take the member list with a getgrgid
   and ignore any user that have been possibly set into the group
   object.

   In the second case, the group is a fully SAM managed group
   served back to the system through winbind. In this case the
   members of a Local group are "unrolled" to cope with the fact
   that unix cannot contain groups inside groups.
   The backend MUST never call any getgr* / getpw* function or
   loops with winbind may happen. 
 ****************************************************************************/

/*
NTSTATUS is_mapped_group(BOOL *mapped, const DOM_SID *sid)
{
	NTSTATUS result;
	gid_t id;

	/* look if mapping exist, do not make idmap alloc an uid if SID is not found * /
	result = idmap_get_gid_from_sid(&id, sid, False);
	if (NT_STATUS_IS_OK(result)) {
		*mapped = gid_is_in_winbind_range(id);
	} else {
		*mapped = False;
	}

	return result;
}
*/

/****************************************************************************
 duplicate alloc luid_attr
 ****************************************************************************/
NTSTATUS dupalloc_luid_attr(TALLOC_CTX *ctx, LUID_ATTR **new_la, LUID_ATTR old_la)
{
	*new_la = (LUID_ATTR *)talloc(ctx, sizeof(LUID_ATTR));
	if (*new_la == NULL) {
		DEBUG(0,("dupalloc_luid_attr: could not Alloc memory to duplicate LUID_ATTR\n"));
		return NT_STATUS_NO_MEMORY;
	}

	(*new_la)->luid.high = old_la.luid.high;
	(*new_la)->luid.low = old_la.luid.low;
	(*new_la)->attr = old_la.attr;
	
	return NT_STATUS_OK;	
}

/****************************************************************************
 initialise a privilege list
 ****************************************************************************/
void init_privilege(PRIVILEGE_SET *priv_set)
{
	priv_set->count=0;
	priv_set->control=0;
	priv_set->set=NULL;
}

/****************************************************************************
 add a privilege to a privilege array
 ****************************************************************************/
NTSTATUS add_privilege(PRIVILEGE_SET *priv_set, TALLOC_CTX *ctx, LUID_ATTR set)
{
	LUID_ATTR *new_set;

	/* check if the privilege is not already in the list */
	if (check_priv_in_privilege(priv_set, set))
		return NT_STATUS_UNSUCCESSFUL;

	/* we can allocate memory to add the new privilege */

	new_set=(LUID_ATTR *)talloc_realloc(ctx, priv_set->set, (priv_set->count+1)*(sizeof(LUID_ATTR)));
	if (new_set==NULL) {
		DEBUG(0,("add_privilege: could not Realloc memory to add a new privilege\n"));
		return NT_STATUS_NO_MEMORY;
	}

	new_set[priv_set->count].luid.high=set.luid.high;
	new_set[priv_set->count].luid.low=set.luid.low;
	new_set[priv_set->count].attr=set.attr;
	
	priv_set->count++;
	priv_set->set=new_set;
	
	return NT_STATUS_OK;	
}

/****************************************************************************
 add all the privileges to a privilege array
 ****************************************************************************/
NTSTATUS add_all_privilege(PRIVILEGE_SET *priv_set, TALLOC_CTX *ctx)
{
	NTSTATUS result = NT_STATUS_OK;
	LUID_ATTR set;

	set.attr=0;
	set.luid.high=0;
	
	set.luid.low=SE_PRIV_ADD_USERS;
	result = add_privilege(priv_set, ctx, set);
	NTSTATUS_CHECK("add_all_privilege", "add_privilege", result, done);
	
	set.luid.low=SE_PRIV_ADD_MACHINES;
	result = add_privilege(priv_set, ctx, set);
	NTSTATUS_CHECK("add_all_privilege", "add_privilege", result, done);

	set.luid.low=SE_PRIV_PRINT_OPERATOR;
	result = add_privilege(priv_set, ctx, set);
	NTSTATUS_CHECK("add_all_privilege", "add_privilege", result, done);
	
done:
	return result;
}

/****************************************************************************
 check if the privilege list is empty
 ****************************************************************************/
BOOL check_empty_privilege(PRIVILEGE_SET *priv_set)
{
	return (priv_set->count == 0);
}

/****************************************************************************
 check if the privilege is in the privilege list
 ****************************************************************************/
BOOL check_priv_in_privilege(PRIVILEGE_SET *priv_set, LUID_ATTR set)
{
	int i;

	/* if the list is empty, obviously we can't have it */
	if (check_empty_privilege(priv_set))
		return False;

	for (i=0; i<priv_set->count; i++) {
		LUID_ATTR *cur_set;

		cur_set=&priv_set->set[i];
		/* check only the low and high part. Checking the attr field has no meaning */
		if( (cur_set->luid.low==set.luid.low) && (cur_set->luid.high==set.luid.high) )
			return True;
	}

	return False;
}

/****************************************************************************
 remove a privilege from a privilege array
 ****************************************************************************/
NTSTATUS remove_privilege(PRIVILEGE_SET *priv_set, TALLOC_CTX *ctx, LUID_ATTR set)
{
	LUID_ATTR *new_set;
	LUID_ATTR *old_set;
	int i,j;

	/* check if the privilege is in the list */
	if (!check_priv_in_privilege(priv_set, set))
		return NT_STATUS_UNSUCCESSFUL;

	/* special case if it's the only privilege in the list */
	if (priv_set->count==1) {
		init_privilege(priv_set);	
		return NT_STATUS_OK;
	}

	/* 
	 * the privilege is there, create a new list,
	 * and copy the other privileges
	 */

	old_set = priv_set->set;

	new_set=(LUID_ATTR *)talloc(ctx, (priv_set->count - 1) * (sizeof(LUID_ATTR)));
	if (new_set==NULL) {
		DEBUG(0,("remove_privilege: could not malloc memory for new privilege list\n"));
		return NT_STATUS_NO_MEMORY;
	}

	for (i=0, j=0; i<priv_set->count; i++) {
		if ((old_set[i].luid.low == set.luid.low) && 
		    (old_set[i].luid.high == set.luid.high)) {
		    	continue;
		}
		
		new_set[j].luid.low = old_set[i].luid.low;
		new_set[j].luid.high = old_set[i].luid.high;
		new_set[j].attr = old_set[i].attr;

		j++;
	}
	
	if (j != priv_set->count - 1) {
		DEBUG(0,("remove_privilege: mismatch ! difference is not -1\n"));
		DEBUGADD(0,("old count:%d, new count:%d\n", priv_set->count, j));
		return NT_STATUS_INTERNAL_ERROR;
	}
		
	/* ok everything is fine */
	
	priv_set->count--;
	priv_set->set=new_set;
	
	return NT_STATUS_OK;	
}

/****************************************************************************
 duplicates a privilege array
 ****************************************************************************/
NTSTATUS dup_priv_set(PRIVILEGE_SET **new_priv_set, TALLOC_CTX *mem_ctx, PRIVILEGE_SET *priv_set)
{
	LUID_ATTR *new_set;
	LUID_ATTR *old_set;
	int i;

	*new_priv_set = (PRIVILEGE_SET *)talloc(mem_ctx, sizeof(PRIVILEGE_SET));
	init_privilege(*new_priv_set);	

	/* special case if there are no privileges in the list */
	if (priv_set->count == 0) {
		return NT_STATUS_OK;
	}

	/* 
	 * create a new list,
	 * and copy the other privileges
	 */

	old_set = priv_set->set;

	new_set = (LUID_ATTR *)talloc(mem_ctx, (priv_set->count - 1) * (sizeof(LUID_ATTR)));
	if (new_set==NULL) {
		DEBUG(0,("remove_privilege: could not malloc memory for new privilege list\n"));
		return NT_STATUS_NO_MEMORY;
	}

	for (i=0; i < priv_set->count; i++) {
		
		new_set[i].luid.low = old_set[i].luid.low;
		new_set[i].luid.high = old_set[i].luid.high;
		new_set[i].attr = old_set[i].attr;
	}
			
	(*new_priv_set)->count = priv_set->count;
	(*new_priv_set)->control = priv_set->control;
	(*new_priv_set)->set = new_set;
	
	return NT_STATUS_OK;	
}

#define ALIAS_DEFAULT_SACL_SA_RIGHTS	0x01050013
#define ALIAS_DEFAULT_DACL_SA_RIGHTS \
		(READ_CONTROL_ACCESS		| \
		SA_RIGHT_ALIAS_LOOKUP_INFO	| \
		SA_RIGHT_ALIAS_GET_MEMBERS)	/* 0x0002000c */

#define ALIAS_DEFAULT_SACL_SEC_ACE_FLAG (SEC_ACE_FLAG_FAILED_ACCESS | SEC_ACE_FLAG_SUCCESSFUL_ACCESS) /* 0xc0 */

NTSTATUS create_builtin_alias_default_sec_desc(SEC_DESC **sec_desc, TALLOC_CTX *ctx)
{
	DOM_SID *world = &global_sid_World;
	DOM_SID *admins = &global_sid_Builtin_Administrators;
	SEC_ACCESS sa;
	SEC_ACE sacl_ace;
	SEC_ACE dacl_aces[2];
	SEC_ACL *sacl = NULL;
	SEC_ACL *dacl = NULL;
	size_t psize;

	init_sec_access(&sa, ALIAS_DEFAULT_SACL_SA_RIGHTS);
	init_sec_ace(&sacl_ace, world, SEC_ACE_TYPE_SYSTEM_AUDIT, sa, ALIAS_DEFAULT_SACL_SEC_ACE_FLAG);
	
	sacl = make_sec_acl(ctx, NT4_ACL_REVISION, 1, &sacl_ace);
	if (!sacl) {
		DEBUG(0, ("build_init_sec_desc: Failed to make SEC_ACL.\n"));
		return NT_STATUS_NO_MEMORY;
	}

	init_sec_access(&sa, ALIAS_DEFAULT_DACL_SA_RIGHTS);
	init_sec_ace(&(dacl_aces[0]), world, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, 0);
	init_sec_access(&sa, SA_RIGHT_ALIAS_ALL_ACCESS);
	init_sec_ace(&(dacl_aces[1]), admins, SEC_ACE_TYPE_ACCESS_ALLOWED, sa, 0);

	dacl = make_sec_acl(ctx, NT4_ACL_REVISION, 2, dacl_aces);
	if (!sacl) {
		DEBUG(0, ("build_init_sec_desc: Failed to make SEC_ACL.\n"));
		return NT_STATUS_NO_MEMORY;
	}

	*sec_desc = make_sec_desc(ctx, SEC_DESC_REVISION, admins, admins, sacl, dacl, &psize);
	if (!(*sec_desc)) {
		DEBUG(0,("get_share_security: Failed to make SEC_DESC.\n"));
		return NT_STATUS_NO_MEMORY;
	}

	return NT_STATUS_OK;
}

NTSTATUS sec_desc_add_ace_to_dacl(SEC_DESC *sec_desc, TALLOC_CTX *ctx, DOM_SID *sid, uint32 mask)
{
	NTSTATUS result;
	SEC_ACE *new_aces;
	unsigned num_aces;
	int i;

	num_aces = sec_desc->dacl->num_aces + 1;
	result = sec_ace_add_sid(ctx, &new_aces, sec_desc->dacl->ace, &num_aces, sid, mask);
	if (NT_STATUS_IS_OK(result)) {
		sec_desc->dacl->ace = new_aces;
		sec_desc->dacl->num_aces = num_aces;
		sec_desc->dacl->size = SEC_ACL_HEADER_SIZE;
		for (i = 0; i < num_aces; i++) {
			sec_desc->dacl->size += sec_desc->dacl->ace[i].size;
		}
	}
	return result;
}

NTSTATUS gums_init_builtin_groups(void)
{
	NTSTATUS result;
	GUMS_OBJECT g_obj;
	GUMS_GROUP *g_grp;
	GUMS_PRIVILEGE g_priv;

	/* Build the well known Builtin Local Groups */
	g_obj.type = GUMS_OBJ_GROUP;
	g_obj.version = 1;
	g_obj.seq_num = 0;
	g_obj.mem_ctx = talloc_init("gums_init_backend_acct");
	if (g_obj.mem_ctx == NULL) {
		DEBUG(0, ("gums_init_backend: Out of Memory!\n"));
		return NT_STATUS_NO_MEMORY;
	}

	/* Administrators */

	/* alloc group structure */
	g_obj.data = (void *)talloc(g_obj.mem_ctx, sizeof(GUMS_OBJ_GROUP));
	ALLOC_CHECK("gums_init_backend", g_obj.data, result, done);

	/* make admins sid */
	g_grp = (GUMS_GROUP *)g_obj.data;
	sid_copy(g_obj.sid, &global_sid_Builtin_Administrators);

	/* make security descriptor */
	result = create_builtin_alias_default_sec_desc(&(g_obj.sec_desc), g_obj.mem_ctx); 
	NTSTATUS_CHECK("gums_init_backend", "create_builtin_alias_default_sec_desc", result, done);

	/* make privilege set */
	/* From BDC join trace:
		SeSecurityPrivilege
		SeBackupPrivilege
		SeRestorePrivilege
		SeSystemtimePrivilege
		SeShutdownPrivilege
		SeRemoteShutdownPrivilege
		SeTakeOwnershipPrivilege
		SeDebugPrivilege
		SeSystemEnvironmentPrivilege
		SeSystemProfilePrivilege
		SeProfileSingleProcessPrivilege
		SeIncreaseBasePriorityPrivilege
		SeLocalDriverPrivilege
		SeCreatePagefilePrivilege
		SeIncreaseQuotaPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Administrators");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Members can fully administer the computer/domain");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* numebr of group members */
	g_grp->count = 0;
	g_grp->members = NULL;

	/* store Administrators group */
	result = gums_storage->set_object(&g_obj);

	/* Power Users */
	/* Domain Controllers Does NOT have power Users */

	sid_copy(g_obj.sid, &global_sid_Builtin_Power_Users);

	/* make privilege set */
	/* SE_PRIV_??? */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Power Users");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
/* > */	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Power Users");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Power Users group */
	result = gums_storage->set_object(&g_obj);

	/* Account Operators */

	sid_copy(g_obj.sid, &global_sid_Builtin_Account_Operators);

	/* make privilege set */
	/* From BDC join trace:
		SeShutdownPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Account Operators");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Members can administer domain user and group accounts");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Account Operators group */
	result = gums_storage->set_object(&g_obj);

	/* Server Operators */

	sid_copy(g_obj.sid, &global_sid_Builtin_Server_Operators);

	/* make privilege set */
	/* From BDC join trace:
		SeBackupPrivilege
		SeRestorePrivilege
		SeSystemtimePrivilege
		SeShutdownPrivilege
		SeRemoteShutdownPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Server Operators");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Members can administer domain servers");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Server Operators group */
	result = gums_storage->set_object(&g_obj);

	/* Print Operators */

	sid_copy(g_obj.sid, &global_sid_Builtin_Print_Operators);

	/* make privilege set */
	/* From BDC join trace:
		SeShutdownPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Print Operators");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Members can administer domain printers");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Print Operators group */
	result = gums_storage->set_object(&g_obj);

	/* Backup Operators */

	sid_copy(g_obj.sid, &global_sid_Builtin_Backup_Operators);

	/* make privilege set */
	/* From BDC join trace:
		SeBackupPrivilege
		SeRestorePrivilege
		SeShutdownPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Backup Operators");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Members can bypass file security to backup files");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Backup Operators group */
	result = gums_storage->set_object(&g_obj);

	/* Replicator */

	sid_copy(g_obj.sid, &global_sid_Builtin_Replicator);

	/* make privilege set */
	/* From BDC join trace:
		SeBackupPrivilege
		SeRestorePrivilege
		SeShutdownPrivilege
	 */

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Replicator");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Supports file replication in a domain");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Replicator group */
	result = gums_storage->set_object(&g_obj);

	/* Users */

	sid_copy(g_obj.sid, &global_sid_Builtin_Users);

	/* add ACE to sec dsec dacl */
	sec_desc_add_ace_to_dacl(g_obj.sec_desc, g_obj.mem_ctx, &global_sid_Builtin_Account_Operators, ALIAS_DEFAULT_DACL_SA_RIGHTS);
	sec_desc_add_ace_to_dacl(g_obj.sec_desc, g_obj.mem_ctx, &global_sid_Builtin_Power_Users, ALIAS_DEFAULT_DACL_SA_RIGHTS);

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Users");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Ordinary users");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Users group */
	result = gums_storage->set_object(&g_obj);

	/* Guests */

	sid_copy(g_obj.sid, &global_sid_Builtin_Guests);

	/* set name */
	g_obj.name = talloc_strdup(g_obj.mem_ctx, "Guests");
	ALLOC_CHECK("gums_init_backend", g_obj.name, result, done);

	/* set description */
	g_obj.description = talloc_strdup(g_obj.mem_ctx, "Users granted guest access to the computer/domain");
	ALLOC_CHECK("gums_init_backend", g_obj.description, result, done);

	/* store Guests group */
	result = gums_storage->set_object(&g_obj);

	/* set default privileges */
	g_priv.type = GUMS_OBJ_GROUP;
	g_priv.version = 1;
	g_priv.seq_num = 0;
	g_priv.mem_ctx = talloc_init("gums_init_backend_priv");
	if (g_priv.mem_ctx == NULL) {
		DEBUG(0, ("gums_init_backend: Out of Memory!\n"));
		return NT_STATUS_NO_MEMORY;
	}

		

done:
	talloc_destroy(g_obj.mem_ctx);
	talloc_destroy(g_priv.mem_ctx);
	return result;
}