tdb: Fix typos.
[obnox/samba/samba-obnox.git] / source3 / lib / util_sid_passdb.c
1 /*
2    Unix SMB/CIFS implementation.
3    sid utility functions
4
5    Copyright (C) Michael Adam 2012
6
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.
11
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.
16
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/>.
19  */
20
21 #include "includes.h"
22 #include "lib/util_sid_passdb.h"
23 #include "passdb/machine_sid.h"
24
25 /**
26  * check whether this is an object-sid that should
27  * be treated by the passdb, e.g. for id-mapping.
28  */
29 bool sid_check_object_is_for_passdb(const struct dom_sid *sid)
30 {
31         if (sid_check_is_in_our_sam(sid)) {
32                 return true;
33         }
34
35         if (sid_check_is_in_builtin(sid)) {
36                 return true;
37         }
38
39         if (sid_check_is_in_wellknown_domain(sid)) {
40                 return true;
41         }
42
43         if (sid_check_is_in_unix_users(sid)) {
44                 return true;
45         }
46
47         if (sid_check_is_in_unix_groups(sid)) {
48                 return true;
49         }
50
51         return false;
52 }
53 /**
54  * check whether this is an object- or domain-sid that should
55  * be treated by the passdb, e.g. for id-mapping.
56  */
57 bool sid_check_is_for_passdb(const struct dom_sid *sid)
58 {
59         if (sid_check_is_our_sam(sid)) {
60                 return true;
61         }
62
63         if (sid_check_is_in_our_sam(sid)) {
64                 return true;
65         }
66
67         if (sid_check_is_builtin(sid)) {
68                 return true;
69         }
70
71         if (sid_check_is_in_builtin(sid)) {
72                 return true;
73         }
74
75         if (sid_check_is_wellknown_domain(sid, NULL)) {
76                 return true;
77         }
78
79         if (sid_check_is_in_wellknown_domain(sid)) {
80                 return true;
81         }
82
83         if (sid_check_is_unix_users(sid)) {
84                 return true;
85         }
86
87         if (sid_check_is_in_unix_users(sid)) {
88                 return true;
89         }
90
91         if (sid_check_is_unix_groups(sid)) {
92                 return true;
93         }
94
95         if (sid_check_is_in_unix_groups(sid)) {
96                 return true;
97         }
98
99         return false;
100 }