b042d1d3b7bcd0ccaffc717740adb43edc637f33
[samba.git] / source / dsdb / samdb / samdb.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    interface functions for the sam database
5
6    Copyright (C) Andrew Tridgell 2004
7    Copyright (C) Volker Lendecke 2004
8    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
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 #include "librpc/gen_ndr/ndr_netlogon.h"
26 #include "librpc/gen_ndr/ndr_misc.h"
27 #include "librpc/gen_ndr/ndr_security.h"
28 #include "lib/ldb/include/ldb.h"
29 #include "lib/ldb/include/ldb_errors.h"
30 #include "libcli/security/security.h"
31 #include "libcli/auth/libcli_auth.h"
32 #include "libcli/ldap/ldap_ndr.h"
33 #include "system/time.h"
34 #include "system/filesys.h"
35 #include "ldb_wrap.h"
36 #include "util/util_ldb.h"
37 #include "dsdb/samdb/samdb.h"
38 #include "dsdb/common/flags.h"
39 #include "param/param.h"
40
41 char *samdb_relative_path(struct ldb_context *ldb,
42                                  TALLOC_CTX *mem_ctx, 
43                                  const char *name) 
44 {
45         const char *base_url = 
46                 (const char *)ldb_get_opaque(ldb, "ldb_url");
47         char *path, *p, *full_name;
48         if (name == NULL) {
49                 return NULL;
50         }
51         if (name[0] == 0 || name[0] == '/' || strstr(name, ":/")) {
52                 return talloc_strdup(mem_ctx, name);
53         }
54         path = talloc_strdup(mem_ctx, base_url);
55         if (path == NULL) {
56                 return NULL;
57         }
58         if ( (p = strrchr(path, '/')) != NULL) {
59                 p[0] = '\0';
60                 full_name = talloc_asprintf(mem_ctx, "%s/%s", path, name);
61         } else {
62                 full_name = talloc_asprintf(mem_ctx, "./%s", name);
63         }
64         talloc_free(path);
65         return full_name;
66 }
67
68
69 /*
70   connect to the SAM database
71   return an opaque context pointer on success, or NULL on failure
72  */
73 struct ldb_context *samdb_connect(TALLOC_CTX *mem_ctx, 
74                                   struct loadparm_context *lp_ctx,
75                                   struct auth_session_info *session_info)
76 {
77         struct ldb_context *ldb;
78         ldb = ldb_wrap_connect(mem_ctx, lp_ctx, 
79                                lp_sam_url(lp_ctx), session_info,
80                                NULL, 0, NULL);
81         if (!ldb) {
82                 return NULL;
83         }
84         dsdb_make_schema_global(ldb);
85         return ldb;
86 }
87
88 /*
89   copy from a template record to a message
90 */
91 int samdb_copy_template(struct ldb_context *ldb, 
92                         struct ldb_message *msg, const char *name,
93                         const char **errstring)
94 {
95         struct ldb_result *res;
96         struct ldb_message *t;
97         int ret, i, j;
98         struct ldb_context *templates_ldb;
99         char *templates_ldb_path; 
100         struct ldb_dn *basedn;
101
102         templates_ldb = talloc_get_type(ldb_get_opaque(ldb, "templates_ldb"), struct ldb_context);
103
104         if (!templates_ldb) {
105                 templates_ldb_path = samdb_relative_path(ldb, 
106                                                         msg, 
107                                                         "templates.ldb");
108                 if (!templates_ldb_path) {
109                         *errstring = talloc_asprintf(msg, "samdb_copy_template: ERROR: Failed to contruct path for template db");
110                         return LDB_ERR_OPERATIONS_ERROR;
111                 }
112
113                 templates_ldb = ldb_wrap_connect(ldb, (struct loadparm_context *)ldb_get_opaque(ldb, "loadparm"), 
114                                                 templates_ldb_path, NULL,
115                                                 NULL, 0, NULL);
116                 talloc_free(templates_ldb_path);
117                 if (!templates_ldb) {
118                         return LDB_ERR_OPERATIONS_ERROR;
119                 }
120                 
121                 ret = ldb_set_opaque(ldb, "templates_ldb", templates_ldb);
122                 if (ret != LDB_SUCCESS) {
123                         return ret;
124                 }
125         }
126         *errstring = NULL;      
127
128         basedn = ldb_dn_new(templates_ldb, ldb, "cn=Templates");
129         if (!ldb_dn_add_child_fmt(basedn, "CN=Template%s", name)) {
130                 talloc_free(basedn);
131                 *errstring = talloc_asprintf(msg, "samdb_copy_template: ERROR: Failed to contruct DN for template '%s'", 
132                                              name);
133                 return LDB_ERR_OPERATIONS_ERROR;
134         }
135         
136         /* pull the template record */
137         ret = ldb_search(templates_ldb, basedn, LDB_SCOPE_BASE, "(dn=*)", NULL, &res);  
138         talloc_free(basedn);
139         if (ret != LDB_SUCCESS) {
140                 *errstring = talloc_steal(msg, ldb_errstring(templates_ldb));
141                 return ret;
142         }
143         if (res->count != 1) {
144                 *errstring = talloc_asprintf(msg, "samdb_copy_template: ERROR: template '%s' matched %d records, expected 1", 
145                                              name, 
146                                              res->count);
147                 talloc_free(res);
148                 return LDB_ERR_OPERATIONS_ERROR;
149         }
150         t = res->msgs[0];
151
152         for (i = 0; i < t->num_elements; i++) {
153                 struct ldb_message_element *el = &t->elements[i];
154                 /* some elements should not be copied from the template */
155                 if (ldb_attr_cmp(el->name, "cn") == 0 ||
156                     ldb_attr_cmp(el->name, "name") == 0 ||
157                     ldb_attr_cmp(el->name, "objectClass") == 0 ||
158                     ldb_attr_cmp(el->name, "sAMAccountName") == 0 ||
159                     ldb_attr_cmp(el->name, "sAMAccountName") == 0 ||
160                     ldb_attr_cmp(el->name, "distinguishedName") == 0 ||
161                     ldb_attr_cmp(el->name, "objectGUID") == 0) {
162                         continue;
163                 }
164                 for (j = 0; j < el->num_values; j++) {
165                         ret = samdb_find_or_add_attribute(ldb, msg, el->name, 
166                                                           (char *)el->values[j].data);
167                         if (ret) {
168                                 *errstring = talloc_asprintf(msg, "Adding attribute %s failed.", el->name);
169                                 talloc_free(res);
170                                 return ret;
171                         }
172                 }
173         }
174
175         talloc_free(res);
176
177         return LDB_SUCCESS;
178 }
179
180
181 /****************************************************************************
182  Create the SID list for this user.
183 ****************************************************************************/
184 NTSTATUS security_token_create(TALLOC_CTX *mem_ctx, 
185                                struct loadparm_context *lp_ctx,
186                                struct dom_sid *user_sid,
187                                struct dom_sid *group_sid, 
188                                int n_groupSIDs,
189                                struct dom_sid **groupSIDs, 
190                                bool is_authenticated,
191                                struct security_token **token)
192 {
193         struct security_token *ptoken;
194         int i;
195         NTSTATUS status;
196
197         ptoken = security_token_initialise(mem_ctx);
198         NT_STATUS_HAVE_NO_MEMORY(ptoken);
199
200         ptoken->sids = talloc_array(ptoken, struct dom_sid *, n_groupSIDs + 5);
201         NT_STATUS_HAVE_NO_MEMORY(ptoken->sids);
202
203         ptoken->user_sid = talloc_reference(ptoken, user_sid);
204         ptoken->group_sid = talloc_reference(ptoken, group_sid);
205         ptoken->privilege_mask = 0;
206
207         ptoken->sids[0] = ptoken->user_sid;
208         ptoken->sids[1] = ptoken->group_sid;
209
210         /*
211          * Finally add the "standard" SIDs.
212          * The only difference between guest and "anonymous"
213          * is the addition of Authenticated_Users.
214          */
215         ptoken->sids[2] = dom_sid_parse_talloc(ptoken->sids, SID_WORLD);
216         NT_STATUS_HAVE_NO_MEMORY(ptoken->sids[2]);
217         ptoken->sids[3] = dom_sid_parse_talloc(ptoken->sids, SID_NT_NETWORK);
218         NT_STATUS_HAVE_NO_MEMORY(ptoken->sids[3]);
219         ptoken->num_sids = 4;
220
221         if (is_authenticated) {
222                 ptoken->sids[4] = dom_sid_parse_talloc(ptoken->sids, SID_NT_AUTHENTICATED_USERS);
223                 NT_STATUS_HAVE_NO_MEMORY(ptoken->sids[4]);
224                 ptoken->num_sids++;
225         }
226
227         for (i = 0; i < n_groupSIDs; i++) {
228                 size_t check_sid_idx;
229                 for (check_sid_idx = 1; 
230                      check_sid_idx < ptoken->num_sids; 
231                      check_sid_idx++) {
232                         if (dom_sid_equal(ptoken->sids[check_sid_idx], groupSIDs[i])) {
233                                 break;
234                         }
235                 }
236
237                 if (check_sid_idx == ptoken->num_sids) {
238                         ptoken->sids[ptoken->num_sids++] = talloc_reference(ptoken->sids, groupSIDs[i]);
239                 }
240         }
241
242         /* setup the privilege mask for this token */
243         status = samdb_privilege_setup(lp_ctx, ptoken);
244         if (!NT_STATUS_IS_OK(status)) {
245                 talloc_free(ptoken);
246                 return status;
247         }
248
249         security_token_debug(10, ptoken);
250
251         *token = ptoken;
252
253         return NT_STATUS_OK;
254 }