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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/char/pty.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *
  6.  *  Added support for a Unix98-style ptmx device.
  7.  *    -- C. Scott Ananian <cananian@alumni.princeton.edu>, 14-Jan-1998
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/module.h> /* For EXPORT_SYMBOL */
  11. #include <linux/errno.h>
  12. #include <linux/sched.h>
  13. #include <linux/interrupt.h>
  14. #include <linux/tty.h>
  15. #include <linux/tty_flip.h>
  16. #include <linux/fcntl.h>
  17. #include <linux/string.h>
  18. #include <linux/major.h>
  19. #include <linux/mm.h>
  20. #include <linux/init.h>
  21. #include <linux/devfs_fs_kernel.h>
  22. #include <asm/uaccess.h>
  23. #include <asm/system.h>
  24. #include <asm/bitops.h>
  25. #define BUILDING_PTY_C 1
  26. #include <linux/devpts_fs.h>
  27. struct pty_struct {
  28. int magic;
  29. wait_queue_head_t open_wait;
  30. };
  31. #define PTY_MAGIC 0x5001
  32. static struct tty_driver pty_driver, pty_slave_driver;
  33. static int pty_refcount;
  34. /* Note: one set of tables for BSD and one for Unix98 */
  35. static struct tty_struct *pty_table[NR_PTYS];
  36. static struct termios *pty_termios[NR_PTYS];
  37. static struct termios *pty_termios_locked[NR_PTYS];
  38. static struct tty_struct *ttyp_table[NR_PTYS];
  39. static struct termios *ttyp_termios[NR_PTYS];
  40. static struct termios *ttyp_termios_locked[NR_PTYS];
  41. static struct pty_struct pty_state[NR_PTYS];
  42. #ifdef CONFIG_UNIX98_PTYS
  43. /* These are global because they are accessed in tty_io.c */
  44. struct tty_driver ptm_driver[UNIX98_NR_MAJORS];
  45. struct tty_driver pts_driver[UNIX98_NR_MAJORS];
  46. static struct tty_struct *ptm_table[UNIX98_NR_MAJORS][NR_PTYS];
  47. static struct termios *ptm_termios[UNIX98_NR_MAJORS][NR_PTYS];
  48. static struct termios *ptm_termios_locked[UNIX98_NR_MAJORS][NR_PTYS];
  49. static struct tty_struct *pts_table[UNIX98_NR_MAJORS][NR_PTYS];
  50. static struct termios *pts_termios[UNIX98_NR_MAJORS][NR_PTYS];
  51. static struct termios *pts_termios_locked[UNIX98_NR_MAJORS][NR_PTYS];
  52. static struct pty_struct ptm_state[UNIX98_NR_MAJORS][NR_PTYS];
  53. #endif
  54. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  55. static void pty_close(struct tty_struct * tty, struct file * filp)
  56. {
  57. if (!tty)
  58. return;
  59. if (tty->driver.subtype == PTY_TYPE_MASTER) {
  60. if (tty->count > 1)
  61. printk("master pty_close: count = %d!!n", tty->count);
  62. } else {
  63. if (tty->count > 2)
  64. return;
  65. }
  66. wake_up_interruptible(&tty->read_wait);
  67. wake_up_interruptible(&tty->write_wait);
  68. tty->packet = 0;
  69. if (!tty->link)
  70. return;
  71. tty->link->packet = 0;
  72. wake_up_interruptible(&tty->link->read_wait);
  73. wake_up_interruptible(&tty->link->write_wait);
  74. set_bit(TTY_OTHER_CLOSED, &tty->link->flags);
  75. if (tty->driver.subtype == PTY_TYPE_MASTER) {
  76. set_bit(TTY_OTHER_CLOSED, &tty->flags);
  77. #ifdef CONFIG_UNIX98_PTYS
  78. {
  79. unsigned int major = MAJOR(tty->device) - UNIX98_PTY_MASTER_MAJOR;
  80. if ( major < UNIX98_NR_MAJORS ) {
  81. devpts_pty_kill( MINOR(tty->device)
  82.   - tty->driver.minor_start + tty->driver.name_base );
  83. }
  84. }
  85. #endif
  86. tty_unregister_devfs (&tty->link->driver, MINOR (tty->device));
  87. tty_vhangup(tty->link);
  88. }
  89. }
  90. /*
  91.  * The unthrottle routine is called by the line discipline to signal
  92.  * that it can receive more characters.  For PTY's, the TTY_THROTTLED
  93.  * flag is always set, to force the line discipline to always call the
  94.  * unthrottle routine when there are fewer than TTY_THRESHOLD_UNTHROTTLE 
  95.  * characters in the queue.  This is necessary since each time this
  96.  * happens, we need to wake up any sleeping processes that could be
  97.  * (1) trying to send data to the pty, or (2) waiting in wait_until_sent()
  98.  * for the pty buffer to be drained.
  99.  */
  100. static void pty_unthrottle(struct tty_struct * tty)
  101. {
  102. struct tty_struct *o_tty = tty->link;
  103. if (!o_tty)
  104. return;
  105. if ((o_tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  106.     o_tty->ldisc.write_wakeup)
  107. (o_tty->ldisc.write_wakeup)(o_tty);
  108. wake_up_interruptible(&o_tty->write_wait);
  109. set_bit(TTY_THROTTLED, &tty->flags);
  110. }
  111. /*
  112.  * WSH 05/24/97: modified to 
  113.  *   (1) use space in tty->flip instead of a shared temp buffer
  114.  *  The flip buffers aren't being used for a pty, so there's lots
  115.  *  of space available.  The buffer is protected by a per-pty
  116.  *  semaphore that should almost never come under contention.
  117.  *   (2) avoid redundant copying for cases where count >> receive_room
  118.  * N.B. Calls from user space may now return an error code instead of
  119.  * a count.
  120.  */
  121. static int pty_write(struct tty_struct * tty, int from_user,
  122.        const unsigned char *buf, int count)
  123. {
  124. struct tty_struct *to = tty->link;
  125. int c=0, n, room;
  126. char *temp_buffer;
  127. if (!to || tty->stopped)
  128. return 0;
  129. if (from_user) {
  130. down(&tty->flip.pty_sem);
  131. temp_buffer = &tty->flip.char_buf[0];
  132. while (count > 0) {
  133. /* check space so we don't copy needlessly */ 
  134. n = to->ldisc.receive_room(to);
  135. if (n > count)
  136. n = count;
  137. if (!n) break;
  138. n  = MIN(n, PTY_BUF_SIZE);
  139. n -= copy_from_user(temp_buffer, buf, n);
  140. if (!n) {
  141. if (!c)
  142. c = -EFAULT;
  143. break;
  144. }
  145. /* check again in case the buffer filled up */
  146. room = to->ldisc.receive_room(to);
  147. if (n > room)
  148. n = room;
  149. if (!n) break;
  150. buf   += n; 
  151. c     += n;
  152. count -= n;
  153. to->ldisc.receive_buf(to, temp_buffer, 0, n);
  154. }
  155. up(&tty->flip.pty_sem);
  156. } else {
  157. c = to->ldisc.receive_room(to);
  158. if (c > count)
  159. c = count;
  160. to->ldisc.receive_buf(to, buf, 0, c);
  161. }
  162. return c;
  163. }
  164. static int pty_write_room(struct tty_struct *tty)
  165. {
  166. struct tty_struct *to = tty->link;
  167. if (!to || tty->stopped)
  168. return 0;
  169. return to->ldisc.receive_room(to);
  170. }
  171. /*
  172.  * WSH 05/24/97:  Modified for asymmetric MASTER/SLAVE behavior
  173.  * The chars_in_buffer() value is used by the ldisc select() function 
  174.  * to hold off writing when chars_in_buffer > WAKEUP_CHARS (== 256).
  175.  * The pty driver chars_in_buffer() Master/Slave must behave differently:
  176.  *
  177.  *      The Master side needs to allow typed-ahead commands to accumulate
  178.  *      while being canonicalized, so we report "our buffer" as empty until
  179.  * some threshold is reached, and then report the count. (Any count >
  180.  * WAKEUP_CHARS is regarded by select() as "full".)  To avoid deadlock 
  181.  * the count returned must be 0 if no canonical data is available to be 
  182.  * read. (The N_TTY ldisc.chars_in_buffer now knows this.)
  183.  *  
  184.  * The Slave side passes all characters in raw mode to the Master side's
  185.  * buffer where they can be read immediately, so in this case we can
  186.  * return the true count in the buffer.
  187.  */
  188. static int pty_chars_in_buffer(struct tty_struct *tty)
  189. {
  190. struct tty_struct *to = tty->link;
  191. int count;
  192. if (!to || !to->ldisc.chars_in_buffer)
  193. return 0;
  194. /* The ldisc must report 0 if no characters available to be read */
  195. count = to->ldisc.chars_in_buffer(to);
  196. if (tty->driver.subtype == PTY_TYPE_SLAVE) return count;
  197. /* Master side driver ... if the other side's read buffer is less than 
  198.  * half full, return 0 to allow writers to proceed; otherwise return
  199.  * the count.  This leaves a comfortable margin to avoid overflow, 
  200.  * and still allows half a buffer's worth of typed-ahead commands.
  201.  */
  202. return ((count < N_TTY_BUF_SIZE/2) ? 0 : count);
  203. }
  204. /* 
  205.  * Return the device number of a Unix98 PTY (only!).  This lets us open a
  206.  * master pty with the multi-headed ptmx device, then find out which
  207.  * one we got after it is open, with an ioctl.
  208.  */
  209. #ifdef CONFIG_UNIX98_PTYS
  210. static int pty_get_device_number(struct tty_struct *tty, unsigned int *value)
  211. {
  212. unsigned int result = MINOR(tty->device)
  213. - tty->driver.minor_start + tty->driver.name_base;
  214. return put_user(result, value);
  215. }
  216. #endif
  217. /* Set the lock flag on a pty */
  218. static int pty_set_lock(struct tty_struct *tty, int * arg)
  219. {
  220. int val;
  221. if (get_user(val,arg))
  222. return -EFAULT;
  223. if (val)
  224. set_bit(TTY_PTY_LOCK, &tty->flags);
  225. else
  226. clear_bit(TTY_PTY_LOCK, &tty->flags);
  227. return 0;
  228. }
  229. static int pty_bsd_ioctl(struct tty_struct *tty, struct file *file,
  230. unsigned int cmd, unsigned long arg)
  231. {
  232. if (!tty) {
  233. printk("pty_ioctl called with NULL tty!n");
  234. return -EIO;
  235. }
  236. switch(cmd) {
  237. case TIOCSPTLCK: /* Set PT Lock (disallow slave open) */
  238. return pty_set_lock(tty, (int *) arg);
  239. }
  240. return -ENOIOCTLCMD;
  241. }
  242. #ifdef CONFIG_UNIX98_PTYS
  243. static int pty_unix98_ioctl(struct tty_struct *tty, struct file *file,
  244.     unsigned int cmd, unsigned long arg)
  245. {
  246. if (!tty) {
  247. printk("pty_unix98_ioctl called with NULL tty!n");
  248. return -EIO;
  249. }
  250. switch(cmd) {
  251. case TIOCGPTN: /* Get PT Number */
  252. return pty_get_device_number(tty, (unsigned int *)arg);
  253. }
  254. return pty_bsd_ioctl(tty,file,cmd,arg);
  255. }
  256. #endif
  257. static void pty_flush_buffer(struct tty_struct *tty)
  258. {
  259. struct tty_struct *to = tty->link;
  260. if (!to)
  261. return;
  262. if (to->ldisc.flush_buffer)
  263. to->ldisc.flush_buffer(to);
  264. if (to->packet) {
  265. tty->ctrl_status |= TIOCPKT_FLUSHWRITE;
  266. wake_up_interruptible(&to->read_wait);
  267. }
  268. }
  269. static int pty_open(struct tty_struct *tty, struct file * filp)
  270. {
  271. int retval;
  272. int line;
  273. struct pty_struct *pty;
  274. retval = -ENODEV;
  275. if (!tty || !tty->link)
  276. goto out;
  277. line = MINOR(tty->device) - tty->driver.minor_start;
  278. if ((line < 0) || (line >= NR_PTYS))
  279. goto out;
  280. pty = (struct pty_struct *)(tty->driver.driver_state) + line;
  281. tty->driver_data = pty;
  282. retval = -EIO;
  283. if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
  284. goto out;
  285. if (test_bit(TTY_PTY_LOCK, &tty->link->flags))
  286. goto out;
  287. if (tty->link->count != 1)
  288. goto out;
  289. clear_bit(TTY_OTHER_CLOSED, &tty->link->flags);
  290. wake_up_interruptible(&pty->open_wait);
  291. set_bit(TTY_THROTTLED, &tty->flags);
  292. /*  Register a slave for the master  */
  293. if (tty->driver.major == PTY_MASTER_MAJOR)
  294. tty_register_devfs(&tty->link->driver,
  295.    DEVFS_FL_CURRENT_OWNER | DEVFS_FL_WAIT,
  296.    tty->link->driver.minor_start +
  297.    MINOR(tty->device)-tty->driver.minor_start);
  298. retval = 0;
  299. out:
  300. return retval;
  301. }
  302. static void pty_set_termios(struct tty_struct *tty, struct termios *old_termios)
  303. {
  304.         tty->termios->c_cflag &= ~(CSIZE | PARENB);
  305.         tty->termios->c_cflag |= (CS8 | CREAD);
  306. }
  307. int __init pty_init(void)
  308. {
  309. int i;
  310. /* Traditional BSD devices */
  311. memset(&pty_state, 0, sizeof(pty_state));
  312. for (i = 0; i < NR_PTYS; i++)
  313. init_waitqueue_head(&pty_state[i].open_wait);
  314. memset(&pty_driver, 0, sizeof(struct tty_driver));
  315. pty_driver.magic = TTY_DRIVER_MAGIC;
  316. pty_driver.driver_name = "pty_master";
  317. #ifdef CONFIG_DEVFS_FS
  318. pty_driver.name = "pty/m%d";
  319. #else
  320. pty_driver.name = "pty";
  321. #endif
  322. pty_driver.major = PTY_MASTER_MAJOR;
  323. pty_driver.minor_start = 0;
  324. pty_driver.num = NR_PTYS;
  325. pty_driver.type = TTY_DRIVER_TYPE_PTY;
  326. pty_driver.subtype = PTY_TYPE_MASTER;
  327. pty_driver.init_termios = tty_std_termios;
  328. pty_driver.init_termios.c_iflag = 0;
  329. pty_driver.init_termios.c_oflag = 0;
  330. pty_driver.init_termios.c_cflag = B38400 | CS8 | CREAD;
  331. pty_driver.init_termios.c_lflag = 0;
  332. pty_driver.flags = TTY_DRIVER_RESET_TERMIOS | TTY_DRIVER_REAL_RAW;
  333. pty_driver.refcount = &pty_refcount;
  334. pty_driver.table = pty_table;
  335. pty_driver.termios = pty_termios;
  336. pty_driver.termios_locked = pty_termios_locked;
  337. pty_driver.driver_state = pty_state;
  338. pty_driver.other = &pty_slave_driver;
  339. pty_driver.open = pty_open;
  340. pty_driver.close = pty_close;
  341. pty_driver.write = pty_write;
  342. pty_driver.write_room = pty_write_room;
  343. pty_driver.flush_buffer = pty_flush_buffer;
  344. pty_driver.chars_in_buffer = pty_chars_in_buffer;
  345. pty_driver.unthrottle = pty_unthrottle;
  346. pty_driver.set_termios = pty_set_termios;
  347. pty_slave_driver = pty_driver;
  348. pty_slave_driver.driver_name = "pty_slave";
  349. pty_slave_driver.proc_entry = 0;
  350. #ifdef CONFIG_DEVFS_FS
  351. pty_slave_driver.name = "pty/s%d";
  352. #else
  353. pty_slave_driver.name = "ttyp";
  354. #endif
  355. pty_slave_driver.subtype = PTY_TYPE_SLAVE;
  356. pty_slave_driver.major = PTY_SLAVE_MAJOR;
  357. pty_slave_driver.minor_start = 0;
  358. pty_slave_driver.init_termios = tty_std_termios;
  359. pty_slave_driver.init_termios.c_cflag = B38400 | CS8 | CREAD;
  360. /* Slave ptys are registered when their corresponding master pty
  361.  * is opened, and unregistered when the pair is closed.
  362.  */
  363. pty_slave_driver.flags |= TTY_DRIVER_NO_DEVFS;
  364. pty_slave_driver.table = ttyp_table;
  365. pty_slave_driver.termios = ttyp_termios;
  366. pty_slave_driver.termios_locked = ttyp_termios_locked;
  367. pty_slave_driver.driver_state = pty_state;
  368. pty_slave_driver.other = &pty_driver;
  369. if (tty_register_driver(&pty_driver))
  370. panic("Couldn't register pty driver");
  371. if (tty_register_driver(&pty_slave_driver))
  372. panic("Couldn't register pty slave driver");
  373. /* 
  374.  * only the master pty gets this ioctl (which is why we
  375.  * assign it here, instead of up with the rest of the
  376.  * pty_driver initialization. <cananian@alumni.princeton.edu>
  377.  */
  378. pty_driver.ioctl = pty_bsd_ioctl;
  379. /* Unix98 devices */
  380. #ifdef CONFIG_UNIX98_PTYS
  381. devfs_mk_dir (NULL, "pts", NULL);
  382. printk("pty: %d Unix98 ptys configuredn", UNIX98_NR_MAJORS*NR_PTYS);
  383. for ( i = 0 ; i < UNIX98_NR_MAJORS ; i++ ) {
  384. int j;
  385. ptm_driver[i] = pty_driver;
  386. ptm_driver[i].name = "ptm";
  387. ptm_driver[i].proc_entry = 0;
  388. ptm_driver[i].major = UNIX98_PTY_MASTER_MAJOR+i;
  389. ptm_driver[i].minor_start = 0;
  390. ptm_driver[i].name_base = i*NR_PTYS;
  391. ptm_driver[i].num = NR_PTYS;
  392. ptm_driver[i].other = &pts_driver[i];
  393. ptm_driver[i].flags |= TTY_DRIVER_NO_DEVFS;
  394. ptm_driver[i].table = ptm_table[i];
  395. ptm_driver[i].termios = ptm_termios[i];
  396. ptm_driver[i].termios_locked = ptm_termios_locked[i];
  397. ptm_driver[i].driver_state = ptm_state[i];
  398. for (j = 0; j < NR_PTYS; j++)
  399. init_waitqueue_head(&ptm_state[i][j].open_wait);
  400. pts_driver[i] = pty_slave_driver;
  401. #ifdef CONFIG_DEVFS_FS
  402. pts_driver[i].name = "pts/%d";
  403. #else
  404. pts_driver[i].name = "pts";
  405. #endif
  406. pts_driver[i].proc_entry = 0;
  407. pts_driver[i].major = UNIX98_PTY_SLAVE_MAJOR+i;
  408. pts_driver[i].minor_start = 0;
  409. pts_driver[i].name_base = i*NR_PTYS;
  410. pts_driver[i].num = ptm_driver[i].num;
  411. pts_driver[i].other = &ptm_driver[i];
  412. pts_driver[i].table = pts_table[i];
  413. pts_driver[i].termios = pts_termios[i];
  414. pts_driver[i].termios_locked = pts_termios_locked[i];
  415. pts_driver[i].driver_state = ptm_state[i];
  416. ptm_driver[i].ioctl = pty_unix98_ioctl;
  417. if (tty_register_driver(&ptm_driver[i]))
  418. panic("Couldn't register Unix98 ptm driver major %d",
  419.       ptm_driver[i].major);
  420. if (tty_register_driver(&pts_driver[i]))
  421. panic("Couldn't register Unix98 pts driver major %d",
  422.       pts_driver[i].major);
  423. }
  424. #endif
  425. return 0;
  426. }