]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
launchd plist file, and deprecation test for MacOSX use of daemon(3).
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 23 Mar 2009 11:22:57 +0000 (11:22 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Mon, 23 Mar 2009 11:22:57 +0000 (11:22 +0000)
git-svn-id: file:///svn/unbound/trunk@1542 be551aaa-1e26-0410-a405-d3ace91eadb9

config.h.in
configure
configure.ac
contrib/README
contrib/unbound.plist [new file with mode: 0644]
daemon/unbound.c
doc/Changelog

index 85784d5ad919e7deadefbaedd6246fb621b3a099..a09cd10328e13373d881013fe9465180df00aa50 100644 (file)
@@ -10,6 +10,9 @@
    */
 #undef DARWIN_BROKEN_SETREUID
 
+/* Whether daemon is deprecated */
+#undef DEPRECATED_DAEMON
+
 /* Define if you want to use debug lock checking (slow). */
 #undef ENABLE_LOCK_CHECKS
 
index b08d1e67933fb2e794c30194816dfb6361652451..48bf0334861d7c04b238e91d55d697be5c761f26 100755 (executable)
--- a/configure
+++ b/configure
@@ -25400,6 +25400,152 @@ case " $LIBOBJS " in
 esac
 
 fi
+
+# check if a function is deprecated. defines DEPRECATED_func in config.h.
+# 1: function name
+# 2: C-statement that calls the function.
+# 3: includes for the program.
+# 4: executes if yes
+# 5: executes if no
+
+
+# see if daemon(3) exists, and if it is deprecated.
+
+for ac_func in daemon
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+{ echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }
+if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h.  */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h.  */
+/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+#define $ac_func innocuous_$ac_func
+
+/* System header to define __stub macros and hopefully few prototypes,
+    which can conflict with char $ac_func (); below.
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+    <limits.h> exists even on freestanding compilers.  */
+
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+
+#undef $ac_func
+
+/* Override any GCC internal prototype to avoid an error.
+   Use char because int might match the return type of a GCC
+   builtin and then its argument prototype would still apply.  */
+#ifdef __cplusplus
+extern "C"
+#endif
+char $ac_func ();
+/* The GNU C library defines this for functions which it implements
+    to always fail with ENOSYS.  Some functions are actually named
+    something starting with __ and the normal name is an alias.  */
+#if defined __stub_$ac_func || defined __stub___$ac_func
+choke me
+#endif
+
+int
+main ()
+{
+return $ac_func ();
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (ac_try="$ac_link"
+case "(($ac_try" in
+  *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
+  *) ac_try_echo=$ac_try;;
+esac
+eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
+  (eval "$ac_link") 2>conftest.er1
+  ac_status=$?
+  grep -v '^ *+' conftest.er1 >conftest.err
+  rm -f conftest.er1
+  cat conftest.err >&5
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); } && {
+        test -z "$ac_c_werror_flag" ||
+        test ! -s conftest.err
+       } && test -s conftest$ac_exeext &&
+       $as_test_x conftest$ac_exeext; then
+  eval "$as_ac_var=yes"
+else
+  echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+       eval "$as_ac_var=no"
+fi
+
+rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
+      conftest$ac_exeext conftest.$ac_ext
+fi
+ac_res=`eval echo '${'$as_ac_var'}'`
+              { echo "$as_me:$LINENO: result: $ac_res" >&5
+echo "${ECHO_T}$ac_res" >&6; }
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+  cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+if test $ac_cv_func_daemon = yes; then
+
+
+{ echo "$as_me:$LINENO: checking if daemon is deprecated" >&5
+echo $ECHO_N "checking if daemon is deprecated... $ECHO_C" >&6; }
+cache=`echo daemon | sed 'y%.=/+-%___p_%'`
+if { as_var=cv_cc_deprecated_$cache; eval "test \"\${$as_var+set}\" = set"; }; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+echo '
+#include <stdlib.h>
+' >conftest.c
+echo 'void f(){ (void)daemon(0, 0); }' >>conftest.c
+if test -z "`$CC -c conftest.c 2>&1 | grep deprecated`"; then
+eval "cv_cc_deprecated_$cache=no"
+else
+eval "cv_cc_deprecated_$cache=yes"
+fi
+rm -f conftest conftest.o conftest.c
+
+fi
+
+if eval "test \"`echo '$cv_cc_deprecated_'$cache`\" = yes"; then
+{ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6; }
+
+cat >>confdefs.h <<_ACEOF
+#define DEPRECATED_DAEMON 1
+_ACEOF
+
+:
+
+else
+{ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6; }
+:
+
+fi
+
+fi
+
 { echo "$as_me:$LINENO: checking for library containing setusercontext" >&5
 echo $ECHO_N "checking for library containing setusercontext... $ECHO_C" >&6; }
 if test "${ac_cv_search_setusercontext+set}" = set; then
@@ -25509,8 +25655,7 @@ fi
 
 
 
