1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
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
11 (at your option) any later version.
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
16 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
26 #include <sys/prctl.h>
30 #include "process-util.h"
32 #include "terminal-util.h"
34 static pid_t pager_pid = 0;
36 noreturn static void pager_fallback(void) {
40 n = splice(STDIN_FILENO, NULL, STDOUT_FILENO, NULL, 64*1024, 0);
44 log_error_errno(errno, "Internal pager failed: %m");
51 int pager_open(bool jump_to_end) {
60 if ((pager = getenv("SYSTEMD_PAGER")) || (pager = getenv("PAGER")))
61 if (!*pager || streq(pager, "cat"))
67 /* Determine and cache number of columns before we spawn the
68 * pager so that we get the value from the actual tty */
72 return log_error_errno(errno, "Failed to create pager pipe: %m");
74 parent_pid = getpid();
79 log_error_errno(errno, "Failed to fork pager: %m");
84 /* In the child start the pager */
86 const char* less_opts;
88 dup2(fd[0], STDIN_FILENO);
91 less_opts = getenv("SYSTEMD_LESS");
95 less_opts = strjoina(less_opts, " +G");
96 setenv("LESS", less_opts, 1);
98 /* Make sure the pager goes away when the parent dies */
99 if (prctl(PR_SET_PDEATHSIG, SIGTERM) < 0)
102 /* Check whether our parent died before we were able
103 * to set the death signal */
104 if (getppid() != parent_pid)
108 execlp(pager, pager, NULL);
109 execl("/bin/sh", "sh", "-c", pager, NULL);
112 /* Debian's alternatives command for pagers is
113 * called 'pager'. Note that we do not call
114 * sensible-pagers here, since that is just a
115 * shell script that implements a logic that
116 * is similar to this one anyway, but is
117 * Debian-specific. */
118 execlp("pager", "pager", NULL);
120 execlp("less", "less", NULL);
121 execlp("more", "more", NULL);
127 /* Return in the parent */
128 if (dup2(fd[1], STDOUT_FILENO) < 0)
129 return log_error_errno(errno, "Failed to duplicate pager pipe: %m");
135 void pager_close(void) {
140 /* Inform pager that we are done */
142 kill(pager_pid, SIGCONT);
143 (void) wait_for_terminate(pager_pid, NULL);
147 bool pager_have(void) {
148 return pager_pid > 0;
151 int show_man_page(const char *desc, bool null_stdio) {
152 const char *args[4] = { "man", NULL, NULL, NULL };
161 if (desc[k-1] == ')')
162 e = strrchr(desc, '(');
165 char *page = NULL, *section = NULL;
167 page = strndupa(desc, e - desc);
168 section = strndupa(e + 1, desc + k - e - 2);
177 return log_error_errno(errno, "Failed to fork: %m");
182 r = make_null_stdio();
184 log_error_errno(r, "Failed to kill stdio: %m");
189 execvp(args[0], (char**) args);
190 log_error_errno(errno, "Failed to execute man: %m");
194 r = wait_for_terminate(pid, &status);
198 log_debug("Exit code %i status %i", status.si_code, status.si_status);
199 return status.si_status;