r25000: Fix some more C++ compatibility warnings.
[abartlet/samba.git/.git] / source4 / auth / auth.c
index 74c60f6a95eb4d64451e866fc0b24f83686a5b0f..b74bbc33714acb62f71fd27451f8fb648ac91d05 100644 (file)
@@ -2,10 +2,11 @@
    Unix SMB/CIFS implementation.
    Password and authentication handling
    Copyright (C) Andrew Bartlett         2001-2002
+   Copyright (C) Stefan Metzmacher       2005
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
    
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
    
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "includes.h"
+#include "lib/util/dlinklist.h"
+#include "auth/auth.h"
+#include "lib/events/events.h"
+#include "build.h"
 
-#undef DBGC_CLASS
-#define DBGC_CLASS DBGC_AUTH
-
-/** List of various built-in authentication modules */
-
-static const struct auth_init_function_entry builtin_auth_init_functions[] = {
-       { "guest", auth_init_guest },
-//     { "rhosts", auth_init_rhosts },
-//     { "hostsequiv", auth_init_hostsequiv },
-       { "sam", auth_init_sam },       
-       { "samstrict", auth_init_samstrict },
-       { "samstrict_dc", auth_init_samstrict_dc },
-       { "unix", auth_init_unix },
-//     { "smbserver", auth_init_smbserver },
-//     { "ntdomain", auth_init_ntdomain },
-//     { "trustdomain", auth_init_trustdomain },
-//     { "winbind", auth_init_winbind },
-#ifdef DEVELOPER
-       { "name_to_ntstatus", auth_init_name_to_ntstatus },
-       { "fixed_challenge", auth_init_fixed_challenge },
-#endif
-       { "plugin", auth_init_plugin },
-       { NULL, NULL}
-};
+/***************************************************************************
+ Set a fixed challenge
+***************************************************************************/
+NTSTATUS auth_context_set_challenge(struct auth_context *auth_ctx, const uint8_t chal[8], const char *set_by) 
+{
+       auth_ctx->challenge.set_by = talloc_strdup(auth_ctx, set_by);
+       NT_STATUS_HAVE_NO_MEMORY(auth_ctx->challenge.set_by);
+
+       auth_ctx->challenge.data = data_blob_talloc(auth_ctx, chal, 8);
+       NT_STATUS_HAVE_NO_MEMORY(auth_ctx->challenge.data.data);
+
+       return NT_STATUS_OK;
+}
+
+/***************************************************************************
+ Set a fixed challenge
+***************************************************************************/
+BOOL auth_challenge_may_be_modified(struct auth_context *auth_ctx) 
+{
+       return auth_ctx->challenge.may_be_modified;
+}
 
 /****************************************************************************
  Try to get a challenge out of the various authentication modules.
  Returns a const char of length 8 bytes.
 ****************************************************************************/