-
-for ac_func in tzset sigprocmask fcntl getpwnam getrlimit setsid sbrk chroot kill sleep usleep random srandom recvmsg sendmsg writev setresuid setreuid setresgid setregid glob initgroups daemon strftime localtime_r setusercontext _beginthreadex
+for ac_func in tzset sigprocmask fcntl getpwnam getrlimit setsid sbrk chroot kill sleep usleep random srandom recvmsg sendmsg writev setresuid setreuid setresgid setregid glob initgroups strftime localtime_r setusercontext _beginthreadex
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
 { echo "$as_me:$LINENO: checking for $ac_func" >&5
index 0f8123220dcd88983a1175b62be09249a4525cf2..d39d8b0f4fe9b1da6ddaa069ddc818aa40652080 100644 (file)
@@ -891,8 +891,51 @@ AC_CHECK_GETADDRINFO_WITH_INCLUDES
 if test $ac_cv_func_getaddrinfo = no; then
 AC_LIBOBJ([fake-rfc2553])
 fi
+
+# check if a function is deprecated. defines DEPRECATED_func in config.h.
+# 1: function name
+# 2: C-statement that calls the function.
+# 3: includes for the program.
+# 4: executes if yes
+# 5: executes if no
+AC_DEFUN([CHECK_DEPRECATED],
+[
+AC_REQUIRE([AC_PROG_CC])
+AC_MSG_CHECKING(if $1 is deprecated)
+cache=`echo $1 | sed 'y%.=/+-%___p_%'`
+AC_CACHE_VAL(cv_cc_deprecated_$cache,
+[
+echo '$3' >conftest.c
+echo 'void f(){ $2 }' >>conftest.c
+if test -z "`$CC -c conftest.c 2>&1 | grep deprecated`"; then
+eval "cv_cc_deprecated_$cache=no"
+else
+eval "cv_cc_deprecated_$cache=yes"
+fi
+rm -f conftest conftest.o conftest.c
+])
+if eval "test \"`echo '$cv_cc_deprecated_'$cache`\" = yes"; then
+AC_MSG_RESULT(yes)
+AC_DEFINE_UNQUOTED(AS_TR_CPP([DEPRECATED_$1]), 1, [Whether $1 is deprecated])
+:
+$4
+else
+AC_MSG_RESULT(no)
+:
+$5
+fi
+])
+
+# see if daemon(3) exists, and if it is deprecated.
+AC_CHECK_FUNCS([daemon])
+if test $ac_cv_func_daemon = yes; then
+       CHECK_DEPRECATED([daemon], [(void)daemon(0, 0);], [
+#include <stdlib.h>
+])
+fi
+
 AC_SEARCH_LIBS([setusercontext], [util])
-AC_CHECK_FUNCS([tzset sigprocmask fcntl getpwnam getrlimit setsid sbrk chroot kill sleep usleep random srandom recvmsg sendmsg writev setresuid setreuid setresgid setregid glob initgroups daemon strftime localtime_r setusercontext _beginthreadex])
+AC_CHECK_FUNCS([tzset sigprocmask fcntl getpwnam getrlimit setsid sbrk chroot kill sleep usleep random srandom recvmsg sendmsg writev setresuid setreuid setresgid setregid glob initgroups strftime localtime_r setusercontext _beginthreadex])
 
 # check if setreuid en setregid fail, on MacOSX10.4(darwin8).
 if echo $build_os | grep darwin8 > /dev/null; then
index 1388683193fcbeb0d64cf9f27cc457160527e47b..f8ff7d9b162751b711c86e51c3d1e578218f71be 100644 (file)
@@ -11,3 +11,4 @@ distribution but may be helpful.
 * unbound_munin_ : plugin for munin statistics report
 * unbound_cacti.tar.gz : setup files for cacti statistics report
 * selinux: the .fc and .te files for SElinux protection of the unbound daemon
+* unbound.plist: launchd configuration file for MacOSX.
diff --git a/contrib/unbound.plist b/contrib/unbound.plist
new file mode 100644 (file)
index 0000000..15e1162
--- /dev/null
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
+<plist version="1.0">
+<!-- 
+Unbound plist file for use by MacOSX launchd(8) using launchctl(1).
+Copy this file to /Library/LaunchDaemons.  Launchd keeps unbound running.
+
+Setup your unbound.conf with the following additional settings.
+server:
+       do-daemonize: no
+       username: ""
+       chroot: ""
+       directory: ""
+These actions are performed by launchd (for the option values, see below).
+
+-->
+<dict>
+       <key>Label</key>
+       <string>unbound</string>
+
+       <key>ProgramArguments</key>
+       <array>
+               <string>unbound</string>
+       </array>
+
+       <key>UserName</key>
+       <string>unbound</string>
+
+       <key>RootDirectory</key>
+       <string>/usr/local/etc/unbound</string>
+
+       <key>WorkingDirectory</key>
+       <string>/usr/local/etc/unbound</string>
+
+       <key>KeepAlive</key>
+       <true/>
+
+       <key>RunAtLoad</key>
+       <true/>
+
+</dict>
+</plist>
index 19cd456daad9516a4d1fd62864b34c90fb543c03..9703b4f6f0490bad5905849299cdf9b902f7273e 100644 (file)
@@ -287,7 +287,7 @@ checkoldpid(char* pidfile, int inchroot)
 static void
 detach(void)
 {
-#ifdef HAVE_DAEMON
+#if defined(HAVE_DAEMON) && !defined(DEPRECATED_DAEMON)
        /* use POSIX daemon(3) function */
        if(daemon(1, 0) != 0)
                fatal_exit("daemon failed: %s", strerror(errno));
index b8a08e20a91da8c1f89de569ffcb956d9c320581..bde0cafe3b8d1da1015467af4f193a4c8e4d9a6d 100644 (file)
@@ -1,3 +1,7 @@
+23 March 2009: Wouter
+       - added launchd plist example file for MacOSX to contrib.
+       - deprecation test for daemon(3).
+
 20 March 2009: Wouter
        - bug #239: module-config entries order is important. Documented.
        - build fix for test asynclook.