]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/pager.c
tree-wide: invoke rlimit_nofile_safe() before various exec{v,ve,l}() invocations
[thirdparty/systemd.git] / src / shared / pager.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
1968a360 2
a8fbdf54
TA
3#include <errno.h>
4#include <signal.h>
5#include <stddef.h>
6#include <stdint.h>
7#include <stdio.h>
1968a360 8#include <stdlib.h>
1968a360
LP
9#include <string.h>
10#include <sys/prctl.h>
07630cea 11#include <unistd.h>
1968a360 12
07630cea 13#include "copy.h"
3ffd4af2 14#include "fd-util.h"
6432da6a
ZJS
15#include "fileio.h"
16#include "io-util.h"
8752c575 17#include "locale-util.h"
a8fbdf54 18#include "log.h"
1968a360 19#include "macro.h"
3ffd4af2 20#include "pager.h"
07630cea 21#include "process-util.h"
595225af 22#include "rlimit-util.h"
ce30c8dc 23#include "signal-util.h"
07630cea 24#include "string-util.h"
57c9e047 25#include "strv.h"
07630cea 26#include "terminal-util.h"
1968a360
LP
27
28static pid_t pager_pid = 0;
29
3f603952
LP
30static int stored_stdout = -1;
31static int stored_stderr = -1;
32static bool stdout_redirected = false;
33static bool stderr_redirected = false;
34
848e863a 35_noreturn_ static void pager_fallback(void) {
6a7c676c 36 int r;
46e65dcc 37
1c876927 38 r = copy_bytes(STDIN_FILENO, STDOUT_FILENO, (uint64_t) -1, 0);
6a7c676c
LP
39 if (r < 0) {
40 log_error_errno(r, "Internal pager failed: %m");
4a8e40eb
MS
41 _exit(EXIT_FAILURE);
42 }
46e65dcc 43
4a8e40eb
MS
44 _exit(EXIT_SUCCESS);
45}
46
6432da6a
ZJS
47static int no_quit_on_interrupt(int exe_name_fd, const char *less_opts) {
48 _cleanup_fclose_ FILE *file = NULL;
49 _cleanup_free_ char *line = NULL;
50 int r;
51
52 assert(exe_name_fd >= 0);
53 assert(less_opts);
54
55 /* This takes ownership of exe_name_fd */
56 file = fdopen(exe_name_fd, "r");
57 if (!file) {
58 safe_close(exe_name_fd);
59 return log_debug_errno(errno, "Failed to create FILE object: %m");
60 }
61
62 /* Find the last line */
63 for (;;) {
64 _cleanup_free_ char *t = NULL;
65
66 r = read_line(file, LONG_LINE_MAX, &t);
67 if (r < 0)
68 return r;
69 if (r == 0)
70 break;
71
72 free_and_replace(line, t);
73 }
74
75 /* We only treat "less" specially.
76 * Return true whenever option K is *not* set. */
77 r = streq_ptr(line, "less") && !strchr(less_opts, 'K');
78
79 log_debug("Pager executable is \"%s\", options \"%s\", quit_on_interrupt: %s",
80 strnull(line), less_opts, yes_no(!r));
81 return r;
82}
83
0221d68a 84int pager_open(PagerFlags flags) {
6432da6a 85 _cleanup_close_pair_ int fd[2] = { -1, -1 }, exe_name_pipe[2] = { -1, -1 };
43942e80 86 _cleanup_strv_free_ char **pager_args = NULL;
6432da6a 87 const char *pager, *less_opts;
4c253ed1 88 int r;
1968a360 89
0221d68a 90 if (flags & PAGER_DISABLE)
ea4b98e6
AK
91 return 0;
92
1968a360 93 if (pager_pid > 0)
f89a3b6f 94 return 1;
1968a360 95
ac96418b 96 if (terminal_is_dumb())
f89a3b6f 97 return 0;
729e3769 98
85afeae8
LP
99 if (!is_main_thread())
100 return -EPERM;
101
bcbd61db
LP
102 pager = getenv("SYSTEMD_PAGER");
103 if (!pager)
104 pager = getenv("PAGER");
105
43942e80
YW
106 if (pager) {
107 pager_args = strv_split(pager, WHITESPACE);
108 if (!pager_args)
109 return -ENOMEM;
110
111 /* If the pager is explicitly turned off, honour it */
112 if (strv_isempty(pager_args) || strv_equal(pager_args, STRV_MAKE("cat")))
113 return 0;
114 }
bcbd61db 115
d13b5227
LP
116 /* Determine and cache number of columns/lines before we spawn the pager so that we get the value from the
117 * actual tty */
bcbd61db 118 (void) columns();
d13b5227 119 (void) lines();
1968a360 120
d262e99e 121 if (pipe2(fd, O_CLOEXEC) < 0)
4a62c710 122 return log_error_errno(errno, "Failed to create pager pipe: %m");
1968a360 123
6432da6a
ZJS
124 /* This is a pipe to feed the name of the executed pager binary into the parent */
125 if (pipe2(exe_name_pipe, O_CLOEXEC) < 0)
126 return log_error_errno(errno, "Failed to create exe_name pipe: %m");
127
128 /* Initialize a good set of less options */
129 less_opts = getenv("SYSTEMD_LESS");
130 if (!less_opts)
131 less_opts = "FRSXMK";
132 if (flags & PAGER_JUMP_TO_END)
133 less_opts = strjoina(less_opts, " +G");
134
b6e1fff1 135 r = safe_fork("(pager)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_LOG, &pager_pid);
4c253ed1 136 if (r < 0)
b6e1fff1 137 return r;
4c253ed1 138 if (r == 0) {
6432da6a 139 const char *less_charset, *exe;
1968a360 140
4c253ed1 141 /* In the child start the pager */
ce30c8dc 142
bcbd61db 143 (void) dup2(fd[0], STDIN_FILENO);
3d94f76c 144 safe_close_pair(fd);
1968a360 145
0357fa0d
ZJS
146 if (setenv("LESS", less_opts, 1) < 0)
147 _exit(EXIT_FAILURE);
1968a360 148
a1b4e6e9
LP
149 /* Initialize a good charset for less. This is
150 * particularly important if we output UTF-8
151 * characters. */
152 less_charset = getenv("SYSTEMD_LESSCHARSET");
153 if (!less_charset && is_locale_utf8())
154 less_charset = "utf-8";
0357fa0d
ZJS
155 if (less_charset &&
156 setenv("LESSCHARSET", less_charset, 1) < 0)
157 _exit(EXIT_FAILURE);
a1b4e6e9 158
6432da6a
ZJS
159 if (pager_args) {
160 if (loop_write(exe_name_pipe[1], pager_args[0], strlen(pager_args[0]) + 1, false) < 0)
161 _exit(EXIT_FAILURE);
162
43942e80 163 execvp(pager_args[0], pager_args);
6432da6a 164 }
1968a360
LP
165
166 /* Debian's alternatives command for pagers is
167 * called 'pager'. Note that we do not call
168 * sensible-pagers here, since that is just a
169 * shell script that implements a logic that
170 * is similar to this one anyway, but is
171 * Debian-specific. */
6432da6a
ZJS
172 FOREACH_STRING(exe, "pager", "less", "more") {
173 if (loop_write(exe_name_pipe[1], exe, strlen(exe) + 1, false) < 0)
174 _exit(EXIT_FAILURE);
175 execlp(exe, exe, NULL);
176 }
1968a360 177
6432da6a
ZJS
178 if (loop_write(exe_name_pipe[1], "(built-in)", strlen("(built-in") + 1, false) < 0)
179 _exit(EXIT_FAILURE);
4a8e40eb
MS
180 pager_fallback();
181 /* not reached */
1968a360
LP
182 }
183
184 /* Return in the parent */
a45e7bb4
MS
185 stored_stdout = fcntl(STDOUT_FILENO, F_DUPFD_CLOEXEC, 3);
186 if (dup2(fd[1], STDOUT_FILENO) < 0) {
187 stored_stdout = safe_close(stored_stdout);
4a62c710 188 return log_error_errno(errno, "Failed to duplicate pager pipe: %m");
a45e7bb4
MS
189 }
190 stdout_redirected = true;
191
192 stored_stderr = fcntl(STDERR_FILENO, F_DUPFD_CLOEXEC, 3);
193 if (dup2(fd[1], STDERR_FILENO) < 0) {
194 stored_stderr = safe_close(stored_stderr);
8b5264aa 195 return log_error_errno(errno, "Failed to duplicate pager pipe: %m");
a45e7bb4
MS
196 }
197 stderr_redirected = true;
1968a360 198
6432da6a
ZJS
199 exe_name_pipe[1] = safe_close(exe_name_pipe[1]);
200
201 r = no_quit_on_interrupt(TAKE_FD(exe_name_pipe[0]), less_opts);
202 if (r < 0)
203 return r;
204 if (r > 0)
205 (void) ignore_signals(SIGINT, -1);
206
f89a3b6f 207 return 1;
1968a360
LP
208}
209
210void pager_close(void) {
211
212 if (pager_pid <= 0)
213 return;
214
215 /* Inform pager that we are done */
a45e7bb4 216 (void) fflush(stdout);
77018a8c
MS
217 if (stdout_redirected)
218 if (stored_stdout < 0 || dup2(stored_stdout, STDOUT_FILENO) < 0)
219 (void) close(STDOUT_FILENO);
a45e7bb4
MS
220 stored_stdout = safe_close(stored_stdout);
221 (void) fflush(stderr);
77018a8c
MS
222 if (stderr_redirected)
223 if (stored_stderr < 0 || dup2(stored_stderr, STDERR_FILENO) < 0)
224 (void) close(STDERR_FILENO);
a45e7bb4
MS
225 stored_stderr = safe_close(stored_stderr);
226 stdout_redirected = stderr_redirected = false;
8b5264aa 227
74ca738f 228 (void) kill(pager_pid, SIGCONT);
c73d180d 229 (void) wait_for_terminate(pager_pid, NULL);
1968a360
LP
230 pager_pid = 0;
231}
f89a3b6f
LP
232
233bool pager_have(void) {
234 return pager_pid > 0;
235}
78002a67
ZJS
236
237int show_man_page(const char *desc, bool null_stdio) {
238 const char *args[4] = { "man", NULL, NULL, NULL };
239 char *e = NULL;
240 pid_t pid;
241 size_t k;
242 int r;
78002a67
ZJS
243
244 k = strlen(desc);
245
246 if (desc[k-1] == ')')
247 e = strrchr(desc, '(');
248
249 if (e) {
250 char *page = NULL, *section = NULL;
251
252 page = strndupa(desc, e - desc);
253 section = strndupa(e + 1, desc + k - e - 2);
254
255 args[1] = section;
256 args[2] = page;
257 } else
258 args[1] = desc;
259
b6e1fff1 260 r = safe_fork("(man)", FORK_RESET_SIGNALS|FORK_DEATHSIG|(null_stdio ? FORK_NULL_STDIO : 0)|FORK_LOG, &pid);
4c253ed1 261 if (r < 0)
b6e1fff1 262 return r;
4c253ed1 263 if (r == 0) {
78002a67 264 /* Child */
78002a67 265 execvp(args[0], (char**) args);
56f64d95 266 log_error_errno(errno, "Failed to execute man: %m");
78002a67
ZJS
267 _exit(EXIT_FAILURE);
268 }
269
2e87a1fd 270 return wait_for_terminate_and_check(NULL, pid, 0);
78002a67 271}