os.c revision 9c3531d72aeaad6c5f01efe6a1c82023e1379e4d
/*
* Copyright (C) 1999, 2000 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
/* $Id: os.c,v 1.18 2000/06/22 21:49:57 tale Exp $ */
#include <config.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <grp.h> /* Required for initgroups() on IRIX. */
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <syslog.h>
#include <unistd.h>
#ifdef HAVE_LINUXTHREADS
#endif
#ifdef HAVE_LINUX_CAPABILITY_H
/*
* We define _LINUX_FS_H to prevent it from being included. We don't need
* anything from it, and the files it includes cause warnings with 2.2
* and <string.h>) on 2.3 kernels.
*/
#define _LINUX_FS_H
#ifdef HAVE_LINUX_PRCTL_H
#endif
#ifndef SYS_capset
#define SYS_capset __NR_capset
#endif
static void
linux_setcaps(unsigned int caps) {
struct __user_cap_header_struct caphead;
struct __user_cap_data_struct cap;
return;
}
static void
linux_initialprivs(void) {
unsigned int caps;
/*
* We don't need most privileges, so we drop them right away.
* Later on linux_minprivs() will be called, which will drop our
* capabilities to the minimum needed to run the server.
*/
caps = 0;
/*
* We need to be able to bind() to privileged ports, notably port 53!
*/
/*
* We need chroot() initially too.
*/
#if defined(HAVE_LINUX_PRCTL_H) && defined(PR_SET_KEEPCAPS)
/*
* If the kernel supports keeping capabilities after setuid(), we
* also want the setuid and setgid capabilities.
*
* There's no point turning these on if we don't have PR_SET_KEEPCAPS,
* because changing user ids only works right with linuxthreads if
* we can do it early (before creating threads).
*/
#endif
/*
* XXX We might want to add CAP_SYS_RESOURCE, though it's not
* clear it would work right given the way linuxthreads work.
*/
}
static void
linux_minprivs(void) {
unsigned int caps;
/*
* Drop all privileges except the ability to bind() to privileged
* ports.
*
* It's important that we drop CAP_SYS_CHROOT. If we didn't, it
* chroot() could be used to escape from the chrooted area.
*/
caps = 0;
}
#if defined(HAVE_LINUX_PRCTL_H) && defined(PR_SET_KEEPCAPS)
static void
linux_keepcaps(void) {
/*
* Ask the kernel to allow us to keep our capabilities after we
* setuid().
*/
ns_main_earlyfatal("prctl() failed: %s",
} else {
if (getuid() != 0)
}
}
#endif
#endif /* HAVE_LINUX_CAPABILITY_H */
static void
setup_syslog(void) {
int options;
#ifdef LOG_NDELAY
options |= LOG_NDELAY;
#endif
}
void
ns_os_init(void) {
setup_syslog();
#ifdef HAVE_LINUX_CAPABILITY_H
#endif
#ifdef HAVE_LINUXTHREADS
#endif
}
void
ns_os_daemonize(void) {
int fd;
if (pid == -1)
if (pid != 0)
_exit(0);
/*
* We're the child.
*/
#ifdef HAVE_LINUXTHREADS
#endif
if (setsid() == -1)
/*
* on even if it fails.
*/
if (fd != -1) {
if (fd != STDIN_FILENO &&
fd != STDOUT_FILENO &&
fd != STDERR_FILENO)
}
}
static isc_boolean_t
all_digits(const char *s) {
if (*s == '\0')
return (ISC_FALSE);
while (*s != '\0') {
if (!isdigit((*s)&0xff))
return (ISC_FALSE);
s++;
}
return (ISC_TRUE);
}
void
ns_os_chroot(const char *root) {
if (chdir("/") < 0)
}
}
void
ns_os_changeuser(const char *username) {
return;
#ifdef HAVE_LINUXTHREADS
if (!non_root_caps)
"-u not supported on Linux kernels older than 2.3.99-pre3");
#endif
if (all_digits(username))
else
endpwent();
}
void
ns_os_minprivs(const char *username) {
#ifdef HAVE_LINUX_CAPABILITY_H
#if defined(HAVE_LINUX_PRCTL_H) && defined(PR_SET_KEEPCAPS)
#else
(void)username;
#endif
#else
(void)username;
#endif /* HAVE_LINUX_CAPABILITY_H */
}
static int
return (-1);
return (-1);
}
static void
cleanup_pidfile(void) {
}
void
ns_os_writepidfile(const char *filename) {
int fd;
/*
* The caller must ensure any required synchronization.
*/
ns_main_earlyfatal("couldn't malloc '%s': %s",
/* This is safe. */
if (fd < 0)
ns_main_earlyfatal("couldn't open pid file '%s': %s",
ns_main_earlyfatal("could not fdopen() pid file '%s': %s",
#ifdef HAVE_LINUXTHREADS
#else
#endif
ns_main_earlyfatal("fprintf() to pid file '%s' failed",
filename);
ns_main_earlyfatal("fflush() to pid file '%s' failed",
filename);
}
void
ns_os_shutdown(void) {
closelog();
}