summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2021-04-14 12:31:27 +0200
committerJeremy Allison <jra@samba.org>2021-04-19 18:18:31 +0000
commit8b6c6fd17ca48695783d12bf10a01f3c8e9ddce3 (patch)
tree0cd0075d4f859478c7e25e4153d68e1d3db1e938 /examples
parent1a696c9ae28453bbf40f14c8f0175664a4ddf3b8 (diff)
downloadsamba-8b6c6fd17ca48695783d12bf10a01f3c8e9ddce3.tar.gz
auth3: Remove auth_skel.c
Authentication is a very complex topic, and someone who is able to write a custom auth module turning a struct auth_usersupplied_info into a struct auth_serversupplied_info should be able to live without this skeleton module. This module also gave an example to load a secondary authentication module via a module parameter (the call to load_module()). We have abandoned this practice, and since the "auth methods" parameter has gone we don't use this anymore internally. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'examples')
-rw-r--r--examples/auth/Makefile31
-rw-r--r--examples/auth/auth_skel.c77
-rw-r--r--examples/auth/wscript_build10
3 files changed, 0 insertions, 118 deletions
diff --git a/examples/auth/Makefile b/examples/auth/Makefile
deleted file mode 100644
index d6dbc28f40e..00000000000
--- a/examples/auth/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# Makefile for samba-pdb examples
-# Variables
-
-CC = gcc
-LIBTOOL = libtool
-
-SAMBA_SRC = ../../source
-SAMBA_INCL = ../../source/include
-UBIQX_SRC = ../../source/ubiqx
-SMBWR_SRC = ../../source/smbwrapper
-CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g
-AUTH_OBJS = auth_skel.la
-
-# Default target
-
-default: $(AUTH_OBJS)
-
-# Pattern rules
-
-%.la: %.lo
- $(LIBTOOL) --mode=link $(CC) -module -o $@ $< $(LDFLAGS)
-
-%.lo: %.c
- $(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
-
-# Misc targets
-
-clean:
- rm -rf .libs
- rm -f core *~ *% *.bak \
- $(AUTH_OBJS) $(AUTH_OBJS:.la=.o) $(AUTH_OBJS:.la=.lo)
diff --git a/examples/auth/auth_skel.c b/examples/auth/auth_skel.c
deleted file mode 100644
index 8734383aeeb..00000000000
--- a/examples/auth/auth_skel.c
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
- Unix SMB/CIFS implementation.
- Password and authentication handling
- Copyright (C) Andrew Bartlett 2001
- Copyright (C) Jelmer Vernooij 2003
-
- 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"
-#include "auth.h"
-
-#undef DBGC_CLASS
-#define DBGC_CLASS DBGC_AUTH
-
-static NTSTATUS check_skel_security(const struct auth_context *auth_context,
- void *my_private_data,
- TALLOC_CTX *mem_ctx,
- const struct auth_usersupplied_info *user_info,
- struct auth_serversupplied_info **server_info)
-{
- if (!user_info || !auth_context) {
- return NT_STATUS_LOGON_FAILURE;
- }
-
- /* Insert your authentication checking code here,
- * and return NT_STATUS_OK if authentication succeeds */
-
- /* For now, just refuse all connections */
- return NT_STATUS_LOGON_FAILURE;
-}
-
-/* module initialisation */
-static NTSTATUS auth_init_skel(
- struct auth_context *auth_context,
- const char *param,
- struct auth_methods **auth_method)
-{
- struct auth_methods *result;
-
- result = talloc_zero(auth_context, struct auth_methods);
- if (result == NULL) {
- return NT_STATUS_NO_MEMORY;
- }
- result->name = "skel";
- result->auth = check_skel_security;
-
- if (param && *param) {
- /* we load the 'fallback' module - if skel isn't here, call this
- module */
- struct auth_methods *priv;
- if (!load_auth_module(auth_context, param, &priv)) {
- return NT_STATUS_UNSUCCESSFUL;
- }
- result->private_data = (void *)priv;
- }
-
- *auth_method = result;
- return NT_STATUS_OK;
-}
-
-NTSTATUS auth_skel_init(TALLOC_CTX *ctx);
-NTSTATUS auth_skel_init(TALLOC_CTX *ctx)
-{
- return smb_register_auth(AUTH_INTERFACE_VERSION, "skel", auth_init_skel);
-}
diff --git a/examples/auth/wscript_build b/examples/auth/wscript_build
deleted file mode 100644
index 03221238e5f..00000000000
--- a/examples/auth/wscript_build
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env python
-
-bld.SAMBA3_MODULE('auth_skel',
- subsystem='auth',
- source='auth_skel.c',
- deps='samba-util',
- init_function='',
- internal_module=bld.SAMBA3_IS_STATIC_MODULE('auth_skel'),
- enabled=bld.SAMBA3_IS_ENABLED_MODULE('auth_skel'),
- install=False)