Skip to content

Instantly share code, notes, and snippets.

@eatnumber1
Created July 9, 2011 05:32
Show Gist options
  • Select an option

  • Save eatnumber1/1073357 to your computer and use it in GitHub Desktop.

Select an option

Save eatnumber1/1073357 to your computer and use it in GitHub Desktop.
NSD OpenDNSSEC Notifier
.PHONY: all clean
CHGRP := /bin/chgrp
CHMOD := /bin/chmod
CFLAGS := -Wall -Wextra -Werror
all: nsd-notify
clean:
$(RM) nsd-notify
nsd-notify: nsd-notify.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
$(CHGRP) opendnssec $@
$(CHMOD) o=,g=x,u=rwxs $@
/*
* This program is useful for opendnssec's NotifyCommand when using nsd.
* It should be setuid root.
*
* Authored by Russell Harmon <russ@eatnumber1.com>
*/
#define _XOPEN_SOURCE
#define _XOPEN_SOURCE_EXTENDED
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
static void spawn( char * const argv[] ) {
pid_t pid = fork();
if( pid == -1 ) {
perror("fork");
exit(EXIT_FAILURE);
} else if( pid == 0 ) {
// Child
execv(argv[0], argv);
perror("execvp");
exit(EXIT_FAILURE);
} else {
// Parent
siginfo_t siginfo;
if( waitid(P_PID, pid, &siginfo, WEXITED) == -1 ) {
perror("waitid");
exit(EXIT_FAILURE);
}
if( siginfo.si_code != CLD_EXITED || siginfo.si_status != EXIT_SUCCESS ) {
fprintf(stderr, "Abnormal child exit\n");
exit(EXIT_FAILURE);
}
}
}
int main() {
if( setuid(0) == -1 ) {
perror("setuid");
exit(EXIT_FAILURE);
}
char *args[3] = { [2] = NULL };
char **command = &args[1], **binary = &args[0];
*binary = "/usr/sbin/nsdc";
*command = "rebuild";
spawn(args);
*command = "reload";
spawn(args);
*command = "notify";
spawn(args);
return EXIT_SUCCESS;
}
@bortzmeyer
Copy link
Copy Markdown

Thanks, it works for me and is very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment