unixinfo.idl: don't use utf8string anymore
[samba.git] / source4 / dsdb / samdb / ldb_modules / samldb.c
1 /* 
2    SAM ldb module
3
4    Copyright (C) Simo Sorce  2004
5    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
6
7    * NOTICE: this module is NOT released under the GNU LGPL license as
8    * other ldb code. This module is release under the GNU GPL v2 or
9    * later license.
10
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 3 of the License, or
14    (at your option) any later version.
15    
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20    
21    You should have received a copy of the GNU General Public License
22    along with this program.  If not, see <http://www.gnu.org/licenses/>.
23 */
24
25 /*
26  *  Name: ldb
27  *
28  *  Component: ldb samldb module
29  *
30  *  Description: add embedded user/group creation functionality
31  *
32  *  Author: Simo Sorce
33  */
34
35 #include "includes.h"
36 #include "libcli/ldap/ldap_ndr.h"
37 #include "lib/ldb/include/ldb_errors.h"
38 #include "lib/ldb/include/ldb.h"
39 #include "lib/ldb/include/ldb_private.h"
40 #include "dsdb/samdb/samdb.h"
41 #include "libcli/security/security.h"
42 #include "librpc/gen_ndr/ndr_security.h"
43 #include "util/util_ldb.h"
44
45 int samldb_notice_sid(struct ldb_module *module, 
46                       TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
47
48 static bool samldb_msg_add_sid(struct ldb_module *module, struct ldb_message *msg, const char *name, const struct dom_sid *sid)
49 {
50         struct ldb_val v;
51         enum ndr_err_code ndr_err;
52
53         ndr_err = ndr_push_struct_blob(&v, msg, NULL, sid,
54                                        (ndr_push_flags_fn_t)ndr_push_dom_sid);
55         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
56                 return false;
57         }
58         return (ldb_msg_add_value(msg, name, &v, NULL) == 0);
59 }
60
61 /*
62   allocate a new id, attempting to do it atomically
63   return 0 on failure, the id on success
64 */
65 static int samldb_set_next_rid(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
66                                struct ldb_dn *dn, uint32_t old_id, uint32_t new_id)
67 {
68         struct ldb_message msg;
69         int ret;
70         struct ldb_val vals[2];
71         struct ldb_message_element els[2];
72
73         if (new_id == 0) {
74                 /* out of IDs ! */
75                 ldb_set_errstring(ldb, "Are we out of valid IDs ?\n");
76                 return LDB_ERR_OPERATIONS_ERROR;
77         }
78
79         /* we do a delete and add as a single operation. That prevents
80            a race, in case we are not actually on a transaction db */
81         ZERO_STRUCT(msg);
82         msg.dn = ldb_dn_copy(mem_ctx, dn);
83         if (!msg.dn) {
84                 ldb_oom(ldb);
85                 return LDB_ERR_OPERATIONS_ERROR;
86         }
87         msg.num_elements = 2;
88         msg.elements = els;
89
90         els[0].num_values = 1;
91         els[0].values = &vals[0];
92         els[0].flags = LDB_FLAG_MOD_DELETE;
93         els[0].name = talloc_strdup(mem_ctx, "nextRid");
94         if (!els[0].name) {
95                 ldb_oom(ldb);
96                 return LDB_ERR_OPERATIONS_ERROR;
97         }
98
99         els[1].num_values = 1;
100         els[1].values = &vals[1];
101         els[1].flags = LDB_FLAG_MOD_ADD;
102         els[1].name = els[0].name;
103
104         vals[0].data = (uint8_t *)talloc_asprintf(mem_ctx, "%u", old_id);
105         if (!vals[0].data) {
106                 ldb_oom(ldb);
107                 return LDB_ERR_OPERATIONS_ERROR;
108         }
109         vals[0].length = strlen((char *)vals[0].data);
110
111         vals[1].data = (uint8_t *)talloc_asprintf(mem_ctx, "%u", new_id);
112         if (!vals[1].data) {
113                 ldb_oom(ldb);
114                 return LDB_ERR_OPERATIONS_ERROR;
115         }
116         vals[1].length = strlen((char *)vals[1].data);
117
118         ret = ldb_modify(ldb, &msg);
119         return ret;
120 }
121
122 /*
123   allocate a new id, attempting to do it atomically
124   return 0 on failure, the id on success
125 */
126 static int samldb_find_next_rid(struct ldb_module *module, TALLOC_CTX *mem_ctx,
127                                 struct ldb_dn *dn, uint32_t *old_rid)
128 {
129         const char * const attrs[2] = { "nextRid", NULL };
130         struct ldb_result *res = NULL;
131         int ret;
132         const char *str;
133
134         ret = ldb_search(module->ldb, dn, LDB_SCOPE_BASE, "nextRid=*", attrs, &res);
135         if (ret != LDB_SUCCESS) {
136                 return ret;
137         }
138         if (res->count != 1) {
139                 talloc_free(res);
140                 return LDB_ERR_OPERATIONS_ERROR;
141         }
142
143         str = ldb_msg_find_attr_as_string(res->msgs[0], "nextRid", NULL);
144         if (str == NULL) {
145                 ldb_asprintf_errstring(module->ldb,
146                                         "attribute nextRid not found in %s\n",
147                                         ldb_dn_get_linearized(dn));
148                 talloc_free(res);
149                 return LDB_ERR_OPERATIONS_ERROR;
150         }
151
152         *old_rid = strtol(str, NULL, 0);
153         talloc_free(res);
154         return LDB_SUCCESS;
155 }
156
157 static int samldb_allocate_next_rid(struct ldb_module *module, TALLOC_CTX *mem_ctx,
158                                     struct ldb_dn *dn, const struct dom_sid *dom_sid, 
159                                     struct dom_sid **new_sid)
160 {
161         struct dom_sid *obj_sid;
162         uint32_t old_rid;
163         int ret;
164         
165         ret = samldb_find_next_rid(module, mem_ctx, dn, &old_rid);      
166         if (ret) {
167                 return ret;
168         }
169                 
170         /* return the new object sid */
171         obj_sid = dom_sid_add_rid(mem_ctx, dom_sid, old_rid);
172                 
173         *new_sid = dom_sid_add_rid(mem_ctx, dom_sid, old_rid + 1);
174         if (!*new_sid) {
175                 return LDB_ERR_OPERATIONS_ERROR;
176         }
177
178         ret = samldb_notice_sid(module, mem_ctx, *new_sid);
179         if (ret != 0) {
180                 /* gah, there are conflicting sids.
181                  * This is a critical situation it means that someone messed up with
182                  * the DB and nextRid is not returning free RIDs, report an error
183                  * and refuse to create any user until the problem is fixed */
184                 ldb_asprintf_errstring(module->ldb,
185                                         "Critical Error: unconsistent DB, unable to retireve an unique RID to generate a new SID: %s",
186                                         ldb_errstring(module->ldb));
187                 return ret;
188         }
189         return ret;
190 }
191
192 /* search the domain related to the provided dn
193    allocate a new RID for the domain
194    return the new sid string
195 */
196 static int samldb_get_new_sid(struct ldb_module *module, 
197                               TALLOC_CTX *mem_ctx, struct ldb_dn *obj_dn,
198                               struct ldb_dn *dom_dn, 
199                               struct dom_sid **sid)
200 {
201         const char * const attrs[2] = { "objectSid", NULL };
202         struct ldb_result *res = NULL;
203         int ret;
204         struct dom_sid *dom_sid;
205
206         /* get the domain component part of the provided dn */
207
208         /* find the domain sid */
209
210         ret = ldb_search(module->ldb, dom_dn, LDB_SCOPE_BASE, "objectSid=*", attrs, &res);
211         if (ret != LDB_SUCCESS) {
212                 ldb_asprintf_errstring(module->ldb,
213                                         "samldb_get_new_sid: error retrieving domain sid from %s: %s!\n",
214                                         ldb_dn_get_linearized(dom_dn),
215                                         ldb_errstring(module->ldb));
216                 talloc_free(res);
217                 return ret;
218         }
219
220         if (res->count != 1) {
221                 ldb_asprintf_errstring(module->ldb,
222                                         "samldb_get_new_sid: error retrieving domain sid from %s: not found!\n",
223                                         ldb_dn_get_linearized(dom_dn));
224                 talloc_free(res);
225                 return LDB_ERR_CONSTRAINT_VIOLATION;
226         }
227
228         dom_sid = samdb_result_dom_sid(res, res->msgs[0], "objectSid");
229         if (dom_sid == NULL) {
230                 ldb_set_errstring(module->ldb, "samldb_get_new_sid: error parsing domain sid!\n");
231                 talloc_free(res);
232                 return LDB_ERR_CONSTRAINT_VIOLATION;
233         }
234
235         /* allocate a new Rid for the domain */
236         ret = samldb_allocate_next_rid(module, mem_ctx, dom_dn, dom_sid, sid);
237         if (ret != 0) {
238                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "Failed to increment nextRid of %s: %s\n", ldb_dn_get_linearized(dom_dn), ldb_errstring(module->ldb));
239                 talloc_free(res);
240                 return ret;
241         }
242
243         talloc_free(res);
244
245         return ret;
246 }
247
248 /* If we are adding new users/groups, we need to update the nextRid
249  * attribute to be 'above' all incoming users RIDs.  This tries to
250  * avoid clashes in future */
251
252 int samldb_notice_sid(struct ldb_module *module, 
253                       TALLOC_CTX *mem_ctx, const struct dom_sid *sid)
254 {
255         int ret;
256         struct ldb_dn *dom_dn;
257         struct dom_sid *dom_sid;
258         const char *attrs[] = { NULL };
259         struct ldb_result *dom_res;
260         struct ldb_result *res;
261         uint32_t old_rid;
262
263         /* find if this SID already exists */
264         ret = ldb_search_exp_fmt(module->ldb, mem_ctx, &res,
265                                  NULL, LDB_SCOPE_SUBTREE, attrs,
266                                  "(objectSid=%s)", ldap_encode_ndr_dom_sid(mem_ctx, sid));
267         if (ret == LDB_SUCCESS) {
268                 if (res->count > 0) {
269                         talloc_free(res);
270                         ldb_asprintf_errstring(module->ldb,
271                                                 "Attempt to add record with SID %s rejected,"
272                                                 " because this SID is already in the database",
273                                                 dom_sid_string(mem_ctx, sid));
274                         /* We have a duplicate SID, we must reject the add */
275                         return LDB_ERR_CONSTRAINT_VIOLATION;
276                 }
277                 talloc_free(res);
278         } else {
279                 ldb_asprintf_errstring(module->ldb,
280                                         "samldb_notice_sid: error searching to see if sid %s is in use: %s\n", 
281                                         dom_sid_string(mem_ctx, sid), 
282                                         ldb_errstring(module->ldb));
283                 return ret;
284         }
285
286         dom_sid = dom_sid_dup(mem_ctx, sid);
287         if (!dom_sid) {
288                 return LDB_ERR_OPERATIONS_ERROR;
289         }
290         /* get the domain component part of the provided SID */
291         dom_sid->num_auths--;
292
293         /* find the domain DN */
294         ret = ldb_search_exp_fmt(module->ldb, mem_ctx, &dom_res,
295                                  NULL, LDB_SCOPE_SUBTREE, attrs,
296                                  "(&(objectSid=%s)(objectclass=domain))",
297                                  ldap_encode_ndr_dom_sid(mem_ctx, dom_sid));
298         if (ret == LDB_SUCCESS) {
299                 if (dom_res->count == 0) {
300                         talloc_free(dom_res);
301                         /* This isn't an operation on a domain we know about, so nothing to update */
302                         return LDB_SUCCESS;
303                 }
304
305                 if (dom_res->count > 1) {
306                         talloc_free(dom_res);
307                         ldb_asprintf_errstring(module->ldb,
308                                         "samldb_notice_sid: error retrieving domain from sid: duplicate (found %d) domain: %s!\n", 
309                                         dom_res->count, dom_sid_string(dom_res, dom_sid));
310                         return LDB_ERR_OPERATIONS_ERROR;
311                 }
312         } else {
313                 ldb_asprintf_errstring(module->ldb,
314                                         "samldb_notice_sid: error retrieving domain from sid: %s: %s\n", 
315                                         dom_sid_string(dom_res, dom_sid), 
316                                         ldb_errstring(module->ldb));
317                 return ret;
318         }
319
320         dom_dn = dom_res->msgs[0]->dn;
321
322         ret = samldb_find_next_rid(module, mem_ctx, 
323                                    dom_dn, &old_rid);
324         if (ret) {
325                 talloc_free(dom_res);
326                 return ret;
327         }
328
329         if (old_rid <= sid->sub_auths[sid->num_auths - 1]) {
330                 ret = samldb_set_next_rid(module->ldb, mem_ctx, dom_dn, old_rid, 
331                                           sid->sub_auths[sid->num_auths - 1] + 1);
332         }
333         talloc_free(dom_res);
334         return ret;
335 }
336
337 static int samldb_handle_sid(struct ldb_module *module, 
338                              TALLOC_CTX *mem_ctx, struct ldb_message *msg2,
339                              struct ldb_dn *parent_dn)
340 {
341         int ret;
342         
343         struct dom_sid *sid = samdb_result_dom_sid(mem_ctx, msg2, "objectSid");
344         if (sid == NULL) { 
345                 ret = samldb_get_new_sid(module, msg2, msg2->dn, parent_dn, &sid);
346                 if (ret != 0) {
347                         return ret;
348                 }
349
350                 if ( ! samldb_msg_add_sid(module, msg2, "objectSid", sid)) {
351                         talloc_free(sid);
352                         return LDB_ERR_OPERATIONS_ERROR;
353                 }
354                 talloc_free(sid);
355                 ret = LDB_SUCCESS;
356         } else {
357                 ret = samldb_notice_sid(module, msg2, sid);
358         }
359         return ret;
360 }
361
362 static int samldb_generate_samAccountName(struct ldb_module *module, TALLOC_CTX *mem_ctx, 
363                                           struct ldb_dn *dom_dn, char **name) 
364 {
365         const char *attrs[] = { NULL };
366         struct ldb_result *res;
367         int ret;
368         
369         /* Format: $000000-000000000000 */
370         
371         do {
372                 *name = talloc_asprintf(mem_ctx, "$%.6X-%.6X%.6X", (unsigned int)random(), (unsigned int)random(), (unsigned int)random());
373                 /* TODO: Figure out exactly what this is meant to conflict with */
374                 ret = ldb_search_exp_fmt(module->ldb,
375                                          mem_ctx, &res, dom_dn, LDB_SCOPE_SUBTREE, attrs,
376                                          "samAccountName=%s",
377                                          ldb_binary_encode_string(mem_ctx, *name));
378                 if (ret != LDB_SUCCESS) {
379                         ldb_asprintf_errstring(module->ldb, "samldb: Failure searching to determine if samAccountName %s is unique: %s",
380                                                *name, ldb_errstring(module->ldb));
381                         return ret;
382                 }
383
384                 if (res->count == 0) {
385                         talloc_free(res);
386                         /* Great. There are no conflicting users/groups/etc */
387                         return LDB_SUCCESS;
388                 } else {
389                         talloc_free(*name);
390                         /* gah, there is a conflicting name, lets move around the loop again... */
391                 }
392         } while (1);
393 }
394
395 static int samldb_fill_group_object(struct ldb_module *module, const struct ldb_message *msg,
396                                                     struct ldb_message **ret_msg)
397 {
398         int ret;
399         char *name;
400         struct ldb_message *msg2;
401         struct ldb_dn *dom_dn;
402         const char *rdn_name;
403         TALLOC_CTX *mem_ctx = talloc_new(msg);
404         const char *errstr;
405         if (!mem_ctx) {
406                 return LDB_ERR_OPERATIONS_ERROR;
407         }
408
409         /* build the new msg */
410         msg2 = ldb_msg_copy(mem_ctx, msg);
411         if (!msg2) {
412                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "samldb_fill_group_object: ldb_msg_copy failed!\n");
413                 talloc_free(mem_ctx);
414                 return LDB_ERR_OPERATIONS_ERROR;
415         }
416
417         ret = samdb_copy_template(module->ldb, msg2, 
418                                   "group",
419                                   &errstr);
420         if (ret != 0) {
421                 
422                 talloc_free(mem_ctx);
423                 return ret;
424         }
425
426         rdn_name = ldb_dn_get_rdn_name(msg2->dn);
427
428         if (strcasecmp(rdn_name, "cn") != 0) {
429                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "samldb_fill_group_object: Bad RDN (%s) for group!\n", rdn_name);
430                 talloc_free(mem_ctx);
431                 return LDB_ERR_CONSTRAINT_VIOLATION;
432         }
433
434         ret = samdb_search_for_parent_domain(module->ldb, mem_ctx, msg2->dn, &dom_dn, &errstr);
435         if (ret != LDB_SUCCESS) {
436                 ldb_asprintf_errstring(module->ldb,
437                                        "samldb_fill_group_object: %s", errstr);
438                 return ret;
439         }
440
441         /* Generate a random name, if no samAccountName was supplied */
442         if (ldb_msg_find_element(msg2, "samAccountName") == NULL) {
443                 ret = samldb_generate_samAccountName(module, mem_ctx, dom_dn, &name);
444                 if (ret != LDB_SUCCESS) {
445                         talloc_free(mem_ctx);
446                         return ret;
447                 }
448                 ret = samdb_find_or_add_attribute(module->ldb, msg2, "sAMAccountName", name);
449                 if (ret) {
450                         talloc_free(mem_ctx);
451                         return ret;
452                 }
453         }
454         
455         /* Manage SID allocation, conflicts etc */
456         ret = samldb_handle_sid(module, mem_ctx, msg2, dom_dn); 
457
458         if (ret == LDB_SUCCESS) {
459                 talloc_steal(msg, msg2);
460                 *ret_msg = msg2;
461         }
462         talloc_free(mem_ctx);
463         return ret;
464 }
465
466 static int samldb_fill_user_or_computer_object(struct ldb_module *module, const struct ldb_message *msg,
467                                                                struct ldb_message **ret_msg)
468 {
469         int ret;
470         char *name;
471         struct ldb_message *msg2;
472         struct ldb_dn *dom_dn;
473         const char *rdn_name;
474         TALLOC_CTX *mem_ctx = talloc_new(msg);
475         const char *errstr;
476         if (!mem_ctx) {
477                 return LDB_ERR_OPERATIONS_ERROR;
478         }
479
480         /* build the new msg */
481         msg2 = ldb_msg_copy(mem_ctx, msg);
482         if (!msg2) {
483                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "samldb_fill_user_or_computer_object: ldb_msg_copy failed!\n");
484                 talloc_free(mem_ctx);
485                 return LDB_ERR_OPERATIONS_ERROR;
486         }
487
488         if (samdb_find_attribute(module->ldb, msg, "objectclass", "computer") != NULL) {
489
490                 ret = samdb_copy_template(module->ldb, msg2, 
491                                           "computer",
492                                           &errstr);
493                 if (ret) {
494                         ldb_asprintf_errstring(module->ldb, 
495                                                "samldb_fill_user_or_computer_object: "
496                                                "Error copying computer template: %s",
497                                                errstr);
498                         talloc_free(mem_ctx);
499                         return ret;
500                 }
501         } else {
502                 ret = samdb_copy_template(module->ldb, msg2, 
503                                           "user",
504                                           &errstr);
505                 if (ret) {
506                         ldb_asprintf_errstring(module->ldb, 
507                                                "samldb_fill_user_or_computer_object: Error copying user template: %s\n",
508                                                errstr);
509                         talloc_free(mem_ctx);
510                         return ret;
511                 }
512                 /* readd user objectclass */
513                 ret = samdb_find_or_add_value(module->ldb, msg2, "objectclass", "user");
514                 if (ret) {
515                         talloc_free(mem_ctx);
516                         return ret;
517                 }
518         }
519
520         rdn_name = ldb_dn_get_rdn_name(msg2->dn);
521
522         if (strcasecmp(rdn_name, "cn") != 0) {
523                 ldb_asprintf_errstring(module->ldb, "Bad RDN (%s=) for user/computer, should be CN=!\n", rdn_name);
524                 talloc_free(mem_ctx);
525                 return LDB_ERR_CONSTRAINT_VIOLATION;
526         }
527
528         ret = samdb_search_for_parent_domain(module->ldb, mem_ctx, msg2->dn, &dom_dn, &errstr);
529         if (ret != LDB_SUCCESS) {
530                 ldb_asprintf_errstring(module->ldb,
531                                        "samldb_fill_user_or_computer_object: %s", errstr);
532                 return ret;
533         }
534
535         if (ldb_msg_find_element(msg2, "samAccountName") == NULL) {
536                 ret = samldb_generate_samAccountName(module, mem_ctx, dom_dn, &name);
537                 if (ret != LDB_SUCCESS) {
538                         talloc_free(mem_ctx);
539                         return ret;
540                 }
541                 ret = samdb_find_or_add_attribute(module->ldb, msg2, "sAMAccountName", name);
542                 if (ret) {
543                         talloc_free(mem_ctx);
544                         return ret;
545                 }
546         }
547
548         /*
549           TODO: useraccountcontrol: setting value 0 gives 0x200 for users
550         */
551
552         /* Manage SID allocation, conflicts etc */
553         ret = samldb_handle_sid(module, mem_ctx, msg2, dom_dn); 
554
555         /* TODO: objectCategory, userAccountControl, badPwdCount, codePage, countryCode, badPasswordTime, lastLogoff, lastLogon, pwdLastSet, primaryGroupID, accountExpires, logonCount */
556
557         if (ret == 0) {
558                 *ret_msg = msg2;
559                 talloc_steal(msg, msg2);
560         }
561         talloc_free(mem_ctx);
562         return ret;
563 }
564         
565 static int samldb_fill_foreignSecurityPrincipal_object(struct ldb_module *module, const struct ldb_message *msg, 
566                                                        struct ldb_message **ret_msg)
567 {
568         struct ldb_message *msg2;
569         const char *rdn_name;
570         struct dom_sid *dom_sid;
571         struct dom_sid *sid;
572         const char *dom_attrs[] = { "name", NULL };
573         struct ldb_message **dom_msgs;
574         const char *errstr;
575         int ret;
576
577         TALLOC_CTX *mem_ctx = talloc_new(msg);
578         if (!mem_ctx) {
579                 return LDB_ERR_OPERATIONS_ERROR;
580         }
581
582         /* build the new msg */
583         msg2 = ldb_msg_copy(mem_ctx, msg);
584         if (!msg2) {
585                 ldb_debug(module->ldb, LDB_DEBUG_FATAL, "samldb_fill_foreignSecurityPrincipal_object: ldb_msg_copy failed!\n");
586                 talloc_free(mem_ctx);
587                 return LDB_ERR_OPERATIONS_ERROR;
588         }
589
590         ret = samdb_copy_template(module->ldb, msg2, 
591                                   "ForeignSecurityPrincipal",
592                                   &errstr);
593         if (ret != 0) {
594                 ldb_asprintf_errstring(module->ldb, 
595                                        "samldb_fill_foreignSecurityPrincipal_object: "
596                                        "Error copying template: %s",
597                                     errstr);
598                 talloc_free(mem_ctx);
599                 return ret;
600         }
601
602         rdn_name = ldb_dn_get_rdn_name(msg2->dn);
603
604         if (strcasecmp(rdn_name, "cn") != 0) {
605                 ldb_asprintf_errstring(module->ldb, "Bad RDN (%s=) for ForeignSecurityPrincipal, should be CN=!", rdn_name);
606                 talloc_free(mem_ctx);
607                 return LDB_ERR_CONSTRAINT_VIOLATION;
608         }
609
610         sid = samdb_result_dom_sid(msg2, msg, "objectSid");
611         if (!sid) {
612                 /* Slightly different for the foreign sids.  We don't want
613                  * domain SIDs ending up there, it would cause all sorts of
614                  * pain */
615
616                 sid = dom_sid_parse_talloc(msg2, (const char *)ldb_dn_get_rdn_val(msg2->dn)->data);
617                 if (!sid) {
618                         ldb_set_errstring(module->ldb, "No valid found SID in ForeignSecurityPrincipal CN!");
619                         talloc_free(mem_ctx);
620                         return LDB_ERR_CONSTRAINT_VIOLATION;
621                 }
622
623                 if ( ! samldb_msg_add_sid(module, msg2, "objectSid", sid)) {
624                         talloc_free(sid);
625                         return LDB_ERR_OPERATIONS_ERROR;
626                 }
627
628                 dom_sid = dom_sid_dup(mem_ctx, sid);
629                 if (!dom_sid) {
630                         talloc_free(mem_ctx);
631                         return LDB_ERR_OPERATIONS_ERROR;
632                 }
633                 /* get the domain component part of the provided SID */
634                 dom_sid->num_auths--;
635
636                 /* find the domain DN */
637
638                 ret = gendb_search(module->ldb,
639                                    mem_ctx, NULL, &dom_msgs, dom_attrs,
640                                    "(&(objectSid=%s)(objectclass=domain))",
641                                    ldap_encode_ndr_dom_sid(mem_ctx, dom_sid));
642                 if (ret >= 1) {
643                         /* We don't really like the idea of foreign sids that are not foreign, but it happens */
644                         const char *name = samdb_result_string(dom_msgs[0], "name", NULL);
645                         ldb_debug(module->ldb, LDB_DEBUG_TRACE, "NOTE (strange but valid): Adding foreign SID record with SID %s, but this domian (%s) is already in the database", 
646                                   dom_sid_string(mem_ctx, sid), name); 
647                 } else if (ret == -1) {
648                         ldb_asprintf_errstring(module->ldb,
649                                                 "samldb_fill_foreignSecurityPrincipal_object: error searching for a domain with this sid: %s\n", 
650                                                 dom_sid_string(mem_ctx, dom_sid));
651                         talloc_free(dom_msgs);
652                         return LDB_ERR_OPERATIONS_ERROR;
653                 }
654         }
655
656         /* This isn't an operation on a domain we know about, so just
657          * check for the SID, looking for duplicates via the common
658          * code */
659         ret = samldb_notice_sid(module, msg2, sid);
660         if (ret == 0) {
661                 talloc_steal(msg, msg2);
662                 *ret_msg = msg2;
663         }
664         
665         return ret;
666 }
667
668 /* add_record */
669
670 /*
671  * FIXME
672  *
673  * Actually this module is not async at all as it does a number of sync searches
674  * in the process. It still to be decided how to deal with it properly so it is
675  * left SYNC for now until we think of a good solution.
676  */
677
678 static int samldb_add(struct ldb_module *module, struct ldb_request *req)
679 {
680         const struct ldb_message *msg = req->op.add.message;
681         struct ldb_message *msg2 = NULL;
682         struct ldb_request *down_req;
683         int ret;
684
685         ldb_debug(module->ldb, LDB_DEBUG_TRACE, "samldb_add_record\n");
686
687         if (ldb_dn_is_special(msg->dn)) { /* do not manipulate our control entries */
688                 return ldb_next_request(module, req);
689         }
690
691         /* is user or computer? */
692         if ((samdb_find_attribute(module->ldb, msg, "objectclass", "user") != NULL) ||
693             (samdb_find_attribute(module->ldb, msg, "objectclass", "computer") != NULL)) {
694                 /*  add all relevant missing objects */
695                 ret = samldb_fill_user_or_computer_object(module, msg, &msg2);
696                 if (ret) {
697                         return ret;
698                 }
699         }
700
701         /* is group? add all relevant missing objects */
702         if ( ! msg2 ) {
703                 if (samdb_find_attribute(module->ldb, msg, "objectclass", "group") != NULL) {
704                         ret = samldb_fill_group_object(module, msg, &msg2);
705                         if (ret) {
706                                 return ret;
707                         }
708                 }
709         }
710
711         /* perhaps a foreignSecurityPrincipal? */
712         if ( ! msg2 ) {
713                 if (samdb_find_attribute(module->ldb, msg, "objectclass", "foreignSecurityPrincipal") != NULL) {
714                         ret = samldb_fill_foreignSecurityPrincipal_object(module, msg, &msg2);
715                         if (ret) {
716                                 return ret;
717                         }
718                 }
719         }
720
721         if (msg2 == NULL) {
722                 return ldb_next_request(module, req);
723         }
724
725         down_req = talloc(req, struct ldb_request);
726         if (down_req == NULL) {
727                 return LDB_ERR_OPERATIONS_ERROR;
728         }
729
730         *down_req = *req;
731         
732         down_req->op.add.message = talloc_steal(down_req, msg2);
733
734         ldb_set_timeout_from_prev_req(module->ldb, req, down_req);
735
736         /* go on with the call chain */
737         ret = ldb_next_request(module, down_req);
738
739         /* do not free down_req as the call results may be linked to it,
740          * it will be freed when the upper level request get freed */
741         if (ret == LDB_SUCCESS) {
742                 req->handle = down_req->handle;
743         }
744
745         return ret;
746 }
747
748 static int samldb_init(struct ldb_module *module)
749 {
750         return ldb_next_init(module);
751 }
752
753 _PUBLIC_ const struct ldb_module_ops ldb_samldb_module_ops = {
754         .name          = "samldb",
755         .init_context  = samldb_init,
756         .add           = samldb_add,
757 };