forked from openbmc/obmc-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtty-handler.c
297 lines (239 loc) · 6.71 KB
/
tty-handler.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/**
* Copyright © 2016 IBM Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define _GNU_SOURCE
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <termios.h>
#include "console-server.h"
struct tty_handler {
struct handler handler;
struct console *console;
struct ringbuffer_consumer *rbc;
struct poller *poller;
int fd;
int fd_flags;
bool blocked;
};
static struct tty_handler *to_tty_handler(struct handler *handler)
{
return container_of(handler, struct tty_handler, handler);
}
static void tty_set_fd_blocking(struct tty_handler *th, bool fd_blocking)
{
int flags;
flags = th->fd_flags & ~O_NONBLOCK;
if (!fd_blocking)
flags |= O_NONBLOCK;
if (flags != th->fd_flags) {
fcntl(th->fd, F_SETFL, flags);
th->fd_flags = flags;
}
}
/*
* A "blocked" handler indicates that the last write returned EAGAIN
* (==EWOULDBLOCK), so we know not to continue writing (for non-forced output),
* as it'll just return EAGAIN again.
*
* Once we detect this, we watch for POLLOUT in the poller events. A
* POLLOUT indicates that the fd is no longer blocking, so we clear
* blocked mode and can continue writing.
*/
static void tty_set_blocked(struct tty_handler *th, bool blocked)
{
int events;
if (blocked == th->blocked)
return;
th->blocked = blocked;
events = POLLIN;
if (th->blocked)
events |= POLLOUT;
console_poller_set_events(th->console, th->poller, events);
}
static int tty_drain_queue(struct tty_handler *th, size_t force_len)
{
size_t len, total_len;
ssize_t wlen;
uint8_t *buf;
/* if we're forcing data, we need to clear non-blocking mode */
if (force_len)
tty_set_fd_blocking(th, true);
/* no point writing, we'll just see -EAGAIN */
else if (th->blocked)
return 0;
total_len = 0;
for (;;) {
len = ringbuffer_dequeue_peek(th->rbc, total_len, &buf);
if (!len)
break;
/* write as little as possible while blocking */
if (force_len && force_len < total_len + len)
len = force_len - total_len;
wlen = write(th->fd, buf, len);
if (wlen < 0) {
if (errno == EINTR)
continue;
if ((errno == EAGAIN || errno == EWOULDBLOCK)
&& !force_len) {
tty_set_blocked(th, true);
break;
}
warn("failed writing to local tty; disabling");
return -1;
}
total_len += wlen;
if (force_len && total_len >= force_len)
break;
}
ringbuffer_dequeue_commit(th->rbc, total_len);
if (force_len)
tty_set_fd_blocking(th, false);
return 0;
}
static enum ringbuffer_poll_ret tty_ringbuffer_poll(void *arg, size_t force_len)
{
struct tty_handler *th = arg;
int rc;
rc = tty_drain_queue(th, force_len);
if (rc) {
console_poller_unregister(th->console, th->poller);
return RINGBUFFER_POLL_REMOVE;
}
return RINGBUFFER_POLL_OK;
}
static enum poller_ret tty_poll(struct handler *handler,
int events, void __attribute__((unused)) *data)
{
struct tty_handler *th = to_tty_handler(handler);
uint8_t buf[4096];
ssize_t len;
int rc;
if (events & POLLIN) {
len = read(th->fd, buf, sizeof(buf));
if (len <= 0)
goto err;
console_data_out(th->console, buf, len);
}
if (events & POLLOUT) {
tty_set_blocked(th, false);
rc = tty_drain_queue(th, 0);
if (rc)
goto err;
}
return POLLER_OK;
err:
th->poller = NULL;
close(th->fd);
ringbuffer_consumer_unregister(th->rbc);
return POLLER_REMOVE;
}
static int set_terminal_baud(struct tty_handler *th, const char *tty_name,
const char *desired_baud) {
struct termios term_options;
speed_t speed;
if (config_parse_baud(&speed, desired_baud) != 0) {
fprintf(stderr, "%s is not a valid baud rate for terminal %s\n",
desired_baud, tty_name);
return -1;
}
if (tcgetattr(th->fd, &term_options) < 0) {
warn("Can't get config for %s", tty_name);
return -1;
}
if (cfsetspeed(&term_options, speed) < 0) {
warn("Couldn't set speeds for %s", tty_name);
return -1;
}
if (tcsetattr(th->fd, TCSAFLUSH, &term_options) < 0) {
warn("Couldn't commit terminal options for %s", tty_name);
return -1;
}
printf("Set %s terminal baud rate to %s\n", tty_name, desired_baud);
return 0;
}
static int make_terminal_raw(struct tty_handler *th, const char *tty_name) {
struct termios term_options;
if (tcgetattr(th->fd, &term_options) < 0) {
warn("Can't get config for %s", tty_name);
return -1;
}
/* Disable various input and output processing including character
* translation, line edit (canonical) mode, flow control, and special signal
* generating characters. */
cfmakeraw(&term_options);
if (tcsetattr(th->fd, TCSAFLUSH, &term_options) < 0) {
warn("Couldn't commit terminal options for %s", tty_name);
return -1;
}
printf("Set %s for raw byte handling\n", tty_name);
return 0;
}
static int tty_init(struct handler *handler, struct console *console,
struct config *config __attribute__((unused)))
{
struct tty_handler *th = to_tty_handler(handler);
const char *tty_name;
const char *tty_baud;
char *tty_path;
int rc;
tty_name = config_get_value(config, "local-tty");
if (!tty_name)
return -1;
rc = asprintf(&tty_path, "/dev/%s", tty_name);
if (!rc)
return -1;
th->fd = open(tty_path, O_RDWR | O_NONBLOCK);
if (th->fd < 0) {
warn("Can't open %s; disabling local tty", tty_name);
free(tty_path);
return -1;
}
free(tty_path);
th->fd_flags = fcntl(th->fd, F_GETFL, 0);
tty_baud = config_get_value(config, "local-tty-baud");
if (tty_baud != NULL)
if (set_terminal_baud(th, tty_name, tty_baud) != 0)
fprintf(stderr, "Couldn't set baud rate for %s to %s\n",
tty_name, tty_baud);
if (make_terminal_raw(th, tty_name) != 0)
fprintf(stderr, "Couldn't make %s a raw terminal\n", tty_name);
th->poller = console_poller_register(console, handler, tty_poll,
th->fd, POLLIN, NULL);
th->console = console;
th->rbc = console_ringbuffer_consumer_register(console,
tty_ringbuffer_poll, th);
return 0;
}
static void tty_fini(struct handler *handler)
{
struct tty_handler *th = to_tty_handler(handler);
if (th->poller)
console_poller_unregister(th->console, th->poller);
close(th->fd);
}
static struct tty_handler tty_handler = {
.handler = {
.name = "tty",
.init = tty_init,
.fini = tty_fini,
},
};
console_handler_register(&tty_handler.handler);