mirror of https://github.com/getdnsapi/getdns.git
Merge pull request #329 from getdnsapi/devel/without-stubby
Devel/without stubby
This commit is contained in:
commit
a6669482d8
|
@ -39,7 +39,7 @@ src/test/check_getdns_ev
|
||||||
src/test/scratchpad
|
src/test/scratchpad
|
||||||
src/test/scratchpad.c
|
src/test/scratchpad.c
|
||||||
src/tools/getdns_query
|
src/tools/getdns_query
|
||||||
src/tools/stubby
|
src/stubby
|
||||||
doc/*.3
|
doc/*.3
|
||||||
src/getdns/getdns.h
|
src/getdns/getdns.h
|
||||||
*.log
|
*.log
|
||||||
|
|
|
@ -2,3 +2,7 @@
|
||||||
path = src/jsmn
|
path = src/jsmn
|
||||||
url = https://github.com/getdnsapi/jsmn.git
|
url = https://github.com/getdnsapi/jsmn.git
|
||||||
branch = getdns
|
branch = getdns
|
||||||
|
[submodule "stubby"]
|
||||||
|
path = stubby
|
||||||
|
url = https://github.com/getdnsapi/stubby.git
|
||||||
|
branch = develop
|
||||||
|
|
37
Makefile.in
37
Makefile.in
|
@ -44,7 +44,7 @@ libdir = @libdir@
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
|
|
||||||
all : default @GETDNS_QUERY@ @STUBBY@
|
all : default @GETDNS_QUERY@
|
||||||
|
|
||||||
everything: default
|
everything: default
|
||||||
cd src/test && $(MAKE)
|
cd src/test && $(MAKE)
|
||||||
|
@ -52,7 +52,10 @@ everything: default
|
||||||
default:
|
default:
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
install: default getdns.pc getdns_ext_event.pc @INSTALL_GETDNS_QUERY@ @INSTALL_STUBBY@
|
install-lib:
|
||||||
|
cd src && $(MAKE) install
|
||||||
|
|
||||||
|
install: getdns.pc getdns_ext_event.pc install-lib @INSTALL_GETDNS_QUERY@
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)
|
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)
|
||||||
$(INSTALL) -m 644 $(srcdir)/AUTHORS $(DESTDIR)$(docdir)
|
$(INSTALL) -m 644 $(srcdir)/AUTHORS $(DESTDIR)$(docdir)
|
||||||
$(INSTALL) -m 644 $(srcdir)/ChangeLog $(DESTDIR)$(docdir)
|
$(INSTALL) -m 644 $(srcdir)/ChangeLog $(DESTDIR)$(docdir)
|
||||||
|
@ -66,8 +69,7 @@ install: default getdns.pc getdns_ext_event.pc @INSTALL_GETDNS_QUERY@ @INSTALL_S
|
||||||
$(INSTALL) -m 644 getdns_ext_event.pc $(DESTDIR)$(libdir)/pkgconfig
|
$(INSTALL) -m 644 getdns_ext_event.pc $(DESTDIR)$(libdir)/pkgconfig
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)/spec
|
$(INSTALL) -m 755 -d $(DESTDIR)$(docdir)/spec
|
||||||
$(INSTALL) -m 644 $(srcdir)/spec/index.html $(DESTDIR)$(docdir)/spec
|
$(INSTALL) -m 644 $(srcdir)/spec/index.html $(DESTDIR)$(docdir)/spec
|
||||||
cd src && $(MAKE) $@
|
cd doc && $(MAKE) install
|
||||||
cd doc && $(MAKE) $@
|
|
||||||
@echo "***"
|
@echo "***"
|
||||||
@echo "*** !!! IMPORTANT !!!! libgetdns needs a DNSSEC trust anchor!"
|
@echo "*** !!! IMPORTANT !!!! libgetdns needs a DNSSEC trust anchor!"
|
||||||
@echo "***"
|
@echo "***"
|
||||||
|
@ -86,7 +88,7 @@ install: default getdns.pc getdns_ext_event.pc @INSTALL_GETDNS_QUERY@ @INSTALL_S
|
||||||
@echo "*** at package installation time from the post-install script."
|
@echo "*** at package installation time from the post-install script."
|
||||||
@echo "***"
|
@echo "***"
|
||||||
|
|
||||||
uninstall: @UNINSTALL_GETDNS_QUERY@ @UNINSTALL_STUBBY@
|
uninstall: @UNINSTALL_GETDNS_QUERY@
|
||||||
rm -rf $(DESTDIR)$(docdir)
|
rm -rf $(DESTDIR)$(docdir)
|
||||||
cd doc && $(MAKE) $@
|
cd doc && $(MAKE) $@
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
@ -103,8 +105,8 @@ test: default
|
||||||
getdns_query: default
|
getdns_query: default
|
||||||
cd src/tools && $(MAKE) $@
|
cd src/tools && $(MAKE) $@
|
||||||
|
|
||||||
stubby: getdns_query
|
stubby:
|
||||||
cd src/tools && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
scratchpad: default
|
scratchpad: default
|
||||||
cd src/test && $(MAKE) $@
|
cd src/test && $(MAKE) $@
|
||||||
|
@ -112,17 +114,17 @@ scratchpad: default
|
||||||
pad: scratchpad
|
pad: scratchpad
|
||||||
src/test/scratchpad || ./libtool exec gdb src/test/scratchpad
|
src/test/scratchpad || ./libtool exec gdb src/test/scratchpad
|
||||||
|
|
||||||
install-getdns_query: getdns_query
|
install-getdns_query: install-lib
|
||||||
cd src/tools && $(MAKE) $@
|
cd src/tools && $(MAKE) $@
|
||||||
|
|
||||||
uninstall-getdns_query:
|
uninstall-getdns_query:
|
||||||
cd src/tools && $(MAKE) $@
|
cd src/tools && $(MAKE) $@
|
||||||
|
|
||||||
install-stubby: getdns_query
|
install-stubby:
|
||||||
cd src/tools && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
uninstall-stubby:
|
uninstall-stubby:
|
||||||
cd src/tools && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cd src && $(MAKE) $@
|
cd src && $(MAKE) $@
|
||||||
|
@ -190,7 +192,6 @@ $(distdir):
|
||||||
mkdir -p $(distdir)/src
|
mkdir -p $(distdir)/src
|
||||||
mkdir -p $(distdir)/src/getdns
|
mkdir -p $(distdir)/src/getdns
|
||||||
mkdir -p $(distdir)/src/test
|
mkdir -p $(distdir)/src/test
|
||||||
mkdir -p $(distdir)/src/test/jsmn
|
|
||||||
mkdir -p $(distdir)/src/extension
|
mkdir -p $(distdir)/src/extension
|
||||||
mkdir -p $(distdir)/src/compat
|
mkdir -p $(distdir)/src/compat
|
||||||
mkdir -p $(distdir)/src/util
|
mkdir -p $(distdir)/src/util
|
||||||
|
@ -198,9 +199,10 @@ $(distdir):
|
||||||
mkdir -p $(distdir)/src/tools
|
mkdir -p $(distdir)/src/tools
|
||||||
mkdir -p $(distdir)/src/jsmn
|
mkdir -p $(distdir)/src/jsmn
|
||||||
mkdir -p $(distdir)/doc
|
mkdir -p $(distdir)/doc
|
||||||
mkdir -p $(distdir)/systemd
|
|
||||||
mkdir -p $(distdir)/spec
|
mkdir -p $(distdir)/spec
|
||||||
mkdir -p $(distdir)/spec/example
|
mkdir -p $(distdir)/spec/example
|
||||||
|
mkdir -p $(distdir)/stubby
|
||||||
|
mkdir -p $(distdir)/stubby/src
|
||||||
cp $(srcdir)/configure.ac $(distdir)
|
cp $(srcdir)/configure.ac $(distdir)
|
||||||
cp $(srcdir)/configure $(distdir)
|
cp $(srcdir)/configure $(distdir)
|
||||||
cp $(srcdir)/AUTHORS $(distdir)
|
cp $(srcdir)/AUTHORS $(distdir)
|
||||||
|
@ -241,12 +243,13 @@ $(distdir):
|
||||||
cp $(srcdir)/spec/*.html $(distdir)/spec
|
cp $(srcdir)/spec/*.html $(distdir)/spec
|
||||||
cp $(srcdir)/spec/example/Makefile.in $(distdir)/spec/example
|
cp $(srcdir)/spec/example/Makefile.in $(distdir)/spec/example
|
||||||
cp $(srcdir)/spec/example/*.[ch] $(distdir)/spec/example
|
cp $(srcdir)/spec/example/*.[ch] $(distdir)/spec/example
|
||||||
cp $(srcdir)/systemd/README.md $(distdir)/systemd
|
|
||||||
cp $(srcdir)/systemd/stubby.* $(distdir)/systemd
|
|
||||||
cp $(srcdir)/src/tools/Makefile.in $(distdir)/src/tools
|
cp $(srcdir)/src/tools/Makefile.in $(distdir)/src/tools
|
||||||
cp $(srcdir)/src/tools/*.[ch] $(distdir)/src/tools
|
cp $(srcdir)/src/tools/*.[ch] $(distdir)/src/tools
|
||||||
cp $(srcdir)/src/tools/stubby.conf $(distdir)/src/tools
|
cp $(srcdir)/stubby/stubby.conf.example $(distdir)/stubby
|
||||||
cp $(srcdir)/src/tools/stubby-setdns-macos.sh $(distdir)/src/tools
|
cp $(srcdir)/stubby/stubby-setdns-macos.sh $(distdir)/stubby
|
||||||
|
cp $(srcdir)/stubby/src/stubby.c $(distdir)/stubby/src
|
||||||
|
cp $(srcdir)/stubby/COPYING $(distdir)/stubby
|
||||||
|
cp $(srcdir)/stubby/README.md $(distdir)/stubby
|
||||||
cp $(srcdir)/src/jsmn/*.[ch] $(distdir)/src/jsmn
|
cp $(srcdir)/src/jsmn/*.[ch] $(distdir)/src/jsmn
|
||||||
cp $(srcdir)/src/jsmn/LICENSE $(distdir)/src/jsmn
|
cp $(srcdir)/src/jsmn/LICENSE $(distdir)/src/jsmn
|
||||||
cp $(srcdir)/src/jsmn/README.md $(distdir)/src/jsmn
|
cp $(srcdir)/src/jsmn/README.md $(distdir)/src/jsmn
|
||||||
|
|
|
@ -88,7 +88,7 @@ As well as building the getdns library 2 other tools are installed by default by
|
||||||
* getdns_query: a command line test script wrapper for getdns
|
* getdns_query: a command line test script wrapper for getdns
|
||||||
* stubby: an experimental DNS Privacy enabled client
|
* stubby: an experimental DNS Privacy enabled client
|
||||||
|
|
||||||
Note: If you only want to build stubby, then use the `--enable-stub-only` and `--without-libidn` options when running 'configure'.
|
Note: If you only want to build stubby, then use the `--with-stubby` option when running 'configure'.
|
||||||
|
|
||||||
|
|
||||||
## Minimizing dependencies
|
## Minimizing dependencies
|
||||||
|
|
16
configure.ac
16
configure.ac
|
@ -1009,17 +1009,17 @@ AC_SUBST(GETDNS_QUERY)
|
||||||
AC_SUBST(INSTALL_GETDNS_QUERY)
|
AC_SUBST(INSTALL_GETDNS_QUERY)
|
||||||
AC_SUBST(UNINSTALL_GETDNS_QUERY)
|
AC_SUBST(UNINSTALL_GETDNS_QUERY)
|
||||||
|
|
||||||
AC_ARG_WITH(stubby, AS_HELP_STRING([--without-stubby],
|
AC_ARG_WITH(stubby, AS_HELP_STRING([--with-stubby],
|
||||||
[Do not compile and install stubby, the (stub) resolver daemon]),
|
[Compile and install stubby, the (stub) resolver daemon]),
|
||||||
[], [withval="yes"])
|
[], [withval="no"])
|
||||||
if test x_$withval = x_no; then
|
if test x_$withval = x_yes; then
|
||||||
STUBBY=""
|
|
||||||
INSTALL_STUBBY=""
|
|
||||||
UNINSTALL_STUBBY=""
|
|
||||||
else
|
|
||||||
STUBBY="stubby"
|
STUBBY="stubby"
|
||||||
INSTALL_STUBBY="install-stubby"
|
INSTALL_STUBBY="install-stubby"
|
||||||
UNINSTALL_STUBBY="uninstall-stubby"
|
UNINSTALL_STUBBY="uninstall-stubby"
|
||||||
|
else
|
||||||
|
STUBBY=""
|
||||||
|
INSTALL_STUBBY=""
|
||||||
|
UNINSTALL_STUBBY=""
|
||||||
fi
|
fi
|
||||||
AC_SUBST(STUBBY)
|
AC_SUBST(STUBBY)
|
||||||
AC_SUBST(INSTALL_STUBBY)
|
AC_SUBST(INSTALL_STUBBY)
|
||||||
|
|
|
@ -35,16 +35,23 @@ libversion = @GETDNS_LIBVERSION@
|
||||||
prefix = @prefix@
|
prefix = @prefix@
|
||||||
exec_prefix = @exec_prefix@
|
exec_prefix = @exec_prefix@
|
||||||
bindir = @bindir@
|
bindir = @bindir@
|
||||||
|
sbindir = @sbindir@
|
||||||
libdir = @libdir@
|
libdir = @libdir@
|
||||||
includedir = @includedir@
|
includedir = @includedir@
|
||||||
|
sysconfdir = @sysconfdir@
|
||||||
|
localstatedir = @localstatedir@
|
||||||
|
runstatedir = @runstatedir@
|
||||||
|
stubbyconfdir = $(sysconfdir)/stubby
|
||||||
have_libevent = @have_libevent@
|
have_libevent = @have_libevent@
|
||||||
have_libuv = @have_libuv@
|
have_libuv = @have_libuv@
|
||||||
have_libev = @have_libev@
|
have_libev = @have_libev@
|
||||||
# datarootdir is here to please some checkers
|
# datarootdir is here to please some checkers
|
||||||
datarootdir=@datarootdir@
|
datarootdir=@datarootdir@
|
||||||
INSTALL = @INSTALL@
|
INSTALL = @INSTALL@
|
||||||
|
INSTALL_DATA = @INSTALL_DATA@
|
||||||
|
|
||||||
srcdir = @srcdir@
|
srcdir = @srcdir@
|
||||||
|
stubbysrcdir = $(srcdir)/../stubby
|
||||||
LIBTOOL = ../libtool
|
LIBTOOL = ../libtool
|
||||||
|
|
||||||
CC=@CC@
|
CC=@CC@
|
||||||
|
@ -75,6 +82,8 @@ GETDNS_OBJ=const-info.lo convert.lo dict.lo dnssec.lo general.lo \
|
||||||
GLDNS_OBJ=keyraw.lo gbuffer.lo wire2str.lo parse.lo parseutil.lo rrdef.lo \
|
GLDNS_OBJ=keyraw.lo gbuffer.lo wire2str.lo parse.lo parseutil.lo rrdef.lo \
|
||||||
str2wire.lo
|
str2wire.lo
|
||||||
|
|
||||||
|
PROGRAMS=@STUBBY@
|
||||||
|
|
||||||
LIBOBJDIR=
|
LIBOBJDIR=
|
||||||
LIBOBJS=@LIBOBJS@
|
LIBOBJS=@LIBOBJS@
|
||||||
COMPAT_OBJ=$(LIBOBJS:.o=.lo)
|
COMPAT_OBJ=$(LIBOBJS:.o=.lo)
|
||||||
|
@ -97,7 +106,7 @@ NON_C99_OBJS=context.lo libuv.lo
|
||||||
|
|
||||||
default: all
|
default: all
|
||||||
|
|
||||||
all: libgetdns.la $(EXTENSION_LIBEVENT_LIB) $(EXTENSION_LIBUV_LIB) $(EXTENSION_LIBEV_LIB)
|
all: libgetdns.la $(EXTENSION_LIBEVENT_LIB) $(EXTENSION_LIBUV_LIB) $(EXTENSION_LIBEV_LIB) $(PROGRAMS)
|
||||||
|
|
||||||
$(GETDNS_OBJ):
|
$(GETDNS_OBJ):
|
||||||
$(LIBTOOL) --quiet --tag=CC --mode=compile $(CC) $(CFLAGS) $(WPEDANTICFLAG) -c $(srcdir)/$(@:.lo=.c) -o $@
|
$(LIBTOOL) --quiet --tag=CC --mode=compile $(CC) $(CFLAGS) $(WPEDANTICFLAG) -c $(srcdir)/$(@:.lo=.c) -o $@
|
||||||
|
@ -123,25 +132,35 @@ context.lo:
|
||||||
libuv.lo:
|
libuv.lo:
|
||||||
$(LIBTOOL) --quiet --tag=CC --mode=compile $(CC) $(CFLAGS) $(WPEDANTICFLAG) $(C99COMPATFLAGS) -c $(srcdir)/extension/libuv.c -o libuv.lo
|
$(LIBTOOL) --quiet --tag=CC --mode=compile $(CC) $(CFLAGS) $(WPEDANTICFLAG) $(C99COMPATFLAGS) -c $(srcdir)/extension/libuv.c -o libuv.lo
|
||||||
|
|
||||||
install: libgetdns.la
|
install-headers: getdns/getdns.h getdns/getdns_extra.h
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(includedir)
|
$(INSTALL) -m 755 -d $(DESTDIR)$(includedir)
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(includedir)/getdns
|
$(INSTALL) -m 755 -d $(DESTDIR)$(includedir)/getdns
|
||||||
$(INSTALL) -m 644 getdns/getdns.h $(DESTDIR)$(includedir)/getdns/getdns.h
|
$(INSTALL) -m 644 getdns/getdns.h $(DESTDIR)$(includedir)/getdns/getdns.h
|
||||||
$(INSTALL) -m 644 getdns/getdns_extra.h $(DESTDIR)$(includedir)/getdns/getdns_extra.h
|
$(INSTALL) -m 644 getdns/getdns_extra.h $(DESTDIR)$(includedir)/getdns/getdns_extra.h
|
||||||
|
if test $(have_libevent) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libevent.h $(DESTDIR)$(includedir)/getdns/ ; fi
|
||||||
|
if test $(have_libuv) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libuv.h $(DESTDIR)$(includedir)/getdns/ ; fi
|
||||||
|
if test $(have_libev) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libev.h $(DESTDIR)$(includedir)/getdns/ ; fi
|
||||||
|
|
||||||
|
uninstall-headers:
|
||||||
|
rm -rf $(DESTDIR)$(includedir)/getdns
|
||||||
|
|
||||||
|
install-libs: libgetdns.la
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(libdir)
|
$(INSTALL) -m 755 -d $(DESTDIR)$(libdir)
|
||||||
$(LIBTOOL) --mode=install cp libgetdns.la $(DESTDIR)$(libdir)
|
$(LIBTOOL) --mode=install cp libgetdns.la $(DESTDIR)$(libdir)
|
||||||
if test $(have_libevent) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libevent.h $(DESTDIR)$(includedir)/getdns/ ; $(LIBTOOL) --mode=install cp $(EXTENSION_LIBEVENT_LIB) $(DESTDIR)$(libdir) ; fi
|
if test $(have_libevent) = 1 ; then $(LIBTOOL) --mode=install cp $(EXTENSION_LIBEVENT_LIB) $(DESTDIR)$(libdir) ; fi
|
||||||
if test $(have_libuv) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libuv.h $(DESTDIR)$(includedir)/getdns/ ; $(LIBTOOL) --mode=install cp $(EXTENSION_LIBUV_LIB) $(DESTDIR)$(libdir) ; fi
|
if test $(have_libuv) = 1 ; then $(LIBTOOL) --mode=install cp $(EXTENSION_LIBUV_LIB) $(DESTDIR)$(libdir) ; fi
|
||||||
if test $(have_libev) = 1 ; then $(INSTALL) -m 644 $(srcdir)/getdns/getdns_ext_libev.h $(DESTDIR)$(includedir)/getdns/ ; $(LIBTOOL) --mode=install cp $(EXTENSION_LIBEV_LIB) $(DESTDIR)$(libdir) ; fi
|
if test $(have_libev) = 1 ; then $(LIBTOOL) --mode=install cp $(EXTENSION_LIBEV_LIB) $(DESTDIR)$(libdir) ; fi
|
||||||
|
|
||||||
$(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
|
$(LIBTOOL) --mode=finish $(DESTDIR)$(libdir)
|
||||||
|
|
||||||
uninstall:
|
uninstall-libs:
|
||||||
rm -rf $(DESTDIR)$(includedir)/getdns
|
|
||||||
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libgetdns.la
|
|
||||||
if test $(have_libevent) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBEVENT_LIB) ; fi
|
if test $(have_libevent) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBEVENT_LIB) ; fi
|
||||||
if test $(have_libuv) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBUV_LIB) ; fi
|
if test $(have_libuv) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBUV_LIB) ; fi
|
||||||
if test $(have_libev) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBEV_LIB) ; fi
|
if test $(have_libev) = 1; then $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(EXTENSION_LIBEV_LIB) ; fi
|
||||||
|
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/libgetdns.la
|
||||||
|
|
||||||
|
install: install-libs install-headers @INSTALL_STUBBY@
|
||||||
|
|
||||||
|
uninstall: @UNINSTALL_STUBBY@ uninstall-headers uninstall-libs
|
||||||
|
|
||||||
libgetdns_ext_event.la: libgetdns.la libevent.lo
|
libgetdns_ext_event.la: libgetdns.la libevent.lo
|
||||||
$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ libevent.lo libgetdns.la $(LDFLAGS) $(EXTENSION_LIBEVENT_LDFLAGS) $(EXTENSION_LIBEVENT_EXT_LIBS) -rpath $(libdir) -version-info $(libversion) -no-undefined -export-symbols $(srcdir)/extension/libevent.symbols
|
$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ libevent.lo libgetdns.la $(LDFLAGS) $(EXTENSION_LIBEVENT_LDFLAGS) $(EXTENSION_LIBEVENT_EXT_LIBS) -rpath $(libdir) -version-info $(libversion) -no-undefined -export-symbols $(srcdir)/extension/libevent.symbols
|
||||||
|
@ -163,8 +182,24 @@ test: default
|
||||||
getdns_query: default
|
getdns_query: default
|
||||||
cd tools && $(MAKE) $@
|
cd tools && $(MAKE) $@
|
||||||
|
|
||||||
stubby: getdns_query
|
stubby.lo: $(stubbysrcdir)/src/stubby.c
|
||||||
cd tools && $(MAKE) $@
|
$(LIBTOOL) --quiet --tag=CC --mode=compile $(CC) $(CFLAGS) $(WPEDANTICFLAG) -DSTUBBYCONFDIR=\"$(sysconfdir)/stubby\" -DRUNSTATEDIR=\"$(runstatedir)\" -c $< -o $@
|
||||||
|
|
||||||
|
stubby: stubby.lo libgetdns.la
|
||||||
|
$(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ stubby.lo $(LDFLAGS) libgetdns.la
|
||||||
|
|
||||||
|
install-stubby: stubby $(stubbysrcdir)/stubby.conf.example $(stubbysrcdir)/stubby-setdns-macos.sh
|
||||||
|
$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
|
||||||
|
$(LIBTOOL) --mode=install cp stubby $(DESTDIR)$(bindir)
|
||||||
|
$(INSTALL) -m 755 -d $(DESTDIR)$(sbindir)
|
||||||
|
$(INSTALL) -m 755 $(stubbysrcdir)/stubby-setdns-macos.sh $(DESTDIR)$(sbindir)
|
||||||
|
$(INSTALL) -m 755 -d $(DESTDIR)$(stubbyconfdir)
|
||||||
|
test -f $(DESTDIR)$(stubbyconfdir)/stubby.conf || \
|
||||||
|
$(INSTALL_DATA) $(stubbysrcdir)/stubby.conf.example $(DESTDIR)$(stubbyconfdir)/stubby.conf
|
||||||
|
|
||||||
|
uninstall-stubby:
|
||||||
|
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/stubby
|
||||||
|
rm -f $(DESTDIR)$(sbindir)/stubby-setdns-macos.sh
|
||||||
|
|
||||||
scratchpad: default
|
scratchpad: default
|
||||||
cd test && $(MAKE) $@
|
cd test && $(MAKE) $@
|
||||||
|
|
|
@ -7,10 +7,10 @@
|
||||||
rm -fr "${BUILDDIR}/build-event-loops"
|
rm -fr "${BUILDDIR}/build-event-loops"
|
||||||
mkdir "${BUILDDIR}/build-event-loops"
|
mkdir "${BUILDDIR}/build-event-loops"
|
||||||
cd "${BUILDDIR}/build-event-loops"
|
cd "${BUILDDIR}/build-event-loops"
|
||||||
"${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libev --with-libuv \
|
"${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libev \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libev \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libuv \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libev --with-libuv \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libev \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libev \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libuv
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libuv
|
||||||
|
|
|
@ -25,11 +25,11 @@ done
|
||||||
rm -fr "${BUILDDIR}/build-static-analysis"
|
rm -fr "${BUILDDIR}/build-static-analysis"
|
||||||
mkdir "${BUILDDIR}/build-static-analysis"
|
mkdir "${BUILDDIR}/build-static-analysis"
|
||||||
cd "${BUILDDIR}/build-static-analysis"
|
cd "${BUILDDIR}/build-static-analysis"
|
||||||
"${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libev --with-libuv \
|
"${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libev \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libev \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent --with-libuv \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libev --with-libuv \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libev --with-libuv \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libevent \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libevent \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libev \
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libev \
|
||||||
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-getdns_query --with-libuv
|
|| "${SRCROOT}/configure" $* --enable-all-drafts --with-stubby --with-libuv
|
||||||
|
|
||||||
|
|
|
@ -68,8 +68,8 @@ $(ALL_OBJS):
|
||||||
getdns_query: getdns_query.lo
|
getdns_query: getdns_query.lo
|
||||||
$(LIBTOOL) --tag=CC --mode=link $(CC) $(CFLAGS) -o $@ getdns_query.lo $(LDFLAGS) $(LDLIBS)
|
$(LIBTOOL) --tag=CC --mode=link $(CC) $(CFLAGS) -o $@ getdns_query.lo $(LDFLAGS) $(LDLIBS)
|
||||||
|
|
||||||
stubby: getdns_query.lo
|
stubby:
|
||||||
$(LIBTOOL) --tag=CC --mode=link $(CC) $(CFLAGS) -o $@ getdns_query.lo $(LDFLAGS) $(LDLIBS)
|
cd .. && $(MAKE) $@
|
||||||
|
|
||||||
install-getdns_query: getdns_query
|
install-getdns_query: getdns_query
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
|
$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
|
||||||
|
@ -78,15 +78,14 @@ install-getdns_query: getdns_query
|
||||||
uninstall-getdns_query:
|
uninstall-getdns_query:
|
||||||
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/getdns_query
|
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/getdns_query
|
||||||
|
|
||||||
install-stubby: getdns_query
|
install-stubby:
|
||||||
$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
|
cd .. && $(MAKE) $@
|
||||||
$(LIBTOOL) --mode=install cp getdns_query $(DESTDIR)$(bindir)/stubby
|
|
||||||
|
|
||||||
uninstall-stubby:
|
uninstall-stubby:
|
||||||
$(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bindir)/stubby
|
cd .. && $(MAKE) $@
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o *.lo $(PROGRAMS) stubby
|
rm -f *.o *.lo $(PROGRAMS)
|
||||||
rm -rf .libs
|
rm -rf .libs
|
||||||
|
|
||||||
distclean : clean
|
distclean : clean
|
||||||
|
|
|
@ -1,96 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
#
|
|
||||||
# Copyright (c) 2017, Verisign, Inc., NLnet Labs
|
|
||||||
# All rights reserved.
|
|
||||||
#
|
|
||||||
# Redistribution and use in source and binary forms, with or without
|
|
||||||
# modification, are permitted provided that the following conditions are met:
|
|
||||||
# * Redistributions of source code must retain the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer.
|
|
||||||
# * 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.
|
|
||||||
# * Neither the names of the copyright holders nor the
|
|
||||||
# names of its contributors may be used to endorse or promote products
|
|
||||||
# derived from this software without specific prior written permission.
|
|
||||||
#
|
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 Verisign, Inc. 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.
|
|
||||||
|
|
||||||
|
|
||||||
# Stubby helper file to set DNS servers on macOS.
|
|
||||||
# Note - this script doesn't detect or handle network events, simply changes the
|
|
||||||
# current resolvers
|
|
||||||
# Must run as root.
|
|
||||||
|
|
||||||
usage () {
|
|
||||||
echo
|
|
||||||
echo "Update the system DNS resolvers so that Stubby is used for all DNS"
|
|
||||||
echo "queries on macOS. (Stubby must already be running)"
|
|
||||||
echo "This must be run as root."
|
|
||||||
echo
|
|
||||||
echo "Usage: $0 options"
|
|
||||||
echo
|
|
||||||
echo "Supported options:"
|
|
||||||
echo " -r Reset DNS resolvers to the default ones (e.g. from DHCP)"
|
|
||||||
echo " -l List the current DNS settings for all interfaces"
|
|
||||||
echo " -h Show this help."
|
|
||||||
}
|
|
||||||
|
|
||||||
RESET=0
|
|
||||||
LIST=0
|
|
||||||
SERVERS="127.0.0.1 ::1"
|
|
||||||
OS_X=`uname -a | grep -c 'Darwin'`
|
|
||||||
|
|
||||||
while getopts ":rlh" opt; do
|
|
||||||
case $opt in
|
|
||||||
r ) RESET=1 ;;
|
|
||||||
l ) LIST=1 ;;
|
|
||||||
h ) usage
|
|
||||||
exit 1 ;;
|
|
||||||
\? ) usage
|
|
||||||
exit 1 ;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
|
|
||||||
if [[ $OS_X -eq 0 ]]; then
|
|
||||||
echo "Sorry - This script only works on macOS and you are on a different OS."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $LIST -eq 1 ]]; then
|
|
||||||
echo "** Current DNS settings **"
|
|
||||||
networksetup -listallnetworkservices 2>/dev/null | grep -v '*' | while read x ; do
|
|
||||||
RESULT=`networksetup -getdnsservers "$x"`
|
|
||||||
RESULT=`echo $RESULT`
|
|
||||||
printf '%-30s %s\n' "$x:" "$RESULT"
|
|
||||||
done
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$USER" != "root" ]; then
|
|
||||||
echo "Must be root to update system resolvers. Retry using 'sudo stubby-setdns'"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ $RESET -eq 1 ]]; then
|
|
||||||
SERVERS="empty"
|
|
||||||
echo "Setting DNS servers to '"$SERVERS"' - the system will use default DNS service."
|
|
||||||
else
|
|
||||||
echo "Setting DNS servers to '"$SERVERS"' - the system will use Stubby if it is running."
|
|
||||||
fi
|
|
||||||
|
|
||||||
### Set the DNS settings via networksetup ###
|
|
||||||
networksetup -listallnetworkservices 2>/dev/null | grep -v '*' | while read x ; do
|
|
||||||
networksetup -setdnsservers "$x" $SERVERS
|
|
||||||
done
|
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
{ resolution_type: GETDNS_RESOLUTION_STUB
|
|
||||||
, dns_transport_list: [ GETDNS_TRANSPORT_TLS ]
|
|
||||||
, tls_authentication: GETDNS_AUTHENTICATION_REQUIRED
|
|
||||||
, tls_query_padding_blocksize: 256
|
|
||||||
, edns_client_subnet_private : 1
|
|
||||||
, listen_addresses: [ 127.0.0.1, 0::1 ]
|
|
||||||
, idle_timeout: 10000
|
|
||||||
, round_robin_upstreams: 1
|
|
||||||
, upstream_recursive_servers:
|
|
||||||
[ { address_data: 145.100.185.15
|
|
||||||
, tls_auth_name: "dnsovertls.sinodun.com"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: 62lKu9HsDVbyiPenApnc4sfmSYTHOVfFgL3pyB+cBL4=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 145.100.185.16
|
|
||||||
, tls_auth_name: "dnsovertls1.sinodun.com"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: cE2ecALeE5B+urJhDrJlVFmf38cJLAvqekONvjvpqUA=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 185.49.141.37
|
|
||||||
, tls_auth_name: "getdnsapi.net"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: foxZRnIh9gZpWnl+zEiKa0EJ2rdCGroMWm02gaxSc9Q=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 2001:610:1:40ba:145:100:185:15
|
|
||||||
, tls_auth_name: "dnsovertls.sinodun.com"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: 62lKu9HsDVbyiPenApnc4sfmSYTHOVfFgL3pyB+cBL4=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 2001:610:1:40ba:145:100:185:16
|
|
||||||
, tls_auth_name: "dnsovertls1.sinodun.com"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: cE2ecALeE5B+urJhDrJlVFmf38cJLAvqekONvjvpqUA=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 2a04:b900:0:100::37
|
|
||||||
, tls_auth_name: "getdnsapi.net"
|
|
||||||
, tls_pubkey_pinset:
|
|
||||||
[ { digest: "sha256"
|
|
||||||
, value: foxZRnIh9gZpWnl+zEiKa0EJ2rdCGroMWm02gaxSc9Q=
|
|
||||||
} ]
|
|
||||||
},
|
|
||||||
{ address_data: 89.233.43.71
|
|
||||||
, tls_auth_name: "unicast.censurfridns.dk"
|
|
||||||
},
|
|
||||||
{ address_data: 2a01:3a0:53:53::
|
|
||||||
, tls_auth_name: "unicast.censurfridns.dk"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 1e19dcb50f662b16717040b65e3d5fec4a332bd7
|
|
@ -1,16 +0,0 @@
|
||||||
Stubby integration with systemd
|
|
||||||
===============================
|
|
||||||
|
|
||||||
For GNU/Linux operating systems which use systemd as a process
|
|
||||||
manager, you might want to run stubby as a system service.
|
|
||||||
|
|
||||||
This directory provides recommended systemd unit files.
|
|
||||||
|
|
||||||
This setup assumes that there is a system-level user named "stubby"
|
|
||||||
which is in group "stubby", and try to limit the privileges of the
|
|
||||||
running daemon to that user as closely as possible.
|
|
||||||
|
|
||||||
Normally, a downstream distributor will install them as:
|
|
||||||
|
|
||||||
/usr/lib/tmpfiles.d/stubby.conf
|
|
||||||
/lib/systemd/system/stubby.service
|
|
|
@ -1,2 +0,0 @@
|
||||||
# tmpfiles.d (5) for use with stubby.service
|
|
||||||
d /run/stubby 0750 root stubby - -
|
|
|
@ -1,12 +0,0 @@
|
||||||
[Unit]
|
|
||||||
Description=stubby DNS resolver
|
|
||||||
|
|
||||||
[Service]
|
|
||||||
WorkingDirectory=/run/stubby
|
|
||||||
ExecStart=/usr/bin/stubby
|
|
||||||
AmbientCapabilities=CAP_NET_BIND_SERVICE
|
|
||||||
CapabilityBoundingSet=CAP_NET_BIND_SERVICE
|
|
||||||
User=stubby
|
|
||||||
|
|
||||||
[Install]
|
|
||||||
WantedBy=multi-user.target
|
|
Loading…
Reference in New Issue