2006-11-30 21:19:59 +02:00
|
|
|
#include "shared.hh"
|
|
|
|
#include "local-store.hh"
|
|
|
|
#include "util.hh"
|
2006-11-30 21:54:43 +02:00
|
|
|
#include "serialise.hh"
|
2006-11-30 22:45:20 +02:00
|
|
|
#include "archive.hh"
|
2006-12-03 18:25:19 +02:00
|
|
|
#include "globals.hh"
|
2015-09-03 13:56:59 +03:00
|
|
|
#include "derivations.hh"
|
2017-08-28 15:17:07 +03:00
|
|
|
#include "finally.hh"
|
2018-10-26 12:35:46 +03:00
|
|
|
#include "legacy.hh"
|
2018-09-24 14:53:44 +03:00
|
|
|
#include "daemon.hh"
|
2006-11-30 21:19:59 +02:00
|
|
|
|
2014-07-17 17:57:07 +03:00
|
|
|
#include <algorithm>
|
|
|
|
|
2010-06-24 20:51:04 +03:00
|
|
|
#include <cstring>
|
2006-12-03 05:03:36 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
2006-12-04 19:17:13 +02:00
|
|
|
#include <sys/types.h>
|
2006-12-05 19:21:42 +02:00
|
|
|
#include <sys/wait.h>
|
2006-12-04 19:17:13 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2006-12-05 19:21:42 +02:00
|
|
|
#include <errno.h>
|
2014-07-17 16:49:33 +03:00
|
|
|
#include <pwd.h>
|
2014-07-17 17:57:07 +03:00
|
|
|
#include <grp.h>
|
2016-09-02 20:30:28 +03:00
|
|
|
#include <fcntl.h>
|
2017-02-13 15:06:46 +02:00
|
|
|
#include <limits.h>
|
2006-12-02 16:27:24 +02:00
|
|
|
|
2014-10-31 11:08:59 +02:00
|
|
|
#if __APPLE__ || __FreeBSD__
|
|
|
|
#include <sys/ucred.h>
|
|
|
|
#endif
|
|
|
|
|
2006-11-30 21:19:59 +02:00
|
|
|
using namespace nix;
|
2018-09-24 14:53:44 +03:00
|
|
|
using namespace nix::daemon;
|
2006-11-30 21:19:59 +02:00
|
|
|
|
2016-09-02 20:30:28 +03:00
|
|
|
#ifndef __linux__
|
|
|
|
#define SPLICE_F_MOVE 0
|
2016-11-17 15:10:12 +02:00
|
|
|
static ssize_t splice(int fd_in, void *off_in, int fd_out, void *off_out, size_t len, unsigned int flags)
|
2016-09-02 20:30:28 +03:00
|
|
|
{
|
|
|
|
/* We ignore most parameters, we just have them for conformance with the linux syscall */
|
2018-03-01 23:00:58 +02:00
|
|
|
std::vector<char> buf(8192);
|
|
|
|
auto read_count = read(fd_in, buf.data(), buf.size());
|
2016-09-02 20:30:28 +03:00
|
|
|
if (read_count == -1)
|
|
|
|
return read_count;
|
2016-11-17 15:10:12 +02:00
|
|
|
auto write_count = decltype(read_count)(0);
|
2016-09-02 20:30:28 +03:00
|
|
|
while (write_count < read_count) {
|
2018-03-01 23:00:58 +02:00
|
|
|
auto res = write(fd_out, buf.data() + write_count, read_count - write_count);
|
2016-09-02 20:30:28 +03:00
|
|
|
if (res == -1)
|
|
|
|
return res;
|
|
|
|
write_count += res;
|
|
|
|
}
|
|
|
|
return read_count;
|
|
|
|
}
|
|
|
|
#endif
|
2006-11-30 21:19:59 +02:00
|
|
|
|
|
|
|
|
2006-12-05 19:21:42 +02:00
|
|
|
static void sigChldHandler(int sigNo)
|
|
|
|
{
|
2018-03-15 04:39:01 +02:00
|
|
|
// Ensure we don't modify errno of whatever we've interrupted
|
|
|
|
auto saved_errno = errno;
|
2006-12-05 19:21:42 +02:00
|
|
|
/* Reap all dead children. */
|
2008-11-14 18:50:01 +02:00
|
|
|
while (waitpid(-1, 0, WNOHANG) > 0) ;
|
2018-03-15 04:39:01 +02:00
|
|
|
errno = saved_errno;
|
2006-12-05 19:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void setSigChldAction(bool autoReap)
|
2006-12-04 19:17:13 +02:00
|
|
|
{
|
|
|
|
struct sigaction act, oact;
|
2006-12-05 19:21:42 +02:00
|
|
|
act.sa_handler = autoReap ? sigChldHandler : SIG_DFL;
|
2006-12-04 19:17:13 +02:00
|
|
|
sigfillset(&act.sa_mask);
|
|
|
|
act.sa_flags = 0;
|
|
|
|
if (sigaction(SIGCHLD, &act, &oact))
|
|
|
|
throw SysError("setting SIGCHLD handler");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-17 17:57:07 +03:00
|
|
|
bool matchUser(const string & user, const string & group, const Strings & users)
|
|
|
|
{
|
|
|
|
if (find(users.begin(), users.end(), "*") != users.end())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (find(users.begin(), users.end(), user) != users.end())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (auto & i : users)
|
|
|
|
if (string(i, 0, 1) == "@") {
|
|
|
|
if (group == string(i, 1)) return true;
|
|
|
|
struct group * gr = getgrnam(i.c_str() + 1);
|
|
|
|
if (!gr) continue;
|
|
|
|
for (char * * mem = gr->gr_mem; *mem; mem++)
|
|
|
|
if (user == string(*mem)) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-31 11:08:59 +02:00
|
|
|
struct PeerInfo
|
|
|
|
{
|
|
|
|
bool pidKnown;
|
|
|
|
pid_t pid;
|
|
|
|
bool uidKnown;
|
|
|
|
uid_t uid;
|
|
|
|
bool gidKnown;
|
|
|
|
gid_t gid;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Get the identity of the caller, if possible. */
|
|
|
|
static PeerInfo getPeerInfo(int remote)
|
|
|
|
{
|
|
|
|
PeerInfo peer = { false, 0, false, 0, false, 0 };
|
|
|
|
|
|
|
|
#if defined(SO_PEERCRED)
|
|
|
|
|
|
|
|
ucred cred;
|
|
|
|
socklen_t credLen = sizeof(cred);
|
|
|
|
if (getsockopt(remote, SOL_SOCKET, SO_PEERCRED, &cred, &credLen) == -1)
|
|
|
|
throw SysError("getting peer credentials");
|
|
|
|
peer = { true, cred.pid, true, cred.uid, true, cred.gid };
|
|
|
|
|
|
|
|
#elif defined(LOCAL_PEERCRED)
|
|
|
|
|
2015-10-04 14:53:23 +03:00
|
|
|
#if !defined(SOL_LOCAL)
|
|
|
|
#define SOL_LOCAL 0
|
|
|
|
#endif
|
|
|
|
|
2014-10-31 11:08:59 +02:00
|
|
|
xucred cred;
|
|
|
|
socklen_t credLen = sizeof(cred);
|
|
|
|
if (getsockopt(remote, SOL_LOCAL, LOCAL_PEERCRED, &cred, &credLen) == -1)
|
|
|
|
throw SysError("getting peer credentials");
|
|
|
|
peer = { false, 0, true, cred.cr_uid, false, 0 };
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return peer;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-19 06:01:46 +03:00
|
|
|
#define SD_LISTEN_FDS_START 3
|
|
|
|
|
|
|
|
|
2018-09-25 13:49:20 +03:00
|
|
|
static ref<Store> openUncachedStore()
|
|
|
|
{
|
|
|
|
Store::Params params; // FIXME: get params from somewhere
|
|
|
|
// Disable caching since the client already does that.
|
|
|
|
params["path-info-cache-size"] = "0";
|
|
|
|
return openStore(settings.storeUri, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
static void daemonLoop(char * * argv)
|
2006-12-04 19:17:13 +02:00
|
|
|
{
|
2014-12-12 18:14:28 +02:00
|
|
|
if (chdir("/") == -1)
|
|
|
|
throw SysError("cannot change current directory");
|
2014-08-13 04:50:44 +03:00
|
|
|
|
2006-12-04 19:17:13 +02:00
|
|
|
/* Get rid of children automatically; don't let them become
|
|
|
|
zombies. */
|
|
|
|
setSigChldAction(true);
|
|
|
|
|
2012-06-19 06:01:46 +03:00
|
|
|
AutoCloseFD fdSocket;
|
|
|
|
|
|
|
|
/* Handle socket-based activation by systemd. */
|
|
|
|
if (getEnv("LISTEN_FDS") != "") {
|
2015-10-29 14:26:55 +02:00
|
|
|
if (getEnv("LISTEN_PID") != std::to_string(getpid()) || getEnv("LISTEN_FDS") != "1")
|
2012-06-19 06:01:46 +03:00
|
|
|
throw Error("unexpected systemd environment variables");
|
|
|
|
fdSocket = SD_LISTEN_FDS_START;
|
2018-09-25 13:36:11 +03:00
|
|
|
closeOnExec(fdSocket.get());
|
2012-06-19 06:01:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, create and bind to a Unix domain socket. */
|
|
|
|
else {
|
2018-09-25 13:36:11 +03:00
|
|
|
createDirs(dirOf(settings.nixDaemonSocketFile));
|
|
|
|
fdSocket = createUnixDomainSocket(settings.nixDaemonSocketFile, 0666);
|
2012-06-19 06:01:46 +03:00
|
|
|
}
|
2006-12-04 19:17:13 +02:00
|
|
|
|
|
|
|
/* Loop accepting connections. */
|
|
|
|
while (1) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
/* Accept a connection. */
|
|
|
|
struct sockaddr_un remoteAddr;
|
|
|
|
socklen_t remoteAddrLen = sizeof(remoteAddr);
|
|
|
|
|
2016-07-11 22:44:44 +03:00
|
|
|
AutoCloseFD remote = accept(fdSocket.get(),
|
2006-12-04 19:17:13 +02:00
|
|
|
(struct sockaddr *) &remoteAddr, &remoteAddrLen);
|
|
|
|
checkInterrupt();
|
2016-07-11 22:44:44 +03:00
|
|
|
if (!remote) {
|
2014-07-23 20:21:00 +03:00
|
|
|
if (errno == EINTR) continue;
|
|
|
|
throw SysError("accepting connection");
|
2009-09-30 14:32:04 +03:00
|
|
|
}
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2016-07-11 22:44:44 +03:00
|
|
|
closeOnExec(remote.get());
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2013-06-12 13:10:26 +03:00
|
|
|
bool trusted = false;
|
2016-07-11 22:44:44 +03:00
|
|
|
PeerInfo peer = getPeerInfo(remote.get());
|
2014-07-17 16:41:11 +03:00
|
|
|
|
2014-10-31 11:08:59 +02:00
|
|
|
struct passwd * pw = peer.uidKnown ? getpwuid(peer.uid) : 0;
|
2015-10-29 14:26:55 +02:00
|
|
|
string user = pw ? pw->pw_name : std::to_string(peer.uid);
|
2006-12-04 19:17:13 +02:00
|
|
|
|
2014-10-31 11:08:59 +02:00
|
|
|
struct group * gr = peer.gidKnown ? getgrgid(peer.gid) : 0;
|
2015-10-29 14:26:55 +02:00
|
|
|
string group = gr ? gr->gr_name : std::to_string(peer.gid);
|
2014-07-17 17:57:07 +03:00
|
|
|
|
Explicitly model all settings and fail on unrecognized ones
Previously, the Settings class allowed other code to query for string
properties, which led to a proliferation of code all over the place making
up new options without any sort of central registry of valid options. This
commit pulls all those options back into the central Settings class and
removes the public get() methods, to discourage future abuses like that.
Furthermore, because we know the full set of options ahead of time, we
now fail loudly if someone enters an unrecognized option, thus preventing
subtle typos. With some template fun, we could probably also dump the full
set of options (with documentation, defaults, etc.) to the command line,
but I'm not doing that yet here.
2017-02-22 05:50:18 +02:00
|
|
|
Strings trustedUsers = settings.trustedUsers;
|
|
|
|
Strings allowedUsers = settings.allowedUsers;
|
2014-08-04 19:13:14 +03:00
|
|
|
|
2014-08-05 11:19:57 +03:00
|
|
|
if (matchUser(user, group, trustedUsers))
|
2014-07-17 17:57:07 +03:00
|
|
|
trusted = true;
|
|
|
|
|
2018-02-07 23:17:44 +02:00
|
|
|
if ((!trusted && !matchUser(user, group, allowedUsers)) || group == settings.buildUsersGroup)
|
2017-07-30 14:27:57 +03:00
|
|
|
throw Error(format("user '%1%' is not allowed to connect to the Nix daemon") % user);
|
2014-07-17 16:49:33 +03:00
|
|
|
|
2016-09-21 17:11:01 +03:00
|
|
|
printInfo(format((string) "accepted connection from pid %1%, user %2%" + (trusted ? " (trusted)" : ""))
|
2015-10-29 14:26:55 +02:00
|
|
|
% (peer.pidKnown ? std::to_string(peer.pid) : "<unknown>")
|
2014-10-31 11:08:59 +02:00
|
|
|
% (peer.uidKnown ? user : "<unknown>"));
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2006-12-04 19:17:13 +02:00
|
|
|
/* Fork a child to handle the connection. */
|
2014-12-10 17:35:42 +02:00
|
|
|
ProcessOptions options;
|
|
|
|
options.errorPrefix = "unexpected Nix daemon error: ";
|
|
|
|
options.dieWithParent = false;
|
|
|
|
options.runExitHandlers = true;
|
|
|
|
options.allowVfork = false;
|
2014-07-10 17:50:51 +03:00
|
|
|
startProcess([&]() {
|
2016-07-11 22:44:44 +03:00
|
|
|
fdSocket = -1;
|
2014-09-25 19:45:43 +03:00
|
|
|
|
2014-07-10 17:50:51 +03:00
|
|
|
/* Background the daemon. */
|
|
|
|
if (setsid() == -1)
|
|
|
|
throw SysError(format("creating a new session"));
|
|
|
|
|
|
|
|
/* Restore normal handling of SIGCHLD. */
|
|
|
|
setSigChldAction(false);
|
|
|
|
|
|
|
|
/* For debugging, stuff the pid into argv[1]. */
|
2014-10-31 11:08:59 +02:00
|
|
|
if (peer.pidKnown && argv[1]) {
|
2015-10-29 14:26:55 +02:00
|
|
|
string processName = std::to_string(peer.pid);
|
2014-08-13 04:50:44 +03:00
|
|
|
strncpy(argv[1], processName.c_str(), strlen(argv[1]));
|
2014-07-10 17:50:51 +03:00
|
|
|
}
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2014-07-10 17:50:51 +03:00
|
|
|
/* Handle the connection. */
|
2018-09-24 14:53:44 +03:00
|
|
|
FdSource from(remote.get());
|
|
|
|
FdSink to(remote.get());
|
2018-09-25 13:49:20 +03:00
|
|
|
processConnection(openUncachedStore(), from, to, trusted, user, peer.uid);
|
2012-07-31 00:13:25 +03:00
|
|
|
|
2014-11-19 18:09:27 +02:00
|
|
|
exit(0);
|
2014-12-10 17:35:42 +02:00
|
|
|
}, options);
|
2006-12-04 19:17:13 +02:00
|
|
|
|
|
|
|
} catch (Interrupted & e) {
|
2018-04-09 15:05:54 +03:00
|
|
|
return;
|
2006-12-04 19:17:13 +02:00
|
|
|
} catch (Error & e) {
|
2016-09-21 17:11:01 +03:00
|
|
|
printError(format("error processing connection: %1%") % e.msg());
|
2006-12-04 19:17:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-26 12:35:46 +03:00
|
|
|
static int _main(int argc, char * * argv)
|
2006-11-30 21:19:59 +02:00
|
|
|
{
|
2018-10-26 12:35:46 +03:00
|
|
|
{
|
2016-09-02 20:30:28 +03:00
|
|
|
auto stdio = false;
|
|
|
|
|
2014-08-13 04:50:44 +03:00
|
|
|
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
|
|
|
if (*arg == "--daemon")
|
|
|
|
; /* ignored for backwards compatibility */
|
|
|
|
else if (*arg == "--help")
|
|
|
|
showManPage("nix-daemon");
|
|
|
|
else if (*arg == "--version")
|
|
|
|
printVersion("nix-daemon");
|
2016-09-02 20:30:28 +03:00
|
|
|
else if (*arg == "--stdio")
|
|
|
|
stdio = true;
|
2014-08-13 04:50:44 +03:00
|
|
|
else return false;
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
2018-02-08 18:26:18 +02:00
|
|
|
initPlugins();
|
|
|
|
|
2016-09-02 20:30:28 +03:00
|
|
|
if (stdio) {
|
|
|
|
if (getStoreType() == tDaemon) {
|
|
|
|
/* Forward on this connection to the real daemon */
|
|
|
|
auto socketPath = settings.nixDaemonSocketFile;
|
|
|
|
auto s = socket(PF_UNIX, SOCK_STREAM, 0);
|
|
|
|
if (s == -1)
|
|
|
|
throw SysError("creating Unix domain socket");
|
|
|
|
|
|
|
|
auto socketDir = dirOf(socketPath);
|
|
|
|
if (chdir(socketDir.c_str()) == -1)
|
2017-07-30 14:27:57 +03:00
|
|
|
throw SysError(format("changing to socket directory '%1%'") % socketDir);
|
2016-09-02 20:30:28 +03:00
|
|
|
|
|
|
|
auto socketName = baseNameOf(socketPath);
|
|
|
|
auto addr = sockaddr_un{};
|
|
|
|
addr.sun_family = AF_UNIX;
|
|
|
|
if (socketName.size() + 1 >= sizeof(addr.sun_path))
|
|
|
|
throw Error(format("socket name %1% is too long") % socketName);
|
|
|
|
strcpy(addr.sun_path, socketName.c_str());
|
|
|
|
|
|
|
|
if (connect(s, (struct sockaddr *) &addr, sizeof(addr)) == -1)
|
|
|
|
throw SysError(format("cannot connect to daemon at %1%") % socketPath);
|
|
|
|
|
|
|
|
auto nfds = (s > STDIN_FILENO ? s : STDIN_FILENO) + 1;
|
|
|
|
while (true) {
|
|
|
|
fd_set fds;
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
FD_SET(s, &fds);
|
|
|
|
FD_SET(STDIN_FILENO, &fds);
|
|
|
|
if (select(nfds, &fds, nullptr, nullptr, nullptr) == -1)
|
|
|
|
throw SysError("waiting for data from client or server");
|
|
|
|
if (FD_ISSET(s, &fds)) {
|
2017-02-13 15:06:46 +02:00
|
|
|
auto res = splice(s, nullptr, STDOUT_FILENO, nullptr, SSIZE_MAX, SPLICE_F_MOVE);
|
2016-09-02 20:30:28 +03:00
|
|
|
if (res == -1)
|
|
|
|
throw SysError("splicing data from daemon socket to stdout");
|
|
|
|
else if (res == 0)
|
|
|
|
throw EndOfFile("unexpected EOF from daemon socket");
|
|
|
|
}
|
|
|
|
if (FD_ISSET(STDIN_FILENO, &fds)) {
|
2017-02-13 15:06:46 +02:00
|
|
|
auto res = splice(STDIN_FILENO, nullptr, s, nullptr, SSIZE_MAX, SPLICE_F_MOVE);
|
2016-09-02 20:30:28 +03:00
|
|
|
if (res == -1)
|
|
|
|
throw SysError("splicing data from stdin to daemon socket");
|
|
|
|
else if (res == 0)
|
2018-10-26 12:35:46 +03:00
|
|
|
return 0;
|
2016-09-02 20:30:28 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-09-24 14:53:44 +03:00
|
|
|
FdSource from(STDIN_FILENO);
|
|
|
|
FdSink to(STDOUT_FILENO);
|
2018-09-25 13:49:20 +03:00
|
|
|
processConnection(openUncachedStore(), from, to, true, "root", 0);
|
2016-09-02 20:30:28 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
daemonLoop(argv);
|
|
|
|
}
|
2018-10-26 12:35:46 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-11-30 21:19:59 +02:00
|
|
|
}
|
2018-10-26 12:35:46 +03:00
|
|
|
|
|
|
|
static RegisterLegacyCommand s1("nix-daemon", _main);
|