1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-25 10:04:04 +03:00

tree-wide: use isatty_safe() more

This commit is contained in:
Lennart Poettering 2024-08-20 10:33:52 +02:00
parent aae47bf7a3
commit 300b7e7620
19 changed files with 36 additions and 32 deletions

View File

@ -33,7 +33,7 @@ int verb_srk(int argc, char *argv[], void *userdata) {
if (r < 0) if (r < 0)
return log_error_errno(r, "Failed to marshal SRK: %m"); return log_error_errno(r, "Failed to marshal SRK: %m");
if (isatty(STDOUT_FILENO)) if (isatty_safe(STDOUT_FILENO))
return log_error_errno(SYNTHETIC_ERRNO(EIO), return log_error_errno(SYNTHETIC_ERRNO(EIO),
"Refusing to write binary data to TTY, please redirect output to file."); "Refusing to write binary data to TTY, please redirect output to file.");

View File

@ -1052,8 +1052,8 @@ bool on_tty(void) {
if (cached_on_tty < 0) if (cached_on_tty < 0)
cached_on_tty = cached_on_tty =
isatty(STDOUT_FILENO) > 0 && isatty_safe(STDOUT_FILENO) &&
isatty(STDERR_FILENO) > 0; isatty_safe(STDERR_FILENO);
return cached_on_tty; return cached_on_tty;
} }

View File

