provision: BIND 9.15.x is not supported
[samba.git] / source3 / lib / util_sid_passdb.c
blobe67a27d37b2b11cd9fd2cb9e272d5d5e1e1fb89f
1 /*
2 Unix SMB/CIFS implementation.
3 sid utility functions
5 Copyright (C) Michael Adam 2012
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "lib/util_sid_passdb.h"
23 #include "lib/util_unixsids.h"
24 #include "passdb/machine_sid.h"
25 #include "passdb.h"
27 /**
28 * check whether this is an object-sid that should
29 * be treated by the passdb, e.g. for id-mapping.
31 bool sid_check_object_is_for_passdb(const struct dom_sid *sid)
33 if (sid_check_is_in_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
34 return true;
37 if (sid_check_is_in_builtin(sid) && pdb_is_responsible_for_builtin()) {
38 return true;
41 if (sid_check_is_in_wellknown_domain(sid) &&
42 pdb_is_responsible_for_wellknown())
44 return true;
47 if (sid_check_is_in_unix_users(sid) &&
48 pdb_is_responsible_for_unix_users())
50 return true;
53 if (sid_check_is_in_unix_groups(sid) &&
54 pdb_is_responsible_for_unix_groups())
56 return true;
59 if (pdb_is_responsible_for_everything_else())
61 return true;
64 return false;
67 /**
68 * check whether this is an object- or domain-sid that should
69 * be treated by the passdb, e.g. for id-mapping.
71 bool sid_check_is_for_passdb(const struct dom_sid *sid)
73 if (sid_check_is_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
74 return true;
77 if (sid_check_is_in_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
78 return true;
81 if (sid_check_is_builtin(sid) && pdb_is_responsible_for_builtin()) {
82 return true;
85 if (sid_check_is_in_builtin(sid) && pdb_is_responsible_for_builtin()) {
86 return true;
89 if (sid_check_is_wellknown_domain(sid, NULL) &&
90 pdb_is_responsible_for_wellknown())
92 return true;
95 if (sid_check_is_in_wellknown_domain(sid) &&
96 pdb_is_responsible_for_wellknown())
98 return true;
101 if (sid_check_is_unix_users(sid) &&
102 pdb_is_responsible_for_unix_users())
104 return true;
107 if (sid_check_is_in_unix_users(sid) &&
108 pdb_is_responsible_for_unix_users())
110 return true;
113 if (sid_check_is_unix_groups(sid) &&
114 pdb_is_responsible_for_unix_groups())
116 return true;
119 if (sid_check_is_in_unix_groups(sid) &&
120 pdb_is_responsible_for_unix_groups())
122 return true;
125 if (pdb_is_responsible_for_everything_else())
127 return true;
130 return false;