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
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.
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.
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/>.
26 #include "../libcli/security/security.h"
29 #define DBGC_CLASS DBGC_PASSDB
31 uint32
pdb_get_user_rid (const struct samu
*sampass
)
36 if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_user_sid(sampass
),&u_rid
))
42 uint32
pdb_get_group_rid (struct samu
*sampass
)
47 if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_group_sid(sampass
),&g_rid
))
52 bool pdb_set_user_sid_from_rid (struct samu
*sampass
, uint32 rid
, enum pdb_value_state flag
)
55 const struct dom_sid
*global_sam_sid
;
60 if (!(global_sam_sid
= get_global_sam_sid())) {
61 DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n"));
65 if (!sid_compose(&u_sid
, global_sam_sid
, rid
)) {
69 if (!pdb_set_user_sid(sampass
, &u_sid
, flag
))
72 DEBUG(10, ("pdb_set_user_sid_from_rid:\n\tsetting user sid %s from rid %d\n",
73 sid_string_dbg(&u_sid
),rid
));
78 bool pdb_set_group_sid_from_rid (struct samu
*sampass
, uint32 grid
, enum pdb_value_state flag
)
81 const struct dom_sid
*global_sam_sid
;
86 if (!(global_sam_sid
= get_global_sam_sid())) {
87 DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n"));
91 if (!sid_compose(&g_sid
, global_sam_sid
, grid
)) {
95 if (!pdb_set_group_sid(sampass
, &g_sid
, flag
))
98 DEBUG(10, ("pdb_set_group_sid_from_rid:\n\tsetting group sid %s from rid %d\n",
99 sid_string_dbg(&g_sid
), grid
));