ctdb: Accept the key in hex format for the pstore command
[Samba.git] / source3 / lib / util_sid_passdb.c
blob0ff64cccd82c8651756ab2f362b14e6c00ce8b2b
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 "passdb/machine_sid.h"
24 #include "passdb.h"
26 /**
27 * check whether this is an object-sid that should
28 * be treated by the passdb, e.g. for id-mapping.
30 bool sid_check_object_is_for_passdb(const struct dom_sid *sid)
32 if (sid_check_is_in_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
33 return true;
36 if (sid_check_is_in_builtin(sid) && pdb_is_responsible_for_builtin()) {
37 return true;
40 if (sid_check_is_in_wellknown_domain(sid) &&
41 pdb_is_responsible_for_wellknown())
43 return true;
46 if (sid_check_is_in_unix_users(sid) &&
47 pdb_is_responsible_for_unix_users())
49 return true;
52 if (sid_check_is_in_unix_groups(sid) &&
53 pdb_is_responsible_for_unix_groups())
55 return true;
58 if (pdb_is_responsible_for_everything_else())
60 return true;
63 return false;
66 /**
67 * check whether this is an object- or domain-sid that should
68 * be treated by the passdb, e.g. for id-mapping.
70 bool sid_check_is_for_passdb(const struct dom_sid *sid)
72 if (sid_check_is_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
73 return true;
76 if (sid_check_is_in_our_sam(sid) && pdb_is_responsible_for_our_sam()) {
77 return true;
80 if (sid_check_is_builtin(sid) && pdb_is_responsible_for_builtin()) {
81 return true;
84 if (sid_check_is_in_builtin(sid) && pdb_is_responsible_for_builtin()) {
85 return true;
88 if (sid_check_is_wellknown_domain(sid, NULL) &&
89 pdb_is_responsible_for_wellknown())
91 return true;
94 if (sid_check_is_in_wellknown_domain(sid) &&
95 pdb_is_responsible_for_wellknown())
97 return true;
100 if (sid_check_is_unix_users(sid) &&
101 pdb_is_responsible_for_unix_users())
103 return true;
106 if (sid_check_is_in_unix_users(sid) &&
107 pdb_is_responsible_for_unix_users())
109 return true;
112 if (sid_check_is_unix_groups(sid) &&
113 pdb_is_responsible_for_unix_groups())
115 return true;
118 if (sid_check_is_in_unix_groups(sid) &&
119 pdb_is_responsible_for_unix_groups())
121 return true;
124 if (pdb_is_responsible_for_everything_else())
126 return true;
129 return false;