]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/spawn-ask-password-agent.c
util: unify how we see srand()
[thirdparty/systemd.git] / src / shared / spawn-ask-password-agent.c
CommitLineData
6bb92a16
LP
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
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
6bb92a16
LP
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
5430f7f2 16 Lesser General Public License for more details.
6bb92a16 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
6bb92a16
LP
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
30#include "log.h"
31#include "util.h"
32#include "spawn-ask-password-agent.h"
33
34static pid_t agent_pid = 0;
35
36int ask_password_agent_open(void) {
37 int r;
38
39 if (agent_pid > 0)
40 return 0;
41
42 /* We check STDIN here, not STDOUT, since this is about input,
43 * not output */
44 if (!isatty(STDIN_FILENO))
45 return 0;
46
9bdc770c
LP
47 r = fork_agent(&agent_pid,
48 NULL, 0,
49 SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH,
50 SYSTEMD_TTY_ASK_PASSWORD_AGENT_BINARY_PATH, "--watch", NULL);
6bb92a16
LP
51 if (r < 0)
52 log_error("Failed to fork TTY ask password agent: %s", strerror(-r));
53
54 return r;
55}
56
57void ask_password_agent_close(void) {
58
59 if (agent_pid <= 0)
60 return;
61
62 /* Inform agent that we are done */
63 kill(agent_pid, SIGTERM);
64 kill(agent_pid, SIGCONT);
65 wait_for_terminate(agent_pid, NULL);
66 agent_pid = 0;
67}