source: vendor/current/source3/winbindd/idmap_rid.c

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 4.9 KB
Line 
1/*
2 * idmap_rid: static map between Active Directory/NT RIDs and RFC 2307 accounts
3 * Copyright (C) Guenther Deschner, 2004
4 * Copyright (C) Sumit Bose, 2004
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include "includes.h"
22#include "winbindd.h"
23#include "idmap.h"
24#include "../libcli/security/dom_sid.h"
25
26#undef DBGC_CLASS
27#define DBGC_CLASS DBGC_IDMAP
28
29struct idmap_rid_context {
30 uint32_t base_rid;
31};
32
33/******************************************************************************
34 compat params can't be used because of the completely different way
35 we support multiple domains in the new idmap
36 *****************************************************************************/
37
38static NTSTATUS idmap_rid_initialize(struct idmap_domain *dom)
39{
40 NTSTATUS ret;
41 struct idmap_rid_context *ctx;
42 char *config_option = NULL;
43
44 ctx = talloc_zero(dom, struct idmap_rid_context);
45 if (ctx == NULL) {
46 DEBUG(0, ("Out of memory!\n"));
47 return NT_STATUS_NO_MEMORY;
48 }
49
50 config_option = talloc_asprintf(ctx, "idmap config %s", dom->name);
51 if ( ! config_option) {
52 DEBUG(0, ("Out of memory!\n"));
53 ret = NT_STATUS_NO_MEMORY;
54 goto failed;
55 }
56
57 ctx->base_rid = lp_parm_int(-1, config_option, "base_rid", 0);
58
59 dom->private_data = ctx;
60
61 talloc_free(config_option);
62 return NT_STATUS_OK;
63
64failed:
65 talloc_free(ctx);
66 return ret;
67}
68
69static NTSTATUS idmap_rid_id_to_sid(struct idmap_domain *dom, struct id_map *map)
70{
71 struct winbindd_domain *domain;
72 struct idmap_rid_context *ctx;
73
74 ctx = talloc_get_type(dom->private_data, struct idmap_rid_context);
75
76 /* apply filters before checking */
77 if (!idmap_unix_id_is_in_range(map->xid.id, dom)) {
78 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
79 map->xid.id, dom->low_id, dom->high_id));
80 return NT_STATUS_NONE_MAPPED;
81 }
82
83 domain = find_domain_from_name_noinit(dom->name);
84 if (domain == NULL ) {
85 return NT_STATUS_NO_SUCH_DOMAIN;
86 }
87
88 sid_compose(map->sid, &domain->sid, map->xid.id - dom->low_id + ctx->base_rid);
89
90 map->status = ID_MAPPED;
91 map->xid.type = ID_TYPE_BOTH;
92
93 return NT_STATUS_OK;
94}
95
96/**********************************
97 Single sid to id lookup function.
98**********************************/
99
100static NTSTATUS idmap_rid_sid_to_id(struct idmap_domain *dom, struct id_map *map)
101{
102 uint32_t rid;
103 struct idmap_rid_context *ctx;
104
105 ctx = talloc_get_type(dom->private_data, struct idmap_rid_context);
106
107 sid_peek_rid(map->sid, &rid);
108 map->xid.id = rid - ctx->base_rid + dom->low_id;
109 map->xid.type = ID_TYPE_BOTH;
110
111 /* apply filters before returning result */
112
113 if (!idmap_unix_id_is_in_range(map->xid.id, dom)) {
114 DEBUG(5, ("Requested id (%u) out of range (%u - %u). Filtered!\n",
115 map->xid.id, dom->low_id, dom->high_id));
116 map->status = ID_UNMAPPED;
117 return NT_STATUS_NONE_MAPPED;
118 }
119
120 map->status = ID_MAPPED;
121
122 return NT_STATUS_OK;
123}
124
125/**********************************
126 lookup a set of unix ids.
127**********************************/
128
129static NTSTATUS idmap_rid_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids)
130{
131 NTSTATUS ret;
132 int i;
133
134 /* initialize the status to avoid suprise */
135 for (i = 0; ids[i]; i++) {
136 ids[i]->status = ID_UNKNOWN;
137 }
138
139 for (i = 0; ids[i]; i++) {
140
141 ret = idmap_rid_id_to_sid(dom, ids[i]);
142
143 if (( ! NT_STATUS_IS_OK(ret)) &&
144 ( ! NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
145 /* some fatal error occurred, log it */
146 DEBUG(3, ("Unexpected error resolving an ID (%d)\n", ids[i]->xid.id));
147 }
148 }
149
150 return NT_STATUS_OK;
151}
152
153/**********************************
154 lookup a set of sids.
155**********************************/
156
157static NTSTATUS idmap_rid_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids)
158{
159 NTSTATUS ret;
160 int i;
161
162 /* initialize the status to avoid suprise */
163 for (i = 0; ids[i]; i++) {
164 ids[i]->status = ID_UNKNOWN;
165 }
166
167 for (i = 0; ids[i]; i++) {
168
169 ret = idmap_rid_sid_to_id(dom, ids[i]);
170
171 if (( ! NT_STATUS_IS_OK(ret)) &&
172 ( ! NT_STATUS_EQUAL(ret, NT_STATUS_NONE_MAPPED))) {
173 /* some fatal error occurred, log it */
174 DEBUG(3, ("Unexpected error resolving a SID (%s)\n",
175 sid_string_dbg(ids[i]->sid)));
176 }
177 }
178
179 return NT_STATUS_OK;
180}
181
182static struct idmap_methods rid_methods = {
183 .init = idmap_rid_initialize,
184 .unixids_to_sids = idmap_rid_unixids_to_sids,
185 .sids_to_unixids = idmap_rid_sids_to_unixids,
186};
187
188static_decl_idmap;
189NTSTATUS idmap_rid_init(void)
190{
191 return smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "rid", &rid_methods);
192}
193
Note: See TracBrowser for help on using the repository browser.