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/>.
30 /* The following definitions come from rpc_client/cli_lsarpc.c */
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
,
53 struct policy_handle
*pol
,
55 NTSTATUS
rpccli_lsa_open_policy(struct rpc_pipe_client
*cli
,
57 bool sec_qos
, uint32 des_access
,
58 struct policy_handle
*pol
);
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
,
79 const char *srv_name_slash
,
82 struct policy_handle
*pol
,
84 NTSTATUS
rpccli_lsa_open_policy2(struct rpc_pipe_client
*cli
,
85 TALLOC_CTX
*mem_ctx
, bool sec_qos
,
86 uint32 des_access
, struct policy_handle
*pol
);
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
,
113 struct policy_handle
*pol
,
115 const struct dom_sid
*sids
,
118 enum lsa_SidType
**ptypes
,
120 NTSTATUS
rpccli_lsa_lookup_sids(struct rpc_pipe_client
*cli
,
122 struct policy_handle
*pol
,
124 const struct dom_sid
*sids
,
127 enum lsa_SidType
**ptypes
);
128 NTSTATUS
dcerpc_lsa_lookup_sids_generic(struct dcerpc_binding_handle
*h
,
130 struct policy_handle
*pol
,
132 const struct dom_sid
*sids
,
135 enum lsa_SidType
**ptypes
,
136 bool use_lookupsids3
,
139 * @brief Look up the names that correspond to an array of sids.
141 * @param[in] h The initialized binding handle for a dcerpc connection.
143 * @param[in] mem_ctx The memory context to use.
145 * @param[in] pol The opened domain policy handle.
147 * @param[in] num_sids The number of sids in the sids array to look up.
149 * @param[in] sids The array of sids to look up.
151 * @param[out] pdomains A pointer to store the refercenced domains.
153 * @param[out] pnames A pointer to an array for the translated names.
155 * @param[out] ptypes A pointer to an array for the types of the names.
157 * @param[out] result A pointer for the conversion result.
159 * @return A corresponding NTSTATUS error code.
161 NTSTATUS
dcerpc_lsa_lookup_sids3(struct dcerpc_binding_handle
*h
,
163 struct policy_handle
*pol
,
165 const struct dom_sid
*sids
,
168 enum lsa_SidType
**ptypes
,
170 NTSTATUS
dcerpc_lsa_lookup_names(struct dcerpc_binding_handle
*h
,
172 struct policy_handle
*pol
,
175 const char ***dom_names
,
176 enum lsa_LookupNamesLevel level
,
177 struct dom_sid
**sids
,
178 enum lsa_SidType
**types
,
180 NTSTATUS
rpccli_lsa_lookup_names(struct rpc_pipe_client
*cli
,
182 struct policy_handle
*pol
, int num_names
,
184 const char ***dom_names
,
186 struct dom_sid
**sids
,
187 enum lsa_SidType
**types
);
189 NTSTATUS
dcerpc_lsa_lookup_names4(struct dcerpc_binding_handle
*h
,
191 struct policy_handle
*pol
,
194 const char ***dom_names
,
195 enum lsa_LookupNamesLevel level
,
196 struct dom_sid
**sids
,
197 enum lsa_SidType
**types
,
199 NTSTATUS
dcerpc_lsa_lookup_names_generic(struct dcerpc_binding_handle
*h
,
201 struct policy_handle
*pol
,
204 const char ***dom_names
,
205 enum lsa_LookupNamesLevel level
,
206 struct dom_sid
**sids
,
207 enum lsa_SidType
**types
,
208 bool use_lookupnames4
,
211 bool fetch_domain_sid( char *domain
, char *remote_machine
, struct dom_sid
*psid
);
213 #endif /* _CLI_LSARPC_H */