1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
/*
* This code is in the public domain; do with it what you wish.
*
* Written by Karel Zak <kzak@redhat.com> in Jul 2019
*/
#ifndef UTIL_LINUX_PTY_SESSION_H
#define UTIL_LINUX_PTY_SESSION_H
#include <pty.h>
#include <termios.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/stat.h>
#include <sys/signalfd.h>
/*
* Callbacks -- the first argument is always callback data, see
* ul_pty_set_callback_data().
*/
struct ul_pty_callbacks {
/*
* Optional. Executed on SIGCHLD when ssi_code is EXITED, KILLED or
* DUMPED; The callback has to call ul_pty_set_child(pty, (pid_t) -1)
* if child is no more alive.
*/
void (*child_wait)(void *, pid_t);
/*
* Used when child_wait() undefined to informa about child status
*/
void (*child_die)(void *, pid_t, int);
/*
* Executed on SIGCHLD when ssi_status is SIGSTOP
*/
void (*child_sigstop)(void *, pid_t);
/*
* Executed in master loop before ul_pty enter poll() and in time set by
* ul_pty_set_mainloop_time(). The callback is no used when time is not set.
*/
int (*mainloop)(void *);
/*
* Executed on master or stdin activity, arguments:
* 2nd - file descriptor
* 3rd - buffer with data
* 4th - size of the data
*/
int (*log_stream_activity)(void *, int, char *, size_t);
/*
* Executed on signal, arguments:
* 2nd - signal info
* 3rd - NULL or signal specific data (e.g. struct winsize on SIGWINCH
*/
int (*log_signal)(void *, struct signalfd_siginfo *, void *);
/*
* Executed on SIGUSR1
*/
int (*flush_logs)(void *);
};
struct ul_pty {
struct termios stdin_attrs; /* stdin and slave terminal runtime attributes */
int master; /* parent side */
int slave; /* child side */
int sigfd; /* signalfd() */
int poll_timeout;
struct winsize win; /* terminal window size */
sigset_t orgsig; /* original signal mask */
int delivered_signal;
struct ul_pty_callbacks callbacks;
void *callback_data;
pid_t child;
struct timeval next_callback_time;
struct ul_pty_child_buffer {
struct ul_pty_child_buffer *next;
char buf[BUFSIZ];
size_t size, cursor;
unsigned int final_input:1; /* drain child before writing */
} *child_buffer_head, *child_buffer_tail, *free_buffers;
unsigned int isterm:1, /* is stdin terminal? */
slave_echo:1; /* keep ECHO on pty slave */
};
void ul_pty_init_debug(int mask);
struct ul_pty *ul_new_pty(int is_stdin_tty);
void ul_free_pty(struct ul_pty *pty);
void ul_pty_slave_echo(struct ul_pty *pty, int enable);
int ul_pty_get_delivered_signal(struct ul_pty *pty);
void ul_pty_set_callback_data(struct ul_pty *pty, void *data);
void ul_pty_set_child(struct ul_pty *pty, pid_t child);
struct ul_pty_callbacks *ul_pty_get_callbacks(struct ul_pty *pty);
int ul_pty_is_running(struct ul_pty *pty);
int ul_pty_setup(struct ul_pty *pty);
int ul_pty_signals_setup(struct ul_pty *pty);
void ul_pty_cleanup(struct ul_pty *pty);
int ul_pty_chownmod_slave(struct ul_pty *pty, uid_t uid, gid_t gid, mode_t mode);
void ul_pty_init_slave(struct ul_pty *pty);
int ul_pty_proxy_master(struct ul_pty *pty);
void ul_pty_set_mainloop_time(struct ul_pty *pty, struct timeval *tv);
int ul_pty_get_childfd(struct ul_pty *pty);
void ul_pty_wait_for_child(struct ul_pty *pty);
pid_t ul_pty_get_child(struct ul_pty *pty);
void ul_pty_write_eof_to_child(struct ul_pty *pty);
#endif /* UTIL_LINUX_PTY_H */
|