Module Name: src Committed By: christos Date: Tue Mar 9 00:06:44 UTC 2021
Modified Files: src/distrib/utils/libhack: Makefile.inc Added Files: src/distrib/utils/libhack: wrap.c Log Message: Add a stubbed version of libwrap (tcpwrappers) To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/distrib/utils/libhack/Makefile.inc cvs rdiff -u -r0 -r1.1 src/distrib/utils/libhack/wrap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/distrib/utils/libhack/Makefile.inc diff -u src/distrib/utils/libhack/Makefile.inc:1.37 src/distrib/utils/libhack/Makefile.inc:1.38 --- src/distrib/utils/libhack/Makefile.inc:1.37 Thu Feb 25 16:24:00 2021 +++ src/distrib/utils/libhack/Makefile.inc Mon Mar 8 19:06:44 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.37 2021/02/25 21:24:00 christos Exp $ +# $NetBSD: Makefile.inc,v 1.38 2021/03/09 00:06:44 christos Exp $ # # Include this fragment to build libhack.o # It is .o and not .a to make sure these are the @@ -25,7 +25,7 @@ HACKOBJS+= getcap.o getgrent.o getnet.o localeconv.o multibyte.o perror.o runetable.o setlocale.o \ nl_langinfo.o strcasecmp.o \ strerror.o strsignal.o syslog.o utmp.o fmtcheck.o \ - aligned_alloc.o regcomp.o regexec.o + aligned_alloc.o regcomp.o regexec.o wrap.o .if (${USE_YP} != "no") HACKOBJS+= yplib.o Added files: Index: src/distrib/utils/libhack/wrap.c diff -u /dev/null src/distrib/utils/libhack/wrap.c:1.1 --- /dev/null Mon Mar 8 19:06:44 2021 +++ src/distrib/utils/libhack/wrap.c Mon Mar 8 19:06:44 2021 @@ -0,0 +1,56 @@ +/*- + * Copyright (c) 2021 The NetBSD Foundation, Inc. + * All rights reserved. + * + * This code is derived from software contributed to The NetBSD Foundation + * by Christos Zoulas. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include <sys/cdefs.h> +__RCSID("$NetBSD: wrap.c,v 1.1 2021/03/09 00:06:44 christos Exp $"); + +#include <tcpd.h> + +struct request_info * +request_init(struct request_info *ri, ...) +{ + + return ri; +} + +void +sock_host(struct request_info *ri) +{ +} + +int +hosts_access(struct request_info *ri) +{ + return 1; /* always allow */ +} + +void +refuse(struct request_info *ri) +{ +}