winbindd: add retry to _winbind_SendToSam
[Samba.git] / source3 / rpc_client / cli_lsarpc.h
blobf716b049e1278a268ae4f2b70ec8c9ff361672ca
1 /*
2 * Unix SMB/CIFS implementation.
4 * LSARPC client routines
6 * Copyright (c) 2000-2001 Tim Potter
7 * Copyright (c) 1992-2000 Andrew Tridgell
8 * Copyright (c) 2002 Rafal Szczesniak
9 * Copyright (c) 2005 Jeremy Allison
10 * Copyright (c) 2007 Michael Adam
11 * Copyright (c) 2008 Guenther Deschner
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 3 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 #ifndef _CLI_LSARPC_H
28 #define _CLI_LSARPC_H
30 /* The following definitions come from rpc_client/cli_lsarpc.c */
32 /**
33 * @brief Open a LSA policy.
35 * @param[in] h The dcerpc binding hanlde to use.
37 * @param[in] mem_ctx The memory context to use.
39 * @param[in] sec_qos Enable security quality of services.
41 * @param[in] des_access The disired access rights to be granted.
43 * @param[out] pol A pointer to a rpc policy handle.
45 * @param[out] result A pointer for the NDR NTSTATUS error code.
47 * @return A corresponding NTSTATUS error code for the connection.
49 NTSTATUS dcerpc_lsa_open_policy(struct dcerpc_binding_handle *h,
50 TALLOC_CTX *mem_ctx,
51 bool sec_qos,
52 uint32_t des_access,
53 struct policy_handle *pol,
54 NTSTATUS *result);
55 NTSTATUS rpccli_lsa_open_policy(struct rpc_pipe_client *cli,
56 TALLOC_CTX *mem_ctx,
57 bool sec_qos, uint32_t des_access,
58 struct policy_handle *pol);
60 /**
61 * @brief Open a LSA policy.
63 * @param[in] h The dcerpc binding hanlde to use.
65 * @param[in] mem_ctx The memory context to use.
67 * @param[in] sec_qos Enable security quality of services.
69 * @param[in] des_access The disired access rights to be granted.
71 * @param[out] pol A pointer to a rpc policy handle.
73 * @param[out] result A pointer for the NDR NTSTATUS error code.
75 * @return A corresponding NTSTATUS error code for the connection.
77 NTSTATUS dcerpc_lsa_open_policy2(struct dcerpc_binding_handle *h,
78 TALLOC_CTX *mem_ctx,
79 const char *srv_name_slash,
80 bool sec_qos,
81 uint32_t des_access,
82 struct policy_handle *pol,
83 NTSTATUS *result);
84 NTSTATUS rpccli_lsa_open_policy2(struct rpc_pipe_client *cli,
85 TALLOC_CTX *mem_ctx, bool sec_qos,
86 uint32_t des_access, struct policy_handle *pol);
88 /**
89 * @brief Look up the names that correspond to an array of sids.
91 * @param[in] h The initialized binding handle for a dcerpc connection.
93 * @param[in] mem_ctx The memory context to use.
95 * @param[in] pol The opened domain policy handle.
97 * @param[in] num_sids The number of sids in the sids array to look up.
99 * @param[in] sids The array of sids to look up.
101 * @param[out] pdomains A pointer to store the refercenced domains.
103 * @param[out] pnames A pointer to an array for the translated names.
105 * @param[out] ptypes A pointer to an array for the types of the names.
107 * @param[out] result A pointer for the conversion result.
109 * @return A corresponding NTSTATUS error code.
111 NTSTATUS dcerpc_lsa_lookup_sids(struct dcerpc_binding_handle *h,
112 TALLOC_CTX *mem_ctx,
113 struct policy_handle *pol,
114 int num_sids,
115 const struct dom_sid *sids,
116 char ***pdomains,
117 char ***pnames,
118 enum lsa_SidType **ptypes,
119 NTSTATUS *result);
120 NTSTATUS rpccli_lsa_lookup_sids(struct rpc_pipe_client *cli,
121 TALLOC_CTX *mem_ctx,
122 struct policy_handle *pol,
123 int num_sids,
124 const struct dom_sid *sids,
125 char ***pdomains,
126 char ***pnames,
127 enum lsa_SidType **ptypes);
128 NTSTATUS dcerpc_lsa_lookup_sids_generic(struct dcerpc_binding_handle *h,
129 TALLOC_CTX *mem_ctx,
130 struct policy_handle *pol,
131 int num_sids,
132 const struct dom_sid *sids,
133 enum lsa_LookupNamesLevel level,
134 char ***pdomains,
135 char ***pnames,
136 enum lsa_SidType **ptypes,
137 bool use_lookupsids3,
138 NTSTATUS *presult);
140 * @brief Look up the names that correspond to an array of sids.
142 * @param[in] h The initialized binding handle for a dcerpc connection.
144 * @param[in] mem_ctx The memory context to use.
146 * @param[in] pol The opened domain policy handle.
148 * @param[in] num_sids The number of sids in the sids array to look up.
150 * @param[in] sids The array of sids to look up.
152 * @param[out] pdomains A pointer to store the refercenced domains.
154 * @param[out] pnames A pointer to an array for the translated names.
156 * @param[out] ptypes A pointer to an array for the types of the names.
158 * @param[out] result A pointer for the conversion result.
160 * @return A corresponding NTSTATUS error code.
162 NTSTATUS dcerpc_lsa_lookup_sids3(struct dcerpc_binding_handle *h,
163 TALLOC_CTX *mem_ctx,
164 struct policy_handle *pol,
165 int num_sids,
166 const struct dom_sid *sids,
167 char ***pdomains,
168 char ***pnames,
169 enum lsa_SidType **ptypes,
170 NTSTATUS *result);
171 NTSTATUS dcerpc_lsa_lookup_names(struct dcerpc_binding_handle *h,
172 TALLOC_CTX *mem_ctx,
173 struct policy_handle *pol,
174 uint32_t num_names,
175 const char **names,
176 const char ***dom_names,
177 enum lsa_LookupNamesLevel level,
178 struct dom_sid **sids,
179 enum lsa_SidType **types,
180 NTSTATUS *result);
181 NTSTATUS rpccli_lsa_lookup_names(struct rpc_pipe_client *cli,
182 TALLOC_CTX *mem_ctx,
183 struct policy_handle *pol, int num_names,
184 const char **names,
185 const char ***dom_names,
186 int level,
187 struct dom_sid **sids,
188 enum lsa_SidType **types);
190 NTSTATUS dcerpc_lsa_lookup_names4(struct dcerpc_binding_handle *h,
191 TALLOC_CTX *mem_ctx,
192 struct policy_handle *pol,
193 uint32_t num_names,
194 const char **names,
195 const char ***dom_names,
196 enum lsa_LookupNamesLevel level,
197 struct dom_sid **sids,
198 enum lsa_SidType **types,
199 NTSTATUS *result);
200 NTSTATUS dcerpc_lsa_lookup_names_generic(struct dcerpc_binding_handle *h,
201 TALLOC_CTX *mem_ctx,
202 struct policy_handle *pol,
203 uint32_t num_names,
204 const char **names,
205 const char ***dom_names,
206 enum lsa_LookupNamesLevel level,
207 struct dom_sid **sids,
208 enum lsa_SidType **types,
209 bool use_lookupnames4,
210 NTSTATUS *presult);
212 bool fetch_domain_sid( char *domain, char *remote_machine, struct dom_sid *psid);
214 #endif /* _CLI_LSARPC_H */