4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 #include "qemu/osdep.h"
26 #include "qapi/error.h"
27 #include "chardev/char.h"
28 #include "io/channel-file.h"
29 #include "qemu/sockets.h"
30 #include "qemu/error-report.h"
31 #include "qemu/module.h"
32 #include "qemu/qemu-print.h"
34 #include "chardev/char-io.h"
35 #include "qom/object.h"
45 typedef struct PtyChardev PtyChardev
;
47 DECLARE_INSTANCE_CHECKER(PtyChardev
, PTY_CHARDEV
,
50 static void pty_chr_state(Chardev
*chr
, int connected
);
52 static void pty_chr_timer_cancel(PtyChardev
*s
)
55 g_source_destroy(s
->timer_src
);
56 g_source_unref(s
->timer_src
);
61 static gboolean
pty_chr_timer(gpointer opaque
)
63 struct Chardev
*chr
= CHARDEV(opaque
);
64 PtyChardev
*s
= PTY_CHARDEV(opaque
);
66 pty_chr_timer_cancel(s
);
69 qemu_chr_be_update_read_handlers(chr
, chr
->gcontext
);
74 static void pty_chr_rearm_timer(Chardev
*chr
, int ms
)
76 PtyChardev
*s
= PTY_CHARDEV(chr
);
79 pty_chr_timer_cancel(s
);
80 name
= g_strdup_printf("pty-timer-%s", chr
->label
);
81 s
->timer_src
= qemu_chr_timeout_add_ms(chr
, ms
, pty_chr_timer
, chr
);
82 g_source_set_name(s
->timer_src
, name
);
86 static void pty_chr_update_read_handler(Chardev
*chr
)
88 PtyChardev
*s
= PTY_CHARDEV(chr
);
91 QIOChannelFile
*fioc
= QIO_CHANNEL_FILE(s
->ioc
);
94 pfd
.events
= G_IO_OUT
;
96 rc
= RETRY_ON_EINTR(g_poll(&pfd
, 1, 0));
99 if (pfd
.revents
& G_IO_HUP
) {
100 pty_chr_state(chr
, 0);
102 pty_chr_state(chr
, 1);
106 static int char_pty_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
108 PtyChardev
*s
= PTY_CHARDEV(chr
);
113 return io_channel_send(s
->ioc
, buf
, len
);
117 * The other side might already be re-connected, but the timer might
118 * not have fired yet. So let's check here whether we can write again:
120 pfd
.fd
= QIO_CHANNEL_FILE(s
->ioc
)->fd
;
121 pfd
.events
= G_IO_OUT
;
123 rc
= RETRY_ON_EINTR(g_poll(&pfd
, 1, 0));
125 if (!(pfd
.revents
& G_IO_HUP
) && (pfd
.revents
& G_IO_OUT
)) {
126 io_channel_send(s
->ioc
, buf
, len
);
132 static GSource
*pty_chr_add_watch(Chardev
*chr
, GIOCondition cond
)
134 PtyChardev
*s
= PTY_CHARDEV(chr
);
138 return qio_channel_create_watch(s
->ioc
, cond
);
141 static int pty_chr_read_poll(void *opaque
)
143 Chardev
*chr
= CHARDEV(opaque
);
144 PtyChardev
*s
= PTY_CHARDEV(opaque
);
146 s
->read_bytes
= qemu_chr_be_can_write(chr
);
147 return s
->read_bytes
;
150 static gboolean
pty_chr_read(QIOChannel
*chan
, GIOCondition cond
, void *opaque
)
152 Chardev
*chr
= CHARDEV(opaque
);
153 PtyChardev
*s
= PTY_CHARDEV(opaque
);
155 uint8_t buf
[CHR_READ_BUF_LEN
];
159 if (len
> s
->read_bytes
) {
165 ret
= qio_channel_read(s
->ioc
, (char *)buf
, len
, NULL
);
167 pty_chr_state(chr
, 0);
170 pty_chr_state(chr
, 1);
171 qemu_chr_be_write(chr
, buf
, ret
);
176 static void pty_chr_state(Chardev
*chr
, int connected
)
178 PtyChardev
*s
= PTY_CHARDEV(chr
);
181 remove_fd_in_watch(chr
);
183 /* (re-)connect poll interval for idle guests: once per second.
184 * We check more frequently in case the guests sends data to
185 * the virtual device linked to our pty. */
186 pty_chr_rearm_timer(chr
, 1000);
188 pty_chr_timer_cancel(s
);
191 qemu_chr_be_event(chr
, CHR_EVENT_OPENED
);
194 chr
->gsource
= io_add_watch_poll(chr
, s
->ioc
,
202 static void char_pty_finalize(Object
*obj
)
204 Chardev
*chr
= CHARDEV(obj
);
205 PtyChardev
*s
= PTY_CHARDEV(obj
);
207 pty_chr_state(chr
, 0);
208 object_unref(OBJECT(s
->ioc
));
209 pty_chr_timer_cancel(s
);
210 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
213 #if defined HAVE_PTY_H
215 #elif defined CONFIG_BSD
216 # include <termios.h>
217 # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
218 # include <libutil.h>
222 #elif defined CONFIG_SOLARIS
223 # include <termios.h>
224 # include <stropts.h>
226 # include <termios.h>
231 #if !defined(HAVE_OPENPTY)
232 /* Once illumos has openpty(), this is going to be removed. */
233 static int openpty(int *amaster
, int *aslave
, char *name
,
234 struct termios
*termp
, struct winsize
*winp
)
237 int mfd
= -1, sfd
= -1;
239 *amaster
= *aslave
= -1;
241 mfd
= open("/dev/ptmx", O_RDWR
| O_NOCTTY
);
246 if (grantpt(mfd
) == -1 || unlockpt(mfd
) == -1) {
250 if ((slave
= ptsname(mfd
)) == NULL
) {
254 if ((sfd
= open(slave
, O_RDONLY
| O_NOCTTY
)) == -1) {
258 if (ioctl(sfd
, I_PUSH
, "ptem") == -1 ||
259 (termp
!= NULL
&& tcgetattr(sfd
, termp
) < 0)) {
267 ioctl(sfd
, TIOCSWINSZ
, winp
);
281 static void cfmakeraw (struct termios
*termios_p
)
283 termios_p
->c_iflag
&=
284 ~(IGNBRK
| BRKINT
| PARMRK
| ISTRIP
| INLCR
| IGNCR
| ICRNL
| IXON
);
285 termios_p
->c_oflag
&= ~OPOST
;
286 termios_p
->c_lflag
&= ~(ECHO
| ECHONL
| ICANON
| ISIG
| IEXTEN
);
287 termios_p
->c_cflag
&= ~(CSIZE
| PARENB
);
288 termios_p
->c_cflag
|= CS8
;
290 termios_p
->c_cc
[VMIN
] = 0;
291 termios_p
->c_cc
[VTIME
] = 0;
295 /* like openpty() but also makes it raw; return master fd */
296 static int qemu_openpty_raw(int *aslave
, char *pty_name
)
300 #if defined(__OpenBSD__) || defined(__DragonFly__)
301 char pty_buf
[PATH_MAX
];
302 #define q_ptsname(x) pty_buf
304 char *pty_buf
= NULL
;
305 #define q_ptsname(x) ptsname(x)
308 if (openpty(&amaster
, aslave
, pty_buf
, NULL
, NULL
) < 0) {
312 /* Set raw attributes on the pty. */
313 tcgetattr(*aslave
, &tty
);
315 tcsetattr(*aslave
, TCSAFLUSH
, &tty
);
318 strcpy(pty_name
, q_ptsname(amaster
));
324 static void char_pty_open(Chardev
*chr
,
325 ChardevBackend
*backend
,
330 int master_fd
, slave_fd
;
331 char pty_name
[PATH_MAX
];
334 master_fd
= qemu_openpty_raw(&slave_fd
, pty_name
);
336 error_setg_errno(errp
, errno
, "Failed to create PTY");
341 if (!g_unix_set_fd_nonblocking(master_fd
, true, NULL
)) {
342 error_setg_errno(errp
, errno
, "Failed to set FD nonblocking");
346 chr
->filename
= g_strdup_printf("pty:%s", pty_name
);
347 qemu_printf("char device redirected to %s (label %s)\n",
348 pty_name
, chr
->label
);
350 s
= PTY_CHARDEV(chr
);
351 s
->ioc
= QIO_CHANNEL(qio_channel_file_new_fd(master_fd
));
352 name
= g_strdup_printf("chardev-pty-%s", chr
->label
);
353 qio_channel_set_name(s
->ioc
, name
);
359 static void char_pty_class_init(ObjectClass
*oc
, void *data
)
361 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
363 cc
->open
= char_pty_open
;
364 cc
->chr_write
= char_pty_chr_write
;
365 cc
->chr_update_read_handler
= pty_chr_update_read_handler
;
366 cc
->chr_add_watch
= pty_chr_add_watch
;
369 static const TypeInfo char_pty_type_info
= {
370 .name
= TYPE_CHARDEV_PTY
,
371 .parent
= TYPE_CHARDEV
,
372 .instance_size
= sizeof(PtyChardev
),
373 .instance_finalize
= char_pty_finalize
,
374 .class_init
= char_pty_class_init
,
377 static void register_types(void)
379 type_register_static(&char_pty_type_info
);
382 type_init(register_types
);