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
;
97 rc
= g_poll(&pfd
, 1, 0);
98 } while (rc
== -1 && errno
== EINTR
);
101 if (pfd
.revents
& G_IO_HUP
) {
102 pty_chr_state(chr
, 0);
104 pty_chr_state(chr
, 1);
108 static int char_pty_chr_write(Chardev
*chr
, const uint8_t *buf
, int len
)
110 PtyChardev
*s
= PTY_CHARDEV(chr
);
115 return io_channel_send(s
->ioc
, buf
, len
);
118 static GSource
*pty_chr_add_watch(Chardev
*chr
, GIOCondition cond
)
120 PtyChardev
*s
= PTY_CHARDEV(chr
);
124 return qio_channel_create_watch(s
->ioc
, cond
);
127 static int pty_chr_read_poll(void *opaque
)
129 Chardev
*chr
= CHARDEV(opaque
);
130 PtyChardev
*s
= PTY_CHARDEV(opaque
);
132 s
->read_bytes
= qemu_chr_be_can_write(chr
);
133 return s
->read_bytes
;
136 static gboolean
pty_chr_read(QIOChannel
*chan
, GIOCondition cond
, void *opaque
)
138 Chardev
*chr
= CHARDEV(opaque
);
139 PtyChardev
*s
= PTY_CHARDEV(opaque
);
141 uint8_t buf
[CHR_READ_BUF_LEN
];
145 if (len
> s
->read_bytes
) {
151 ret
= qio_channel_read(s
->ioc
, (char *)buf
, len
, NULL
);
153 pty_chr_state(chr
, 0);
156 pty_chr_state(chr
, 1);
157 qemu_chr_be_write(chr
, buf
, ret
);
162 static void pty_chr_state(Chardev
*chr
, int connected
)
164 PtyChardev
*s
= PTY_CHARDEV(chr
);
167 remove_fd_in_watch(chr
);
169 /* (re-)connect poll interval for idle guests: once per second.
170 * We check more frequently in case the guests sends data to
171 * the virtual device linked to our pty. */
172 pty_chr_rearm_timer(chr
, 1000);
174 pty_chr_timer_cancel(s
);
177 qemu_chr_be_event(chr
, CHR_EVENT_OPENED
);
180 chr
->gsource
= io_add_watch_poll(chr
, s
->ioc
,
188 static void char_pty_finalize(Object
*obj
)
190 Chardev
*chr
= CHARDEV(obj
);
191 PtyChardev
*s
= PTY_CHARDEV(obj
);
193 pty_chr_state(chr
, 0);
194 object_unref(OBJECT(s
->ioc
));
195 pty_chr_timer_cancel(s
);
196 qemu_chr_be_event(chr
, CHR_EVENT_CLOSED
);
199 #if defined HAVE_PTY_H
201 #elif defined CONFIG_BSD
202 # include <termios.h>
203 # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
204 # include <libutil.h>
208 #elif defined CONFIG_SOLARIS
209 # include <termios.h>
210 # include <stropts.h>
212 # include <termios.h>
217 #if !defined(HAVE_OPENPTY)
218 /* Once illumos has openpty(), this is going to be removed. */
219 static int openpty(int *amaster
, int *aslave
, char *name
,
220 struct termios
*termp
, struct winsize
*winp
)
223 int mfd
= -1, sfd
= -1;
225 *amaster
= *aslave
= -1;
227 mfd
= open("/dev/ptmx", O_RDWR
| O_NOCTTY
);
232 if (grantpt(mfd
) == -1 || unlockpt(mfd
) == -1) {
236 if ((slave
= ptsname(mfd
)) == NULL
) {
240 if ((sfd
= open(slave
, O_RDONLY
| O_NOCTTY
)) == -1) {
244 if (ioctl(sfd
, I_PUSH
, "ptem") == -1 ||
245 (termp
!= NULL
&& tcgetattr(sfd
, termp
) < 0)) {
253 ioctl(sfd
, TIOCSWINSZ
, winp
);
267 static void cfmakeraw (struct termios
*termios_p
)
269 termios_p
->c_iflag
&=
270 ~(IGNBRK
| BRKINT
| PARMRK
| ISTRIP
| INLCR
| IGNCR
| ICRNL
| IXON
);
271 termios_p
->c_oflag
&= ~OPOST
;
272 termios_p
->c_lflag
&= ~(ECHO
| ECHONL
| ICANON
| ISIG
| IEXTEN
);
273 termios_p
->c_cflag
&= ~(CSIZE
| PARENB
);
274 termios_p
->c_cflag
|= CS8
;
276 termios_p
->c_cc
[VMIN
] = 0;
277 termios_p
->c_cc
[VTIME
] = 0;
281 /* like openpty() but also makes it raw; return master fd */
282 static int qemu_openpty_raw(int *aslave
, char *pty_name
)
286 #if defined(__OpenBSD__) || defined(__DragonFly__)
287 char pty_buf
[PATH_MAX
];
288 #define q_ptsname(x) pty_buf
290 char *pty_buf
= NULL
;
291 #define q_ptsname(x) ptsname(x)
294 if (openpty(&amaster
, aslave
, pty_buf
, NULL
, NULL
) < 0) {
298 /* Set raw attributes on the pty. */
299 tcgetattr(*aslave
, &tty
);
301 tcsetattr(*aslave
, TCSAFLUSH
, &tty
);
304 strcpy(pty_name
, q_ptsname(amaster
));
310 static void char_pty_open(Chardev
*chr
,
311 ChardevBackend
*backend
,
316 int master_fd
, slave_fd
;
317 char pty_name
[PATH_MAX
];
320 master_fd
= qemu_openpty_raw(&slave_fd
, pty_name
);
322 error_setg_errno(errp
, errno
, "Failed to create PTY");
327 qemu_set_nonblock(master_fd
);
329 chr
->filename
= g_strdup_printf("pty:%s", pty_name
);
330 qemu_printf("char device redirected to %s (label %s)\n",
331 pty_name
, chr
->label
);
333 s
= PTY_CHARDEV(chr
);
334 s
->ioc
= QIO_CHANNEL(qio_channel_file_new_fd(master_fd
));
335 name
= g_strdup_printf("chardev-pty-%s", chr
->label
);
336 qio_channel_set_name(QIO_CHANNEL(s
->ioc
), name
);
342 static void char_pty_class_init(ObjectClass
*oc
, void *data
)
344 ChardevClass
*cc
= CHARDEV_CLASS(oc
);
346 cc
->open
= char_pty_open
;
347 cc
->chr_write
= char_pty_chr_write
;
348 cc
->chr_update_read_handler
= pty_chr_update_read_handler
;
349 cc
->chr_add_watch
= pty_chr_add_watch
;
352 static const TypeInfo char_pty_type_info
= {
353 .name
= TYPE_CHARDEV_PTY
,
354 .parent
= TYPE_CHARDEV
,
355 .instance_size
= sizeof(PtyChardev
),
356 .instance_finalize
= char_pty_finalize
,
357 .class_init
= char_pty_class_init
,
360 static void register_types(void)
362 type_register_static(&char_pty_type_info
);
365 type_init(register_types
);