r12608: Remove some unused #include lines.
[kamenim/samba.git] / source4 / auth / auth_developer.c
1 /* 
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
7    
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 2 of the License, or
11    (at your option) any later version.
12    
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.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "auth/auth.h"
25
26 /** 
27  * Return an error based on username
28  *
29  * This function allows the testing of obsure errors, as well as the generation
30  * of NT_STATUS -> DOS error mapping tables.
31  *
32  * This module is of no value to end-users.
33  *
34  * The password is ignored.
35  *
36  * @return An NTSTATUS value based on the username
37  **/
38
39 static NTSTATUS name_to_ntstatus_check_password(struct auth_method_context *ctx,
40                                                 TALLOC_CTX *mem_ctx,
41                                                 const struct auth_usersupplied_info *user_info, 
42                                                 struct auth_serversupplied_info **_server_info)
43 {
44         NTSTATUS nt_status;
45         struct auth_serversupplied_info *server_info;
46         uint32_t error_num;
47         const char *user;
48
49         user = user_info->client.account_name;
50
51         if (strncasecmp("NT_STATUS", user, strlen("NT_STATUS")) == 0) {
52                 nt_status = nt_status_string_to_code(user);
53         } else {
54                 error_num = strtoul(user, NULL, 16);
55                 DEBUG(5,("name_to_ntstatus_check_password: Error for user %s was 0x%08X\n", user, error_num));
56                 nt_status = NT_STATUS(error_num);
57         }
58
59         if (!NT_STATUS_IS_OK(nt_status)) {
60                 return nt_status;
61         }
62
63         server_info = talloc(mem_ctx, struct auth_serversupplied_info);
64         NT_STATUS_HAVE_NO_MEMORY(server_info);
65
66         server_info->account_sid = dom_sid_parse_talloc(server_info, SID_NT_ANONYMOUS);
67         NT_STATUS_HAVE_NO_MEMORY(server_info->account_sid);
68
69         /* is this correct? */
70         server_info->primary_group_sid = dom_sid_parse_talloc(server_info, SID_BUILTIN_GUESTS);
71         NT_STATUS_HAVE_NO_MEMORY(server_info->primary_group_sid);
72
73         server_info->n_domain_groups = 0;
74         server_info->domain_groups = NULL;
75
76         /* annoying, but the Anonymous really does have a session key, 
77            and it is all zeros! */
78         server_info->user_session_key = data_blob_talloc(server_info, NULL, 16);
79         NT_STATUS_HAVE_NO_MEMORY(server_info->user_session_key.data);
80
81         server_info->lm_session_key = data_blob_talloc(server_info, NULL, 16);
82         NT_STATUS_HAVE_NO_MEMORY(server_info->lm_session_key.data);
83
84         data_blob_clear(&server_info->user_session_key);
85         data_blob_clear(&server_info->lm_session_key);
86
87         server_info->account_name = talloc_asprintf(server_info, "NAME TO NTSTATUS %s ANONYMOUS LOGON", user);
88         NT_STATUS_HAVE_NO_MEMORY(server_info->account_name);
89
90         server_info->domain_name = talloc_strdup(server_info, "NT AUTHORITY");
91         NT_STATUS_HAVE_NO_MEMORY(server_info->domain_name);
92
93         server_info->full_name = talloc_asprintf(server_info, "NAME TO NTSTATUS %s Anonymous Logon", user);
94         NT_STATUS_HAVE_NO_MEMORY(server_info->full_name);
95
96         server_info->logon_script = talloc_strdup(server_info, "");
97         NT_STATUS_HAVE_NO_MEMORY(server_info->logon_script);
98
99         server_info->profile_path = talloc_strdup(server_info, "");
100         NT_STATUS_HAVE_NO_MEMORY(server_info->profile_path);
101
102         server_info->home_directory = talloc_strdup(server_info, "");
103         NT_STATUS_HAVE_NO_MEMORY(server_info->home_directory);
104
105         server_info->home_drive = talloc_strdup(server_info, "");
106         NT_STATUS_HAVE_NO_MEMORY(server_info->home_drive);
107
108         server_info->last_logon = 0;
109         server_info->last_logoff = 0;
110         server_info->acct_expiry = 0;
111         server_info->last_password_change = 0;
112         server_info->allow_password_change = 0;
113         server_info->force_password_change = 0;
114
115         server_info->logon_count = 0;
116         server_info->bad_password_count = 0;
117
118         server_info->acct_flags = ACB_NORMAL;
119
120         server_info->authenticated = False;
121
122         *_server_info = server_info;
123
124         return nt_status;
125 }
126
127 static struct auth_operations name_to_ntstatus_auth_ops = {
128         .name           = "name_to_ntstatus",
129         .get_challenge  = auth_get_challenge_not_implemented,
130         .check_password = name_to_ntstatus_check_password
131 };
132
133 /** 
134  * Return a 'fixed' challenge instead of a variable one.
135  *
136  * The idea of this function is to make packet snifs consistant
137  * with a fixed challenge, so as to aid debugging.
138  *
139  * This module is of no value to end-users.
140  *
141  * This module does not actually authenticate the user, but
142  * just pretenteds to need a specified challenge.  
143  * This module removes *all* security from the challenge-response system
144  *
145  * @return NT_STATUS_UNSUCCESSFUL
146  **/
147 static NTSTATUS fixed_challenge_get_challenge(struct auth_method_context *ctx, TALLOC_CTX *mem_ctx, DATA_BLOB *_blob)
148 {
149         DATA_BLOB blob;
150         const char *challenge = "I am a teapot";
151
152         blob = data_blob_talloc(mem_ctx, challenge, 8);
153         NT_STATUS_HAVE_NO_MEMORY(blob.data);
154
155         *_blob = blob;
156         return NT_STATUS_OK;
157 }
158
159 static NTSTATUS fixed_challenge_check_password(struct auth_method_context *ctx,
160                                                TALLOC_CTX *mem_ctx,
161                                                const struct auth_usersupplied_info *user_info,
162                                                struct auth_serversupplied_info **_server_info)
163 {
164         /* don't handle any users */
165         return NT_STATUS_NOT_IMPLEMENTED;
166 }
167
168 static struct auth_operations fixed_challenge_auth_ops = {
169         .name           = "fixed_challenge",
170         .get_challenge  = fixed_challenge_get_challenge,
171         .check_password = fixed_challenge_check_password
172 };
173
174 NTSTATUS auth_developer_init(void)
175 {
176         NTSTATUS ret;
177
178         ret = auth_register(&name_to_ntstatus_auth_ops);
179         if (!NT_STATUS_IS_OK(ret)) {
180                 DEBUG(0,("Failed to register 'name_to_ntstatus' auth backend!\n"));
181                 return ret;
182         }
183
184         ret = auth_register(&fixed_challenge_auth_ops);
185         if (!NT_STATUS_IS_OK(ret)) {
186                 DEBUG(0,("Failed to register 'fixed_challenge' auth backend!\n"));
187                 return ret;
188         }
189
190         return ret;
191 }