Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * irixioctl.c: A fucking mess... |
| 3 | * |
| 4 | * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com) |
| 5 | */ |
| 6 | |
| 7 | #include <linux/kernel.h> |
| 8 | #include <linux/sched.h> |
| 9 | #include <linux/fs.h> |
| 10 | #include <linux/mm.h> |
| 11 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/sockios.h> |
| 13 | #include <linux/syscalls.h> |
| 14 | #include <linux/tty.h> |
| 15 | #include <linux/file.h> |
Dipankar Sarma | b835996 | 2005-09-09 13:04:14 -0700 | [diff] [blame] | 16 | #include <linux/rcupdate.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
| 18 | #include <asm/uaccess.h> |
| 19 | #include <asm/ioctl.h> |
| 20 | #include <asm/ioctls.h> |
| 21 | |
| 22 | #undef DEBUG_IOCTLS |
| 23 | #undef DEBUG_MISSING_IOCTL |
| 24 | |
| 25 | struct irix_termios { |
| 26 | tcflag_t c_iflag, c_oflag, c_cflag, c_lflag; |
| 27 | cc_t c_cc[NCCS]; |
| 28 | }; |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | asmlinkage int irix_ioctl(int fd, unsigned long cmd, unsigned long arg) |
| 31 | { |
| 32 | struct tty_struct *tp, *rtp; |
| 33 | mm_segment_t old_fs; |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 34 | int i, error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | #ifdef DEBUG_IOCTLS |
| 37 | printk("[%s:%d] irix_ioctl(%d, ", current->comm, current->pid, fd); |
| 38 | #endif |
| 39 | switch(cmd) { |
| 40 | case 0x00005401: |
| 41 | #ifdef DEBUG_IOCTLS |
| 42 | printk("TCGETA, %08lx) ", arg); |
| 43 | #endif |
| 44 | error = sys_ioctl(fd, TCGETA, arg); |
| 45 | break; |
| 46 | |
| 47 | case 0x0000540d: { |
| 48 | struct termios kt; |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 49 | struct irix_termios __user *it = |
| 50 | (struct irix_termios __user *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | #ifdef DEBUG_IOCTLS |
| 53 | printk("TCGETS, %08lx) ", arg); |
| 54 | #endif |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 55 | if (!access_ok(VERIFY_WRITE, it, sizeof(*it))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | error = -EFAULT; |
| 57 | break; |
| 58 | } |
| 59 | old_fs = get_fs(); set_fs(get_ds()); |
| 60 | error = sys_ioctl(fd, TCGETS, (unsigned long) &kt); |
| 61 | set_fs(old_fs); |
| 62 | if (error) |
| 63 | break; |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 64 | |
| 65 | error = __put_user(kt.c_iflag, &it->c_iflag); |
| 66 | error |= __put_user(kt.c_oflag, &it->c_oflag); |
| 67 | error |= __put_user(kt.c_cflag, &it->c_cflag); |
| 68 | error |= __put_user(kt.c_lflag, &it->c_lflag); |
| 69 | |
| 70 | for (i = 0; i < NCCS; i++) |
| 71 | error |= __put_user(kt.c_cc[i], &it->c_cc[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | break; |
| 73 | } |
| 74 | |
| 75 | case 0x0000540e: { |
| 76 | struct termios kt; |
| 77 | struct irix_termios *it = (struct irix_termios *) arg; |
| 78 | |
| 79 | #ifdef DEBUG_IOCTLS |
| 80 | printk("TCSETS, %08lx) ", arg); |
| 81 | #endif |
| 82 | if (!access_ok(VERIFY_READ, it, sizeof(*it))) { |
| 83 | error = -EFAULT; |
| 84 | break; |
| 85 | } |
| 86 | old_fs = get_fs(); set_fs(get_ds()); |
| 87 | error = sys_ioctl(fd, TCGETS, (unsigned long) &kt); |
| 88 | set_fs(old_fs); |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 89 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | break; |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 91 | |
| 92 | error = __get_user(kt.c_iflag, &it->c_iflag); |
| 93 | error |= __get_user(kt.c_oflag, &it->c_oflag); |
| 94 | error |= __get_user(kt.c_cflag, &it->c_cflag); |
| 95 | error |= __get_user(kt.c_lflag, &it->c_lflag); |
| 96 | |
| 97 | for (i = 0; i < NCCS; i++) |
| 98 | error |= __get_user(kt.c_cc[i], &it->c_cc[i]); |
| 99 | |
| 100 | if (error) |
| 101 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | old_fs = get_fs(); set_fs(get_ds()); |
| 103 | error = sys_ioctl(fd, TCSETS, (unsigned long) &kt); |
| 104 | set_fs(old_fs); |
| 105 | break; |
| 106 | } |
| 107 | |
| 108 | case 0x0000540f: |
| 109 | #ifdef DEBUG_IOCTLS |
| 110 | printk("TCSETSW, %08lx) ", arg); |
| 111 | #endif |
| 112 | error = sys_ioctl(fd, TCSETSW, arg); |
| 113 | break; |
| 114 | |
| 115 | case 0x00005471: |
| 116 | #ifdef DEBUG_IOCTLS |
| 117 | printk("TIOCNOTTY, %08lx) ", arg); |
| 118 | #endif |
| 119 | error = sys_ioctl(fd, TIOCNOTTY, arg); |
| 120 | break; |
| 121 | |
Al Viro | bf7da7b | 2008-04-23 00:49:25 -0400 | [diff] [blame] | 122 | case 0x00007416: { |
| 123 | pid_t pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | #ifdef DEBUG_IOCTLS |
| 125 | printk("TIOCGSID, %08lx) ", arg); |
| 126 | #endif |
Al Viro | bf7da7b | 2008-04-23 00:49:25 -0400 | [diff] [blame] | 127 | old_fs = get_fs(); set_fs(get_ds()); |
| 128 | error = sys_ioctl(fd, TIOCGSID, (unsigned long)&pid); |
| 129 | set_fs(old_fs); |
| 130 | if (!error) |
| 131 | error = put_user(pid, (unsigned long __user *) arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | break; |
Al Viro | bf7da7b | 2008-04-23 00:49:25 -0400 | [diff] [blame] | 133 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | case 0x746e: |
| 135 | /* TIOCSTART, same effect as hitting ^Q */ |
| 136 | #ifdef DEBUG_IOCTLS |
| 137 | printk("TIOCSTART, %08lx) ", arg); |
| 138 | #endif |
Al Viro | bf7da7b | 2008-04-23 00:49:25 -0400 | [diff] [blame] | 139 | error = sys_ioctl(fd, TCXONC, TCOON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | break; |
| 141 | |
| 142 | case 0x20006968: |
| 143 | #ifdef DEBUG_IOCTLS |
| 144 | printk("SIOCGETLABEL, %08lx) ", arg); |
| 145 | #endif |
| 146 | error = -ENOPKG; |
| 147 | break; |
| 148 | |
| 149 | case 0x40047477: |
| 150 | #ifdef DEBUG_IOCTLS |
| 151 | printk("TIOCGPGRP, %08lx) ", arg); |
| 152 | #endif |
| 153 | error = sys_ioctl(fd, TIOCGPGRP, arg); |
| 154 | #ifdef DEBUG_IOCTLS |
| 155 | printk("arg=%d ", *(int *)arg); |
| 156 | #endif |
| 157 | break; |
| 158 | |
| 159 | case 0x40087468: |
| 160 | #ifdef DEBUG_IOCTLS |
| 161 | printk("TIOCGWINSZ, %08lx) ", arg); |
| 162 | #endif |
| 163 | error = sys_ioctl(fd, TIOCGWINSZ, arg); |
| 164 | break; |
| 165 | |
| 166 | case 0x8004667e: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | error = sys_ioctl(fd, FIONBIO, arg); |
| 168 | break; |
| 169 | |
| 170 | case 0x80047476: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | error = sys_ioctl(fd, TIOCSPGRP, arg); |
| 172 | break; |
| 173 | |
| 174 | case 0x8020690c: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | error = sys_ioctl(fd, SIOCSIFADDR, arg); |
| 176 | break; |
| 177 | |
| 178 | case 0x80206910: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | error = sys_ioctl(fd, SIOCSIFFLAGS, arg); |
| 180 | break; |
| 181 | |
| 182 | case 0xc0206911: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | error = sys_ioctl(fd, SIOCGIFFLAGS, arg); |
| 184 | break; |
| 185 | |
| 186 | case 0xc020691b: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | error = sys_ioctl(fd, SIOCGIFMETRIC, arg); |
| 188 | break; |
| 189 | |
| 190 | default: { |
| 191 | #ifdef DEBUG_MISSING_IOCTL |
Ralf Baechle | 1592dac | 2005-03-17 21:50:49 +0000 | [diff] [blame] | 192 | char *msg = "Unimplemented IOCTL cmd tell linux-mips@linux-mips.org\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | |
| 194 | #ifdef DEBUG_IOCTLS |
| 195 | printk("UNIMP_IOCTL, %08lx)\n", arg); |
| 196 | #endif |
| 197 | old_fs = get_fs(); set_fs(get_ds()); |
| 198 | sys_write(2, msg, strlen(msg)); |
| 199 | set_fs(old_fs); |
| 200 | printk("[%s:%d] Does unimplemented IRIX ioctl cmd %08lx\n", |
| 201 | current->comm, current->pid, cmd); |
| 202 | do_exit(255); |
| 203 | #else |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 204 | error = sys_ioctl(fd, cmd, arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | #endif |
| 206 | } |
| 207 | |
| 208 | }; |
| 209 | #ifdef DEBUG_IOCTLS |
| 210 | printk("error=%d\n", error); |
| 211 | #endif |
| 212 | return error; |
| 213 | } |