2 Unix SMB/CIFS implementation.
3 Generic authentication types
4 Copyright (C) Andrew Bartlett 2001-2002
5 Copyright (C) Jelmer Vernooij 2002
6 Copyright (C) Stefan Metzmacher 2005
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "auth/auth.h"
24 #include "auth/ntlm/auth_proto.h"
25 #include "libcli/security/security.h"
26 #include "librpc/gen_ndr/ndr_samr.h"
28 static NTSTATUS
name_to_ntstatus_want_check(struct auth_method_context
*ctx
,
30 const struct auth_usersupplied_info
*user_info
)
36 * Return an error based on username
38 * This function allows the testing of obsure errors, as well as the generation
39 * of NT_STATUS -> DOS error mapping tables.
41 * This module is of no value to end-users.
43 * The password is ignored.
45 * @return An NTSTATUS value based on the username
48 static NTSTATUS
name_to_ntstatus_check_password(struct auth_method_context
*ctx
,
50 const struct auth_usersupplied_info
*user_info
,
51 struct auth_serversupplied_info
**_server_info
)
54 struct auth_serversupplied_info
*server_info
;
58 user
= user_info
->client
.account_name
;
60 if (strncasecmp("NT_STATUS", user
, strlen("NT_STATUS")) == 0) {
61 nt_status
= nt_status_string_to_code(user
);
63 error_num
= strtoul(user
, NULL
, 16);
64 DEBUG(5,("name_to_ntstatus_check_password: Error for user %s was 0x%08X\n", user
, error_num
));
65 nt_status
= NT_STATUS(error_num
);
67 NT_STATUS_NOT_OK_RETURN(nt_status
);
69 server_info
= talloc(mem_ctx
, struct auth_serversupplied_info
);
70 NT_STATUS_HAVE_NO_MEMORY(server_info
);
72 server_info
->account_sid
= dom_sid_parse_talloc(server_info
, SID_NT_ANONYMOUS
);
73 NT_STATUS_HAVE_NO_MEMORY(server_info
->account_sid
);
75 /* is this correct? */
76 server_info
->primary_group_sid
= dom_sid_parse_talloc(server_info
, SID_BUILTIN_GUESTS
);
77 NT_STATUS_HAVE_NO_MEMORY(server_info
->primary_group_sid
);
79 server_info
->n_domain_groups
= 0;
80 server_info
->domain_groups
= NULL
;
82 /* annoying, but the Anonymous really does have a session key,
83 and it is all zeros! */
84 server_info
->user_session_key
= data_blob_talloc(server_info
, NULL
, 16);
85 NT_STATUS_HAVE_NO_MEMORY(server_info
->user_session_key
.data
);
87 server_info
->lm_session_key
= data_blob_talloc(server_info
, NULL
, 16);
88 NT_STATUS_HAVE_NO_MEMORY(server_info
->lm_session_key
.data
);
90 data_blob_clear(&server_info
->user_session_key
);
91 data_blob_clear(&server_info
->lm_session_key
);
93 server_info
->account_name
= talloc_asprintf(server_info
, "NAME TO NTSTATUS %s ANONYMOUS LOGON", user
);
94 NT_STATUS_HAVE_NO_MEMORY(server_info
->account_name
);
96 server_info
->domain_name
= talloc_strdup(server_info
, "NT AUTHORITY");
97 NT_STATUS_HAVE_NO_MEMORY(server_info
->domain_name
);
99 server_info
->full_name
= talloc_asprintf(server_info
, "NAME TO NTSTATUS %s Anonymous Logon", user
);
100 NT_STATUS_HAVE_NO_MEMORY(server_info
->full_name
);
102 server_info
->logon_script
= talloc_strdup(server_info
, "");
103 NT_STATUS_HAVE_NO_MEMORY(server_info
->logon_script
);
105 server_info
->profile_path
= talloc_strdup(server_info
, "");
106 NT_STATUS_HAVE_NO_MEMORY(server_info
->profile_path
);
108 server_info
->home_directory
= talloc_strdup(server_info
, "");
109 NT_STATUS_HAVE_NO_MEMORY(server_info
->home_directory
);
111 server_info
->home_drive
= talloc_strdup(server_info
, "");
112 NT_STATUS_HAVE_NO_MEMORY(server_info
->home_drive
);
114 server_info
->last_logon
= 0;
115 server_info
->last_logoff
= 0;
116 server_info
->acct_expiry
= 0;
117 server_info
->last_password_change
= 0;
118 server_info
->allow_password_change
= 0;
119 server_info
->force_password_change
= 0;
121 server_info
->logon_count
= 0;
122 server_info
->bad_password_count
= 0;
124 server_info
->acct_flags
= ACB_NORMAL
;
126 server_info
->authenticated
= false;
128 *_server_info
= server_info
;
133 static const struct auth_operations name_to_ntstatus_auth_ops
= {
134 .name
= "name_to_ntstatus",
135 .get_challenge
= auth_get_challenge_not_implemented
,
136 .want_check
= name_to_ntstatus_want_check
,
137 .check_password
= name_to_ntstatus_check_password
141 * Return a 'fixed' challenge instead of a variable one.
143 * The idea of this function is to make packet snifs consistant
144 * with a fixed challenge, so as to aid debugging.
146 * This module is of no value to end-users.
148 * This module does not actually authenticate the user, but
149 * just pretenteds to need a specified challenge.
150 * This module removes *all* security from the challenge-response system
152 * @return NT_STATUS_UNSUCCESSFUL
154 static NTSTATUS
fixed_challenge_get_challenge(struct auth_method_context
*ctx
, TALLOC_CTX
*mem_ctx
, DATA_BLOB
*_blob
)
157 const char *challenge
= "I am a teapot";
159 blob
= data_blob_talloc(mem_ctx
, challenge
, 8);
160 NT_STATUS_HAVE_NO_MEMORY(blob
.data
);
166 static NTSTATUS
fixed_challenge_want_check(struct auth_method_context
*ctx
,
168 const struct auth_usersupplied_info
*user_info
)
170 /* don't handle any users */
171 return NT_STATUS_NOT_IMPLEMENTED
;
174 static NTSTATUS
fixed_challenge_check_password(struct auth_method_context
*ctx
,
176 const struct auth_usersupplied_info
*user_info
,
177 struct auth_serversupplied_info
**_server_info
)
179 /* don't handle any users */
180 return NT_STATUS_NO_SUCH_USER
;
183 static const struct auth_operations fixed_challenge_auth_ops
= {
184 .name
= "fixed_challenge",
185 .get_challenge
= fixed_challenge_get_challenge
,
186 .want_check
= fixed_challenge_want_check
,
187 .check_password
= fixed_challenge_check_password
190 _PUBLIC_ NTSTATUS
auth_developer_init(void)
194 ret
= auth_register(&name_to_ntstatus_auth_ops
);
195 if (!NT_STATUS_IS_OK(ret
)) {
196 DEBUG(0,("Failed to register 'name_to_ntstatus' auth backend!\n"));
200 ret
= auth_register(&fixed_challenge_auth_ops
);
201 if (!NT_STATUS_IS_OK(ret
)) {
202 DEBUG(0,("Failed to register 'fixed_challenge' auth backend!\n"));