2 * Unix SMB/CIFS implementation.
3 * Password and authentication handling
5 * Copyright (C) Andrew Tridgell 1992-2001
6 * Copyright (C) Luke Kenneth Casson Leighton 1996-2000
7 * Copyright (C) Jeremy Allison 1997-2001
8 * Copyright (C) John H Terpsta 1999-2001
9 * Copyright (C) Tim Potter 2000
10 * Copyright (C) Andrew Bartlett 2001-2003
11 * Copyright (C) Jelmer Vernooij 2002
12 * Copyright (C) Rafal Szczesniak 2002
13 * Copyright (C) Gerald Carter 2003
14 * Copyright (C) Volker Lendecke 2006,2010
15 * Copyright (C) Michael Adam 2007
16 * Copyright (C) Dan Sledz 2009
17 * Copyright (C) Simo Sorce 2010
19 * This program is free software; you can redistribute it and/or modify
20 * it under the terms of the GNU General Public License as published by
21 * the Free Software Foundation; either version 3 of the License, or
22 * (at your option) any later version.
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
29 * You should have received a copy of the GNU General Public License
30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
33 #ifndef _AUTH_PROTO_H_
34 #define _AUTH_PROTO_H_
36 /* The following definitions come from auth/auth.c */
38 NTSTATUS
smb_register_auth(int version
, const char *name
, auth_init_function init
);
39 NTSTATUS
make_auth3_context_for_ntlm(TALLOC_CTX
*mem_ctx
,
40 struct auth_context
**auth_context
);
41 NTSTATUS
make_auth3_context_for_netlogon(TALLOC_CTX
*mem_ctx
,
42 struct auth_context
**auth_context
);
43 NTSTATUS
make_auth3_context_for_winbind(TALLOC_CTX
*mem_ctx
,
44 struct auth_context
**auth_context
);
45 bool auth3_context_set_challenge(
46 struct auth_context
*ctx
,
47 const uint8_t chal
[8],
48 const char *challenge_set_by
);
50 /****************************************************************************
51 Try to get a challenge out of the various authentication modules.
52 Returns a const char of length 8 bytes.
53 ****************************************************************************/
55 NTSTATUS
auth_get_ntlm_challenge(struct auth_context
*auth_context
,
59 * Check a user's Plaintext, LM or NTLM password.
61 * Check a user's password, as given in the user_info struct and return various
62 * interesting details in the server_info struct.
64 * This function does NOT need to be in a become_root()/unbecome_root() pair
65 * as it makes the calls itself when needed.
67 * The return value takes precedence over the contents of the server_info
68 * struct. When the return is other than NT_STATUS_OK the contents
69 * of that structure is undefined.
71 * @param mem_ctx The memory context to use to allocate server_info
73 * @param user_info Contains the user supplied components, including the passwords.
74 * Must be created with make_user_info() or one of its wrappers.
76 * @param auth_context Supplies the challenges and some other data.
77 * Must be created with make_auth_context(), and the challenges should be
78 * filled in, either at creation or by calling the challenge generation
79 * function auth_get_challenge().
81 * @param pserver_info If successful, contains information about the authentication,
82 * including a struct samu struct describing the user.
84 * @param pauthoritative Indicates if the result should be treated as final
87 * @return An NTSTATUS with NT_STATUS_OK or an appropriate error.
90 NTSTATUS
auth_check_ntlm_password(TALLOC_CTX
*mem_ctx
,
91 const struct auth_context
*auth_context
,
92 const struct auth_usersupplied_info
*user_info
,
93 struct auth_serversupplied_info
**pserver_info
,
94 uint8_t *pauthoritative
);
96 /* The following definitions come from auth/auth_builtin.c */
98 NTSTATUS
auth_builtin_init(TALLOC_CTX
*mem_ctx
);
100 /* The following definitions come from auth/auth_generic.c */
102 NTSTATUS
make_auth4_context(TALLOC_CTX
*mem_ctx
, struct auth4_context
**auth4_context_out
);
103 NTSTATUS
auth_generic_prepare(TALLOC_CTX
*mem_ctx
,
104 const struct tsocket_address
*remote_address
,
105 const struct tsocket_address
*local_address
,
106 const char *service_description
,
107 struct gensec_security
**gensec_security_out
);
109 NTSTATUS
auth_check_password_session_info(struct auth4_context
*auth_context
,
111 struct auth_usersupplied_info
*user_info
,
112 struct auth_session_info
**session_info
);
114 /* The following definitions come from auth/auth_ntlmssp.c */
116 NTSTATUS
auth3_generate_session_info(struct auth4_context
*auth_context
,
118 void *server_returned_info
,
119 const char *original_user_name
,
120 uint32_t session_info_flags
,
121 struct auth_session_info
**session_info
);
123 NTSTATUS
auth3_get_challenge(struct auth4_context
*auth4_context
,
126 NTSTATUS
auth3_set_challenge(struct auth4_context
*auth4_context
, const uint8_t *chal
,
127 const char *challenge_set_by
);
129 struct tevent_req
*auth3_check_password_send(
131 struct tevent_context
*ev
,
132 struct auth4_context
*auth4_context
,
133 const struct auth_usersupplied_info
*user_info
);
134 NTSTATUS
auth3_check_password_recv(struct tevent_req
*req
,
136 uint8_t *pauthoritative
,
137 void **server_returned_info
,
138 DATA_BLOB
*nt_session_key
,
139 DATA_BLOB
*lm_session_key
);
141 /* The following definitions come from auth/auth_sam.c */
143 NTSTATUS
check_sam_security(const DATA_BLOB
*challenge
,
145 const struct auth_usersupplied_info
*user_info
,
146 struct auth_serversupplied_info
**server_info
);
147 NTSTATUS
check_sam_security_info3(const DATA_BLOB
*challenge
,
149 const struct auth_usersupplied_info
*user_info
,
150 struct netr_SamInfo3
**pinfo3
);
151 NTSTATUS
auth_sam_init(TALLOC_CTX
*mem_ctx
);
153 /* The following definitions come from auth/auth_unix.c */
155 NTSTATUS
auth_unix_init(TALLOC_CTX
*mem_ctx
);
157 /* The following definitions come from auth/auth_util.c */
158 struct tsocket_address
;
160 NTSTATUS
make_user_info_map(TALLOC_CTX
*mem_ctx
,
161 struct auth_usersupplied_info
**user_info
,
162 const char *smb_name
,
163 const char *client_domain
,
164 const char *workstation_name
,
165 const struct tsocket_address
*remote_address
,
166 const struct tsocket_address
*local_address
,
167 const char *service_description
,
168 const DATA_BLOB
*lm_pwd
,
169 const DATA_BLOB
*nt_pwd
,
170 const struct samr_Password
*lm_interactive_pwd
,
171 const struct samr_Password
*nt_interactive_pwd
,
172 const char *plaintext
,
173 enum auth_password_state password_state
);
174 bool make_user_info_netlogon_network(TALLOC_CTX
*mem_ctx
,
175 struct auth_usersupplied_info
**user_info
,
176 const char *smb_name
,
177 const char *client_domain
,
178 const char *workstation_name
,
179 const struct tsocket_address
*remote_address
,
180 const struct tsocket_address
*local_address
,
181 uint32_t logon_parameters
,
182 const unsigned char *lm_network_pwd
,
184 const unsigned char *nt_network_pwd
,
186 bool make_user_info_netlogon_interactive(TALLOC_CTX
*mem_ctx
,
187 struct auth_usersupplied_info
**user_info
,
188 const char *smb_name
,
189 const char *client_domain
,
190 const char *workstation_name
,
191 const struct tsocket_address
*remote_address
,
192 const struct tsocket_address
*local_address
,
193 uint32_t logon_parameters
,
194 const unsigned char chal
[8],
195 const unsigned char lm_interactive_pwd
[16],
196 const unsigned char nt_interactive_pwd
[16]);
197 bool make_user_info_for_reply(TALLOC_CTX
*mem_ctx
,
198 struct auth_usersupplied_info
**user_info
,
199 const char *smb_name
,
200 const char *client_domain
,
201 const struct tsocket_address
*remote_address
,
202 const struct tsocket_address
*local_address
,
203 const char *service_description
,
204 const uint8_t chal
[8],
205 DATA_BLOB plaintext_password
);
206 NTSTATUS
make_user_info_for_reply_enc(TALLOC_CTX
*mem_ctx
,
207 struct auth_usersupplied_info
**user_info
,
208 const char *smb_name
,
209 const char *client_domain
,
210 const struct tsocket_address
*remote_address
,
211 const struct tsocket_address
*local_address
,
212 const char *service_description
,
213 DATA_BLOB lm_resp
, DATA_BLOB nt_resp
);
214 bool make_user_info_guest(TALLOC_CTX
*mem_ctx
,
215 const struct tsocket_address
*remote_address
,
216 const struct tsocket_address
*local_address
,
217 const char *service_description
,
218 struct auth_usersupplied_info
**user_info
);
221 NTSTATUS
make_server_info_sam(TALLOC_CTX
*mem_ctx
,
222 struct samu
*sampass
,
223 struct auth_serversupplied_info
**pserver_info
);
224 NTSTATUS
create_local_token(TALLOC_CTX
*mem_ctx
,
225 const struct auth_serversupplied_info
*server_info
,
226 DATA_BLOB
*session_key
,
227 const char *smb_name
,
228 struct auth_session_info
**session_info_out
);
231 * The unix name should be constructed as DOMAIN+ACCOUNT,
232 * while '+' will be the "winbind separator" character.
234 #define AUTH3_UNIX_HINT_QUALIFIED_NAME 0x00000001
236 * The unix name will be just ACCOUNT
238 #define AUTH3_UNIX_HINT_ISLOLATED_NAME 0x00000002
240 * Don't translate the nt token SIDS into uid/gids
242 #define AUTH3_UNIX_HINT_DONT_TRANSLATE_FROM_SIDS 0x00000004
244 * Don't translate the unix token uid/gids to S-1-22-X-Y SIDS
246 #define AUTH3_UNIX_HINT_DONT_TRANSLATE_TO_SIDS 0x00000008
248 * The unix token won't get expanded gid values
249 * from getgroups_unix_user()
251 #define AUTH3_UNIX_HINT_DONT_EXPAND_UNIX_GROUPS 0x00000010
252 NTSTATUS
auth3_user_info_dc_add_hints(struct auth_user_info_dc
*user_info_dc
,
256 NTSTATUS
create_token_from_username(TALLOC_CTX
*mem_ctx
, const char *username
,
258 uid_t
*uid
, gid_t
*gid
,
259 char **found_username
,
260 struct security_token
**token
);
261 bool user_in_group_sid(const char *username
, const struct dom_sid
*group_sid
);
262 bool user_sid_in_group_sid(const struct dom_sid
*sid
, const struct dom_sid
*group_sid
);
263 bool user_in_group(const char *username
, const char *groupname
);
265 NTSTATUS
make_server_info_pw(TALLOC_CTX
*mem_ctx
,
266 const char *unix_username
,
267 const struct passwd
*pwd
,
268 struct auth_serversupplied_info
**server_info
);
269 NTSTATUS
make_session_info_from_username(TALLOC_CTX
*mem_ctx
,
270 const char *username
,
272 struct auth_session_info
**session_info
);
273 bool init_guest_session_info(TALLOC_CTX
*mem_ctx
);
274 bool reinit_guest_session_info(TALLOC_CTX
*mem_ctx
);
275 NTSTATUS
init_system_session_info(TALLOC_CTX
*mem_ctx
);
276 bool session_info_set_session_key(struct auth_session_info
*info
,
277 DATA_BLOB session_key
);
278 NTSTATUS
make_server_info_guest(TALLOC_CTX
*mem_ctx
,
279 struct auth_serversupplied_info
**server_info
);
280 NTSTATUS
make_session_info_guest(TALLOC_CTX
*mem_ctx
,
281 struct auth_session_info
**server_info
);
282 NTSTATUS
make_server_info_anonymous(TALLOC_CTX
*mem_ctx
,
283 struct auth_serversupplied_info
**server_info
);
284 NTSTATUS
make_session_info_anonymous(TALLOC_CTX
*mem_ctx
,
285 struct auth_session_info
**psession_info
);
286 NTSTATUS
make_session_info_system(TALLOC_CTX
*mem_ctx
,
287 struct auth_session_info
**session_info
);
288 const struct auth_session_info
*get_session_info_system(void);
289 struct passwd
*smb_getpwnam( TALLOC_CTX
*mem_ctx
, const char *domuser
,
290 char **p_save_username
, bool create
);
291 NTSTATUS
make_server_info_info3(TALLOC_CTX
*mem_ctx
,
292 const char *sent_nt_username
,
294 struct auth_serversupplied_info
**server_info
,
295 const struct netr_SamInfo3
*info3
);
296 struct wbcAuthUserInfo
;
297 NTSTATUS
make_server_info_wbcAuthUserInfo(TALLOC_CTX
*mem_ctx
,
298 const char *sent_nt_username
,
300 const struct wbcAuthUserInfo
*info
,
301 struct auth_serversupplied_info
**server_info
);
302 bool is_trusted_domain(const char* dom_name
);
303 NTSTATUS
session_extract_session_key(const struct auth_session_info
*session_info
, DATA_BLOB
*session_key
, enum session_key_use_intent intent
);
305 /* The following definitions come from auth/user_info.c */
307 NTSTATUS
make_user_info(TALLOC_CTX
*mem_ctx
,
308 struct auth_usersupplied_info
**ret_user_info
,
309 const char *smb_name
,
310 const char *internal_username
,
311 const char *client_domain
,
313 const char *workstation_name
,
314 const struct tsocket_address
*remote_address
,
315 const struct tsocket_address
*local_address
,
316 const char *service_description
,
317 const DATA_BLOB
*lm_pwd
,
318 const DATA_BLOB
*nt_pwd
,
319 const struct samr_Password
*lm_interactive_pwd
,
320 const struct samr_Password
*nt_interactive_pwd
,
321 const char *plaintext_password
,
322 enum auth_password_state password_state
);
324 NTSTATUS
do_map_to_guest_server_info(TALLOC_CTX
*mem_ctx
,
328 struct auth_serversupplied_info
**server_info
);
330 /* The following definitions come from auth/auth_winbind.c */
332 NTSTATUS
auth_winbind_init(TALLOC_CTX
*mem_ctx
);
334 /* The following definitions come from auth/server_info.c */
336 struct netr_SamInfo2
;
337 struct netr_SamInfo3
;
338 struct netr_SamInfo6
;
340 struct auth_serversupplied_info
*make_server_info(TALLOC_CTX
*mem_ctx
);
341 NTSTATUS
serverinfo_to_SamInfo2(struct auth_serversupplied_info
*server_info
,
342 struct netr_SamInfo2
*sam2
);
343 NTSTATUS
serverinfo_to_SamInfo3(const struct auth_serversupplied_info
*server_info
,
344 struct netr_SamInfo3
*sam3
);
345 NTSTATUS
serverinfo_to_SamInfo6(struct auth_serversupplied_info
*server_info
,
346 struct netr_SamInfo6
*sam6
);
347 NTSTATUS
create_info3_from_pac_logon_info(TALLOC_CTX
*mem_ctx
,
348 const struct PAC_LOGON_INFO
*logon_info
,
349 struct netr_SamInfo3
**pp_info3
);
350 NTSTATUS
create_info6_from_pac(TALLOC_CTX
*mem_ctx
,
351 const struct PAC_LOGON_INFO
*logon_info
,
352 const struct PAC_UPN_DNS_INFO
*upn_dns_info
,
353 struct netr_SamInfo6
**pp_info6
);
354 NTSTATUS
samu_to_SamInfo3(TALLOC_CTX
*mem_ctx
,
356 const char *login_server
,
357 struct netr_SamInfo3
**_info3
,
358 struct extra_auth_info
*extra
);
359 NTSTATUS
passwd_to_SamInfo3(TALLOC_CTX
*mem_ctx
,
360 const char *unix_username
,
361 const struct passwd
*pwd
,
362 struct netr_SamInfo3
**pinfo3
,
363 struct extra_auth_info
*extra
);
365 /* The following definitions come from auth/pampass.c */
367 bool smb_pam_claim_session(const char *user
, const char *tty
, const char *rhost
);
368 bool smb_pam_close_session(const char *user
, const char *tty
, const char *rhost
);
369 NTSTATUS
smb_pam_accountcheck(const char *user
, const char *rhost
);
370 NTSTATUS
smb_pam_passcheck(const char * user
, const char * rhost
,
371 const char * password
);
372 bool smb_pam_passchange(const char *user
, const char *rhost
,
373 const char *oldpassword
, const char *newpassword
);
375 /* The following definitions come from auth/pass_check.c */
377 NTSTATUS
pass_check(const struct passwd
*pass
,
380 const char *password
,
383 /* The following definitions come from auth/token_util.c */
385 bool nt_token_check_sid ( const struct dom_sid
*sid
, const struct security_token
*token
);
386 bool nt_token_check_domain_rid( struct security_token
*token
, uint32_t rid
);
387 NTSTATUS
get_root_nt_token( struct security_token
**token
);
388 NTSTATUS
add_aliases(const struct dom_sid
*domain_sid
,
389 struct security_token
*token
);
390 NTSTATUS
create_local_nt_token(TALLOC_CTX
*mem_ctx
,
391 const struct dom_sid
*user_sid
,
394 const struct dom_sid
*groupsids
,
395 struct security_token
**token
);
396 NTSTATUS
finalize_local_nt_token(struct security_token
*result
,
397 uint32_t session_info_flags
);
398 NTSTATUS
get_user_sid_info3_and_extra(const struct netr_SamInfo3
*info3
,
399 const struct extra_auth_info
*extra
,
400 struct dom_sid
*sid
);
401 NTSTATUS
create_local_nt_token_from_info3(TALLOC_CTX
*mem_ctx
,
403 const struct netr_SamInfo3
*info3
,
404 const struct extra_auth_info
*extra
,
405 struct security_token
**ntok
);
406 void debug_unix_user_token(int dbg_class
, int dbg_lev
, uid_t uid
, gid_t gid
,
407 int n_groups
, gid_t
*groups
);
409 /* The following definitions come from auth/user_util.c */
411 bool map_username(TALLOC_CTX
*ctx
, const char *user_in
, char **p_user_out
);
412 bool user_in_netgroup(TALLOC_CTX
*ctx
, const char *user
, const char *ngname
);
413 bool user_in_list(TALLOC_CTX
*ctx
, const char *user
, const char * const *list
);
415 /* The following definitions come from auth/user_krb5.c */
416 struct PAC_LOGON_INFO
;
417 NTSTATUS
get_user_from_kerberos_info(TALLOC_CTX
*mem_ctx
,
418 const char *cli_name
,
419 const char *princ_name
,
421 bool *mapped_to_guest
,
425 struct passwd
**_pw
);
426 NTSTATUS
make_session_info_krb5(TALLOC_CTX
*mem_ctx
,
431 bool mapped_to_guest
, bool username_was_mapped
,
432 struct auth_session_info
**session_info
);
434 /* The following definitions come from auth/auth_samba4.c */
436 NTSTATUS
auth_samba4_init(TALLOC_CTX
*mem_ctx
);
438 #endif /* _AUTH_PROTO_H_ */