chiark / gitweb /
polkit: when spawning off agent, wait until the agent is fully initialized
[elogind.git] / src / spawn-polkit-agent.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2011 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <sys/types.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include <sys/prctl.h>
27 #include <signal.h>
28 #include <fcntl.h>
29 #include <errno.h>
30 #include <sys/poll.h>
31
32 #include "log.h"
33 #include "util.h"
34 #include "spawn-polkit-agent.h"
35
36 static pid_t agent_pid = 0;
37
38 int polkit_agent_open(void) {
39         int r;
40         int pipe_fd[2];
41         char notify_fd[10 + 1];
42
43         if (agent_pid > 0)
44                 return 0;
45
46         /* We check STDIN here, not STDOUT, since this is about input,
47          * not output */
48         if (!isatty(STDIN_FILENO))
49                 return 0;
50
51         if (pipe2(pipe_fd, 0) < 0)
52                 return -errno;
53
54         snprintf(notify_fd, sizeof(notify_fd), "%i", pipe_fd[1]);
55         char_array_0(notify_fd);
56
57         r = fork_agent(&agent_pid,
58                        &pipe_fd[1], 1,
59                        POLKIT_AGENT_BINARY_PATH,
60                        POLKIT_AGENT_BINARY_PATH, "--notify-fd", notify_fd, NULL);
61
62         /* Close the writing side, because that's the one for the agent */
63         close_nointr_nofail(pipe_fd[1]);
64
65         if (r < 0)
66                 log_error("Failed to fork TTY ask password agent: %s", strerror(-r));
67         else
68                 /* Wait until the agent closes the fd */
69                 fd_wait_for_event(pipe_fd[0], POLLHUP, (usec_t) -1);
70
71         close_nointr_nofail(pipe_fd[0]);
72
73         return r;
74 }
75
76 void polkit_agent_close(void) {
77
78         if (agent_pid <= 0)
79                 return;
80
81         /* Inform agent that we are done */
82         kill(agent_pid, SIGTERM);
83         kill(agent_pid, SIGCONT);
84         wait_for_terminate(agent_pid, NULL);
85         agent_pid = 0;
86 }