--disable-pps Disable PPS API support
--disable-rtc Don't include RTC even on Linux
--disable-linuxcaps Disable Linux capabilities support
+ --disable-asyncdns Disable asynchronous name resolving
--disable-forcednsretry Don't retry on permanent DNS error
--with-user=USER Specify default chronyd user [root]
--with-sendmail=PATH Path to sendmail binary [/usr/lib/sendmail]
feat_pps=1
try_setsched=0
try_lockmem=0
+feat_asyncdns=1
feat_forcednsretry=1
default_user="root"
mail_program="/usr/lib/sendmail"
--disable-linuxcaps)
feat_linuxcaps=0
;;
+ --disable-asyncdns)
+ feat_asyncdns=0
+ ;;
--disable-forcednsretry)
feat_forcednsretry=0
;;
add_def HAVE_GETADDRINFO
fi
+if [ $feat_asyncdns = "1" ] && \
+ test_code 'pthread' 'pthread.h' '-pthread' '' \
+ 'return pthread_create(NULL, NULL, NULL, NULL);'
+then
+ add_def FEAT_ASYNCDNS
+ add_def USE_PTHREAD_ASYNCDNS
+ MYCFLAGS="$MYCFLAGS -pthread"
+fi
+
timepps_h=""
if [ $feat_pps = "1" ]; then
if test_code '<sys/timepps.h>' 'sys/timepps.h' '' '' ''; then
#include "nameserv_async.h"
#include "logging.h"
+#include "memory.h"
+#include "sched.h"
#include "util.h"
+#ifdef FEAT_ASYNCDNS
+
+#ifdef USE_PTHREAD_ASYNCDNS
+#include <pthread.h>
+
+/* ================================================== */
+
+struct DNS_Async_Instance {
+ const char *name;
+ DNS_Status status;
+ IPAddr addr;
+ DNS_NameResolveHandler handler;
+ void *arg;
+
+ pthread_t thread;
+ int pipe[2];
+};
+
+static int resolving_threads = 0;
+
+/* ================================================== */
+
+static void *
+start_resolving(void *anything)
+{
+ struct DNS_Async_Instance *inst = (struct DNS_Async_Instance *)anything;
+
+ inst->status = DNS_Name2IPAddress(inst->name, &inst->addr);
+
+ /* Notify the main thread that the result is ready */
+ if (write(inst->pipe[1], "", 1) < 0)
+ ;
+
+ return NULL;
+}
+
+/* ================================================== */
+
+static void
+end_resolving(void *anything)
+{
+ struct DNS_Async_Instance *inst = (struct DNS_Async_Instance *)anything;
+
+ if (pthread_join(inst->thread, NULL)) {
+ LOG_FATAL(LOGF_Nameserv, "pthread_join() failed");
+ }
+
+ resolving_threads--;
+
+ SCH_RemoveInputFileHandler(inst->pipe[0]);
+ close(inst->pipe[0]);
+ close(inst->pipe[1]);
+
+ (inst->handler)(inst->status, &inst->addr, inst->arg);
+
+ Free(inst);
+}
+
/* ================================================== */
+void
+DNS_Name2IPAddressAsync(const char *name, DNS_NameResolveHandler handler, void *anything)
+{
+ struct DNS_Async_Instance *inst;
+
+ inst = MallocNew(struct DNS_Async_Instance);
+ inst->name = name;
+ inst->handler = handler;
+ inst->arg = anything;
+ inst->status = DNS_Failure;
+
+ if (pipe(inst->pipe)) {
+ LOG_FATAL(LOGF_Nameserv, "pipe() failed");
+ }
+
+ resolving_threads++;
+ assert(resolving_threads <= 1);
+
+ if (pthread_create(&inst->thread, NULL, start_resolving, inst)) {
+ LOG_FATAL(LOGF_Nameserv, "pthread_create() failed");
+ }
+
+ SCH_AddInputFileHandler(inst->pipe[0], end_resolving, inst);
+}
+
+/* ================================================== */
+
+#else
+#error
+#endif
+
+#else
+
/* This is a blocking implementation used when nothing else is available */
void
}
/* ================================================== */
+
+#endif