s3-privs Directly manipulate the privileges bitmap.
[samba.git] / source3 / lib / privileges.c
1 /*
2    Unix SMB/CIFS implementation.
3    Privileges handling functions
4    Copyright (C) Jean François Micouleau       1998-2001
5    Copyright (C) Simo Sorce                     2002-2003
6    Copyright (C) Gerald (Jerry) Carter          2005
7    Copyright (C) Michael Adam                   2007
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23
24 #include "includes.h"
25 #include "dbwrap.h"
26
27 #define PRIVPREFIX              "PRIV_"
28
29 typedef struct {
30         uint32_t count;
31         struct dom_sid *list;
32 } SID_LIST;
33
34 typedef struct {
35         TALLOC_CTX *mem_ctx;
36         uint64_t privilege;
37         SID_LIST sids;
38 } PRIV_SID_LIST;
39
40
41 static bool get_privileges( const struct dom_sid *sid, uint64_t *mask )
42 {
43         struct db_context *db = get_account_pol_db();
44         fstring tmp, keystr;
45         TDB_DATA data;
46
47         /* Fail if the admin has not enable privileges */
48
49         if ( !lp_enable_privileges() ) {
50                 return False;
51         }
52
53         if ( db == NULL )
54                 return False;
55
56         /* PRIV_<SID> (NULL terminated) as the key */
57
58         fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
59
60         data = dbwrap_fetch_bystring( db, talloc_tos(), keystr );
61
62         if ( !data.dptr ) {
63                 DEBUG(3, ("get_privileges: No privileges assigned to SID "
64                           "[%s]\n", sid_string_dbg(sid)));
65                 return False;
66         }
67
68         if (data.dsize == 4*4) {
69                 DEBUG(3, ("get_privileges: Should not have obtained old-style privileges record for SID "
70                           "[%s]\n", sid_string_dbg(sid)));
71                 return False;
72         }
73
74         if (data.dsize != sizeof( uint64_t ) ) {
75                 DEBUG(3, ("get_privileges: Invalid privileges record assigned to SID "
76                           "[%s]\n", sid_string_dbg(sid)));
77                 return False;
78         }
79
80         *mask = BVAL(data.dptr, 0);
81
82         TALLOC_FREE(data.dptr);
83
84         return True;
85 }
86
87 /***************************************************************************
88  Store the privilege mask (set) for a given SID
89 ****************************************************************************/
90
91 static bool set_privileges( const struct dom_sid *sid, uint64_t *mask )
92 {
93         struct db_context *db = get_account_pol_db();
94         uint8_t privbuf[8];
95         fstring tmp, keystr;
96         TDB_DATA data;
97
98         if ( !lp_enable_privileges() )
99                 return False;
100
101         if ( db == NULL )
102                 return False;
103
104         if ( !sid || (sid->num_auths == 0) ) {
105                 DEBUG(0,("set_privileges: Refusing to store empty SID!\n"));
106                 return False;
107         }
108
109         /* PRIV_<SID> (NULL terminated) as the key */
110
111         fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
112
113         /* This writes the 64 bit bitmask out in little endian format */
114         SBVAL(privbuf,0,*mask);
115
116         data.dptr  = (uint8 *)mask;
117         data.dsize = sizeof(uint64_t);
118
119         return NT_STATUS_IS_OK(dbwrap_store_bystring(db, keystr, data,
120                                                      TDB_REPLACE));
121 }
122
123 /*********************************************************************
124  get a list of all privileges for all sids in the list
125 *********************************************************************/
126
127 bool get_privileges_for_sids(uint64_t *privileges, struct dom_sid *slist, int scount)
128 {
129         uint64_t mask;
130         int i;
131         bool found = False;
132
133         *privileges = 0;
134
135         for ( i=0; i<scount; i++ ) {
136                 /* don't add unless we actually have a privilege assigned */
137
138                 if ( !get_privileges( &slist[i], &mask ) )
139                         continue;
140
141                 DEBUG(5,("get_privileges_for_sids: sid = %s\nPrivilege "
142                          "set: 0x%llx\n", sid_string_dbg(&slist[i]),
143                          (unsigned long long)mask));
144
145                 *privileges |= mask;
146                 found = True;
147         }
148
149         return found;
150 }
151
152
153 /*********************************************************************
154  traversal functions for privilege_enumerate_accounts
155 *********************************************************************/
156
157 static int priv_traverse_fn(struct db_record *rec, void *state)
158 {
159         PRIV_SID_LIST *priv = (PRIV_SID_LIST *)state;
160         int  prefixlen = strlen(PRIVPREFIX);
161         struct dom_sid sid;
162         fstring sid_string;
163
164         /* easy check first */
165
166         if (rec->value.dsize != sizeof(uint64_t) )
167                 return 0;
168
169         /* check we have a PRIV_+SID entry */
170
171         if ( strncmp((char *)rec->key.dptr, PRIVPREFIX, prefixlen) != 0)
172                 return 0;
173
174         /* check to see if we are looking for a particular privilege */
175
176         if ( !se_priv_equal(&priv->privilege, &se_priv_none) ) {
177                 uint64_t mask;
178
179                 se_priv_copy( &mask, (uint64_t*)rec->value.dptr );
180
181                 /* if the SID does not have the specified privilege
182                    then just return */
183
184                 if ( !is_privilege_assigned( &mask, &priv->privilege) )
185                         return 0;
186         }
187
188         fstrcpy( sid_string, (char *)&(rec->key.dptr[strlen(PRIVPREFIX)]) );
189
190         /* this is a last ditch safety check to preventing returning
191            and invalid SID (i've somehow run into this on development branches) */
192
193         if ( strcmp( "S-0-0", sid_string ) == 0 )
194                 return 0;
195
196         if ( !string_to_sid(&sid, sid_string) ) {
197                 DEBUG(0,("travsersal_fn_enum__acct: Could not convert SID [%s]\n",
198                         sid_string));
199                 return 0;
200         }
201
202         if (!NT_STATUS_IS_OK(add_sid_to_array(priv->mem_ctx, &sid,
203                                               &priv->sids.list,
204                                               &priv->sids.count)))
205         {
206                 return 0;
207         }
208
209         return 0;
210 }
211
212 /*********************************************************************
213  Retreive list of privileged SIDs (for _lsa_enumerate_accounts()
214 *********************************************************************/
215
216 NTSTATUS privilege_enumerate_accounts(struct dom_sid **sids, int *num_sids)
217 {
218         struct db_context *db = get_account_pol_db();
219         PRIV_SID_LIST priv;
220
221         if (db == NULL) {
222                 return NT_STATUS_ACCESS_DENIED;
223         }
224
225         ZERO_STRUCT(priv);
226
227         db->traverse_read(db, priv_traverse_fn, &priv);
228
229         /* give the memory away; caller will free */
230
231         *sids      = priv.sids.list;
232         *num_sids  = priv.sids.count;
233
234         return NT_STATUS_OK;
235 }
236
237 /*********************************************************************
238  Retrieve list of SIDs granted a particular privilege
239 *********************************************************************/
240
241 NTSTATUS privilege_enum_sids(const uint64_t *mask, TALLOC_CTX *mem_ctx,
242                              struct dom_sid **sids, int *num_sids)
243 {
244         struct db_context *db = get_account_pol_db();
245         PRIV_SID_LIST priv;
246
247         if (db == NULL) {
248                 return NT_STATUS_ACCESS_DENIED;
249         }
250
251         ZERO_STRUCT(priv);
252
253         priv.privilege = *mask;
254         priv.mem_ctx = mem_ctx;
255
256         db->traverse_read(db, priv_traverse_fn, &priv);
257
258         /* give the memory away; caller will free */
259
260         *sids      = priv.sids.list;
261         *num_sids  = priv.sids.count;
262
263         return NT_STATUS_OK;
264 }
265
266 /***************************************************************************
267  Add privilege to sid
268 ****************************************************************************/
269
270 bool grant_privilege(const struct dom_sid *sid, const uint64_t priv_mask)
271 {
272         uint64_t old_mask, new_mask;
273
274         ZERO_STRUCT( old_mask );
275         ZERO_STRUCT( new_mask );
276
277         if ( get_privileges( sid, &old_mask ) )
278                 new_mask = old_mask;
279         else
280                 new_mask = 0;
281
282         new_mask |= priv_mask;
283
284         DEBUG(10,("grant_privilege: %s\n", sid_string_dbg(sid)));
285
286         DEBUGADD( 10, ("original privilege mask: 0x%llx\n", (unsigned long long)new_mask));
287
288         DEBUGADD( 10, ("new privilege mask:      0x%llx\n", (unsigned long long)new_mask));
289
290         return set_privileges( sid, &new_mask );
291 }
292
293 /*********************************************************************
294  Add a privilege based on its name
295 *********************************************************************/
296
297 bool grant_privilege_by_name(struct dom_sid *sid, const char *name)
298 {
299         uint64_t mask;
300
301         if (! se_priv_from_name(name, &mask)) {
302                 DEBUG(3, ("grant_privilege_by_name: "
303                           "No Such Privilege Found (%s)\n", name));
304                 return False;
305         }
306
307         return grant_privilege( sid, mask );
308 }
309
310 /***************************************************************************
311  Remove privilege from sid
312 ****************************************************************************/
313
314 bool revoke_privilege(const struct dom_sid *sid, const uint64_t priv_mask)
315 {
316         uint64_t mask;
317
318         /* if the user has no privileges, then we can't revoke any */
319
320         if ( !get_privileges( sid, &mask ) )
321                 return True;
322
323         DEBUG(10,("revoke_privilege: %s\n", sid_string_dbg(sid)));
324
325         DEBUGADD( 10, ("original privilege mask: 0x%llx\n", (unsigned long long)mask));
326
327         mask &= ~priv_mask;
328
329         DEBUGADD( 10, ("new privilege mask:      0x%llx\n", (unsigned long long)mask));
330
331         return set_privileges( sid, &mask );
332 }
333
334 /*********************************************************************
335  Revoke all privileges
336 *********************************************************************/
337
338 bool revoke_all_privileges( struct dom_sid *sid )
339 {
340         return revoke_privilege( sid, SE_ALL_PRIVS);
341 }
342
343 /*********************************************************************
344  Add a privilege based on its name
345 *********************************************************************/
346
347 bool revoke_privilege_by_name(struct dom_sid *sid, const char *name)
348 {
349         uint64_t mask;
350
351         if (! se_priv_from_name(name, &mask)) {
352                 DEBUG(3, ("revoke_privilege_by_name: "
353                           "No Such Privilege Found (%s)\n", name));
354                 return False;
355         }
356
357         return revoke_privilege(sid, mask);
358
359 }
360
361 /***************************************************************************
362  Retrieve the SIDs assigned to a given privilege
363 ****************************************************************************/
364
365 NTSTATUS privilege_create_account(const struct dom_sid *sid )
366 {
367         return ( grant_privilege(sid, 0) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL);
368 }
369
370 /***************************************************************************
371  Delete a privileged account
372 ****************************************************************************/
373
374 NTSTATUS privilege_delete_account(const struct dom_sid *sid)
375 {
376         struct db_context *db = get_account_pol_db();
377         fstring tmp, keystr;
378
379         if (!lp_enable_privileges()) {
380                 return NT_STATUS_OK;
381         }
382
383         if (!db) {
384                 return NT_STATUS_INVALID_HANDLE;
385         }
386
387         if (!sid || (sid->num_auths == 0)) {
388                 return NT_STATUS_INVALID_SID;
389         }
390
391         /* PRIV_<SID> (NULL terminated) as the key */
392
393         fstr_sprintf(keystr, "%s%s", PRIVPREFIX, sid_to_fstring(tmp, sid));
394
395         return dbwrap_delete_bystring(db, keystr);
396 }
397
398 /****************************************************************************
399  initialise a privilege list and set the talloc context
400  ****************************************************************************/
401
402 NTSTATUS privilege_set_init(PRIVILEGE_SET *priv_set)
403 {
404         TALLOC_CTX *mem_ctx;
405
406         ZERO_STRUCTP( priv_set );
407
408         mem_ctx = talloc_init("privilege set");
409         if ( !mem_ctx ) {
410                 DEBUG(0,("privilege_set_init: failed to initialize talloc ctx!\n"));
411                 return NT_STATUS_NO_MEMORY;
412         }
413
414         priv_set->mem_ctx = mem_ctx;
415
416         return NT_STATUS_OK;
417 }
418
419 /****************************************************************************
420   initialise a privilege list and with someone else's talloc context
421 ****************************************************************************/
422
423 NTSTATUS privilege_set_init_by_ctx(TALLOC_CTX *mem_ctx, PRIVILEGE_SET *priv_set)
424 {
425         ZERO_STRUCTP( priv_set );
426
427         priv_set->mem_ctx = mem_ctx;
428         priv_set->ext_ctx = True;
429
430         return NT_STATUS_OK;
431 }
432
433 /****************************************************************************
434  Free all memory used by a PRIVILEGE_SET
435 ****************************************************************************/
436
437 void privilege_set_free(PRIVILEGE_SET *priv_set)
438 {
439         if ( !priv_set )
440                 return;
441
442         if ( !( priv_set->ext_ctx ) )
443                 talloc_destroy( priv_set->mem_ctx );
444
445         ZERO_STRUCTP( priv_set );
446 }
447
448 /****************************************************************************
449  duplicate alloc luid_attr
450  ****************************************************************************/
451
452 NTSTATUS dup_luid_attr(TALLOC_CTX *mem_ctx, struct lsa_LUIDAttribute **new_la, struct lsa_LUIDAttribute *old_la, int count)
453 {
454         int i;
455
456         if ( !old_la )
457                 return NT_STATUS_OK;
458
459         if (count) {
460                 *new_la = TALLOC_ARRAY(mem_ctx, struct lsa_LUIDAttribute, count);
461                 if ( !*new_la ) {
462                         DEBUG(0,("dup_luid_attr: failed to alloc new struct lsa_LUIDAttribute array [%d]\n", count));
463                         return NT_STATUS_NO_MEMORY;
464                 }
465         } else {
466                 *new_la = NULL;
467         }
468
469         for (i=0; i<count; i++) {
470                 (*new_la)[i].luid.high = old_la[i].luid.high;
471                 (*new_la)[i].luid.low = old_la[i].luid.low;
472                 (*new_la)[i].attribute = old_la[i].attribute;
473         }
474
475         return NT_STATUS_OK;
476 }
477
478 /*******************************************************************
479 *******************************************************************/
480
481 bool is_privileged_sid( const struct dom_sid *sid )
482 {
483         uint64_t mask;
484
485         return get_privileges( sid, &mask );
486 }
487
488 /*******************************************************************
489 *******************************************************************/
490
491 bool grant_all_privileges( const struct dom_sid *sid )
492 {
493         uint64_t mask;
494
495         if (!se_priv_put_all_privileges(&mask)) {
496                 return False;
497         }
498
499         return grant_privilege( sid, mask );
500 }