@ -27,6 +27,7 @@
#include "random-util.h" #include "random-util.h"
#include "string-util.h" #include "string-util.h"
#include "strv.h" #include "strv.h"
#include "terminal-util.h"
#include "user-util.h" #include "user-util.h"
#include "utf8.h" #include "utf8.h"
@ -120,7 +121,7 @@ char* getlogname_malloc(void) {
uid_t uid; uid_t uid;
struct stat st; struct stat st;
if (isatty(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0) if (isatty_safe(STDIN_FILENO) && fstat(STDIN_FILENO, &st) >= 0)
uid = st.st_uid; uid = st.st_uid;
else else
uid = getuid(); uid = getuid();

View File

@ -1401,7 +1401,7 @@ static int verb_capture(int argc, char **argv, void *userdata) {
"busctl (systemd) " PROJECT_VERSION_FULL " (Git " GIT_VERSION ")"; "busctl (systemd) " PROJECT_VERSION_FULL " (Git " GIT_VERSION ")";
int r; int r;
if (isatty(STDOUT_FILENO)) if (isatty_safe(STDOUT_FILENO))
return log_error_errno(SYNTHETIC_ERRNO(EINVAL), return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
"Refusing to write message data to console, please redirect output to a file."); "Refusing to write message data to console, please redirect output to a file.");

View File

@ -354,7 +354,7 @@ static int setup_input(
return -errno; return -errno;
/* Try to make this the controlling tty, if it is a tty */ /* Try to make this the controlling tty, if it is a tty */
if (isatty(STDIN_FILENO)) if (isatty_safe(STDIN_FILENO))
(void) ioctl(STDIN_FILENO, TIOCSCTTY, context->std_input == EXEC_INPUT_TTY_FORCE); (void) ioctl(STDIN_FILENO, TIOCSCTTY, context->std_input == EXEC_INPUT_TTY_FORCE);
return STDIN_FILENO; return STDIN_FILENO;

View File

@ -718,7 +718,7 @@ static int parse_argv(int argc, char *argv[]) {
if (!IN_SET(arg_action, ACTION_DISSECT, ACTION_LIST, ACTION_MTREE, ACTION_COPY_FROM, ACTION_COPY_TO, ACTION_DISCOVER, ACTION_VALIDATE) && geteuid() != 0) if (!IN_SET(arg_action, ACTION_DISSECT, ACTION_LIST, ACTION_MTREE, ACTION_COPY_FROM, ACTION_COPY_TO, ACTION_DISCOVER, ACTION_VALIDATE) && geteuid() != 0)
return log_error_errno(SYNTHETIC_ERRNO(EPERM), "Need to be root."); return log_error_errno(SYNTHETIC_ERRNO(EPERM), "Need to be root.");
SET_FLAG(arg_flags, DISSECT_IMAGE_ALLOW_INTERACTIVE_AUTH, isatty(STDIN_FILENO)); SET_FLAG(arg_flags, DISSECT_IMAGE_ALLOW_INTERACTIVE_AUTH, isatty_safe(STDIN_FILENO));
return 1; return 1;
} }
@ -1639,7 +1639,7 @@ static int action_list_or_mtree_or_copy_or_make_archive(DissectedImage *m, LoopD
r = sym_archive_write_open_FILE(a, f); r = sym_archive_write_open_FILE(a, f);
} else { } else {
if (isatty(STDOUT_FILENO)) if (isatty_safe(STDOUT_FILENO))
return log_error_errno(SYNTHETIC_ERRNO(EBADF), "Refusing to write archive to TTY."); return log_error_errno(SYNTHETIC_ERRNO(EBADF), "Refusing to write archive to TTY.");
r = sym_archive_write_open_fd(a, STDOUT_FILENO); r = sym_archive_write_open_fd(a, STDOUT_FILENO);
@ -1999,12 +1999,12 @@ static int action_validate(void) {
if (r < 0) if (r < 0)
return r; return r;
if (isatty(STDOUT_FILENO) && emoji_enabled()) if (isatty_safe(STDOUT_FILENO) && emoji_enabled())
printf("%s ", special_glyph(SPECIAL_GLYPH_SPARKLES)); printf("%s ", special_glyph(SPECIAL_GLYPH_SPARKLES));
printf("%sOK%s", ansi_highlight_green(), ansi_normal()); printf("%sOK%s", ansi_highlight_green(), ansi_normal());
if (isatty(STDOUT_FILENO) && emoji_enabled()) if (isatty_safe(STDOUT_FILENO) && emoji_enabled())
printf(" %s", special_glyph(SPECIAL_GLYPH_SPARKLES)); printf(" %s", special_glyph(SPECIAL_GLYPH_SPARKLES));
putc('\n', stdout); putc('\n', stdout);

View File

@ -36,7 +36,7 @@ static int run(int argc, char *argv[]) {
* daemon when it comes to logging hence LOG_TARGET_AUTO won't do the right thing for * daemon when it comes to logging hence LOG_TARGET_AUTO won't do the right thing for
* us. Hence explicitly log to the console if we're started from a console or to kmsg * us. Hence explicitly log to the console if we're started from a console or to kmsg
* otherwise. */ * otherwise. */
log_target = isatty(STDERR_FILENO) ? LOG_TARGET_CONSOLE : LOG_TARGET_KMSG; log_target = isatty_safe(STDERR_FILENO) ? LOG_TARGET_CONSOLE : LOG_TARGET_KMSG;
log_set_prohibit_ipc(true); /* better safe than sorry */ log_set_prohibit_ipc(true); /* better safe than sorry */
log_set_target(log_target); log_set_target(log_target);

View File

@ -290,7 +290,7 @@ static int handle_arg_console(const char *arg) {
else if (streq(arg, "passive")) else if (streq(arg, "passive"))
arg_console_mode = CONSOLE_PASSIVE; arg_console_mode = CONSOLE_PASSIVE;
else if (streq(arg, "pipe")) { else if (streq(arg, "pipe")) {
if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) if (isatty_safe(STDIN_FILENO) && isatty(STDOUT_FILENO))
log_full(arg_quiet ? LOG_DEBUG : LOG_NOTICE, log_full(arg_quiet ? LOG_DEBUG : LOG_NOTICE,
"Console mode 'pipe' selected, but standard input/output are connected to an interactive TTY. " "Console mode 'pipe' selected, but standard input/output are connected to an interactive TTY. "
"Most likely you want to use 'interactive' console mode for proper interactivity and shell job control. " "Most likely you want to use 'interactive' console mode for proper interactivity and shell job control. "
@ -298,7 +298,7 @@ static int handle_arg_console(const char *arg) {
arg_console_mode = CONSOLE_PIPE; arg_console_mode = CONSOLE_PIPE;
} else if (streq(arg, "autopipe")) { } else if (streq(arg, "autopipe")) {
if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) if (isatty_safe(STDIN_FILENO) && isatty(STDOUT_FILENO))
arg_console_mode = CONSOLE_INTERACTIVE; arg_console_mode = CONSOLE_INTERACTIVE;
else else
arg_console_mode = CONSOLE_PIPE; arg_console_mode = CONSOLE_PIPE;
@ -5883,7 +5883,7 @@ static int run(int argc, char *argv[]) {
umask(0022); umask(0022);
if (arg_console_mode < 0) if (arg_console_mode < 0)
arg_console_mode = isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) ? arg_console_mode = isatty_safe(STDIN_FILENO) && isatty(STDOUT_FILENO) ?
CONSOLE_INTERACTIVE : CONSOLE_READ_ONLY; CONSOLE_INTERACTIVE : CONSOLE_READ_ONLY;
if (arg_console_mode == CONSOLE_PIPE) /* if we pass STDERR on to the container, don't add our own logs into it too */ if (arg_console_mode == CONSOLE_PIPE) /* if we pass STDERR on to the container, don't add our own logs into it too */

View File

@ -7701,7 +7701,7 @@ static int parse_argv(int argc, char *argv[]) {
return log_oom(); return log_oom();
} }
if (arg_pretty < 0 && isatty(STDOUT_FILENO)) if (arg_pretty < 0 && isatty_safe(STDOUT_FILENO))
arg_pretty = true; arg_pretty = true;
if (arg_architecture >= 0) { if (arg_architecture >= 0) {

View File

@ -674,7 +674,7 @@ static int parse_argv(int argc, char *argv[]) {
/* If we both --pty and --pipe are specified we'll automatically pick --pty if we are connected fully /* If we both --pty and --pipe are specified we'll automatically pick --pty if we are connected fully
* to a TTY and pick direct fd passing otherwise. This way, we automatically adapt to usage in a shell * to a TTY and pick direct fd passing otherwise. This way, we automatically adapt to usage in a shell
* pipeline, but we are neatly interactive with tty-level isolation otherwise. */ * pipeline, but we are neatly interactive with tty-level isolation otherwise. */
arg_stdio = isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) ? arg_stdio = isatty_safe(STDIN_FILENO) && isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) ?
ARG_STDIO_PTY : ARG_STDIO_PTY :
ARG_STDIO_DIRECT; ARG_STDIO_DIRECT;
@ -908,7 +908,7 @@ static int parse_argv_sudo_mode(int argc, char *argv[]) {
arg_wait = true; arg_wait = true;
arg_aggressive_gc = true; arg_aggressive_gc = true;
arg_stdio = isatty(STDIN_FILENO) && isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) ? ARG_STDIO_PTY : ARG_STDIO_DIRECT; arg_stdio = isatty_safe(STDIN_FILENO) && isatty(STDOUT_FILENO) && isatty(STDERR_FILENO) ? ARG_STDIO_PTY : ARG_STDIO_DIRECT;
arg_expand_environment = false; arg_expand_environment = false;
arg_send_sighup = true; arg_send_sighup = true;
@ -1176,7 +1176,7 @@ static int transient_service_set_properties(sd_bus_message *m, const char *pty_p
if (r < 0) if (r < 0)
return bus_log_create_error(r); return bus_log_create_error(r);
send_term = isatty(STDIN_FILENO) || isatty(STDOUT_FILENO) || isatty(STDERR_FILENO); send_term = isatty_safe(STDIN_FILENO) || isatty(STDOUT_FILENO) || isatty(STDERR_FILENO);
} }
if (send_term) { if (send_term) {

View File

@ -8,6 +8,7 @@
#include "exec-util.h" #include "exec-util.h"
#include "log.h" #include "log.h"
#include "process-util.h" #include "process-util.h"
#include "terminal-util.h"
static pid_t agent_pid = 0; static pid_t agent_pid = 0;
@ -17,9 +18,8 @@ int ask_password_agent_open(void) {
if (agent_pid > 0) if (agent_pid > 0)
return 0; return 0;
/* We check STDIN here, not STDOUT, since this is about input, /* We check STDIN here, not STDOUT, since this is about input, not output */
* not output */ if (!isatty_safe(STDIN_FILENO))
if (!isatty(STDIN_FILENO))
return 0; return 0;
if (!is_main_thread()) if (!is_main_thread())

View File

@ -988,14 +988,14 @@ int ask_password_auto(
if (FLAGS_SET(flags, ASK_PASSWORD_ACCEPT_CACHED) && if (FLAGS_SET(flags, ASK_PASSWORD_ACCEPT_CACHED) &&
req && req->keyring && req && req->keyring &&
(FLAGS_SET(flags, ASK_PASSWORD_NO_TTY) || !isatty(STDIN_FILENO)) && (FLAGS_SET(flags, ASK_PASSWORD_NO_TTY) || !isatty_safe(STDIN_FILENO)) &&
FLAGS_SET(flags, ASK_PASSWORD_NO_AGENT)) { FLAGS_SET(flags, ASK_PASSWORD_NO_AGENT)) {
r = ask_password_keyring(req, flags, ret); r = ask_password_keyring(req, flags, ret);
if (r != -ENOKEY) if (r != -ENOKEY)
return r; return r;
} }
if (!FLAGS_SET(flags, ASK_PASSWORD_NO_TTY) && isatty(STDIN_FILENO)) if (!FLAGS_SET(flags, ASK_PASSWORD_NO_TTY) && isatty_safe(STDIN_FILENO))
return ask_password_tty(-EBADF, req, until, flags, NULL, ret); return ask_password_tty(-EBADF, req, until, flags, NULL, ret);
if (!FLAGS_SET(flags, ASK_PASSWORD_NO_AGENT)) if (!FLAGS_SET(flags, ASK_PASSWORD_NO_AGENT))

View File

@ -555,8 +555,8 @@ int _fork_agent(const char *name, const int except[], size_t n_except, pid_t *re
/* In the child: */ /* In the child: */
stdout_is_tty = isatty(STDOUT_FILENO); stdout_is_tty = isatty_safe(STDOUT_FILENO);
stderr_is_tty = isatty(STDERR_FILENO); stderr_is_tty = isatty_safe(STDERR_FILENO);
if (!stdout_is_tty || !stderr_is_tty) { if (!stdout_is_tty || !stderr_is_tty) {
int fd; int fd;

View File

@ -2391,7 +2391,7 @@ int table_print(Table *t, FILE *f) {
if (t->width != 0 && t->width != SIZE_MAX) if (t->width != 0 && t->width != SIZE_MAX)
table_effective_width = t->width; table_effective_width = t->width;
else if (t->width == 0 || else if (t->width == 0 ||
((pass > 0 || !any_soft) && (pager_have() || !isatty(STDOUT_FILENO)))) ((pass > 0 || !any_soft) && (pager_have() || !isatty_safe(STDOUT_FILENO))))
table_effective_width = table_requested_width; table_effective_width = table_requested_width;
else else
table_effective_width = MIN(table_requested_width, columns()); table_effective_width = MIN(table_requested_width, columns());

View File

@ -14,6 +14,7 @@
#include "polkit-agent.h" #include "polkit-agent.h"
#include "process-util.h" #include "process-util.h"
#include "stdio-util.h" #include "stdio-util.h"
#include "terminal-util.h"
#include "time-util.h" #include "time-util.h"
#if ENABLE_POLKIT #if ENABLE_POLKIT
@ -31,7 +32,7 @@ int polkit_agent_open(void) {
return 0; return 0;
/* We check STDIN here, not STDOUT, since this is about input, not output */ /* We check STDIN here, not STDOUT, since this is about input, not output */
if (!isatty(STDIN_FILENO)) if (!isatty_safe(STDIN_FILENO))
return 0; return 0;
if (!is_main_thread()) if (!is_main_thread())

View File

@ -1065,7 +1065,7 @@ static int on_display_refresh(sd_event_source *s, uint64_t usec, void *userdata)
c->display_refresh_scheduled = false; c->display_refresh_scheduled = false;
if (isatty(STDERR_FILENO)) if (isatty_safe(STDERR_FILENO))
fputs(ANSI_HOME_CLEAR, stderr); fputs(ANSI_HOME_CLEAR, stderr);
/* If we have both IPv4 and IPv6, we display IPv4 info via Plymouth, since it doesn't have much /* If we have both IPv4 and IPv6, we display IPv4 info via Plymouth, since it doesn't have much
@ -1247,7 +1247,7 @@ static int run(int argc, char* argv[]) {
if (r < 0) if (r < 0)
return log_error_errno(r, "Failed to subscribe to RTM_DELADDR events: %m"); return log_error_errno(r, "Failed to subscribe to RTM_DELADDR events: %m");
if (isatty(STDIN_FILENO)) if (isatty_safe(STDIN_FILENO))
log_info("Hit Ctrl-C to exit target mode."); log_info("Hit Ctrl-C to exit target mode.");
_unused_ _cleanup_(notify_on_cleanup) const char *notify_message = _unused_ _cleanup_(notify_on_cleanup) const char *notify_message =

View File

@ -7,6 +7,7 @@
#include "json-util.h" #include "json-util.h"
#include "string-util.h" #include "string-util.h"
#include "strv.h" #include "strv.h"
#include "terminal-util.h"
#include "tests.h" #include "tests.h"
#include "time-util.h" #include "time-util.h"
@ -562,7 +563,7 @@ TEST(table) {
assert_se(table_format(t, &formatted) >= 0); assert_se(table_format(t, &formatted) >= 0);
printf("%s\n", formatted); printf("%s\n", formatted);
if (isatty(STDOUT_FILENO)) if (isatty_safe(STDOUT_FILENO))
assert_se(streq(formatted, assert_se(streq(formatted,
"no a long f… no a long f… a long fi…\n" "no a long f… no a long f… a long fi…\n"
"no fäää no fäää fäää\n" "no fäää no fäää fäää\n"

View File

@ -504,7 +504,7 @@ static int verb_call(int argc, char *argv[], void *userdata) {
/* <argv[4]> is correct, as dispatch_verb() shifts arguments by one for the verb. */ /* <argv[4]> is correct, as dispatch_verb() shifts arguments by one for the verb. */
r = sd_json_parse_with_source(parameter, source, 0, &jp, &line, &column); r = sd_json_parse_with_source(parameter, source, 0, &jp, &line, &column);
} else { } else {
if (isatty(STDIN_FILENO) > 0 && !arg_quiet) if (isatty_safe(STDIN_FILENO) && !arg_quiet)
log_notice("Expecting method call parameter JSON object on standard input. (Provide empty string or {} for no parameters.)"); log_notice("Expecting method call parameter JSON object on standard input. (Provide empty string or {} for no parameters.)");
source = "<stdin>"; source = "<stdin>";

View File

@ -12,6 +12,7 @@
#include "process-util.h" #include "process-util.h"
#include "socket-util.h" #include "socket-util.h"
#include "string-util.h" #include "string-util.h"
#include "terminal-util.h"
#include "vmspawn-register.h" #include "vmspawn-register.h"
#include "varlink-util.h" #include "varlink-util.h"
@ -73,7 +74,7 @@ int register_machine(
SD_JSON_BUILD_PAIR_CONDITION(!!directory, "rootDirectory", SD_JSON_BUILD_STRING(directory)), SD_JSON_BUILD_PAIR_CONDITION(!!directory, "rootDirectory", SD_JSON_BUILD_STRING(directory)),
SD_JSON_BUILD_PAIR_CONDITION(!!address, "sshAddress", SD_JSON_BUILD_STRING(address)), SD_JSON_BUILD_PAIR_CONDITION(!!address, "sshAddress", SD_JSON_BUILD_STRING(address)),
SD_JSON_BUILD_PAIR_CONDITION(!!key_path, "sshPrivateKeyPath", SD_JSON_BUILD_STRING(key_path)), SD_JSON_BUILD_PAIR_CONDITION(!!key_path, "sshPrivateKeyPath", SD_JSON_BUILD_STRING(key_path)),
SD_JSON_BUILD_PAIR_CONDITION(isatty(STDIN_FILENO), "allowInteractiveAuthentication", SD_JSON_BUILD_BOOLEAN(true)), SD_JSON_BUILD_PAIR_CONDITION(isatty_safe(STDIN_FILENO), "allowInteractiveAuthentication", SD_JSON_BUILD_BOOLEAN(true)),
SD_JSON_BUILD_PAIR_CONDITION(!keep_unit, "allocateUnit", SD_JSON_BUILD_BOOLEAN(true))); SD_JSON_BUILD_PAIR_CONDITION(!keep_unit, "allocateUnit", SD_JSON_BUILD_BOOLEAN(true)));
} }