2 This file is part of systemd.
4 Copyright 2010 Lennart Poettering
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.
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.
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/>.
27 #include <sys/prctl.h>
32 #include "locale-util.h"
36 #include "process-util.h"
37 #include "signal-util.h"
38 #include "string-util.h"
39 #include "terminal-util.h"
41 static pid_t pager_pid = 0;
43 noreturn static void pager_fallback(void) {
46 r = copy_bytes(STDIN_FILENO, STDOUT_FILENO, (uint64_t) -1, false);
48 log_error_errno(r, "Internal pager failed: %m");
55 int pager_open(bool no_pager, bool jump_to_end) {
56 _cleanup_close_pair_ int fd[2] = { -1, -1 };
69 pager = getenv("SYSTEMD_PAGER");
71 pager = getenv("PAGER");
73 /* If the pager is explicitly turned off, honour it */
74 if (pager && (pager[0] == 0 || streq(pager, "cat")))
77 /* Determine and cache number of columns before we spawn the
78 * pager so that we get the value from the actual tty */
82 return log_error_errno(errno, "Failed to create pager pipe: %m");
84 parent_pid = getpid();
88 return log_error_errno(errno, "Failed to fork pager: %m");
90 /* In the child start the pager */
92 const char* less_opts, *less_charset;
94 (void) reset_all_signal_handlers();
95 (void) reset_signal_mask();
97 (void) dup2(fd[0], STDIN_FILENO);
100 /* Initialize a good set of less options */
101 less_opts = getenv("SYSTEMD_LESS");
103 less_opts = "FRSXMK";
105 less_opts = strjoina(less_opts, " +G");
106 setenv("LESS", less_opts, 1);
108 /* Initialize a good charset for less. This is
109 * particularly important if we output UTF-8
111 less_charset = getenv("SYSTEMD_LESSCHARSET");
112 if (!less_charset && is_locale_utf8())
113 less_charset = "utf-8";
115 setenv("LESSCHARSET", less_charset, 1);
117 /* Make sure the pager goes away when the parent dies */
118 if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0)
121 /* Check whether our parent died before we were able
122 * to set the death signal */
123 if (getppid() != parent_pid)
127 execlp(pager, pager, NULL);
128 execl("/bin/sh", "sh", "-c", pager, NULL);
131 /* Debian's alternatives command for pagers is
132 * called 'pager'. Note that we do not call
133 * sensible-pagers here, since that is just a
134 * shell script that implements a logic that
135 * is similar to this one anyway, but is
136 * Debian-specific. */
137 execlp("pager", "pager", NULL);
139 execlp("less", "less", NULL);
140 execlp("more", "more", NULL);
146 /* Return in the parent */
147 if (dup2(fd[1], STDOUT_FILENO) < 0)
148 return log_error_errno(errno, "Failed to duplicate pager pipe: %m");
149 if (dup2(fd[1], STDERR_FILENO) < 0)
150 return log_error_errno(errno, "Failed to duplicate pager pipe: %m");
155 void pager_close(void) {
160 /* Inform pager that we are done */
161 stdout = safe_fclose(stdout);
162 stderr = safe_fclose(stderr);
164 (void) kill(pager_pid, SIGCONT);
165 (void) wait_for_terminate(pager_pid, NULL);
169 bool pager_have(void) {
170 return pager_pid > 0;
173 #if 0 /// UNNEEDED by elogind
174 int show_man_page(const char *desc, bool null_stdio) {
175 const char *args[4] = { "man", NULL, NULL, NULL };
184 if (desc[k-1] == ')')
185 e = strrchr(desc, '(');
188 char *page = NULL, *section = NULL;
190 page = strndupa(desc, e - desc);
191 section = strndupa(e + 1, desc + k - e - 2);
200 return log_error_errno(errno, "Failed to fork: %m");
205 (void) reset_all_signal_handlers();
206 (void) reset_signal_mask();
209 r = make_null_stdio();
211 log_error_errno(r, "Failed to kill stdio: %m");
216 execvp(args[0], (char**) args);
217 log_error_errno(errno, "Failed to execute man: %m");
221 r = wait_for_terminate(pid, &status);
225 log_debug("Exit code %i status %i", status.si_code, status.si_status);
226 return status.si_status;