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 2 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, write to the Free Software
|
---|
22 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
---|
23 | */
|
---|
24 |
|
---|
25 | #include "includes.h"
|
---|
26 |
|
---|
27 | #undef DBGC_CLASS
|
---|
28 | #define DBGC_CLASS DBGC_PASSDB
|
---|
29 |
|
---|
30 | uint32 pdb_get_user_rid (const struct samu *sampass)
|
---|
31 | {
|
---|
32 | uint32 u_rid;
|
---|
33 |
|
---|
34 | if (sampass)
|
---|
35 | if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_user_sid(sampass),&u_rid))
|
---|
36 | return u_rid;
|
---|
37 |
|
---|
38 | return (0);
|
---|
39 | }
|
---|
40 |
|
---|
41 | uint32 pdb_get_group_rid (struct samu *sampass)
|
---|
42 | {
|
---|
43 | uint32 g_rid;
|
---|
44 |
|
---|
45 | if (sampass)
|
---|
46 | if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_group_sid(sampass),&g_rid))
|
---|
47 | return g_rid;
|
---|
48 | return (0);
|
---|
49 | }
|
---|
50 |
|
---|
51 | BOOL pdb_set_user_sid_from_rid (struct samu *sampass, uint32 rid, enum pdb_value_state flag)
|
---|
52 | {
|
---|
53 | DOM_SID u_sid;
|
---|
54 | const DOM_SID *global_sam_sid;
|
---|
55 |
|
---|
56 | if (!sampass)
|
---|
57 | return False;
|
---|
58 |
|
---|
59 | if (!(global_sam_sid = get_global_sam_sid())) {
|
---|
60 | DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n"));
|
---|
61 | return False;
|
---|
62 | }
|
---|
63 |
|
---|
64 | sid_copy(&u_sid, global_sam_sid);
|
---|
65 |
|
---|
66 | if (!sid_append_rid(&u_sid, rid))
|
---|
67 | return False;
|
---|
68 |
|
---|
69 | if (!pdb_set_user_sid(sampass, &u_sid, flag))
|
---|
70 | return False;
|
---|
71 |
|
---|
72 | DEBUG(10, ("pdb_set_user_sid_from_rid:\n\tsetting user sid %s from rid %d\n",
|
---|
73 | sid_string_static(&u_sid),rid));
|
---|
74 |
|
---|
75 | return True;
|
---|
76 | }
|
---|
77 |
|
---|
78 | BOOL pdb_set_group_sid_from_rid (struct samu *sampass, uint32 grid, enum pdb_value_state flag)
|
---|
79 | {
|
---|
80 | DOM_SID g_sid;
|
---|
81 | const DOM_SID *global_sam_sid;
|
---|
82 |
|
---|
83 | if (!sampass)
|
---|
84 | return False;
|
---|
85 |
|
---|
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"));
|
---|
88 | return False;
|
---|
89 | }
|
---|
90 |
|
---|
91 | sid_copy(&g_sid, global_sam_sid);
|
---|
92 |
|
---|
93 | if (!sid_append_rid(&g_sid, grid))
|
---|
94 | return False;
|
---|
95 |
|
---|
96 | if (!pdb_set_group_sid(sampass, &g_sid, flag))
|
---|
97 | return False;
|
---|
98 |
|
---|
99 | DEBUG(10, ("pdb_set_group_sid_from_rid:\n\tsetting group sid %s from rid %d\n",
|
---|
100 | sid_string_static(&g_sid), grid));
|
---|
101 |
|
---|
102 | return True;
|
---|
103 | }
|
---|
104 |
|
---|