]> git.proxmox.com Git - systemd.git/blame - src/quotacheck/quotacheck.c
Merge tag 'upstream/229'
[systemd.git] / src / quotacheck / quotacheck.c
CommitLineData
663996b3
MS
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
663996b3 20#include <errno.h>
db2df898
MP
21#include <stdbool.h>
22#include <stdio.h>
86f210e9 23#include <sys/prctl.h>
db2df898 24#include <unistd.h>
663996b3 25
db2df898 26#include "proc-cmdline.h"
e3bff60a 27#include "process-util.h"
86f210e9 28#include "signal-util.h"
db2df898
MP
29#include "string-util.h"
30#include "util.h"
663996b3
MS
31
32static bool arg_skip = false;
33static bool arg_force = false;
34
60f067b4 35static int parse_proc_cmdline_item(const char *key, const char *value) {
663996b3 36
60f067b4 37 if (streq(key, "quotacheck.mode") && value) {
663996b3 38
60f067b4 39 if (streq(value, "auto"))
663996b3 40 arg_force = arg_skip = false;
60f067b4 41 else if (streq(value, "force"))
663996b3 42 arg_force = true;
60f067b4 43 else if (streq(value, "skip"))
663996b3 44 arg_skip = true;
60f067b4 45 else
e842803a
MB
46 log_warning("Invalid quotacheck.mode= parameter '%s'. Ignoring.", value);
47 }
60f067b4 48
663996b3 49#ifdef HAVE_SYSV_COMPAT
60f067b4
JS
50 else if (streq(key, "forcequotacheck") && !value) {
51 log_warning("Please use 'quotacheck.mode=force' rather than 'forcequotacheck' on the kernel command line.");
52 arg_force = true;
663996b3 53 }
60f067b4
JS
54#endif
55
663996b3
MS
56 return 0;
57}
58
59static void test_files(void) {
e842803a 60
663996b3
MS
61#ifdef HAVE_SYSV_COMPAT
62 if (access("/forcequotacheck", F_OK) >= 0) {
63 log_error("Please pass 'quotacheck.mode=force' on the kernel command line rather than creating /forcequotacheck on the root file system.");
64 arg_force = true;
65 }
66#endif
67}
68
69int main(int argc, char *argv[]) {
70
71 static const char * const cmdline[] = {
72 QUOTACHECK,
73 "-anug",
74 NULL
75 };
76
77 pid_t pid;
f47781d8 78 int r;
663996b3
MS
79
80 if (argc > 1) {
81 log_error("This program takes no arguments.");
82 return EXIT_FAILURE;
83 }
84
85 log_set_target(LOG_TARGET_AUTO);
86 log_parse_environment();
87 log_open();
88
89 umask(0022);
90
f47781d8
MP
91 r = parse_proc_cmdline(parse_proc_cmdline_item);
92 if (r < 0)
93 log_warning_errno(r, "Failed to parse kernel command line, ignoring: %m");
94
663996b3
MS
95 test_files();
96
97 if (!arg_force) {
98 if (arg_skip)
99 return EXIT_SUCCESS;
100
101 if (access("/run/systemd/quotacheck", F_OK) < 0)
102 return EXIT_SUCCESS;
103 }
104
105 pid = fork();
106 if (pid < 0) {
f47781d8 107 log_error_errno(errno, "fork(): %m");
663996b3
MS
108 return EXIT_FAILURE;
109 } else if (pid == 0) {
86f210e9 110
663996b3 111 /* Child */
86f210e9
MP
112
113 (void) reset_all_signal_handlers();
114 (void) reset_signal_mask();
115 assert_se(prctl(PR_SET_PDEATHSIG, SIGTERM) == 0);
116
663996b3
MS
117 execv(cmdline[0], (char**) cmdline);
118 _exit(1); /* Operational error */
119 }
120
f47781d8
MP
121 r = wait_for_terminate_and_warn("quotacheck", pid, true);
122
123 return r < 0 ? EXIT_FAILURE : EXIT_SUCCESS;
663996b3 124}