r21030: whoops, fix incorrect regex
[Samba.git] / source4 / auth / auth_simple.c
blob59e1280ee5c6708925f5fae220f156bfe9942bea
1 /*
2 Unix SMB/CIFS implementation.
4 auth functions
6 Copyright (C) Simo Sorce 2005
7 Copyright (C) Andrew Tridgell 2005
8 Copyright (C) Andrew Bartlett 2005
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "includes.h"
26 #include "auth/auth.h"
27 #include "lib/events/events.h"
30 It's allowed to pass NULL as session_info,
31 when the caller doesn't need a session_info
33 _PUBLIC_ NTSTATUS authenticate_username_pw(TALLOC_CTX *mem_ctx,
34 struct event_context *ev,
35 struct messaging_context *msg,
36 const char *nt4_domain,
37 const char *nt4_username,
38 const char *password,
39 struct auth_session_info **session_info)
41 struct auth_context *auth_context;
42 struct auth_usersupplied_info *user_info;
43 struct auth_serversupplied_info *server_info;
44 NTSTATUS nt_status;
45 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
47 if (!tmp_ctx) {
48 return NT_STATUS_NO_MEMORY;
51 nt_status = auth_context_create(tmp_ctx, lp_auth_methods(),
52 ev, msg,
53 &auth_context);
54 if (!NT_STATUS_IS_OK(nt_status)) {
55 talloc_free(tmp_ctx);
56 return nt_status;
59 user_info = talloc(tmp_ctx, struct auth_usersupplied_info);
60 if (!user_info) {
61 talloc_free(tmp_ctx);
62 return NT_STATUS_NO_MEMORY;
65 user_info->mapped_state = True;
66 user_info->client.account_name = nt4_username;
67 user_info->mapped.account_name = nt4_username;
68 user_info->client.domain_name = nt4_domain;
69 user_info->mapped.domain_name = nt4_domain;
71 user_info->workstation_name = NULL;
73 user_info->remote_host = NULL;
75 user_info->password_state = AUTH_PASSWORD_PLAIN;
76 user_info->password.plaintext = talloc_strdup(user_info, password);
78 user_info->flags = USER_INFO_CASE_INSENSITIVE_USERNAME |
79 USER_INFO_DONT_CHECK_UNIX_ACCOUNT;
81 user_info->logon_parameters = 0;
83 nt_status = auth_check_password(auth_context, tmp_ctx, user_info, &server_info);
84 if (!NT_STATUS_IS_OK(nt_status)) {
85 talloc_free(tmp_ctx);
86 return nt_status;
89 if (session_info) {
90 nt_status = auth_generate_session_info(tmp_ctx, server_info, session_info);
92 if (NT_STATUS_IS_OK(nt_status)) {
93 talloc_steal(mem_ctx, *session_info);
97 talloc_free(tmp_ctx);
98 return nt_status;