libreplace: move rep_socketpair() to its own module.
[Samba.git] / source4 / auth / auth_anonymous.c
blob38c13d4b659a66c65b2b4b5d4ac5a1ecf71741c0
1 /*
2 Unix SMB/CIFS implementation.
4 Anonymous Authentification
6 Copyright (C) Stefan Metzmacher 2004-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/>.
22 #include "includes.h"
23 #include "auth/auth.h"
24 #include "param/param.h"
26 /**
27 * Return a anonymous logon for anonymous users (username = "")
29 * Typically used as the first module in the auth chain, this allows
30 * anonymou logons to be dealt with in one place. Non-anonymou logons 'fail'
31 * and pass onto the next module.
32 **/
33 static NTSTATUS anonymous_want_check(struct auth_method_context *ctx,
34 TALLOC_CTX *mem_ctx,
35 const struct auth_usersupplied_info *user_info)
37 if (user_info->client.account_name && *user_info->client.account_name) {
38 return NT_STATUS_NOT_IMPLEMENTED;
41 return NT_STATUS_OK;
44 /**
45 * Return a anonymous logon for anonymous users (username = "")
47 * Typically used as the first module in the auth chain, this allows
48 * anonymou logons to be dealt with in one place. Non-anonymou logons 'fail'
49 * and pass onto the next module.
50 **/
51 static NTSTATUS anonymous_check_password(struct auth_method_context *ctx,
52 TALLOC_CTX *mem_ctx,
53 const struct auth_usersupplied_info *user_info,
54 struct auth_serversupplied_info **_server_info)
56 return auth_anonymous_server_info(mem_ctx, lp_netbios_name(ctx->auth_ctx->lp_ctx), _server_info);
59 static const struct auth_operations anonymous_auth_ops = {
60 .name = "anonymous",
61 .get_challenge = auth_get_challenge_not_implemented,
62 .want_check = anonymous_want_check,
63 .check_password = anonymous_check_password
66 _PUBLIC_ NTSTATUS auth_anonymous_init(void)
68 NTSTATUS ret;
70 ret = auth_register(&anonymous_auth_ops);
71 if (!NT_STATUS_IS_OK(ret)) {
72 DEBUG(0,("Failed to register 'anonymous' auth backend!\n"));
73 return ret;
76 return ret;