s3: Move make_server_info to auth/server_info.c
authorVolker Lendecke <vl@samba.org>
Sun, 11 Apr 2010 20:37:08 +0000 (22:37 +0200)
committerVolker Lendecke <vl@samba.org>
Sun, 11 Apr 2010 20:59:46 +0000 (22:59 +0200)
source3/Makefile.in
source3/auth/auth_util.c
source3/auth/server_info.c [new file with mode: 0644]
source3/include/proto.h

index 92a0b433162b67100ab1e435b5f058bd09dc14df..d7b84ccee2a22d1d1a953a66d33b01fc96a1d3b8 100644 (file)
@@ -764,6 +764,7 @@ AUTH_SCRIPT_OBJ = auth/auth_script.o
 AUTH_NETLOGOND_OBJ = auth/auth_netlogond.o
 
 AUTH_OBJ = auth/auth.o @AUTH_STATIC@ auth/auth_util.o auth/token_util.o \
+          auth/server_info.o \
           auth/auth_compat.o auth/auth_ntlmssp.o \
           $(PLAINTEXT_AUTH_OBJ) $(SLCACHE_OBJ) $(DCUTIL_OBJ)
 
index 647d20cd65e243468e50c0d6705dd51821cd5d0e..f71ed90687a5cd72810cea59a43f0992c3dbbe0c 100644 (file)
@@ -493,38 +493,6 @@ bool make_user_info_guest(struct auth_usersupplied_info **user_info)
        return NT_STATUS_IS_OK(nt_status) ? True : False;
 }
 
-static int server_info_dtor(struct auth_serversupplied_info *server_info)
-{
-       TALLOC_FREE(server_info->sam_account);
-       ZERO_STRUCTP(server_info);
-       return 0;
-}
-
-/***************************************************************************
- Make a server_info struct. Free with TALLOC_FREE().
-***************************************************************************/
-
-static struct auth_serversupplied_info *make_server_info(TALLOC_CTX *mem_ctx)
-{
-       struct auth_serversupplied_info *result;
-
-       result = TALLOC_ZERO_P(mem_ctx, struct auth_serversupplied_info);
-       if (result == NULL) {
-               DEBUG(0, ("talloc failed\n"));
-               return NULL;
-       }
-
-       talloc_set_destructor(result, server_info_dtor);
-
-       /* Initialise the uid and gid values to something non-zero
-          which may save us from giving away root access if there
-          is a bug in allocating these fields. */
-
-       result->utok.uid = -1;
-       result->utok.gid = -1;
-       return result;
-}
-
 static char *sanitize_username(TALLOC_CTX *mem_ctx, const char *username)
 {
        fstring tmp;
diff --git a/source3/auth/server_info.c b/source3/auth/server_info.c
new file mode 100644 (file)
index 0000000..844e329
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+   Unix SMB/CIFS implementation.
+   Authentication utility functions
+   Copyright (C) Volker Lendecke 2010
+
+   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 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   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, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+
+#undef DBGC_CLASS
+#define DBGC_CLASS DBGC_AUTH
+
+static int server_info_dtor(struct auth_serversupplied_info *server_info)
+{
+       TALLOC_FREE(server_info->sam_account);
+       ZERO_STRUCTP(server_info);
+       return 0;
+}
+
+/***************************************************************************
+ Make a server_info struct. Free with TALLOC_FREE().
+***************************************************************************/
+
+struct auth_serversupplied_info *make_server_info(TALLOC_CTX *mem_ctx)
+{
+       struct auth_serversupplied_info *result;
+
+       result = TALLOC_ZERO_P(mem_ctx, struct auth_serversupplied_info);
+       if (result == NULL) {
+               DEBUG(0, ("talloc failed\n"));
+               return NULL;
+       }
+
+       talloc_set_destructor(result, server_info_dtor);
+
+       /* Initialise the uid and gid values to something non-zero
+          which may save us from giving away root access if there
+          is a bug in allocating these fields. */
+
+       result->utok.uid = -1;
+       result->utok.gid = -1;
+       return result;
+}
index 1efa3cf27ed3d925253e0c6aac25104141a3e4a6..f6061602a03f7132c8c933812c4bf8efd094e370 100644 (file)
@@ -158,6 +158,10 @@ bool is_trusted_domain(const char* dom_name);
 
 NTSTATUS auth_winbind_init(void);
 
+/* The following definitions come from auth/server_info.c  */
+
+struct auth_serversupplied_info *make_server_info(TALLOC_CTX *mem_ctx);
+
 /* The following definitions come from auth/auth_wbc.c  */
 
 NTSTATUS auth_wbc_init(void);