From: Oren Laadan <orenl-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
To: Sukadev Bhattiprolu
<sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Cc: Containers
<containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>
Subject: Re: C/R of termios
Date: Mon, 13 Dec 2010 09:54:14 -0500 [thread overview]
Message-ID: <4D063396.3090207@cs.columbia.edu> (raw)
In-Reply-To: <20101209012820.GA10001-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Suka,
Yes, I overlooked it, thanks for pointing out.
The patch looks fine - queued for inclusion.
(I'll remove the now-unneeded define of CKPT_TTY_NCC)
Oren.
On 12/08/2010 08:28 PM, Sukadev Bhattiprolu wrote:
> Oren,
>
> Any reason we only checkpoint/restore a 'struct termio' instead of a
> 'struct termios' ?
>
> AFAICT, 'struct termios' seems to supersede 'struct termio' (i.e includes
> all fields of 'struct termio' plus more). The TCGETS ioctl and tcgetattr()
> interface return a 'struct termios' to user space.
>
> The man page termio(7) says the 'struct termio' interface is obsolete.
>
> The kernel uses 'struct ktermios' to represent the attributes internally.
> So shouldn't we checkpoint/restore the 'struct ktermios' object ?
>
> If application uses legacy interface (TCGETA/TCSETA with 'struct termio')
> the kernel converts the 'struct ktermios' to the 'struct termio' in
> kernel_termios_to_user_termio(). So we should be fine if we C/R the
> ktermios object right ?
>
> Here is a quick hack, just for reference. With this hack, I can C/R an
> app that does tcgetattr() of a pty before/after checkpoint.
>
> ---
> diff --git a/arch/x86/include/asm/checkpoint_hdr.h b/arch/x86/include/asm/checkpoint_hdr.h
> index 0505329..2778aed 100644
> --- a/arch/x86/include/asm/checkpoint_hdr.h
> +++ b/arch/x86/include/asm/checkpoint_hdr.h
> @@ -55,6 +55,7 @@ enum {
> /* arch dependent constants */
> #define CKPT_ARCH_NSIG 64
> #define CKPT_TTY_NCC 8
> +#define CKPT_TTY_NCCS 19
>
> #ifdef __KERNEL__
>
> @@ -68,6 +69,10 @@ enum {
> #error CKPT_TTY_NCC size is wrong per asm-generic/termios.h
> #endif
>
> +#if CKPT_TTY_NCCS != NCCS
> +#error CKPT_TTY_NCCS size is wrong per asm-generic/termbits.h
> +#endif
> +
> #endif /* __KERNEL__ */
>
>
> diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
> index 3a2c770..2b3f001 100644
> --- a/drivers/char/tty_io.c
> +++ b/drivers/char/tty_io.c
> @@ -2882,7 +2882,7 @@ static int checkpoint_tty(struct ckpt_ctx *ctx, void *ptr)
> h->termios.c_oflag = tty->termios->c_oflag;
> h->termios.c_cflag = tty->termios->c_cflag;
> h->termios.c_lflag = tty->termios->c_lflag;
> - memcpy(h->termios.c_cc, tty->termios->c_cc, NCC);
> + memcpy(h->termios.c_cc, tty->termios->c_cc, NCCS);
> h->winsize.ws_row = tty->winsize.ws_row;
> h->winsize.ws_col = tty->winsize.ws_col;
> h->winsize.ws_ypixel = tty->winsize.ws_ypixel;
> @@ -3099,7 +3099,7 @@ static struct tty_struct *do_restore_tty(struct ckpt_ctx *ctx)
> tty->termios->c_oflag = h->termios.c_oflag;
> tty->termios->c_cflag = h->termios.c_cflag;
> tty->termios->c_lflag = h->termios.c_lflag;
> - memcpy(tty->termios->c_cc, h->termios.c_cc, NCC);
> + memcpy(tty->termios->c_cc, h->termios.c_cc, NCCS);
> tty->winsize.ws_row = h->winsize.ws_row;
> tty->winsize.ws_col = h->winsize.ws_col;
> tty->winsize.ws_ypixel = h->winsize.ws_ypixel;
> diff --git a/include/linux/checkpoint_hdr.h b/include/linux/checkpoint_hdr.h
> index 4303235..e432b04 100644
> --- a/include/linux/checkpoint_hdr.h
> +++ b/include/linux/checkpoint_hdr.h
> @@ -1143,7 +1143,9 @@ struct ckpt_hdr_tty {
> __u16 c_cflag;
> __u16 c_lflag;
> __u8 c_line;
> - __u8 c_cc[CKPT_TTY_NCC];
> + __u8 c_cc[CKPT_TTY_NCCS];
> + __u32 c_ispeed;
> + __u32 c_ospeed;
> } __attribute__((aligned(8))) termios;
>
> /* winsize */
>
next prev parent reply other threads:[~2010-12-13 14:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-09 1:28 C/R of termios Sukadev Bhattiprolu
[not found] ` <20101209012820.GA10001-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-12-13 14:38 ` Serge E. Hallyn
2010-12-13 14:54 ` Oren Laadan [this message]
[not found] ` <4D063396.3090207-eQaUEPhvms7ENvBUuze7eA@public.gmane.org>
2010-12-13 18:27 ` Sukadev Bhattiprolu
[not found] ` <20101213182706.GC2035-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2010-12-13 19:21 ` Oren Laadan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D063396.3090207@cs.columbia.edu \
--to=orenl-eqauephvms7envbuuze7ea@public.gmane.org \
--cc=containers-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
--cc=sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.