1
0
mirror of https://github.com/systemd/systemd.git synced 2025-09-10 21:45:06 +03:00

execute: also hook up ansi-seq-based terminal size determination with exec_context_determine_size()

And while we are at it, merge exec_context_determine_tty_size() +
exec_context_apply_tty_size().

Let's simplify things, and merge the two funcs, since the latter just
does one more call.

At the same time, let's make sure we actually allow passing separate
input/output fds.
This commit is contained in:
Lennart Poettering
2024-07-11 11:29:15 +02:00
parent 967bcc6e26
commit 3f2e8e951a
3 changed files with 29 additions and 25 deletions

View File

@@ -360,7 +360,7 @@ static int setup_input(
if (context->tty_reset) if (context->tty_reset)
(void) terminal_reset_defensive(STDIN_FILENO, /* switch_to_text= */ true); (void) terminal_reset_defensive(STDIN_FILENO, /* switch_to_text= */ true);
(void) exec_context_apply_tty_size(context, STDIN_FILENO, /* tty_path= */ NULL); (void) exec_context_apply_tty_size(context, STDIN_FILENO, STDIN_FILENO, /* tty_path= */ NULL);
} }
return STDIN_FILENO; return STDIN_FILENO;
@@ -389,7 +389,7 @@ static int setup_input(
if (tty_fd < 0) if (tty_fd < 0)
return tty_fd; return tty_fd;
r = exec_context_apply_tty_size(context, tty_fd, tty_path); r = exec_context_apply_tty_size(context, tty_fd, tty_fd, tty_path);
if (r < 0) if (r < 0)
return r; return r;
@@ -679,7 +679,7 @@ static int setup_confirm_stdio(
if (r < 0) if (r < 0)
return r; return r;
r = exec_context_apply_tty_size(context, fd, vc); r = exec_context_apply_tty_size(context, fd, fd, vc);
if (r < 0) if (r < 0)
return r; return r;

View File

@@ -99,46 +99,50 @@ const char* exec_context_tty_path(const ExecContext *context) {
return "/dev/console"; return "/dev/console";
} }
static void exec_context_determine_tty_size( int exec_context_apply_tty_size(
const ExecContext *context, const ExecContext *context,
const char *tty_path, int input_fd,
unsigned *ret_rows, int output_fd,
unsigned *ret_cols) { const char *tty_path) {
unsigned rows, cols; unsigned rows, cols;
int r;
assert(context); assert(context);
assert(ret_rows); assert(input_fd >= 0);
assert(ret_cols); assert(output_fd >= 0);
if (!isatty_safe(output_fd))
return 0;
if (!tty_path) if (!tty_path)
tty_path = exec_context_tty_path(context); tty_path = exec_context_tty_path(context);
/* Preferably use explicitly configured data */
rows = context->tty_rows; rows = context->tty_rows;
cols = context->tty_cols; cols = context->tty_cols;
/* Fill in data from kernel command line if anything is unspecified */
if (tty_path && (rows == UINT_MAX || cols == UINT_MAX)) if (tty_path && (rows == UINT_MAX || cols == UINT_MAX))
(void) proc_cmdline_tty_size( (void) proc_cmdline_tty_size(
tty_path, tty_path,
rows == UINT_MAX ? &rows : NULL, rows == UINT_MAX ? &rows : NULL,
cols == UINT_MAX ? &cols : NULL); cols == UINT_MAX ? &cols : NULL);
*ret_rows = rows; /* If we got nothing so far and we are talking to a physical device, and the TTY reset logic is on,
*ret_cols = cols; * then let's query dimensions from the ANSI driver. */
if (rows == UINT_MAX && cols == UINT_MAX &&
context->tty_reset &&
terminal_is_pty_fd(output_fd) == 0 &&
isatty_safe(input_fd)) {
r = terminal_get_size_by_dsr(input_fd, output_fd, &rows, &cols);
if (r < 0)
log_debug_errno(r, "Failed to get terminal size by DSR, ignoring: %m");
}
return terminal_set_size_fd(output_fd, tty_path, rows, cols);
} }
int exec_context_apply_tty_size(
const ExecContext *context,
int tty_fd,
const char *tty_path) {
unsigned rows, cols;
exec_context_determine_tty_size(context, tty_path, &rows, &cols);
return terminal_set_size_fd(tty_fd, tty_path, rows, cols);
}
void exec_context_tty_reset(const ExecContext *context, const ExecParameters *p) { void exec_context_tty_reset(const ExecContext *context, const ExecParameters *p) {
_cleanup_close_ int _fd = -EBADF, lock_fd = -EBADF; _cleanup_close_ int _fd = -EBADF, lock_fd = -EBADF;
int fd; int fd;
@@ -174,7 +178,7 @@ void exec_context_tty_reset(const ExecContext *context, const ExecParameters *p)
if (context->tty_reset) if (context->tty_reset)
(void) terminal_reset_defensive(fd, /* switch_to_text= */ true); (void) terminal_reset_defensive(fd, /* switch_to_text= */ true);
(void) exec_context_apply_tty_size(context, fd, path); (void) exec_context_apply_tty_size(context, fd, fd, path);
if (context->tty_vt_disallocate && path) if (context->tty_vt_disallocate && path)
(void) vt_disallocate(path); (void) vt_disallocate(path);

View File

@@ -526,7 +526,7 @@ int exec_context_get_clean_directories(ExecContext *c, char **prefix, ExecCleanM
int exec_context_get_clean_mask(ExecContext *c, ExecCleanMask *ret); int exec_context_get_clean_mask(ExecContext *c, ExecCleanMask *ret);
const char* exec_context_tty_path(const ExecContext *context); const char* exec_context_tty_path(const ExecContext *context);
int exec_context_apply_tty_size(const ExecContext *context, int tty_fd, const char *tty_path); int exec_context_apply_tty_size(const ExecContext *context, int input_fd, int output_fd, const char *tty_path);
void exec_context_tty_reset(const ExecContext *context, const ExecParameters *p); void exec_context_tty_reset(const ExecContext *context, const ExecParameters *p);
uint64_t exec_context_get_rlimit(const ExecContext *c, const char *name); uint64_t exec_context_get_rlimit(const ExecContext *c, const char *name);