s3:libnet:libnet_join: define list of desired encryption types only once.
[Samba.git] / source3 / libads / ads_proto.h
blobeb0dea9438b4a98ce7fa6ca252dbba1b80136eb5
1 /*
2 * Unix SMB/CIFS implementation.
3 * ads (active directory) utility library
5 * Copyright (C) Andrew Bartlett 2001
6 * Copyright (C) Andrew Tridgell 2001
7 * Copyright (C) Remus Koos (remuskoos@yahoo.com) 2001
8 * Copyright (C) Alexey Kotovich 2002
9 * Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002-2003
10 * Copyright (C) Luke Howard 2003
11 * Copyright (C) Guenther Deschner 2003-2008
12 * Copyright (C) Rakesh Patel 2004
13 * Copyright (C) Dan Perry 2004
14 * Copyright (C) Jeremy Allison 2004
15 * Copyright (C) Gerald Carter 2006
16 * Copyright (C) Stefan Metzmacher 2007
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 3 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program. If not, see <http://www.gnu.org/licenses/>.
32 #ifndef _LIBADS_ADS_PROTO_H_
33 #define _LIBADS_ADS_PROTO_H_
35 /* The following definitions come from libads/ads_struct.c */
37 char *ads_build_path(const char *realm, const char *sep, const char *field, int reverse);
38 char *ads_build_dn(const char *realm);
39 char *ads_build_domain(const char *dn);
40 ADS_STRUCT *ads_init(const char *realm,
41 const char *workgroup,
42 const char *ldap_server);
43 bool ads_set_sasl_wrap_flags(ADS_STRUCT *ads, int flags);
44 void ads_destroy(ADS_STRUCT **ads);
46 /* The following definitions come from libads/disp_sec.c */
48 void ads_disp_sd(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, struct security_descriptor *sd);
50 /* The following definitions come from libads/kerberos_keytab.c */
52 int ads_keytab_add_entry(ADS_STRUCT *ads, const char *srvPrinc);
53 int ads_keytab_flush(ADS_STRUCT *ads);
54 int ads_keytab_create_default(ADS_STRUCT *ads);
55 int ads_keytab_list(const char *keytab_name);
57 /* The following definitions come from libads/krb5_errs.c */
59 /* The following definitions come from libads/kerberos_util.c */
61 int ads_kinit_password(ADS_STRUCT *ads);
63 /* The following definitions come from libads/ldap.c */
65 bool ads_sitename_match(ADS_STRUCT *ads);
66 bool ads_closest_dc(ADS_STRUCT *ads);
67 ADS_STATUS ads_connect(ADS_STRUCT *ads);
68 ADS_STATUS ads_connect_user_creds(ADS_STRUCT *ads);
69 ADS_STATUS ads_connect_gc(ADS_STRUCT *ads);
70 void ads_disconnect(ADS_STRUCT *ads);
71 ADS_STATUS ads_do_search_all_fn(ADS_STRUCT *ads, const char *bind_path,
72 int scope, const char *expr, const char **attrs,
73 bool (*fn)(ADS_STRUCT *, char *, void **, void *),
74 void *data_area);
75 char *ads_parent_dn(const char *dn);
76 ADS_MODLIST ads_init_mods(TALLOC_CTX *ctx);
77 ADS_STATUS ads_mod_str(TALLOC_CTX *ctx, ADS_MODLIST *mods,
78 const char *name, const char *val);
79 ADS_STATUS ads_mod_strlist(TALLOC_CTX *ctx, ADS_MODLIST *mods,
80 const char *name, const char **vals);
81 ADS_STATUS ads_gen_mod(ADS_STRUCT *ads, const char *mod_dn, ADS_MODLIST mods);
82 ADS_STATUS ads_gen_add(ADS_STRUCT *ads, const char *new_dn, ADS_MODLIST mods);
83 ADS_STATUS ads_del_dn(ADS_STRUCT *ads, char *del_dn);
84 char *ads_ou_string(ADS_STRUCT *ads, const char *org_unit);
85 char *ads_default_ou_string(ADS_STRUCT *ads, const char *wknguid);
86 ADS_STATUS ads_add_strlist(TALLOC_CTX *ctx, ADS_MODLIST *mods,
87 const char *name, const char **vals);
88 uint32_t ads_get_kvno(ADS_STRUCT *ads, const char *account_name);
89 uint32_t ads_get_machine_kvno(ADS_STRUCT *ads, const char *machine_name);
91 bool ads_element_in_array(const char **el_array, size_t num_el, const char *el);
93 ADS_STATUS ads_get_service_principal_names(TALLOC_CTX *mem_ctx,
94 ADS_STRUCT *ads,
95 const char *machine_name,
96 char ***spn_array,
97 size_t *num_spns);
98 ADS_STATUS ads_clear_service_principal_names(ADS_STRUCT *ads, const char *machine_name);
99 ADS_STATUS ads_add_service_principal_name(ADS_STRUCT *ads, const char *machine_name,
100 const char *my_fqdn, const char *spn);
101 ADS_STATUS ads_create_machine_acct(ADS_STRUCT *ads,
102 const char *machine_name,
103 const char *org_unit,
104 uint32_t etype_list);
105 ADS_STATUS ads_move_machine_acct(ADS_STRUCT *ads, const char *machine_name,
106 const char *org_unit, bool *moved);
107 int ads_count_replies(ADS_STRUCT *ads, void *res);
108 ADS_STATUS ads_USN(ADS_STRUCT *ads, uint32_t *usn);
109 ADS_STATUS ads_current_time(ADS_STRUCT *ads);
110 ADS_STATUS ads_domain_func_level(ADS_STRUCT *ads, uint32_t *val);
111 ADS_STATUS ads_domain_sid(ADS_STRUCT *ads, struct dom_sid *sid);
112 ADS_STATUS ads_site_dn(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, const char **site_name);
113 ADS_STATUS ads_site_dn_for_machine(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, const char *computer_name, const char **site_dn);
114 ADS_STATUS ads_upn_suffixes(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, char ***suffixes, size_t *num_suffixes);
115 ADS_STATUS ads_get_joinable_ous(ADS_STRUCT *ads,
116 TALLOC_CTX *mem_ctx,
117 char ***ous,
118 size_t *num_ous);
119 ADS_STATUS ads_get_sid_from_extended_dn(TALLOC_CTX *mem_ctx,
120 const char *extended_dn,
121 enum ads_extended_dn_flags flags,
122 struct dom_sid *sid);
123 char* ads_get_dnshostname( ADS_STRUCT *ads, TALLOC_CTX *ctx, const char *machine_name );
124 char* ads_get_upn( ADS_STRUCT *ads, TALLOC_CTX *ctx, const char *machine_name );
125 char* ads_get_samaccountname( ADS_STRUCT *ads, TALLOC_CTX *ctx, const char *machine_name );
126 ADS_STATUS ads_join_realm(ADS_STRUCT *ads, const char *machine_name,
127 uint32_t account_type, const char *org_unit);
128 ADS_STATUS ads_leave_realm(ADS_STRUCT *ads, const char *hostname);
129 ADS_STATUS ads_find_samaccount(ADS_STRUCT *ads,
130 TALLOC_CTX *mem_ctx,
131 const char *samaccountname,
132 uint32_t *uac_ret,
133 const char **dn_ret);
134 ADS_STATUS ads_config_path(ADS_STRUCT *ads,
135 TALLOC_CTX *mem_ctx,
136 char **config_path);
137 const char *ads_get_extended_right_name_by_guid(ADS_STRUCT *ads,
138 const char *config_path,
139 TALLOC_CTX *mem_ctx,
140 const struct GUID *rights_guid);
141 ADS_STATUS ads_check_ou_dn(TALLOC_CTX *mem_ctx,
142 ADS_STRUCT *ads,
143 const char **account_ou);
145 /* The following definitions come from libads/ldap_printer.c */
147 ADS_STATUS ads_mod_printer_entry(ADS_STRUCT *ads, char *prt_dn,
148 TALLOC_CTX *ctx, const ADS_MODLIST *mods);
149 ADS_STATUS ads_add_printer_entry(ADS_STRUCT *ads, char *prt_dn,
150 TALLOC_CTX *ctx, ADS_MODLIST *mods);
151 WERROR get_remote_printer_publishing_data(struct rpc_pipe_client *cli,
152 TALLOC_CTX *mem_ctx,
153 ADS_MODLIST *mods,
154 const char *printer);
156 /* The following definitions come from libads/ldap_user.c */
158 ADS_STATUS ads_add_user_acct(ADS_STRUCT *ads, const char *user,
159 const char *container, const char *fullname);
160 ADS_STATUS ads_add_group_acct(ADS_STRUCT *ads, const char *group,
161 const char *container, const char *comment);
163 /* The following definitions come from libads/ldap_utils.c */
165 ADS_STATUS ads_ranged_search(ADS_STRUCT *ads,
166 TALLOC_CTX *mem_ctx,
167 int scope,
168 const char *base,
169 const char *filter,
170 void *args,
171 const char *range_attr,
172 char ***strings,
173 size_t *num_strings);
175 /* The following definitions come from libads/ndr.c */
177 struct ndr_print;
178 void ndr_print_ads_struct(struct ndr_print *ndr, const char *name, const struct ads_struct *r);
180 /* The following definitions come from libads/sasl.c */
182 ADS_STATUS ads_sasl_bind(ADS_STRUCT *ads);
184 /* The following definitions come from libads/sasl_wrapping.c */
186 ADS_STATUS ads_setup_sasl_wrapping(ADS_STRUCT *ads,
187 const struct ads_saslwrap_ops *ops,
188 void *private_data);
189 ADS_STATUS ads_setup_sasl_wrapping(ADS_STRUCT *ads,
190 const struct ads_saslwrap_ops *ops,
191 void *private_data);
193 /* The following definitions come from libads/util.c */
195 ADS_STATUS ads_change_trust_account_password(ADS_STRUCT *ads, char *host_principal);
197 #endif /* _LIBADS_ADS_PROTO_H_ */