Merge branch 'master' of git://git.samba.org/samba
[ira/wip.git] / source3 / passdb / pdb_compat.c
1 /* 
2    Unix SMB/CIFS implementation.
3    struct samu access routines
4    Copyright (C) Jeremy Allison                 1996-2001
5    Copyright (C) Luke Kenneth Casson Leighton   1996-1998
6    Copyright (C) Gerald (Jerry) Carter          2000-2001
7    Copyright (C) Andrew Bartlett                2001-2002
8    Copyright (C) Stefan (metze) Metzmacher      2002
9       
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_PASSDB
28
29 uint32 pdb_get_user_rid (const struct samu *sampass)
30 {
31         uint32 u_rid;
32
33         if (sampass)
34                 if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_user_sid(sampass),&u_rid))
35                         return u_rid;
36         
37         return (0);
38 }
39
40 uint32 pdb_get_group_rid (struct samu *sampass)
41 {
42         uint32 g_rid;
43
44         if (sampass)
45                 if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_group_sid(sampass),&g_rid))
46                         return g_rid;
47         return (0);
48 }
49
50 bool pdb_set_user_sid_from_rid (struct samu *sampass, uint32 rid, enum pdb_value_state flag)
51 {
52         DOM_SID u_sid;
53         const DOM_SID *global_sam_sid;
54         
55         if (!sampass)
56                 return False;
57
58         if (!(global_sam_sid = get_global_sam_sid())) {
59                 DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n"));
60                 return False;
61         }
62
63         if (!sid_compose(&u_sid, global_sam_sid, rid)) {
64                 return False;
65         }
66
67         if (!pdb_set_user_sid(sampass, &u_sid, flag))
68                 return False;
69
70         DEBUG(10, ("pdb_set_user_sid_from_rid:\n\tsetting user sid %s from rid %d\n", 
71                     sid_string_dbg(&u_sid),rid));
72
73         return True;
74 }
75
76 bool pdb_set_group_sid_from_rid (struct samu *sampass, uint32 grid, enum pdb_value_state flag)
77 {
78         DOM_SID g_sid;
79         const DOM_SID *global_sam_sid;
80
81         if (!sampass)
82                 return False;
83         
84         if (!(global_sam_sid = get_global_sam_sid())) {
85                 DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n"));
86                 return False;
87         }
88
89         if (!sid_compose(&g_sid, global_sam_sid, grid)) {
90                 return False;
91         }
92
93         if (!pdb_set_group_sid(sampass, &g_sid, flag))
94                 return False;
95
96         DEBUG(10, ("pdb_set_group_sid_from_rid:\n\tsetting group sid %s from rid %d\n", 
97                     sid_string_dbg(&g_sid), grid));
98
99         return True;
100 }
101