summaryrefslogtreecommitdiff
path: root/source3/auth/server_info.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-04-11 22:37:08 +0200
committerVolker Lendecke <vl@samba.org>2010-04-11 22:59:46 +0200
commit80708b75f815d455c7cc00fc4cccfb6af91e9d85 (patch)
treeaea35db4030c6e34111fa9b3efe9c93fdee50b74 /source3/auth/server_info.c
parent5792ccc7c85276edd86050b18b755e05cda7e1f1 (diff)
downloadsamba-80708b75f815d455c7cc00fc4cccfb6af91e9d85.tar.gz
samba-80708b75f815d455c7cc00fc4cccfb6af91e9d85.tar.bz2
samba-80708b75f815d455c7cc00fc4cccfb6af91e9d85.zip
s3: Move make_server_info to auth/server_info.c
Diffstat (limited to 'source3/auth/server_info.c')
-rw-r--r--source3/auth/server_info.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/source3/auth/server_info.c b/source3/auth/server_info.c
new file mode 100644
index 0000000000..844e3290ea
--- /dev/null
+++ b/source3/auth/server_info.c
@@ -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;
+}