forked from danielinux/ttybus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtty_fake.c
183 lines (160 loc) · 4.44 KB
/
tty_fake.c
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#define _GNU_SOURCE
#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netinet/in.h>
#include <signal.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/poll.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/un.h>
#include <time.h>
#include <unistd.h>
#include "configure.h"
#define MAX_TTY 256
#define BUFFER_SIZE 4096
#define POLL_R_TIMEOUT 100
#define POLL_W_TIMEOUT 50
static char *ttyfake;
static char *tty_bus_path;
static char *ttybak;
static int force_overwrite = 0;
static void usage(char *app) {
fprintf(stderr, "%s, Ver %s.%s.%s\n", basename(app), MAJORV, MINORV, SVNVERSION);
fprintf(stderr, "Usage: %s [-h] [-s bus_path] tty_device\n", app);
fprintf(stderr, "-h: shows this help\n");
fprintf(stderr, "-d: detach from terminal and run as daemon\n");
fprintf(stderr, "-s bus_path: uses bus_path as bus path name (default: /tmp/ttybus)\n");
fprintf(stderr, "-o: temporarly backup tty_device to tty_device.bak, if it exists, and restore the original file at exit\n");
exit(2);
}
int tty_connect(char *path) {
struct sockaddr_un sun;
int connect_fd = socket(PF_UNIX, SOCK_STREAM, 0);
memset(&sun, 0, sizeof(struct sockaddr_un));
sun.sun_family = AF_UNIX;
strncpy(sun.sun_path, path, strlen(path));
if (connect(connect_fd, (struct sockaddr *) &sun, sizeof(sun)) < 0) {
perror("Cannot connect to socket");
exit(-1);
}
return connect_fd;
}
static void _tty_restore(void) {
fprintf(stderr, "Restoring original device\n");
unlink(ttyfake);
link(ttybak, ttyfake);
unlink(ttybak);
}
static void tty_restore(int __attribute__((unused)) signo) {
exit(0);
}
int main(int argc, char *argv[]) {
int fd;
struct pollfd pfd[2];
int pollret, r;
char buffer[BUFFER_SIZE];
char *pts;
int ptmx;
int daemonize = 0;
while (1) {
int c;
c = getopt(argc, argv, "dhos:");
if (c == -1)
break;
switch (c) {
case 'd':
daemonize = 1;
break;
case 'h':
usage(argv[0]); // implies exit
break;
case 's':
tty_bus_path = strdup(optarg);
break;
case 'o':
force_overwrite = 1;
break;
default:
usage(argv[0]); // implies exit
}
}
if (optind != (argc - 1))
usage(argv[0]); // implies exit
if (daemonize)
daemon(0, 0);
ttyfake = strdup(argv[optind]);
if (access(ttyfake, W_OK) == 0) {
if (force_overwrite) {
ttybak = malloc(strlen(ttyfake) + 5);
sprintf(ttybak, "%s.bak", ttyfake);
unlink(ttybak);
link(ttyfake, ttybak);
unlink(ttyfake);
atexit(_tty_restore);
sigset(SIGTERM, tty_restore);
sigset(SIGINT, tty_restore);
sigset(SIGUSR1, tty_restore);
sigset(SIGUSR2, tty_restore);
} else {
fprintf(stderr, "%s already exists! use -o to force overwrite\n", ttyfake);
exit(1);
}
}
if (!tty_bus_path)
tty_bus_path = strdup("/tmp/ttybus");
fprintf(stderr, "Connecting to bus: %s\n", tty_bus_path);
fd = tty_connect(tty_bus_path);
ptmx = open("/dev/ptmx", O_RDWR);
pts = (char *) ptsname(ptmx);
fprintf(stderr, "Device: %s is now %s\n", pts, ttyfake);
grantpt(ptmx);
unlockpt(ptmx);
symlink(pts, ttyfake);
chmod(pts, 00777);
for (;;) {
pfd[0].fd = ptmx;
pfd[0].events = POLLIN;
pfd[1].fd = fd;
pfd[1].events = POLLIN;
pollret = poll(pfd, 2, 1000);
if (pollret < 0) {
fprintf(stderr, "Poll error: %s\n", strerror(errno));
exit(1);
}
if (pollret == 0)
continue;
if ((pfd[0].revents & POLLHUP || pfd[0].revents & POLLERR || pfd[0].revents & POLLNVAL) ||
(pfd[1].revents & POLLHUP || pfd[1].revents & POLLERR || pfd[1].revents & POLLNVAL))
exit(1);
if (pfd[0].revents & POLLIN) {
r = read(ptmx, buffer, BUFFER_SIZE);
pfd[1].events = POLLOUT;
pollret = poll(&pfd[1], 1, 50);
if (pollret < 0) {
fprintf(stderr, "Poll error: %s\n", strerror(errno));
exit(1);
}
if (pfd[1].revents & POLLOUT)
write(fd, buffer, r);
}
if (pfd[1].revents & POLLIN) {
r = read(fd, buffer, BUFFER_SIZE);
pfd[0].fd = ptmx;
pfd[0].events = POLLOUT;
pollret = poll(&pfd[0], 1, 50);
if (pollret < 0) {
fprintf(stderr, "Poll error: %s\n", strerror(errno));
exit(1);
}
if (pfd[0].revents & POLLOUT)
write(ptmx, buffer, r);
}
}
}