2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1995, 1996, 2000, 2001 by Ralf Baechle
7 * Copyright (C) 2000, 2001 Silicon Graphics, Inc.
10 #define _ASM_TERMIOS_H
12 #include <asm/uaccess.h>
13 #include <uapi/asm/termios.h>
16 * intr=^C quit=^\ erase=del kill=^U
17 * vmin=\1 vtime=\0 eol2=\0 swtc=\0
18 * start=^Q stop=^S susp=^Z vdsusp=
19 * reprint=^R discard=^U werase=^W lnext=^V
22 #define INIT_C_CC "\003\034\177\025\1\0\0\0\021\023\032\0\022\017\027\026\004\0"
24 #include <linux/string.h>
27 * Translate a "termio" structure into a "termios". Ugh.
29 static inline int user_termio_to_kernel_termios(struct ktermios
*termios
,
30 struct termio __user
*termio
)
32 unsigned short iflag
, oflag
, cflag
, lflag
;
35 if (!access_ok(VERIFY_READ
, termio
, sizeof(struct termio
)))
38 err
= __get_user(iflag
, &termio
->c_iflag
);
39 termios
->c_iflag
= (termios
->c_iflag
& 0xffff0000) | iflag
;
40 err
|=__get_user(oflag
, &termio
->c_oflag
);
41 termios
->c_oflag
= (termios
->c_oflag
& 0xffff0000) | oflag
;
42 err
|=__get_user(cflag
, &termio
->c_cflag
);
43 termios
->c_cflag
= (termios
->c_cflag
& 0xffff0000) | cflag
;
44 err
|=__get_user(lflag
, &termio
->c_lflag
);
45 termios
->c_lflag
= (termios
->c_lflag
& 0xffff0000) | lflag
;
46 err
|=__get_user(termios
->c_line
, &termio
->c_line
);
50 if (__copy_from_user(termios
->c_cc
, termio
->c_cc
, NCC
))
57 * Translate a "termios" structure into a "termio". Ugh.
59 static inline int kernel_termios_to_user_termio(struct termio __user
*termio
,
60 struct ktermios
*termios
)
64 if (!access_ok(VERIFY_WRITE
, termio
, sizeof(struct termio
)))
67 err
= __put_user(termios
->c_iflag
, &termio
->c_iflag
);
68 err
|= __put_user(termios
->c_oflag
, &termio
->c_oflag
);
69 err
|= __put_user(termios
->c_cflag
, &termio
->c_cflag
);
70 err
|= __put_user(termios
->c_lflag
, &termio
->c_lflag
);
71 err
|= __put_user(termios
->c_line
, &termio
->c_line
);
75 if (__copy_to_user(termio
->c_cc
, termios
->c_cc
, NCC
))
81 static inline int user_termios_to_kernel_termios(struct ktermios __user
*k
,
84 return copy_from_user(k
, u
, sizeof(struct termios2
)) ? -EFAULT
: 0;
87 static inline int kernel_termios_to_user_termios(struct termios2 __user
*u
,
90 return copy_to_user(u
, k
, sizeof(struct termios2
)) ? -EFAULT
: 0;
93 static inline int user_termios_to_kernel_termios_1(struct ktermios
*k
,
94 struct termios __user
*u
)
96 return copy_from_user(k
, u
, sizeof(struct termios
)) ? -EFAULT
: 0;
99 static inline int kernel_termios_to_user_termios_1(struct termios __user
*u
,
102 return copy_to_user(u
, k
, sizeof(struct termios
)) ? -EFAULT
: 0;
105 #endif /* _ASM_TERMIOS_H */