WHATSNEW: Update changed parameters.
[Samba/gebeck_regimport.git] / libcli / security / dom_sid.h
blob8d59b1824c15163a2dfa51702a8f595cb9d4ee4c
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) Stefan (metze) Metzmacher 2002-2004
6 Copyright (C) Andrew Tridgell 1992-2004
7 Copyright (C) Jeremy Allison 1999
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef _DOM_SID_H_
24 #define _DOM_SID_H_
26 #include "librpc/gen_ndr/security.h"
28 /* Some well-known SIDs */
29 extern const struct dom_sid global_sid_World_Domain;
30 extern const struct dom_sid global_sid_World;
31 extern const struct dom_sid global_sid_Creator_Owner_Domain;
32 extern const struct dom_sid global_sid_NT_Authority;
33 extern const struct dom_sid global_sid_Enterprise_DCs;
34 extern const struct dom_sid global_sid_System;
35 extern const struct dom_sid global_sid_NULL;
36 extern const struct dom_sid global_sid_Authenticated_Users;
37 extern const struct dom_sid global_sid_Network;
38 extern const struct dom_sid global_sid_Creator_Owner;
39 extern const struct dom_sid global_sid_Creator_Group;
40 extern const struct dom_sid global_sid_Anonymous;
41 extern const struct dom_sid global_sid_Builtin;
42 extern const struct dom_sid global_sid_Builtin_Administrators;
43 extern const struct dom_sid global_sid_Builtin_Users;
44 extern const struct dom_sid global_sid_Builtin_Guests;
45 extern const struct dom_sid global_sid_Builtin_Power_Users;
46 extern const struct dom_sid global_sid_Builtin_Account_Operators;
47 extern const struct dom_sid global_sid_Builtin_Server_Operators;
48 extern const struct dom_sid global_sid_Builtin_Print_Operators;
49 extern const struct dom_sid global_sid_Builtin_Backup_Operators;
50 extern const struct dom_sid global_sid_Builtin_Replicator;
51 extern const struct dom_sid global_sid_Builtin_PreWin2kAccess;
52 extern const struct dom_sid global_sid_Unix_Users;
53 extern const struct dom_sid global_sid_Unix_Groups;
55 int dom_sid_compare_auth(const struct dom_sid *sid1,
56 const struct dom_sid *sid2);
57 int dom_sid_compare(const struct dom_sid *sid1, const struct dom_sid *sid2);
58 int dom_sid_compare_domain(const struct dom_sid *sid1,
59 const struct dom_sid *sid2);
60 bool dom_sid_equal(const struct dom_sid *sid1, const struct dom_sid *sid2);
61 bool sid_append_rid(struct dom_sid *sid, uint32_t rid);
62 bool string_to_sid(struct dom_sid *sidout, const char *sidstr);
63 bool dom_sid_parse(const char *sidstr, struct dom_sid *ret);
64 struct dom_sid *dom_sid_parse_talloc(TALLOC_CTX *mem_ctx, const char *sidstr);
65 struct dom_sid *dom_sid_parse_length(TALLOC_CTX *mem_ctx, const DATA_BLOB *sid);
66 struct dom_sid *dom_sid_dup(TALLOC_CTX *mem_ctx, const struct dom_sid *dom_sid);
67 struct dom_sid *dom_sid_add_rid(TALLOC_CTX *mem_ctx,
68 const struct dom_sid *domain_sid,
69 uint32_t rid);
70 NTSTATUS dom_sid_split_rid(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
71 struct dom_sid **domain, uint32_t *rid);
72 bool dom_sid_in_domain(const struct dom_sid *domain_sid,
73 const struct dom_sid *sid);
74 char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid);
77 const char *sid_type_lookup(uint32_t sid_type);
78 const struct security_token *get_system_token(void);
79 bool sid_compose(struct dom_sid *dst, const struct dom_sid *domain_sid, uint32_t rid);
80 bool sid_split_rid(struct dom_sid *sid, uint32_t *rid);
81 bool sid_peek_rid(const struct dom_sid *sid, uint32_t *rid);
82 bool sid_peek_check_rid(const struct dom_sid *exp_dom_sid, const struct dom_sid *sid, uint32_t *rid);
83 void sid_copy(struct dom_sid *dst, const struct dom_sid *src);
84 bool sid_blob_parse(DATA_BLOB in, struct dom_sid *sid);
85 bool sid_parse(const char *inbuf, size_t len, struct dom_sid *sid);
86 int sid_compare_domain(const struct dom_sid *sid1, const struct dom_sid *sid2);
87 bool sid_equal(const struct dom_sid *sid1, const struct dom_sid *sid2);
88 NTSTATUS add_sid_to_array(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
89 struct dom_sid **sids, uint32_t *num);
90 NTSTATUS add_sid_to_array_unique(TALLOC_CTX *mem_ctx, const struct dom_sid *sid,
91 struct dom_sid **sids, uint32_t *num_sids);
92 void del_sid_from_array(const struct dom_sid *sid, struct dom_sid **sids, size_t *num);
93 bool add_rid_to_array_unique(TALLOC_CTX *mem_ctx,
94 uint32_t rid, uint32_t **pp_rids, size_t *p_num);
95 bool is_null_sid(const struct dom_sid *sid);
97 #endif /*_DOM_SID_H_*/