OSDN Git Service

termios: uninline conversion helpers
[tomoyo/tomoyo-test1.git] / arch / alpha / kernel / termios.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/uaccess.h>
3 #include <linux/termios.h>
4
5 int user_termio_to_kernel_termios(struct ktermios *termios,
6                                                 struct termio __user *termio)
7 {
8         struct termio v;
9         bool canon;
10
11         if (copy_from_user(&v, termio, sizeof(struct termio)))
12                 return -EFAULT;
13
14         termios->c_iflag = (0xffff0000 & termios->c_iflag) | v.c_iflag;
15         termios->c_oflag = (0xffff0000 & termios->c_oflag) | v.c_oflag;
16         termios->c_cflag = (0xffff0000 & termios->c_cflag) | v.c_cflag;
17         termios->c_lflag = (0xffff0000 & termios->c_lflag) | v.c_lflag;
18         termios->c_line = (0xffff0000 & termios->c_lflag) | v.c_line;
19
20         canon = v.c_lflag & ICANON;
21         termios->c_cc[VINTR]  = v.c_cc[_VINTR];
22         termios->c_cc[VQUIT]  = v.c_cc[_VQUIT];
23         termios->c_cc[VERASE] = v.c_cc[_VERASE];
24         termios->c_cc[VKILL]  = v.c_cc[_VKILL];
25         termios->c_cc[VEOL2]  = v.c_cc[_VEOL2];
26         termios->c_cc[VSWTC]  = v.c_cc[_VSWTC];
27         termios->c_cc[canon ? VEOF : VMIN]  = v.c_cc[_VEOF];
28         termios->c_cc[canon ? VEOL : VTIME] = v.c_cc[_VEOL];
29
30         return 0;
31 }
32
33 int kernel_termios_to_user_termio(struct termio __user *termio,
34                                                 struct ktermios *termios)
35 {
36         struct termio v;
37         bool canon;
38
39         memset(&v, 0, sizeof(struct termio));
40         v.c_iflag = termios->c_iflag;
41         v.c_oflag = termios->c_oflag;
42         v.c_cflag = termios->c_cflag;
43         v.c_lflag = termios->c_lflag;
44         v.c_line = termios->c_line;
45
46         canon = v.c_lflag & ICANON;
47         v.c_cc[_VINTR]  = termios->c_cc[VINTR];
48         v.c_cc[_VQUIT]  = termios->c_cc[VQUIT];
49         v.c_cc[_VERASE] = termios->c_cc[VERASE];
50         v.c_cc[_VKILL]  = termios->c_cc[VKILL];
51         v.c_cc[_VEOF]   = termios->c_cc[canon ? VEOF : VMIN];
52         v.c_cc[_VEOL]   = termios->c_cc[canon ? VEOL : VTIME];
53         v.c_cc[_VEOL2]  = termios->c_cc[VEOL2];
54         v.c_cc[_VSWTC]  = termios->c_cc[VSWTC];
55
56         return copy_to_user(termio, &v, sizeof(struct termio));
57 }