tty_ioctl.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:13k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/char/tty_ioctl.c
  3.  *
  4.  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
  5.  *
  6.  * Modified by Fred N. van Kempen, 01/29/93, to add line disciplines
  7.  * which can be dynamically activated and de-activated by the line
  8.  * discipline handling modules (like SLIP).
  9.  */
  10. #include <linux/types.h>
  11. #include <linux/termios.h>
  12. #include <linux/errno.h>
  13. #include <linux/sched.h>
  14. #include <linux/kernel.h>
  15. #include <linux/major.h>
  16. #include <linux/tty.h>
  17. #include <linux/fcntl.h>
  18. #include <linux/string.h>
  19. #include <linux/mm.h>
  20. #include <linux/module.h>
  21. #include <asm/io.h>
  22. #include <asm/bitops.h>
  23. #include <asm/uaccess.h>
  24. #include <asm/system.h>
  25. #undef TTY_DEBUG_WAIT_UNTIL_SENT
  26. #undef DEBUG
  27. /*
  28.  * Internal flag options for termios setting behavior
  29.  */
  30. #define TERMIOS_FLUSH 1
  31. #define TERMIOS_WAIT 2
  32. #define TERMIOS_TERMIO 4
  33. void tty_wait_until_sent(struct tty_struct * tty, long timeout)
  34. {
  35. DECLARE_WAITQUEUE(wait, current);
  36. #ifdef TTY_DEBUG_WAIT_UNTIL_SENT
  37. char buf[64];
  38. printk(KERN_DEBUG "%s wait until sent...n", tty_name(tty, buf));
  39. #endif
  40. if (!tty->driver.chars_in_buffer)
  41. return;
  42. add_wait_queue(&tty->write_wait, &wait);
  43. if (!timeout)
  44. timeout = MAX_SCHEDULE_TIMEOUT;
  45. do {
  46. #ifdef TTY_DEBUG_WAIT_UNTIL_SENT
  47. printk(KERN_DEBUG "waiting %s...(%d)n", tty_name(tty, buf),
  48.        tty->driver.chars_in_buffer(tty));
  49. #endif
  50. set_current_state(TASK_INTERRUPTIBLE);
  51. if (signal_pending(current))
  52. goto stop_waiting;
  53. if (!tty->driver.chars_in_buffer(tty))
  54. break;
  55. timeout = schedule_timeout(timeout);
  56. } while (timeout);
  57. if (tty->driver.wait_until_sent)
  58. tty->driver.wait_until_sent(tty, timeout);
  59. stop_waiting:
  60. current->state = TASK_RUNNING;
  61. remove_wait_queue(&tty->write_wait, &wait);
  62. }
  63. static void unset_locked_termios(struct termios *termios,
  64.  struct termios *old,
  65.  struct termios *locked)
  66. {
  67. int i;
  68. #define NOSET_MASK(x,y,z) (x = ((x) & ~(z)) | ((y) & (z)))
  69. if (!locked) {
  70. printk(KERN_WARNING "Warning?!? termios_locked is NULL.n");
  71. return;
  72. }
  73. NOSET_MASK(termios->c_iflag, old->c_iflag, locked->c_iflag);
  74. NOSET_MASK(termios->c_oflag, old->c_oflag, locked->c_oflag);
  75. NOSET_MASK(termios->c_cflag, old->c_cflag, locked->c_cflag);
  76. NOSET_MASK(termios->c_lflag, old->c_lflag, locked->c_lflag);
  77. termios->c_line = locked->c_line ? old->c_line : termios->c_line;
  78. for (i=0; i < NCCS; i++)
  79. termios->c_cc[i] = locked->c_cc[i] ?
  80. old->c_cc[i] : termios->c_cc[i];
  81. }
  82. static void change_termios(struct tty_struct * tty, struct termios * new_termios)
  83. {
  84. int canon_change;
  85. struct termios old_termios = *tty->termios;
  86. cli();
  87. *tty->termios = *new_termios;
  88. unset_locked_termios(tty->termios, &old_termios, tty->termios_locked);
  89. canon_change = (old_termios.c_lflag ^ tty->termios->c_lflag) & ICANON;
  90. if (canon_change) {
  91. memset(&tty->read_flags, 0, sizeof tty->read_flags);
  92. tty->canon_head = tty->read_tail;
  93. tty->canon_data = 0;
  94. tty->erasing = 0;
  95. }
  96. sti();
  97. if (canon_change && !L_ICANON(tty) && tty->read_cnt)
  98. /* Get characters left over from canonical mode. */
  99. wake_up_interruptible(&tty->read_wait);
  100. /* see if packet mode change of state */
  101. if (tty->link && tty->link->packet) {
  102. int old_flow = ((old_termios.c_iflag & IXON) &&
  103. (old_termios.c_cc[VSTOP] == '23') &&
  104. (old_termios.c_cc[VSTART] == '21'));
  105. int new_flow = (I_IXON(tty) &&
  106. STOP_CHAR(tty) == '23' &&
  107. START_CHAR(tty) == '21');
  108. if (old_flow != new_flow) {
  109. tty->ctrl_status &= ~(TIOCPKT_DOSTOP | TIOCPKT_NOSTOP);
  110. if (new_flow)
  111. tty->ctrl_status |= TIOCPKT_DOSTOP;
  112. else
  113. tty->ctrl_status |= TIOCPKT_NOSTOP;
  114. wake_up_interruptible(&tty->link->read_wait);
  115. }
  116. }
  117. if (tty->driver.set_termios)
  118. (*tty->driver.set_termios)(tty, &old_termios);
  119. if (tty->ldisc.set_termios)
  120. (*tty->ldisc.set_termios)(tty, &old_termios);
  121. }
  122. static int set_termios(struct tty_struct * tty, unsigned long arg, int opt)
  123. {
  124. struct termios tmp_termios;
  125. int retval = tty_check_change(tty);
  126. if (retval)
  127. return retval;
  128. if (opt & TERMIOS_TERMIO) {
  129. memcpy(&tmp_termios, tty->termios, sizeof(struct termios));
  130. if (user_termio_to_kernel_termios(&tmp_termios,
  131.   (struct termio *) arg))
  132. return -EFAULT;
  133. } else {
  134. if (user_termios_to_kernel_termios(&tmp_termios,
  135.    (struct termios *) arg))
  136. return -EFAULT;
  137. }
  138. if ((opt & TERMIOS_FLUSH) && tty->ldisc.flush_buffer)
  139. tty->ldisc.flush_buffer(tty);
  140. if (opt & TERMIOS_WAIT) {
  141. tty_wait_until_sent(tty, 0);
  142. if (signal_pending(current))
  143. return -EINTR;
  144. }
  145. change_termios(tty, &tmp_termios);
  146. return 0;
  147. }
  148. static int get_termio(struct tty_struct * tty, struct termio * termio)
  149. {
  150. if (kernel_termios_to_user_termio(termio, tty->termios))
  151. return -EFAULT;
  152. return 0;
  153. }
  154. static unsigned long inq_canon(struct tty_struct * tty)
  155. {
  156. int nr, head, tail;
  157. if (!tty->canon_data || !tty->read_buf)
  158. return 0;
  159. head = tty->canon_head;
  160. tail = tty->read_tail;
  161. nr = (head - tail) & (N_TTY_BUF_SIZE-1);
  162. /* Skip EOF-chars.. */
  163. while (head != tail) {
  164. if (test_bit(tail, &tty->read_flags) &&
  165.     tty->read_buf[tail] == __DISABLED_CHAR)
  166. nr--;
  167. tail = (tail+1) & (N_TTY_BUF_SIZE-1);
  168. }
  169. return nr;
  170. }
  171. #ifdef TIOCGETP
  172. /*
  173.  * These are deprecated, but there is limited support..
  174.  *
  175.  * The "sg_flags" translation is a joke..
  176.  */
  177. static int get_sgflags(struct tty_struct * tty)
  178. {
  179. int flags = 0;
  180. if (!(tty->termios->c_lflag & ICANON)) {
  181. if (tty->termios->c_lflag & ISIG)
  182. flags |= 0x02; /* cbreak */
  183. else
  184. flags |= 0x20; /* raw */
  185. }
  186. if (tty->termios->c_lflag & ECHO)
  187. flags |= 0x08; /* echo */
  188. if (tty->termios->c_oflag & OPOST)
  189. if (tty->termios->c_oflag & ONLCR)
  190. flags |= 0x10; /* crmod */
  191. return flags;
  192. }
  193. static int get_sgttyb(struct tty_struct * tty, struct sgttyb * sgttyb)
  194. {
  195. struct sgttyb tmp;
  196. tmp.sg_ispeed = 0;
  197. tmp.sg_ospeed = 0;
  198. tmp.sg_erase = tty->termios->c_cc[VERASE];
  199. tmp.sg_kill = tty->termios->c_cc[VKILL];
  200. tmp.sg_flags = get_sgflags(tty);
  201. return copy_to_user(sgttyb, &tmp, sizeof(tmp)) ? -EFAULT : 0;
  202. }
  203. static void set_sgflags(struct termios * termios, int flags)
  204. {
  205. termios->c_iflag = ICRNL | IXON;
  206. termios->c_oflag = 0;
  207. termios->c_lflag = ISIG | ICANON;
  208. if (flags & 0x02) { /* cbreak */
  209. termios->c_iflag = 0;
  210. termios->c_lflag &= ~ICANON;
  211. }
  212. if (flags & 0x08) { /* echo */
  213. termios->c_lflag |= ECHO | ECHOE | ECHOK |
  214.     ECHOCTL | ECHOKE | IEXTEN;
  215. }
  216. if (flags & 0x10) { /* crmod */
  217. termios->c_oflag |= OPOST | ONLCR;
  218. }
  219. if (flags & 0x20) { /* raw */
  220. termios->c_iflag = 0;
  221. termios->c_lflag &= ~(ISIG | ICANON);
  222. }
  223. if (!(termios->c_lflag & ICANON)) {
  224. termios->c_cc[VMIN] = 1;
  225. termios->c_cc[VTIME] = 0;
  226. }
  227. }
  228. static int set_sgttyb(struct tty_struct * tty, struct sgttyb * sgttyb)
  229. {
  230. int retval;
  231. struct sgttyb tmp;
  232. struct termios termios;
  233. retval = tty_check_change(tty);
  234. if (retval)
  235. return retval;
  236. termios =  *tty->termios;
  237. if (copy_from_user(&tmp, sgttyb, sizeof(tmp)))
  238. return -EFAULT;
  239. termios.c_cc[VERASE] = tmp.sg_erase;
  240. termios.c_cc[VKILL] = tmp.sg_kill;
  241. set_sgflags(&termios, tmp.sg_flags);
  242. change_termios(tty, &termios);
  243. return 0;
  244. }
  245. #endif
  246. #ifdef TIOCGETC
  247. static int get_tchars(struct tty_struct * tty, struct tchars * tchars)
  248. {
  249. struct tchars tmp;
  250. tmp.t_intrc = tty->termios->c_cc[VINTR];
  251. tmp.t_quitc = tty->termios->c_cc[VQUIT];
  252. tmp.t_startc = tty->termios->c_cc[VSTART];
  253. tmp.t_stopc = tty->termios->c_cc[VSTOP];
  254. tmp.t_eofc = tty->termios->c_cc[VEOF];
  255. tmp.t_brkc = tty->termios->c_cc[VEOL2]; /* what is brkc anyway? */
  256. return copy_to_user(tchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
  257. }
  258. static int set_tchars(struct tty_struct * tty, struct tchars * tchars)
  259. {
  260. struct tchars tmp;
  261. if (copy_from_user(&tmp, tchars, sizeof(tmp)))
  262. return -EFAULT;
  263. tty->termios->c_cc[VINTR] = tmp.t_intrc;
  264. tty->termios->c_cc[VQUIT] = tmp.t_quitc;
  265. tty->termios->c_cc[VSTART] = tmp.t_startc;
  266. tty->termios->c_cc[VSTOP] = tmp.t_stopc;
  267. tty->termios->c_cc[VEOF] = tmp.t_eofc;
  268. tty->termios->c_cc[VEOL2] = tmp.t_brkc; /* what is brkc anyway? */
  269. return 0;
  270. }
  271. #endif
  272. #ifdef TIOCGLTC
  273. static int get_ltchars(struct tty_struct * tty, struct ltchars * ltchars)
  274. {
  275. struct ltchars tmp;
  276. tmp.t_suspc = tty->termios->c_cc[VSUSP];
  277. tmp.t_dsuspc = tty->termios->c_cc[VSUSP]; /* what is dsuspc anyway? */
  278. tmp.t_rprntc = tty->termios->c_cc[VREPRINT];
  279. tmp.t_flushc = tty->termios->c_cc[VEOL2]; /* what is flushc anyway? */
  280. tmp.t_werasc = tty->termios->c_cc[VWERASE];
  281. tmp.t_lnextc = tty->termios->c_cc[VLNEXT];
  282. return copy_to_user(ltchars, &tmp, sizeof(tmp)) ? -EFAULT : 0;
  283. }
  284. static int set_ltchars(struct tty_struct * tty, struct ltchars * ltchars)
  285. {
  286. struct ltchars tmp;
  287. if (copy_from_user(&tmp, ltchars, sizeof(tmp)))
  288. return -EFAULT;
  289. tty->termios->c_cc[VSUSP] = tmp.t_suspc;
  290. tty->termios->c_cc[VEOL2] = tmp.t_dsuspc; /* what is dsuspc anyway? */
  291. tty->termios->c_cc[VREPRINT] = tmp.t_rprntc;
  292. tty->termios->c_cc[VEOL2] = tmp.t_flushc; /* what is flushc anyway? */
  293. tty->termios->c_cc[VWERASE] = tmp.t_werasc;
  294. tty->termios->c_cc[VLNEXT] = tmp.t_lnextc;
  295. return 0;
  296. }
  297. #endif
  298. /*
  299.  * Send a high priority character to the tty.
  300.  */
  301. void send_prio_char(struct tty_struct *tty, char ch)
  302. {
  303. int was_stopped = tty->stopped;
  304. if (tty->driver.send_xchar) {
  305. tty->driver.send_xchar(tty, ch);
  306. return;
  307. }
  308. if (was_stopped)
  309. start_tty(tty);
  310. tty->driver.write(tty, 0, &ch, 1);
  311. if (was_stopped)
  312. stop_tty(tty);
  313. }
  314. int n_tty_ioctl(struct tty_struct * tty, struct file * file,
  315.        unsigned int cmd, unsigned long arg)
  316. {
  317. struct tty_struct * real_tty;
  318. int retval;
  319. if (tty->driver.type == TTY_DRIVER_TYPE_PTY &&
  320.     tty->driver.subtype == PTY_TYPE_MASTER)
  321. real_tty = tty->link;
  322. else
  323. real_tty = tty;
  324. switch (cmd) {
  325. #ifdef TIOCGETP
  326. case TIOCGETP:
  327. return get_sgttyb(real_tty, (struct sgttyb *) arg);
  328. case TIOCSETP:
  329. case TIOCSETN:
  330. return set_sgttyb(real_tty, (struct sgttyb *) arg);
  331. #endif
  332. #ifdef TIOCGETC
  333. case TIOCGETC:
  334. return get_tchars(real_tty, (struct tchars *) arg);
  335. case TIOCSETC:
  336. return set_tchars(real_tty, (struct tchars *) arg);
  337. #endif
  338. #ifdef TIOCGLTC
  339. case TIOCGLTC:
  340. return get_ltchars(real_tty, (struct ltchars *) arg);
  341. case TIOCSLTC:
  342. return set_ltchars(real_tty, (struct ltchars *) arg);
  343. #endif
  344. case TCGETS:
  345. if (kernel_termios_to_user_termios((struct termios *)arg, real_tty->termios))
  346. return -EFAULT;
  347. return 0;
  348. case TCSETSF:
  349. return set_termios(real_tty, arg,  TERMIOS_FLUSH);
  350. case TCSETSW:
  351. return set_termios(real_tty, arg, TERMIOS_WAIT);
  352. case TCSETS:
  353. return set_termios(real_tty, arg, 0);
  354. case TCGETA:
  355. return get_termio(real_tty,(struct termio *) arg);
  356. case TCSETAF:
  357. return set_termios(real_tty, arg, TERMIOS_FLUSH | TERMIOS_TERMIO);
  358. case TCSETAW:
  359. return set_termios(real_tty, arg, TERMIOS_WAIT | TERMIOS_TERMIO);
  360. case TCSETA:
  361. return set_termios(real_tty, arg, TERMIOS_TERMIO);
  362. case TCXONC:
  363. retval = tty_check_change(tty);
  364. if (retval)
  365. return retval;
  366. switch (arg) {
  367. case TCOOFF:
  368. if (!tty->flow_stopped) {
  369. tty->flow_stopped = 1;
  370. stop_tty(tty);
  371. }
  372. break;
  373. case TCOON:
  374. if (tty->flow_stopped) {
  375. tty->flow_stopped = 0;
  376. start_tty(tty);
  377. }
  378. break;
  379. case TCIOFF:
  380. if (STOP_CHAR(tty) != __DISABLED_CHAR)
  381. send_prio_char(tty, STOP_CHAR(tty));
  382. break;
  383. case TCION:
  384. if (START_CHAR(tty) != __DISABLED_CHAR)
  385. send_prio_char(tty, START_CHAR(tty));
  386. break;
  387. default:
  388. return -EINVAL;
  389. }
  390. return 0;
  391. case TCFLSH:
  392. retval = tty_check_change(tty);
  393. if (retval)
  394. return retval;
  395. switch (arg) {
  396. case TCIFLUSH:
  397. if (tty->ldisc.flush_buffer)
  398. tty->ldisc.flush_buffer(tty);
  399. break;
  400. case TCIOFLUSH:
  401. if (tty->ldisc.flush_buffer)
  402. tty->ldisc.flush_buffer(tty);
  403. /* fall through */
  404. case TCOFLUSH:
  405. if (tty->driver.flush_buffer)
  406. tty->driver.flush_buffer(tty);
  407. break;
  408. default:
  409. return -EINVAL;
  410. }
  411. return 0;
  412. case TIOCOUTQ:
  413. return put_user(tty->driver.chars_in_buffer ?
  414. tty->driver.chars_in_buffer(tty) : 0,
  415. (int *) arg);
  416. case TIOCINQ:
  417. retval = tty->read_cnt;
  418. if (L_ICANON(tty))
  419. retval = inq_canon(tty);
  420. return put_user(retval, (unsigned int *) arg);
  421. case TIOCGLCKTRMIOS:
  422. if (kernel_termios_to_user_termios((struct termios *)arg, real_tty->termios_locked))
  423. return -EFAULT;
  424. return 0;
  425. case TIOCSLCKTRMIOS:
  426. if (!capable(CAP_SYS_ADMIN))
  427. return -EPERM;
  428. if (user_termios_to_kernel_termios(real_tty->termios_locked, (struct termios *) arg))
  429. return -EFAULT;
  430. return 0;
  431. case TIOCPKT:
  432. {
  433. int pktmode;
  434. if (tty->driver.type != TTY_DRIVER_TYPE_PTY ||
  435.     tty->driver.subtype != PTY_TYPE_MASTER)
  436. return -ENOTTY;
  437. if (get_user(pktmode, (int *) arg))
  438. return -EFAULT;
  439. if (pktmode) {
  440. if (!tty->packet) {
  441. tty->packet = 1;
  442. tty->link->ctrl_status = 0;
  443. }
  444. } else
  445. tty->packet = 0;
  446. return 0;
  447. }
  448. case TIOCGSOFTCAR:
  449. return put_user(C_CLOCAL(tty) ? 1 : 0, (int *) arg);
  450. case TIOCSSOFTCAR:
  451. if (get_user(arg, (unsigned int *) arg))
  452. return -EFAULT;
  453. tty->termios->c_cflag =
  454. ((tty->termios->c_cflag & ~CLOCAL) |
  455.  (arg ? CLOCAL : 0));
  456. return 0;
  457. default:
  458. return -ENOIOCTLCMD;
  459. }
  460. }
  461. EXPORT_SYMBOL(n_tty_ioctl);