-
-static const uint8 *get_ntlm_challenge(struct auth_context *auth_context) 
+_PUBLIC_ NTSTATUS auth_get_challenge(struct auth_context *auth_ctx, const uint8_t **_chal)
 {
-       DATA_BLOB challenge = data_blob(NULL, 0);
-       const char *challenge_set_by = NULL;
-       auth_methods *auth_method;
-       TALLOC_CTX *mem_ctx;
-
-       if (auth_context->challenge.length) {
-               DEBUG(5, ("get_ntlm_challenge (auth subsystem): returning previous challenge by module %s (normal)\n", 
-                         auth_context->challenge_set_by));
-               return auth_context->challenge.data;
+       NTSTATUS nt_status;
+       struct auth_method_context *method;
+
+       if (auth_ctx->challenge.data.length) {
+               DEBUG(5, ("auth_get_challenge: returning previous challenge by module %s (normal)\n", 
+                         auth_ctx->challenge.set_by));
+               *_chal = auth_ctx->challenge.data.data;
+               return NT_STATUS_OK;
        }
 
-       for (auth_method = auth_context->auth_method_list; auth_method; auth_method = auth_method->next) {
-               if (auth_method->get_chal == NULL) {
-                       DEBUG(5, ("auth_get_challenge: module %s did not want to specify a challenge\n", auth_method->name));
-                       continue;
-               }
+       for (method = auth_ctx->methods; method; method = method->next) {
+               DATA_BLOB challenge = data_blob(NULL,0);
 
-               DEBUG(5, ("auth_get_challenge: getting challenge from module %s\n", auth_method->name));
-               if (challenge_set_by != NULL) {
-                       DEBUG(1, ("auth_get_challenge: CONFIGURATION ERROR: authentication method %s has already specified a challenge.  Challenge by %s ignored.\n", 
-                                 challenge_set_by, auth_method->name));
+               nt_status = method->ops->get_challenge(method, auth_ctx, &challenge);
+               if (NT_STATUS_EQUAL(nt_status, NT_STATUS_NOT_IMPLEMENTED)) {
                        continue;
                }
 
-               mem_ctx = talloc_init("auth_get_challenge for module %s", auth_method->name);
-               if (!mem_ctx) {
-                       smb_panic("talloc_init() failed!");
-               }
-               
-               challenge = auth_method->get_chal(auth_context, &auth_method->private_data, mem_ctx);
-               if (!challenge.length) {
-                       DEBUG(3, ("auth_get_challenge: getting challenge from authentication method %s FAILED.\n", 
-                                 auth_method->name));
-               } else {
-                       DEBUG(5, ("auth_get_challenge: sucessfully got challenge from module %s\n", auth_method->name));
-                       auth_context->challenge = challenge;
-                       challenge_set_by = auth_method->name;
-                       auth_context->challenge_set_method = auth_method;
+               NT_STATUS_NOT_OK_RETURN(nt_status);
+
+               if (challenge.length != 8) {
+                       DEBUG(0, ("auth_get_challenge: invalid challenge (length %u) by mothod [%s]\n",
+                               (unsigned)challenge.length, method->ops->name));
+                       return NT_STATUS_INTERNAL_ERROR;
                }
-               talloc_destroy(mem_ctx);
+
+               auth_ctx->challenge.data        = challenge;
+               auth_ctx->challenge.set_by      = method->ops->name;
+
+               break;
        }
-       
-       if (!challenge_set_by) {
-               uchar chal[8];
-               
-               generate_random_buffer(chal, sizeof(chal), False);
-               auth_context->challenge = data_blob_talloc(auth_context->mem_ctx, 
-                                                          chal, sizeof(chal));
-               
-               challenge_set_by = "random";
-       } 
-       
-       DEBUG(5, ("auth_context challenge created by %s\n", challenge_set_by));
-       DEBUG(5, ("challenge is: \n"));
-       dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
-       
-       SMB_ASSERT(auth_context->challenge.length == 8);
 
-       auth_context->challenge_set_by=challenge_set_by;
+       if (!auth_ctx->challenge.set_by) {
+               uint8_t chal[8];
+               generate_random_buffer(chal, 8);
+
+               auth_ctx->challenge.data                = data_blob_talloc(auth_ctx, chal, 8);
+               NT_STATUS_HAVE_NO_MEMORY(auth_ctx->challenge.data.data);
+               auth_ctx->challenge.set_by              = "random";
+
+               auth_ctx->challenge.may_be_modified     = True;
+       }
 
-       return auth_context->challenge.data;
+       DEBUG(10,("auth_get_challenge: challenge set by %s\n",
+                auth_ctx->challenge.set_by));
+
+       *_chal = auth_ctx->challenge.data.data;
+       return NT_STATUS_OK;
 }
 
+struct auth_check_password_sync_state {
+       BOOL finished;
+       NTSTATUS status;
+       struct auth_serversupplied_info *server_info;
+};
+
+static void auth_check_password_sync_callback(struct auth_check_password_request *req,
+                                             void *private_data)
+{
+       struct auth_check_password_sync_state *s = talloc_get_type(private_data,
+                                                  struct auth_check_password_sync_state);
+
+       s->finished = True;
+       s->status = auth_check_password_recv(req, s, &s->server_info);
+}
 
 /**
- * Check user is in correct domain (if required)
+ * Check a user's Plaintext, LM or NTLM password.
+ * (sync version)
+ *
+ * Check a user's password, as given in the user_info struct and return various
+ * interesting details in the server_info struct.
+ *
+ * The return value takes precedence over the contents of the server_info 
+ * struct.  When the return is other than NT_STATUS_OK the contents 
+ * of that structure is undefined.
+ *
+ * @param auth_ctx Supplies the challenges and some other data. 
+ *                  Must be created with auth_context_create(), and the challenges should be 
+ *                  filled in, either at creation or by calling the challenge geneation 
+ *                  function auth_get_challenge().  
+ *
+ * @param user_info Contains the user supplied components, including the passwords.
  *
- * @param user Only used to fill in the debug message
- * 
- * @param domain The domain to be verified
+ * @param mem_ctx The parent memory context for the server_info structure
  *
- * @return True if the user can connect with that domain, 
- *         False otherwise.
-**/
+ * @param server_info If successful, contains information about the authentication, 
+ *                    including a SAM_ACCOUNT struct describing the user.
+ *
+ * @return An NTSTATUS with NT_STATUS_OK or an appropriate error.
+ *
+ **/
 
-static BOOL check_domain_match(const char *user, const char *domain) 
+NTSTATUS auth_check_password(struct auth_context *auth_ctx,
+                            TALLOC_CTX *mem_ctx,
+                            const struct auth_usersupplied_info *user_info, 
+                            struct auth_serversupplied_info **server_info)
 {
-       /*
-        * If we aren't serving to trusted domains, we must make sure that
-        * the validation request comes from an account in the same domain
-        * as the Samba server
-        */
-
-       if (!lp_allow_trusted_domains() &&
-           !(strequal("", domain) || 
-             strequal(lp_workgroup(), domain) || 
-             is_myname(domain))) {
-               DEBUG(1, ("check_domain_match: Attempt to connect as user %s from domain %s denied.\n", user, domain));
-               return False;
-       } else {
-               return True;
+       struct auth_check_password_sync_state *sync_state;
+       NTSTATUS status;
+
+       sync_state = talloc_zero(auth_ctx, struct auth_check_password_sync_state);
+       NT_STATUS_HAVE_NO_MEMORY(sync_state);
+
+       auth_check_password_send(auth_ctx, user_info, auth_check_password_sync_callback, sync_state);
+
+       while (!sync_state->finished) {
+               event_loop_once(auth_ctx->event_ctx);
+       }
+
+       status = sync_state->status;
+
+       if (NT_STATUS_IS_OK(status)) {
+               *server_info = talloc_steal(mem_ctx, sync_state->server_info);
        }
+
+       talloc_free(sync_state);
+       return status;
+}
+
+struct auth_check_password_request {
+       struct auth_context *auth_ctx;
+       const struct auth_usersupplied_info *user_info;
+       struct auth_serversupplied_info *server_info;
+       struct auth_method_context *method;
+       NTSTATUS status;
+       struct {
+               void (*fn)(struct auth_check_password_request *req, void *private_data);
+               void *private_data;
+       } callback;
+};
+
+static void auth_check_password_async_timed_handler(struct event_context *ev, struct timed_event *te,
+                                                   struct timeval t, void *ptr)
+{
+       struct auth_check_password_request *req = talloc_get_type(ptr, struct auth_check_password_request);
+       req->status = req->method->ops->check_password(req->method, req, req->user_info, &req->server_info);
+       req->callback.fn(req, req->callback.private_data);
 }
 
 /**
  * Check a user's Plaintext, LM or NTLM password.
+ * async send hook
  *
  * Check a user's password, as given in the user_info struct and return various
  * interesting details in the server_info struct.
  *
- * This function does NOT need to be in a become_root()/unbecome_root() pair
- * as it makes the calls itself when needed.
- *
  * The return value takes precedence over the contents of the server_info 
  * struct.  When the return is other than NT_STATUS_OK the contents 
  * of that structure is undefined.
  *
- * @param user_info Contains the user supplied components, including the passwords.
- *                  Must be created with make_user_info() or one of its wrappers.
- *
- * @param auth_context Supplies the challenges and some other data. 
+ * @param auth_ctx Supplies the challenges and some other data. 
  *                  Must be created with make_auth_context(), and the challenges should be 
  *                  filled in, either at creation or by calling the challenge geneation 
  *                  function auth_get_challenge().  
  *
- * @param server_info If successful, contains information about the authentication, 
- *                    including a SAM_ACCOUNT struct describing the user.
+ * @param user_info Contains the user supplied components, including the passwords.
  *
- * @return An NTSTATUS with NT_STATUS_OK or an appropriate error.
+ * @param callback A callback function which will be called when the operation is finished.
+ *                 The callback function needs to call auth_check_password_recv() to get the return values
+ *
+ * @param private_data A private pointer which will ba passed to the callback function
  *
  **/
 
-static NTSTATUS check_ntlm_password(const struct auth_context *auth_context,
-                                   const struct auth_usersupplied_info *user_info, 
-                                   struct auth_serversupplied_info **server_info)
+void auth_check_password_send(struct auth_context *auth_ctx,
+                             const struct auth_usersupplied_info *user_info,
+                             void (*callback)(struct auth_check_password_request *req, void *private_data),
+                             void *private_data)
 {
-       
-       NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
-       const char *pdb_username;
-       auth_methods *auth_method;
-       TALLOC_CTX *mem_ctx;
-
-       if (!user_info || !auth_context || !server_info)
-               return NT_STATUS_LOGON_FAILURE;
+       /* if all the modules say 'not for me' this is reasonable */
+       NTSTATUS nt_status;
+       struct auth_method_context *method;
+       const uint8_t *challenge;
+       struct auth_usersupplied_info *user_info_tmp;
+       struct auth_check_password_request *req = NULL;
+
+       DEBUG(3,   ("auth_check_password_send:  Checking password for unmapped user [%s]\\[%s]@[%s]\n", 
+                   user_info->client.domain_name, user_info->client.account_name, user_info->workstation_name));
+
+       req = talloc_zero(auth_ctx, struct auth_check_password_request);
+       if (!req) {
+               callback(NULL, private_data);
+               return;
+       }
+       req->auth_ctx                   = auth_ctx;
+       req->user_info                  = user_info;
+       req->callback.fn                = callback;
+       req->callback.private_data      = private_data;
+
+       if (!user_info->mapped_state) {
+               nt_status = map_user_info(req, user_info, &user_info_tmp);
+               if (!NT_STATUS_IS_OK(nt_status)) goto failed;
+               user_info = user_info_tmp;
+               req->user_info  = user_info_tmp;
+       }
 
-       DEBUG(3, ("check_ntlm_password:  Checking password for unmapped user [%s]\\[%s]@[%s] with the new password interface\n", 
-                 user_info->client_domain.str, user_info->smb_name.str, user_info->wksta_name.str));
+       DEBUGADD(3,("auth_check_password_send:  mapped user is: [%s]\\[%s]@[%s]\n", 
+                   user_info->mapped.domain_name, user_info->mapped.account_name, user_info->workstation_name));
 
-       DEBUG(3, ("check_ntlm_password:  mapped user is: [%s]\\[%s]@[%s]\n", 
-                 user_info->domain.str, user_info->internal_username.str, user_info->wksta_name.str));
+       nt_status = auth_get_challenge(auth_ctx, &challenge);
+       if (!NT_STATUS_IS_OK(nt_status)) {
+               DEBUG(0, ("auth_check_password_send:  Invalid challenge (length %u) stored for this auth context set_by %s - cannot continue: %s\n",
+                       (unsigned)auth_ctx->challenge.data.length, auth_ctx->challenge.set_by, nt_errstr(nt_status)));
+               goto failed;
+       }
 
-       if (auth_context->challenge.length != 8) {
-               DEBUG(0, ("check_ntlm_password:  Invalid challenge stored for this auth context - cannot continue\n"));
-               return NT_STATUS_LOGON_FAILURE;
+       if (auth_ctx->challenge.set_by) {
+               DEBUG(10, ("auth_check_password_send: auth_context challenge created by %s\n",
+                                       auth_ctx->challenge.set_by));
        }
 
-       if (auth_context->challenge_set_by)
-               DEBUG(10, ("check_ntlm_password: auth_context challenge created by %s\n",
-                                       auth_context->challenge_set_by));
-
-       DEBUG(10, ("challenge is: \n"));
-       dump_data(5, auth_context->challenge.data, auth_context->challenge.length);
-
-#ifdef DEBUG_PASSWORD
-       DEBUG(100, ("user_info has passwords of length %d and %d\n", 
-                   user_info->lm_resp.length, user_info->nt_resp.length));
-       DEBUG(100, ("lm:\n"));
-       dump_data(100, user_info->lm_resp.data, user_info->lm_resp.length);
-       DEBUG(100, ("nt:\n"));
-       dump_data(100, user_info->nt_resp.data, user_info->nt_resp.length);
-#endif
-
-       /* This needs to be sorted:  If it doesn't match, what should we do? */
-       if (!check_domain_match(user_info->smb_name.str, user_info->domain.str))
-               return NT_STATUS_LOGON_FAILURE;
-
-       for (auth_method = auth_context->auth_method_list;auth_method; auth_method = auth_method->next) {
-               mem_ctx = talloc_init("%s authentication for user %s\\%s", auth_method->name, 
-                                           user_info->domain.str, user_info->smb_name.str);
-
-               nt_status = auth_method->auth(auth_context, auth_method->private_data, mem_ctx, user_info, server_info);
-               if (NT_STATUS_IS_OK(nt_status)) {
-                       DEBUG(3, ("check_ntlm_password: %s authentication for user [%s] suceeded\n", 
-                                 auth_method->name, user_info->smb_name.str));
-               } else {
-                       DEBUG(5, ("check_ntlm_password: %s authentication for user [%s] FAILED with error %s\n", 
-                                 auth_method->name, user_info->smb_name.str, nt_errstr(nt_status)));
+       DEBUG(10, ("auth_check_password_send: challenge is: \n"));
+       dump_data(5, auth_ctx->challenge.data.data, auth_ctx->challenge.data.length);
+
+       nt_status = NT_STATUS_NO_SUCH_USER; /* If all the modules say 'not for me', then this is reasonable */
+       for (method = auth_ctx->methods; method; method = method->next) {
+               NTSTATUS result;
+               struct timed_event *te = NULL;
+
+               /* check if the module wants to chek the password */
+               result = method->ops->want_check(method, req, user_info);
+               if (NT_STATUS_EQUAL(result, NT_STATUS_NOT_IMPLEMENTED)) {
+                       DEBUG(11,("auth_check_password_send: %s had nothing to say\n", method->ops->name));
+                       continue;
                }
 
-               talloc_destroy(mem_ctx);
+               nt_status = result;
+               req->method     = method;
 
-               if (NT_STATUS_IS_OK(nt_status))
-                       break;
-       }
+               if (!NT_STATUS_IS_OK(nt_status)) break;
 
-       /* This is one of the few places the *relies* (rather than just sets defaults
-          on the value of lp_security().  This needs to change.  A new paramater 
-          perhaps? */
-       if (lp_security() >= SEC_SERVER)
-               smb_user_control(user_info, *server_info, nt_status);
-
-       if (NT_STATUS_IS_OK(nt_status)) {
-               pdb_username = pdb_get_username((*server_info)->sam_account);
-               if (!(*server_info)->guest) {
-                       /* We might not be root if we are an RPC call */
-                       become_root();
-                       nt_status = smb_pam_accountcheck(pdb_username);
-                       unbecome_root();
-                       
-                       if (NT_STATUS_IS_OK(nt_status)) {
-                               DEBUG(5, ("check_ntlm_password:  PAM Account for user [%s] suceeded\n", 
-                                         pdb_username));
-                       } else {
-                               DEBUG(3, ("check_ntlm_password:  PAM Account for user [%s] FAILED with error %s\n", 
-                                         pdb_username, nt_errstr(nt_status)));
-                       } 
-               }
-               
-               if (NT_STATUS_IS_OK(nt_status)) {
-                       DEBUG((*server_info)->guest ? 5 : 2, 
-                             ("check_ntlm_password:  %sauthentication for user [%s] -> [%s] -> [%s] suceeded\n", 
-                              (*server_info)->guest ? "guest " : "", 
-                              user_info->smb_name.str, 
-                              user_info->internal_username.str, 
-                              pdb_username));
+               te = event_add_timed(auth_ctx->event_ctx, req,
+                                    timeval_zero(),
+                                    auth_check_password_async_timed_handler, req);
+               if (!te) {
+                       nt_status = NT_STATUS_NO_MEMORY;
+                       goto failed;
                }
+               return;
        }
 
-       if (!NT_STATUS_IS_OK(nt_status)) {
-               DEBUG(2, ("check_ntlm_password:  Authentication for user [%s] -> [%s] FAILED with error %s\n", 
-                         user_info->smb_name.str, user_info->internal_username.str, 
-                         nt_errstr(nt_status)));
-               ZERO_STRUCTP(server_info);
-       }
-       return nt_status;
+failed:
+       req->status = nt_status;
+       req->callback.fn(req, req->callback.private_data);
 }
 
-/***************************************************************************
- Clear out a auth_context, and destroy the attached TALLOC_CTX
-***************************************************************************/
+/**
+ * Check a user's Plaintext, LM or NTLM password.
+ * async receive function
+ *
+ * The return value takes precedence over the contents of the server_info 
+ * struct.  When the return is other than NT_STATUS_OK the contents 
+ * of that structure is undefined.
+ *
+ *
+ * @param req The async auth_check_password state, passes to the callers callback function
+ *
+ * @param mem_ctx The parent memory context for the server_info structure
+ *
+ * @param server_info If successful, contains information about the authentication, 
+ *                    including a SAM_ACCOUNT struct describing the user.
+ *
+ * @return An NTSTATUS with NT_STATUS_OK or an appropriate error.
+ *
+ **/
 
-static void free_auth_context(struct auth_context **auth_context)
+NTSTATUS auth_check_password_recv(struct auth_check_password_request *req,
+                                 TALLOC_CTX *mem_ctx,
+                                 struct auth_serversupplied_info **server_info)
 {
-       if (*auth_context != NULL)
-               talloc_destroy((*auth_context)->mem_ctx);
-       *auth_context = NULL;
-}
+       NTSTATUS status;
 
-/***************************************************************************
- Make a auth_info struct
-***************************************************************************/
+       NT_STATUS_HAVE_NO_MEMORY(req);
 
-static NTSTATUS make_auth_context(struct auth_context **auth_context) 
-{
-       TALLOC_CTX *mem_ctx;
+       if (NT_STATUS_IS_OK(req->status)) {
+               DEBUG(5,("auth_check_password_recv: %s authentication for user [%s\\%s] succeeded\n",
+                        req->method->ops->name, req->server_info->domain_name, req->server_info->account_name));
 
-       mem_ctx = talloc_init("authentication context");
-       
-       *auth_context = talloc(mem_ctx, sizeof(**auth_context));
-       if (!*auth_context) {
-               DEBUG(0,("make_auth_context: talloc failed!\n"));
-               talloc_destroy(mem_ctx);
-               return NT_STATUS_NO_MEMORY;
+               *server_info = talloc_steal(mem_ctx, req->server_info);
+       } else {
+               DEBUG(2,("auth_check_password_recv: %s authentication for user [%s\\%s] FAILED with error %s\n", 
+                        (req->method ? req->method->ops->name : "NO_METHOD"),
+                        req->user_info->mapped.domain_name,
+                        req->user_info->mapped.account_name, 
+                        nt_errstr(req->status)));
        }
-       ZERO_STRUCTP(*auth_context);
 
-       (*auth_context)->mem_ctx = mem_ctx;
-       (*auth_context)->check_ntlm_password = check_ntlm_password;
-       (*auth_context)->get_ntlm_challenge = get_ntlm_challenge;
-       (*auth_context)->free = free_auth_context;
-       
-       return NT_STATUS_OK;
+       status = req->status;
+       talloc_free(req);
+       return status;
 }
 
 /***************************************************************************
  Make a auth_info struct for the auth subsystem
+ - Allow the caller to specify the methods to use
 ***************************************************************************/
-
-static NTSTATUS make_auth_context_text_list(struct auth_context **auth_context, char **text_list) 
+NTSTATUS auth_context_create_methods(TALLOC_CTX *mem_ctx, const char **methods, 
+                                    struct event_context *ev,
+                                    struct messaging_context *msg,
+                                    struct auth_context **auth_ctx)
 {
-       auth_methods *list = NULL;
-       auth_methods *t = NULL;
-       auth_methods *tmp;
        int i;
-       NTSTATUS nt_status;
+       struct auth_context *ctx;
 
-       if (!text_list) {
-               DEBUG(2,("make_auth_context_text_list: No auth method list!?\n"));
-               return NT_STATUS_UNSUCCESSFUL;
+       if (!methods) {
+               DEBUG(0,("auth_context_create: No auth method list!?\n"));
+               return NT_STATUS_INTERNAL_ERROR;
        }
-       
-       if (!NT_STATUS_IS_OK(nt_status = make_auth_context(auth_context)))
-               return nt_status;
-       
-       for (;*text_list; text_list++) { 
-               DEBUG(5,("make_auth_context_text_list: Attempting to find an auth method to match %s\n",
-                                       *text_list));
-               for (i = 0; builtin_auth_init_functions[i].name; i++) {
-                       char *module_name = smb_xstrdup(*text_list);
-                       char *module_params = NULL;
-                       char *p;
-
-                       p = strchr(module_name, ':');
-                       if (p) {
-                               *p = 0;
-                               module_params = p+1;
-                               trim_string(module_params, " ", " ");
-                       }
-
-                       trim_string(module_name, " ", " ");
-
-                       if (strequal(builtin_auth_init_functions[i].name, module_name)) {
-                               DEBUG(5,("make_auth_context_text_list: Found auth method %s (at pos %d)\n", *text_list, i));
-                               if (NT_STATUS_IS_OK(builtin_auth_init_functions[i].init(*auth_context, module_params, &t))) {
-                                       DEBUG(5,("make_auth_context_text_list: auth method %s has a valid init\n",
-                                                               *text_list));
-                                       DLIST_ADD_END(list, t, tmp);
-                               } else {
-                                       DEBUG(0,("make_auth_context_text_list: auth method %s did not correctly init\n",
-                                                               *text_list));
-                               }
-                               break;
-                       }
-                       SAFE_FREE(module_name);
+
+       if (!ev) {
+               DEBUG(0,("auth_context_create: called with out event context\n"));
+               return NT_STATUS_INTERNAL_ERROR;
+       }
+
+       if (!msg) {
+               DEBUG(0,("auth_context_create: called with out messaging context\n"));
+               return NT_STATUS_INTERNAL_ERROR;
+       }
+
+       ctx = talloc(mem_ctx, struct auth_context);
+       NT_STATUS_HAVE_NO_MEMORY(ctx);
+       ctx->challenge.set_by           = NULL;
+       ctx->challenge.may_be_modified  = False;
+       ctx->challenge.data             = data_blob(NULL, 0);
+       ctx->methods                    = NULL;
+       ctx->event_ctx                  = ev;
+       ctx->msg_ctx                    = msg;
+
+       for (i=0; methods[i] ; i++) {
+               struct auth_method_context *method;
+
+               method = talloc(ctx, struct auth_method_context);
+               NT_STATUS_HAVE_NO_MEMORY(method);
+
+               method->ops = auth_backend_byname(methods[i]);
+               if (!method->ops) {
+                       DEBUG(1,("auth_context_create: failed to find method=%s\n",
+                               methods[i]));
+                       return NT_STATUS_INTERNAL_ERROR;
                }
+               method->auth_ctx        = ctx;
+               method->depth           = i;
+               DLIST_ADD_END(ctx->methods, method, struct auth_method_context *);
+       }
+
+       if (!ctx->methods) {
+               return NT_STATUS_INTERNAL_ERROR;
        }
-       
-       (*auth_context)->auth_method_list = list;
-       
-       return nt_status;
-}
 
+       *auth_ctx = ctx;
+
+       return NT_STATUS_OK;
+}
 /***************************************************************************
- Make a auth_context struct for the auth subsystem
+ Make a auth_info struct for the auth subsystem
+ - Uses default auth_methods, depending on server role and smb.conf settings
 ***************************************************************************/
+NTSTATUS auth_context_create(TALLOC_CTX *mem_ctx, 
+                            struct event_context *ev,
+                            struct messaging_context *msg,
+                            struct auth_context **auth_ctx)
+{
+       const char **auth_methods = NULL;
+       switch (lp_server_role()) {
+       case ROLE_STANDALONE:
+               auth_methods = lp_parm_string_list(-1, "auth methods", "standalone", NULL);
+               break;
+       case ROLE_DOMAIN_MEMBER:
+               auth_methods = lp_parm_string_list(-1, "auth methods", "member server", NULL);
+               break;
+       case ROLE_DOMAIN_CONTROLLER:
+               auth_methods = lp_parm_string_list(-1, "auth methods", "domain controller", NULL);
+               break;
+       }
+       return auth_context_create_methods(mem_ctx, auth_methods, ev, msg, auth_ctx);
+}
+
 
-NTSTATUS make_auth_context_subsystem(struct auth_context **auth_context) 
+/* the list of currently registered AUTH backends */
+static struct auth_backend {
+       const struct auth_operations *ops;
+} *backends = NULL;
+static int num_backends;
+
+/*
+  register a AUTH backend. 
+
+  The 'name' can be later used by other backends to find the operations
+  structure for this backend.
+*/
+NTSTATUS auth_register(const struct auth_operations *ops)
 {
-       char **auth_method_list = NULL; 
-       NTSTATUS nt_status;
+       struct auth_operations *new_ops;
+       
+       if (auth_backend_byname(ops->name) != NULL) {
+               /* its already registered! */
+               DEBUG(0,("AUTH backend '%s' already registered\n", 
+                        ops->name));
+               return NT_STATUS_OBJECT_NAME_COLLISION;
+       }
 
-       if (lp_auth_methods() && !str_list_copy(&auth_method_list, lp_auth_methods())) {
+       backends = realloc_p(backends, struct auth_backend, num_backends+1);
+       if (!backends) {
                return NT_STATUS_NO_MEMORY;
        }
 
-       if (auth_method_list == NULL) {
-               switch (lp_security()) 
-               {
-               case SEC_DOMAIN:
-                       DEBUG(5,("Making default auth method list for security=domain\n"));
-                       auth_method_list = str_list_make("guest sam winbind ntdomain", NULL);
-                       break;
-               case SEC_SERVER:
-                       DEBUG(5,("Making default auth method list for security=server\n"));
-                       auth_method_list = str_list_make("guest sam smbserver", NULL);
-                       break;
-               case SEC_USER:
-                       if (lp_encrypted_passwords()) { 
-                               DEBUG(5,("Making default auth method list for security=user, encrypt passwords = yes\n"));
-                               auth_method_list = str_list_make("guest sam", NULL);
-                       } else {
-                               DEBUG(5,("Making default auth method list for security=user, encrypt passwords = no\n"));
-                               auth_method_list = str_list_make("guest unix", NULL);
-                       }
-                       break;
-               case SEC_SHARE:
-                       if (lp_encrypted_passwords()) {
-                               DEBUG(5,("Making default auth method list for security=share, encrypt passwords = yes\n"));
-                               auth_method_list = str_list_make("guest sam", NULL);
-                       } else {
-                               DEBUG(5,("Making default auth method list for security=share, encrypt passwords = no\n"));
-                               auth_method_list = str_list_make("guest unix", NULL);
-                       }
-                       break;
-               case SEC_ADS:
-                       DEBUG(5,("Making default auth method list for security=ADS\n"));
-                       auth_method_list = str_list_make("guest sam ads winbind ntdomain", NULL);
-                       break;
-               default:
-                       DEBUG(5,("Unknown auth method!\n"));
-                       return NT_STATUS_UNSUCCESSFUL;
+       new_ops = smb_xmemdup(ops, sizeof(*ops));
+       new_ops->name = smb_xstrdup(ops->name);
+
+       backends[num_backends].ops = new_ops;
+
+       num_backends++;
+
+       DEBUG(3,("AUTH backend '%s' registered\n", 
+                ops->name));
+
+       return NT_STATUS_OK;
+}
+
+/*
+  return the operations structure for a named backend of the specified type
+*/
+const struct auth_operations *auth_backend_byname(const char *name)
+{
+       int i;
+
+       for (i=0;i<num_backends;i++) {
+               if (strcmp(backends[i].ops->name, name) == 0) {
+                       return backends[i].ops;
                }
-       } else {
-               DEBUG(5,("Using specified auth order\n"));
-       }
-       
-       if (!NT_STATUS_IS_OK(nt_status = make_auth_context_text_list(auth_context, auth_method_list))) {
-               str_list_free(&auth_method_list);
-               return nt_status;
        }
-       
-       str_list_free(&auth_method_list);
-       return nt_status;
+
+       return NULL;
 }
 
-/***************************************************************************
- Make a auth_info struct with a fixed challenge
-***************************************************************************/
+/*
+  return the AUTH interface version, and the size of some critical types
+  This can be used by backends to either detect compilation errors, or provide
+  multiple implementations for different smbd compilation options in one module
+*/
+const struct auth_critical_sizes *auth_interface_version(void)
+{
+       static const struct auth_critical_sizes critical_sizes = {
+               AUTH_INTERFACE_VERSION,
+               sizeof(struct auth_operations),
+               sizeof(struct auth_method_context),
+               sizeof(struct auth_context),
+               sizeof(struct auth_usersupplied_info),
+               sizeof(struct auth_serversupplied_info)
+       };
+
+       return &critical_sizes;
+}
 
-NTSTATUS make_auth_context_fixed(struct auth_context **auth_context, uchar chal[8]) 
+NTSTATUS auth_init(void)
 {
-       NTSTATUS nt_status;
-       if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(auth_context))) {
-               return nt_status;
-       }
+       static BOOL initialized = False;
+
+       init_module_fn static_init[] = STATIC_auth_MODULES;
+       init_module_fn *shared_init;
        
-       (*auth_context)->challenge = data_blob(chal, 8);
-       (*auth_context)->challenge_set_by = "fixed";
-       return nt_status;
-}
+       if (initialized) return NT_STATUS_OK;
+       initialized = True;
+       
+       shared_init = load_samba_modules(NULL, "auth");
 
+       run_init_functions(static_init);
+       run_init_functions(shared_init);
 
+       talloc_free(shared_init);
+       
+       return NT_STATUS_OK;    
+}
+
+NTSTATUS server_service_auth_init(void)
+{
+       return auth_init();
+}