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