n_tty.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. /*
  2. * n_tty.c --- implements the N_TTY line discipline.
  3. *
  4. * This code used to be in tty_io.c, but things are getting hairy
  5. * enough that it made sense to split things off. (The N_TTY
  6. * processing has changed so much that it's hardly recognizable,
  7. * anyway...)
  8. *
  9. * Note that the open routine for N_TTY is guaranteed never to return
  10. * an error. This is because Linux will fall back to setting a line
  11. * to N_TTY if it can not switch to any other line discipline.
  12. *
  13. * Written by Theodore Ts'o, Copyright 1994.
  14. *
  15. * This file also contains code originally written by Linus Torvalds,
  16. * Copyright 1991, 1992, 1993, and by Julian Cowley, Copyright 1994.
  17. *
  18. * This file may be redistributed under the terms of the GNU General Public
  19. * License.
  20. *
  21. * Reduced memory usage for older ARM systems - Russell King.
  22. *
  23. * 2000/01/20 Fixed SMP locking on put_tty_queue using bits of
  24. * the patch by Andrew J. Kroll <ag784@freenet.buffalo.edu>
  25. * who actually finally proved there really was a race.
  26. *
  27. * 2002/03/18 Implemented n_tty_wakeup to send SIGIO POLL_OUTs to
  28. * waiting writing processes-Sapan Bhatia <sapan@corewars.org>.
  29. * Also fixed a bug in BLOCKING mode where n_tty_write returns
  30. * EAGAIN
  31. */
  32. #include <linux/types.h>
  33. #include <linux/major.h>
  34. #include <linux/errno.h>
  35. #include <linux/signal.h>
  36. #include <linux/fcntl.h>
  37. #include <linux/sched.h>
  38. #include <linux/interrupt.h>
  39. #include <linux/tty.h>
  40. #include <linux/timer.h>
  41. #include <linux/ctype.h>
  42. #include <linux/mm.h>
  43. #include <linux/string.h>
  44. #include <linux/slab.h>
  45. #include <linux/poll.h>
  46. #include <linux/bitops.h>
  47. #include <linux/audit.h>
  48. #include <linux/file.h>
  49. #include <linux/uaccess.h>
  50. #include <linux/module.h>
  51. #include <linux/ratelimit.h>
  52. /* number of characters left in xmit buffer before select has we have room */
  53. #define WAKEUP_CHARS 256
  54. /*
  55. * This defines the low- and high-watermarks for throttling and
  56. * unthrottling the TTY driver. These watermarks are used for
  57. * controlling the space in the read buffer.
  58. */
  59. #define TTY_THRESHOLD_THROTTLE 128 /* now based on remaining room */
  60. #define TTY_THRESHOLD_UNTHROTTLE 128
  61. /*
  62. * Special byte codes used in the echo buffer to represent operations
  63. * or special handling of characters. Bytes in the echo buffer that
  64. * are not part of such special blocks are treated as normal character
  65. * codes.
  66. */
  67. #define ECHO_OP_START 0xff
  68. #define ECHO_OP_MOVE_BACK_COL 0x80
  69. #define ECHO_OP_SET_CANON_COL 0x81
  70. #define ECHO_OP_ERASE_TAB 0x82
  71. #define ECHO_COMMIT_WATERMARK 256
  72. #define ECHO_BLOCK 256
  73. #define ECHO_DISCARD_WATERMARK N_TTY_BUF_SIZE - (ECHO_BLOCK + 32)
  74. #undef N_TTY_TRACE
  75. #ifdef N_TTY_TRACE
  76. # define n_tty_trace(f, args...) trace_printk(f, ##args)
  77. #else
  78. # define n_tty_trace(f, args...)
  79. #endif
  80. struct n_tty_data {
  81. /* producer-published */
  82. size_t read_head;
  83. size_t canon_head;
  84. size_t echo_head;
  85. size_t echo_commit;
  86. DECLARE_BITMAP(char_map, 256);
  87. /* private to n_tty_receive_overrun (single-threaded) */
  88. unsigned long overrun_time;
  89. int num_overrun;
  90. /* non-atomic */
  91. bool no_room;
  92. /* must hold exclusive termios_rwsem to reset these */
  93. unsigned char lnext:1, erasing:1, raw:1, real_raw:1, icanon:1;
  94. /* shared by producer and consumer */
  95. char read_buf[N_TTY_BUF_SIZE];
  96. DECLARE_BITMAP(read_flags, N_TTY_BUF_SIZE);
  97. unsigned char echo_buf[N_TTY_BUF_SIZE];
  98. int minimum_to_wake;
  99. /* consumer-published */
  100. size_t read_tail;
  101. size_t line_start;
  102. /* protected by output lock */
  103. unsigned int column;
  104. unsigned int canon_column;
  105. size_t echo_tail;
  106. struct mutex atomic_read_lock;
  107. struct mutex output_lock;
  108. };
  109. static inline size_t read_cnt(struct n_tty_data *ldata)
  110. {
  111. return ldata->read_head - ldata->read_tail;
  112. }
  113. static inline unsigned char read_buf(struct n_tty_data *ldata, size_t i)
  114. {
  115. return ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
  116. }
  117. static inline unsigned char *read_buf_addr(struct n_tty_data *ldata, size_t i)
  118. {
  119. return &ldata->read_buf[i & (N_TTY_BUF_SIZE - 1)];
  120. }
  121. static inline unsigned char echo_buf(struct n_tty_data *ldata, size_t i)
  122. {
  123. return ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
  124. }
  125. static inline unsigned char *echo_buf_addr(struct n_tty_data *ldata, size_t i)
  126. {
  127. return &ldata->echo_buf[i & (N_TTY_BUF_SIZE - 1)];
  128. }
  129. static inline int tty_put_user(struct tty_struct *tty, unsigned char x,
  130. unsigned char __user *ptr)
  131. {
  132. struct n_tty_data *ldata = tty->disc_data;
  133. tty_audit_add_data(tty, &x, 1, ldata->icanon);
  134. return put_user(x, ptr);
  135. }
  136. static int receive_room(struct tty_struct *tty)
  137. {
  138. struct n_tty_data *ldata = tty->disc_data;
  139. int left;
  140. if (I_PARMRK(tty)) {
  141. /* Multiply read_cnt by 3, since each byte might take up to
  142. * three times as many spaces when PARMRK is set (depending on
  143. * its flags, e.g. parity error). */
  144. left = N_TTY_BUF_SIZE - read_cnt(ldata) * 3 - 1;
  145. } else
  146. left = N_TTY_BUF_SIZE - read_cnt(ldata) - 1;
  147. /*
  148. * If we are doing input canonicalization, and there are no
  149. * pending newlines, let characters through without limit, so
  150. * that erase characters will be handled. Other excess
  151. * characters will be beeped.
  152. */
  153. if (left <= 0)
  154. left = ldata->icanon && ldata->canon_head == ldata->read_tail;
  155. return left;
  156. }
  157. /**
  158. * n_tty_set_room - receive space
  159. * @tty: terminal
  160. *
  161. * Re-schedules the flip buffer work if space just became available.
  162. *
  163. * Caller holds exclusive termios_rwsem
  164. * or
  165. * n_tty_read()/consumer path:
  166. * holds non-exclusive termios_rwsem
  167. */
  168. static void n_tty_set_room(struct tty_struct *tty)
  169. {
  170. struct n_tty_data *ldata = tty->disc_data;
  171. /* Did this open up the receive buffer? We may need to flip */
  172. if (unlikely(ldata->no_room) && receive_room(tty)) {
  173. ldata->no_room = 0;
  174. WARN_RATELIMIT(tty->port->itty == NULL,
  175. "scheduling with invalid itty\n");
  176. /* see if ldisc has been killed - if so, this means that
  177. * even though the ldisc has been halted and ->buf.work
  178. * cancelled, ->buf.work is about to be rescheduled
  179. */
  180. WARN_RATELIMIT(test_bit(TTY_LDISC_HALTED, &tty->flags),
  181. "scheduling buffer work for halted ldisc\n");
  182. queue_work(system_unbound_wq, &tty->port->buf.work);
  183. }
  184. }
  185. static ssize_t chars_in_buffer(struct tty_struct *tty)
  186. {
  187. struct n_tty_data *ldata = tty->disc_data;
  188. ssize_t n = 0;
  189. if (!ldata->icanon)
  190. n = read_cnt(ldata);
  191. else
  192. n = ldata->canon_head - ldata->read_tail;
  193. return n;
  194. }
  195. /**
  196. * n_tty_write_wakeup - asynchronous I/O notifier
  197. * @tty: tty device
  198. *
  199. * Required for the ptys, serial driver etc. since processes
  200. * that attach themselves to the master and rely on ASYNC
  201. * IO must be woken up
  202. */
  203. static void n_tty_write_wakeup(struct tty_struct *tty)
  204. {
  205. if (tty->fasync && test_and_clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags))
  206. kill_fasync(&tty->fasync, SIGIO, POLL_OUT);
  207. }
  208. static inline void n_tty_check_throttle(struct tty_struct *tty)
  209. {
  210. if (tty->driver->type == TTY_DRIVER_TYPE_PTY)
  211. return;
  212. /*
  213. * Check the remaining room for the input canonicalization
  214. * mode. We don't want to throttle the driver if we're in
  215. * canonical mode and don't have a newline yet!
  216. */
  217. while (1) {
  218. int throttled;
  219. tty_set_flow_change(tty, TTY_THROTTLE_SAFE);
  220. if (receive_room(tty) >= TTY_THRESHOLD_THROTTLE)
  221. break;
  222. throttled = tty_throttle_safe(tty);
  223. if (!throttled)
  224. break;
  225. }
  226. __tty_set_flow_change(tty, 0);
  227. }
  228. static inline void n_tty_check_unthrottle(struct tty_struct *tty)
  229. {
  230. if (tty->driver->type == TTY_DRIVER_TYPE_PTY &&
  231. tty->link->ldisc->ops->write_wakeup == n_tty_write_wakeup) {
  232. if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
  233. return;
  234. if (!tty->count)
  235. return;
  236. n_tty_set_room(tty);
  237. n_tty_write_wakeup(tty->link);
  238. wake_up_interruptible_poll(&tty->link->write_wait, POLLOUT);
  239. return;
  240. }
  241. /* If there is enough space in the read buffer now, let the
  242. * low-level driver know. We use chars_in_buffer() to
  243. * check the buffer, as it now knows about canonical mode.
  244. * Otherwise, if the driver is throttled and the line is
  245. * longer than TTY_THRESHOLD_UNTHROTTLE in canonical mode,
  246. * we won't get any more characters.
  247. */
  248. while (1) {
  249. int unthrottled;
  250. tty_set_flow_change(tty, TTY_UNTHROTTLE_SAFE);
  251. if (chars_in_buffer(tty) > TTY_THRESHOLD_UNTHROTTLE)
  252. break;
  253. if (!tty->count)
  254. break;
  255. n_tty_set_room(tty);
  256. unthrottled = tty_unthrottle_safe(tty);
  257. if (!unthrottled)
  258. break;
  259. }
  260. __tty_set_flow_change(tty, 0);
  261. }
  262. /**
  263. * put_tty_queue - add character to tty
  264. * @c: character
  265. * @ldata: n_tty data
  266. *
  267. * Add a character to the tty read_buf queue.
  268. *
  269. * n_tty_receive_buf()/producer path:
  270. * caller holds non-exclusive termios_rwsem
  271. * modifies read_head
  272. *
  273. * read_head is only considered 'published' if canonical mode is
  274. * not active.
  275. */
  276. static void put_tty_queue(unsigned char c, struct n_tty_data *ldata)
  277. {
  278. if (read_cnt(ldata) < N_TTY_BUF_SIZE) {
  279. *read_buf_addr(ldata, ldata->read_head) = c;
  280. ldata->read_head++;
  281. }
  282. }
  283. /**
  284. * reset_buffer_flags - reset buffer state
  285. * @tty: terminal to reset
  286. *
  287. * Reset the read buffer counters and clear the flags.
  288. * Called from n_tty_open() and n_tty_flush_buffer().
  289. *
  290. * Locking: caller holds exclusive termios_rwsem
  291. * (or locking is not required)
  292. */
  293. static void reset_buffer_flags(struct n_tty_data *ldata)
  294. {
  295. ldata->read_head = ldata->canon_head = ldata->read_tail = 0;
  296. ldata->echo_head = ldata->echo_tail = ldata->echo_commit = 0;
  297. ldata->line_start = 0;
  298. ldata->erasing = 0;
  299. bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
  300. }
  301. static void n_tty_packet_mode_flush(struct tty_struct *tty)
  302. {
  303. unsigned long flags;
  304. spin_lock_irqsave(&tty->ctrl_lock, flags);
  305. if (tty->link->packet) {
  306. tty->ctrl_status |= TIOCPKT_FLUSHREAD;
  307. wake_up_interruptible(&tty->link->read_wait);
  308. }
  309. spin_unlock_irqrestore(&tty->ctrl_lock, flags);
  310. }
  311. /**
  312. * n_tty_flush_buffer - clean input queue
  313. * @tty: terminal device
  314. *
  315. * Flush the input buffer. Called when the tty layer wants the
  316. * buffer flushed (eg at hangup) or when the N_TTY line discipline
  317. * internally has to clean the pending queue (for example some signals).
  318. *
  319. * Holds termios_rwsem to exclude producer/consumer while
  320. * buffer indices are reset.
  321. *
  322. * Locking: ctrl_lock, exclusive termios_rwsem
  323. */
  324. static void n_tty_flush_buffer(struct tty_struct *tty)
  325. {
  326. down_write(&tty->termios_rwsem);
  327. reset_buffer_flags(tty->disc_data);
  328. n_tty_set_room(tty);
  329. if (tty->link)
  330. n_tty_packet_mode_flush(tty);
  331. up_write(&tty->termios_rwsem);
  332. }
  333. /**
  334. * n_tty_chars_in_buffer - report available bytes
  335. * @tty: tty device
  336. *
  337. * Report the number of characters buffered to be delivered to user
  338. * at this instant in time.
  339. *
  340. * Locking: exclusive termios_rwsem
  341. */
  342. static ssize_t n_tty_chars_in_buffer(struct tty_struct *tty)
  343. {
  344. ssize_t n;
  345. WARN_ONCE(1, "%s is deprecated and scheduled for removal.", __func__);
  346. down_write(&tty->termios_rwsem);
  347. n = chars_in_buffer(tty);
  348. up_write(&tty->termios_rwsem);
  349. return n;
  350. }
  351. /**
  352. * is_utf8_continuation - utf8 multibyte check
  353. * @c: byte to check
  354. *
  355. * Returns true if the utf8 character 'c' is a multibyte continuation
  356. * character. We use this to correctly compute the on screen size
  357. * of the character when printing
  358. */
  359. static inline int is_utf8_continuation(unsigned char c)
  360. {
  361. return (c & 0xc0) == 0x80;
  362. }
  363. /**
  364. * is_continuation - multibyte check
  365. * @c: byte to check
  366. *
  367. * Returns true if the utf8 character 'c' is a multibyte continuation
  368. * character and the terminal is in unicode mode.
  369. */
  370. static inline int is_continuation(unsigned char c, struct tty_struct *tty)
  371. {
  372. return I_IUTF8(tty) && is_utf8_continuation(c);
  373. }
  374. /**
  375. * do_output_char - output one character
  376. * @c: character (or partial unicode symbol)
  377. * @tty: terminal device
  378. * @space: space available in tty driver write buffer
  379. *
  380. * This is a helper function that handles one output character
  381. * (including special characters like TAB, CR, LF, etc.),
  382. * doing OPOST processing and putting the results in the
  383. * tty driver's write buffer.
  384. *
  385. * Note that Linux currently ignores TABDLY, CRDLY, VTDLY, FFDLY
  386. * and NLDLY. They simply aren't relevant in the world today.
  387. * If you ever need them, add them here.
  388. *
  389. * Returns the number of bytes of buffer space used or -1 if
  390. * no space left.
  391. *
  392. * Locking: should be called under the output_lock to protect
  393. * the column state and space left in the buffer
  394. */
  395. static int do_output_char(unsigned char c, struct tty_struct *tty, int space)
  396. {
  397. struct n_tty_data *ldata = tty->disc_data;
  398. int spaces;
  399. if (!space)
  400. return -1;
  401. switch (c) {
  402. case '\n':
  403. if (O_ONLRET(tty))
  404. ldata->column = 0;
  405. if (O_ONLCR(tty)) {
  406. if (space < 2)
  407. return -1;
  408. ldata->canon_column = ldata->column = 0;
  409. tty->ops->write(tty, "\r\n", 2);
  410. return 2;
  411. }
  412. ldata->canon_column = ldata->column;
  413. break;
  414. case '\r':
  415. if (O_ONOCR(tty) && ldata->column == 0)
  416. return 0;
  417. if (O_OCRNL(tty)) {
  418. c = '\n';
  419. if (O_ONLRET(tty))
  420. ldata->canon_column = ldata->column = 0;
  421. break;
  422. }
  423. ldata->canon_column = ldata->column = 0;
  424. break;
  425. case '\t':
  426. spaces = 8 - (ldata->column & 7);
  427. if (O_TABDLY(tty) == XTABS) {
  428. if (space < spaces)
  429. return -1;
  430. ldata->column += spaces;
  431. tty->ops->write(tty, " ", spaces);
  432. return spaces;
  433. }
  434. ldata->column += spaces;
  435. break;
  436. case '\b':
  437. if (ldata->column > 0)
  438. ldata->column--;
  439. break;
  440. default:
  441. if (!iscntrl(c)) {
  442. if (O_OLCUC(tty))
  443. c = toupper(c);
  444. if (!is_continuation(c, tty))
  445. ldata->column++;
  446. }
  447. break;
  448. }
  449. tty_put_char(tty, c);
  450. return 1;
  451. }
  452. /**
  453. * process_output - output post processor
  454. * @c: character (or partial unicode symbol)
  455. * @tty: terminal device
  456. *
  457. * Output one character with OPOST processing.
  458. * Returns -1 when the output device is full and the character
  459. * must be retried.
  460. *
  461. * Locking: output_lock to protect column state and space left
  462. * (also, this is called from n_tty_write under the
  463. * tty layer write lock)
  464. */
  465. static int process_output(unsigned char c, struct tty_struct *tty)
  466. {
  467. struct n_tty_data *ldata = tty->disc_data;
  468. int space, retval;
  469. mutex_lock(&ldata->output_lock);
  470. space = tty_write_room(tty);
  471. retval = do_output_char(c, tty, space);
  472. mutex_unlock(&ldata->output_lock);
  473. if (retval < 0)
  474. return -1;
  475. else
  476. return 0;
  477. }
  478. /**
  479. * process_output_block - block post processor
  480. * @tty: terminal device
  481. * @buf: character buffer
  482. * @nr: number of bytes to output
  483. *
  484. * Output a block of characters with OPOST processing.
  485. * Returns the number of characters output.
  486. *
  487. * This path is used to speed up block console writes, among other
  488. * things when processing blocks of output data. It handles only
  489. * the simple cases normally found and helps to generate blocks of
  490. * symbols for the console driver and thus improve performance.
  491. *
  492. * Locking: output_lock to protect column state and space left
  493. * (also, this is called from n_tty_write under the
  494. * tty layer write lock)
  495. */
  496. static ssize_t process_output_block(struct tty_struct *tty,
  497. const unsigned char *buf, unsigned int nr)
  498. {
  499. struct n_tty_data *ldata = tty->disc_data;
  500. int space;
  501. int i;
  502. const unsigned char *cp;
  503. mutex_lock(&ldata->output_lock);
  504. space = tty_write_room(tty);
  505. if (!space) {
  506. mutex_unlock(&ldata->output_lock);
  507. return 0;
  508. }
  509. if (nr > space)
  510. nr = space;
  511. for (i = 0, cp = buf; i < nr; i++, cp++) {
  512. unsigned char c = *cp;
  513. switch (c) {
  514. case '\n':
  515. if (O_ONLRET(tty))
  516. ldata->column = 0;
  517. if (O_ONLCR(tty))
  518. goto break_out;
  519. ldata->canon_column = ldata->column;
  520. break;
  521. case '\r':
  522. if (O_ONOCR(tty) && ldata->column == 0)
  523. goto break_out;
  524. if (O_OCRNL(tty))
  525. goto break_out;
  526. ldata->canon_column = ldata->column = 0;
  527. break;
  528. case '\t':
  529. goto break_out;
  530. case '\b':
  531. if (ldata->column > 0)
  532. ldata->column--;
  533. break;
  534. default:
  535. if (!iscntrl(c)) {
  536. if (O_OLCUC(tty))
  537. goto break_out;
  538. if (!is_continuation(c, tty))
  539. ldata->column++;
  540. }
  541. break;
  542. }
  543. }
  544. break_out:
  545. i = tty->ops->write(tty, buf, i);
  546. mutex_unlock(&ldata->output_lock);
  547. return i;
  548. }
  549. /**
  550. * process_echoes - write pending echo characters
  551. * @tty: terminal device
  552. *
  553. * Write previously buffered echo (and other ldisc-generated)
  554. * characters to the tty.
  555. *
  556. * Characters generated by the ldisc (including echoes) need to
  557. * be buffered because the driver's write buffer can fill during
  558. * heavy program output. Echoing straight to the driver will
  559. * often fail under these conditions, causing lost characters and
  560. * resulting mismatches of ldisc state information.
  561. *
  562. * Since the ldisc state must represent the characters actually sent
  563. * to the driver at the time of the write, operations like certain
  564. * changes in column state are also saved in the buffer and executed
  565. * here.
  566. *
  567. * A circular fifo buffer is used so that the most recent characters
  568. * are prioritized. Also, when control characters are echoed with a
  569. * prefixed "^", the pair is treated atomically and thus not separated.
  570. *
  571. * Locking: callers must hold output_lock
  572. */
  573. static size_t __process_echoes(struct tty_struct *tty)
  574. {
  575. struct n_tty_data *ldata = tty->disc_data;
  576. int space, old_space;
  577. size_t tail;
  578. unsigned char c;
  579. old_space = space = tty_write_room(tty);
  580. tail = ldata->echo_tail;
  581. while (ldata->echo_commit != tail) {
  582. c = echo_buf(ldata, tail);
  583. if (c == ECHO_OP_START) {
  584. unsigned char op;
  585. int no_space_left = 0;
  586. /*
  587. * If the buffer byte is the start of a multi-byte
  588. * operation, get the next byte, which is either the
  589. * op code or a control character value.
  590. */
  591. op = echo_buf(ldata, tail + 1);
  592. switch (op) {
  593. unsigned int num_chars, num_bs;
  594. case ECHO_OP_ERASE_TAB:
  595. num_chars = echo_buf(ldata, tail + 2);
  596. /*
  597. * Determine how many columns to go back
  598. * in order to erase the tab.
  599. * This depends on the number of columns
  600. * used by other characters within the tab
  601. * area. If this (modulo 8) count is from
  602. * the start of input rather than from a
  603. * previous tab, we offset by canon column.
  604. * Otherwise, tab spacing is normal.
  605. */
  606. if (!(num_chars & 0x80))
  607. num_chars += ldata->canon_column;
  608. num_bs = 8 - (num_chars & 7);
  609. if (num_bs > space) {
  610. no_space_left = 1;
  611. break;
  612. }
  613. space -= num_bs;
  614. while (num_bs--) {
  615. tty_put_char(tty, '\b');
  616. if (ldata->column > 0)
  617. ldata->column--;
  618. }
  619. tail += 3;
  620. break;
  621. case ECHO_OP_SET_CANON_COL:
  622. ldata->canon_column = ldata->column;
  623. tail += 2;
  624. break;
  625. case ECHO_OP_MOVE_BACK_COL:
  626. if (ldata->column > 0)
  627. ldata->column--;
  628. tail += 2;
  629. break;
  630. case ECHO_OP_START:
  631. /* This is an escaped echo op start code */
  632. if (!space) {
  633. no_space_left = 1;
  634. break;
  635. }
  636. tty_put_char(tty, ECHO_OP_START);
  637. ldata->column++;
  638. space--;
  639. tail += 2;
  640. break;
  641. default:
  642. /*
  643. * If the op is not a special byte code,
  644. * it is a ctrl char tagged to be echoed
  645. * as "^X" (where X is the letter
  646. * representing the control char).
  647. * Note that we must ensure there is
  648. * enough space for the whole ctrl pair.
  649. *
  650. */
  651. if (space < 2) {
  652. no_space_left = 1;
  653. break;
  654. }
  655. tty_put_char(tty, '^');
  656. tty_put_char(tty, op ^ 0100);
  657. ldata->column += 2;
  658. space -= 2;
  659. tail += 2;
  660. }
  661. if (no_space_left)
  662. break;
  663. } else {
  664. if (O_OPOST(tty)) {
  665. int retval = do_output_char(c, tty, space);
  666. if (retval < 0)
  667. break;
  668. space -= retval;
  669. } else {
  670. if (!space)
  671. break;
  672. tty_put_char(tty, c);
  673. space -= 1;
  674. }
  675. tail += 1;
  676. }
  677. }
  678. /* If the echo buffer is nearly full (so that the possibility exists
  679. * of echo overrun before the next commit), then discard enough
  680. * data at the tail to prevent a subsequent overrun */
  681. while (ldata->echo_commit - tail >= ECHO_DISCARD_WATERMARK) {
  682. if (echo_buf(ldata, tail == ECHO_OP_START)) {
  683. if (echo_buf(ldata, tail) == ECHO_OP_ERASE_TAB)
  684. tail += 3;
  685. else
  686. tail += 2;
  687. } else
  688. tail++;
  689. }
  690. ldata->echo_tail = tail;
  691. return old_space - space;
  692. }
  693. static void commit_echoes(struct tty_struct *tty)
  694. {
  695. struct n_tty_data *ldata = tty->disc_data;
  696. size_t nr, old, echoed;
  697. size_t head;
  698. head = ldata->echo_head;
  699. old = ldata->echo_commit - ldata->echo_tail;
  700. /* Process committed echoes if the accumulated # of bytes
  701. * is over the threshold (and try again each time another
  702. * block is accumulated) */
  703. nr = head - ldata->echo_tail;
  704. if (nr < ECHO_COMMIT_WATERMARK || (nr % ECHO_BLOCK > old % ECHO_BLOCK))
  705. return;
  706. mutex_lock(&ldata->output_lock);
  707. ldata->echo_commit = head;
  708. echoed = __process_echoes(tty);
  709. mutex_unlock(&ldata->output_lock);
  710. if (echoed && tty->ops->flush_chars)
  711. tty->ops->flush_chars(tty);
  712. }
  713. static void process_echoes(struct tty_struct *tty)
  714. {
  715. struct n_tty_data *ldata = tty->disc_data;
  716. size_t echoed;
  717. if (!L_ECHO(tty) || ldata->echo_commit == ldata->echo_tail)
  718. return;
  719. mutex_lock(&ldata->output_lock);
  720. echoed = __process_echoes(tty);
  721. mutex_unlock(&ldata->output_lock);
  722. if (echoed && tty->ops->flush_chars)
  723. tty->ops->flush_chars(tty);
  724. }
  725. static void flush_echoes(struct tty_struct *tty)
  726. {
  727. struct n_tty_data *ldata = tty->disc_data;
  728. if (!L_ECHO(tty) || ldata->echo_commit == ldata->echo_head)
  729. return;
  730. mutex_lock(&ldata->output_lock);
  731. ldata->echo_commit = ldata->echo_head;
  732. __process_echoes(tty);
  733. mutex_unlock(&ldata->output_lock);
  734. }
  735. /**
  736. * add_echo_byte - add a byte to the echo buffer
  737. * @c: unicode byte to echo
  738. * @ldata: n_tty data
  739. *
  740. * Add a character or operation byte to the echo buffer.
  741. */
  742. static inline void add_echo_byte(unsigned char c, struct n_tty_data *ldata)
  743. {
  744. *echo_buf_addr(ldata, ldata->echo_head++) = c;
  745. }
  746. /**
  747. * echo_move_back_col - add operation to move back a column
  748. * @ldata: n_tty data
  749. *
  750. * Add an operation to the echo buffer to move back one column.
  751. */
  752. static void echo_move_back_col(struct n_tty_data *ldata)
  753. {
  754. add_echo_byte(ECHO_OP_START, ldata);
  755. add_echo_byte(ECHO_OP_MOVE_BACK_COL, ldata);
  756. }
  757. /**
  758. * echo_set_canon_col - add operation to set the canon column
  759. * @ldata: n_tty data
  760. *
  761. * Add an operation to the echo buffer to set the canon column
  762. * to the current column.
  763. */
  764. static void echo_set_canon_col(struct n_tty_data *ldata)
  765. {
  766. add_echo_byte(ECHO_OP_START, ldata);
  767. add_echo_byte(ECHO_OP_SET_CANON_COL, ldata);
  768. }
  769. /**
  770. * echo_erase_tab - add operation to erase a tab
  771. * @num_chars: number of character columns already used
  772. * @after_tab: true if num_chars starts after a previous tab
  773. * @ldata: n_tty data
  774. *
  775. * Add an operation to the echo buffer to erase a tab.
  776. *
  777. * Called by the eraser function, which knows how many character
  778. * columns have been used since either a previous tab or the start
  779. * of input. This information will be used later, along with
  780. * canon column (if applicable), to go back the correct number
  781. * of columns.
  782. */
  783. static void echo_erase_tab(unsigned int num_chars, int after_tab,
  784. struct n_tty_data *ldata)
  785. {
  786. add_echo_byte(ECHO_OP_START, ldata);
  787. add_echo_byte(ECHO_OP_ERASE_TAB, ldata);
  788. /* We only need to know this modulo 8 (tab spacing) */
  789. num_chars &= 7;
  790. /* Set the high bit as a flag if num_chars is after a previous tab */
  791. if (after_tab)
  792. num_chars |= 0x80;
  793. add_echo_byte(num_chars, ldata);
  794. }
  795. /**
  796. * echo_char_raw - echo a character raw
  797. * @c: unicode byte to echo
  798. * @tty: terminal device
  799. *
  800. * Echo user input back onto the screen. This must be called only when
  801. * L_ECHO(tty) is true. Called from the driver receive_buf path.
  802. *
  803. * This variant does not treat control characters specially.
  804. */
  805. static void echo_char_raw(unsigned char c, struct n_tty_data *ldata)
  806. {
  807. if (c == ECHO_OP_START) {
  808. add_echo_byte(ECHO_OP_START, ldata);
  809. add_echo_byte(ECHO_OP_START, ldata);
  810. } else {
  811. add_echo_byte(c, ldata);
  812. }
  813. }
  814. /**
  815. * echo_char - echo a character
  816. * @c: unicode byte to echo
  817. * @tty: terminal device
  818. *
  819. * Echo user input back onto the screen. This must be called only when
  820. * L_ECHO(tty) is true. Called from the driver receive_buf path.
  821. *
  822. * This variant tags control characters to be echoed as "^X"
  823. * (where X is the letter representing the control char).
  824. */
  825. static void echo_char(unsigned char c, struct tty_struct *tty)
  826. {
  827. struct n_tty_data *ldata = tty->disc_data;
  828. if (c == ECHO_OP_START) {
  829. add_echo_byte(ECHO_OP_START, ldata);
  830. add_echo_byte(ECHO_OP_START, ldata);
  831. } else {
  832. if (L_ECHOCTL(tty) && iscntrl(c) && c != '\t')
  833. add_echo_byte(ECHO_OP_START, ldata);
  834. add_echo_byte(c, ldata);
  835. }
  836. }
  837. /**
  838. * finish_erasing - complete erase
  839. * @ldata: n_tty data
  840. */
  841. static inline void finish_erasing(struct n_tty_data *ldata)
  842. {
  843. if (ldata->erasing) {
  844. echo_char_raw('/', ldata);
  845. ldata->erasing = 0;
  846. }
  847. }
  848. /**
  849. * eraser - handle erase function
  850. * @c: character input
  851. * @tty: terminal device
  852. *
  853. * Perform erase and necessary output when an erase character is
  854. * present in the stream from the driver layer. Handles the complexities
  855. * of UTF-8 multibyte symbols.
  856. *
  857. * n_tty_receive_buf()/producer path:
  858. * caller holds non-exclusive termios_rwsem
  859. * modifies read_head
  860. *
  861. * Modifying the read_head is not considered a publish in this context
  862. * because canonical mode is active -- only canon_head publishes
  863. */
  864. static void eraser(unsigned char c, struct tty_struct *tty)
  865. {
  866. struct n_tty_data *ldata = tty->disc_data;
  867. enum { ERASE, WERASE, KILL } kill_type;
  868. size_t head;
  869. size_t cnt;
  870. int seen_alnums;
  871. if (ldata->read_head == ldata->canon_head) {
  872. /* process_output('\a', tty); */ /* what do you think? */
  873. return;
  874. }
  875. if (c == ERASE_CHAR(tty))
  876. kill_type = ERASE;
  877. else if (c == WERASE_CHAR(tty))
  878. kill_type = WERASE;
  879. else {
  880. if (!L_ECHO(tty)) {
  881. ldata->read_head = ldata->canon_head;
  882. return;
  883. }
  884. if (!L_ECHOK(tty) || !L_ECHOKE(tty) || !L_ECHOE(tty)) {
  885. ldata->read_head = ldata->canon_head;
  886. finish_erasing(ldata);
  887. echo_char(KILL_CHAR(tty), tty);
  888. /* Add a newline if ECHOK is on and ECHOKE is off. */
  889. if (L_ECHOK(tty))
  890. echo_char_raw('\n', ldata);
  891. return;
  892. }
  893. kill_type = KILL;
  894. }
  895. seen_alnums = 0;
  896. while (ldata->read_head != ldata->canon_head) {
  897. head = ldata->read_head;
  898. /* erase a single possibly multibyte character */
  899. do {
  900. head--;
  901. c = read_buf(ldata, head);
  902. } while (is_continuation(c, tty) && head != ldata->canon_head);
  903. /* do not partially erase */
  904. if (is_continuation(c, tty))
  905. break;
  906. if (kill_type == WERASE) {
  907. /* Equivalent to BSD's ALTWERASE. */
  908. if (isalnum(c) || c == '_')
  909. seen_alnums++;
  910. else if (seen_alnums)
  911. break;
  912. }
  913. cnt = ldata->read_head - head;
  914. ldata->read_head = head;
  915. if (L_ECHO(tty)) {
  916. if (L_ECHOPRT(tty)) {
  917. if (!ldata->erasing) {
  918. echo_char_raw('\\', ldata);
  919. ldata->erasing = 1;
  920. }
  921. /* if cnt > 1, output a multi-byte character */
  922. echo_char(c, tty);
  923. while (--cnt > 0) {
  924. head++;
  925. echo_char_raw(read_buf(ldata, head), ldata);
  926. echo_move_back_col(ldata);
  927. }
  928. } else if (kill_type == ERASE && !L_ECHOE(tty)) {
  929. echo_char(ERASE_CHAR(tty), tty);
  930. } else if (c == '\t') {
  931. unsigned int num_chars = 0;
  932. int after_tab = 0;
  933. size_t tail = ldata->read_head;
  934. /*
  935. * Count the columns used for characters
  936. * since the start of input or after a
  937. * previous tab.
  938. * This info is used to go back the correct
  939. * number of columns.
  940. */
  941. while (tail != ldata->canon_head) {
  942. tail--;
  943. c = read_buf(ldata, tail);
  944. if (c == '\t') {
  945. after_tab = 1;
  946. break;
  947. } else if (iscntrl(c)) {
  948. if (L_ECHOCTL(tty))
  949. num_chars += 2;
  950. } else if (!is_continuation(c, tty)) {
  951. num_chars++;
  952. }
  953. }
  954. echo_erase_tab(num_chars, after_tab, ldata);
  955. } else {
  956. if (iscntrl(c) && L_ECHOCTL(tty)) {
  957. echo_char_raw('\b', ldata);
  958. echo_char_raw(' ', ldata);
  959. echo_char_raw('\b', ldata);
  960. }
  961. if (!iscntrl(c) || L_ECHOCTL(tty)) {
  962. echo_char_raw('\b', ldata);
  963. echo_char_raw(' ', ldata);
  964. echo_char_raw('\b', ldata);
  965. }
  966. }
  967. }
  968. if (kill_type == ERASE)
  969. break;
  970. }
  971. if (ldata->read_head == ldata->canon_head && L_ECHO(tty))
  972. finish_erasing(ldata);
  973. }
  974. /**
  975. * isig - handle the ISIG optio
  976. * @sig: signal
  977. * @tty: terminal
  978. *
  979. * Called when a signal is being sent due to terminal input.
  980. * Called from the driver receive_buf path so serialized.
  981. *
  982. * Locking: ctrl_lock
  983. */
  984. static inline void isig(int sig, struct tty_struct *tty)
  985. {
  986. struct pid *tty_pgrp = tty_get_pgrp(tty);
  987. if (tty_pgrp) {
  988. kill_pgrp(tty_pgrp, sig, 1);
  989. put_pid(tty_pgrp);
  990. }
  991. }
  992. /**
  993. * n_tty_receive_break - handle break
  994. * @tty: terminal
  995. *
  996. * An RS232 break event has been hit in the incoming bitstream. This
  997. * can cause a variety of events depending upon the termios settings.
  998. *
  999. * n_tty_receive_buf()/producer path:
  1000. * caller holds non-exclusive termios_rwsem
  1001. * publishes read_head via put_tty_queue()
  1002. *
  1003. * Note: may get exclusive termios_rwsem if flushing input buffer
  1004. */
  1005. static inline void n_tty_receive_break(struct tty_struct *tty)
  1006. {
  1007. struct n_tty_data *ldata = tty->disc_data;
  1008. if (I_IGNBRK(tty))
  1009. return;
  1010. if (I_BRKINT(tty)) {
  1011. isig(SIGINT, tty);
  1012. if (!L_NOFLSH(tty)) {
  1013. /* flushing needs exclusive termios_rwsem */
  1014. up_read(&tty->termios_rwsem);
  1015. n_tty_flush_buffer(tty);
  1016. tty_driver_flush_buffer(tty);
  1017. down_read(&tty->termios_rwsem);
  1018. }
  1019. return;
  1020. }
  1021. if (I_PARMRK(tty)) {
  1022. put_tty_queue('\377', ldata);
  1023. put_tty_queue('\0', ldata);
  1024. }
  1025. put_tty_queue('\0', ldata);
  1026. wake_up_interruptible(&tty->read_wait);
  1027. }
  1028. /**
  1029. * n_tty_receive_overrun - handle overrun reporting
  1030. * @tty: terminal
  1031. *
  1032. * Data arrived faster than we could process it. While the tty
  1033. * driver has flagged this the bits that were missed are gone
  1034. * forever.
  1035. *
  1036. * Called from the receive_buf path so single threaded. Does not
  1037. * need locking as num_overrun and overrun_time are function
  1038. * private.
  1039. */
  1040. static inline void n_tty_receive_overrun(struct tty_struct *tty)
  1041. {
  1042. struct n_tty_data *ldata = tty->disc_data;
  1043. char buf[64];
  1044. ldata->num_overrun++;
  1045. if (time_after(jiffies, ldata->overrun_time + HZ) ||
  1046. time_after(ldata->overrun_time, jiffies)) {
  1047. printk(KERN_WARNING "%s: %d input overrun(s)\n",
  1048. tty_name(tty, buf),
  1049. ldata->num_overrun);
  1050. ldata->overrun_time = jiffies;
  1051. ldata->num_overrun = 0;
  1052. }
  1053. }
  1054. /**
  1055. * n_tty_receive_parity_error - error notifier
  1056. * @tty: terminal device
  1057. * @c: character
  1058. *
  1059. * Process a parity error and queue the right data to indicate
  1060. * the error case if necessary.
  1061. *
  1062. * n_tty_receive_buf()/producer path:
  1063. * caller holds non-exclusive termios_rwsem
  1064. * publishes read_head via put_tty_queue()
  1065. */
  1066. static inline void n_tty_receive_parity_error(struct tty_struct *tty,
  1067. unsigned char c)
  1068. {
  1069. struct n_tty_data *ldata = tty->disc_data;
  1070. if (I_IGNPAR(tty))
  1071. return;
  1072. if (I_PARMRK(tty)) {
  1073. put_tty_queue('\377', ldata);
  1074. put_tty_queue('\0', ldata);
  1075. put_tty_queue(c, ldata);
  1076. } else if (I_INPCK(tty))
  1077. put_tty_queue('\0', ldata);
  1078. else
  1079. put_tty_queue(c, ldata);
  1080. wake_up_interruptible(&tty->read_wait);
  1081. }
  1082. /**
  1083. * n_tty_receive_char - perform processing
  1084. * @tty: terminal device
  1085. * @c: character
  1086. *
  1087. * Process an individual character of input received from the driver.
  1088. * This is serialized with respect to itself by the rules for the
  1089. * driver above.
  1090. *
  1091. * n_tty_receive_buf()/producer path:
  1092. * caller holds non-exclusive termios_rwsem
  1093. * publishes canon_head if canonical mode is active
  1094. * otherwise, publishes read_head via put_tty_queue()
  1095. */
  1096. static inline void n_tty_receive_char(struct tty_struct *tty, unsigned char c)
  1097. {
  1098. struct n_tty_data *ldata = tty->disc_data;
  1099. int parmrk;
  1100. if (ldata->raw) {
  1101. put_tty_queue(c, ldata);
  1102. return;
  1103. }
  1104. if (I_ISTRIP(tty))
  1105. c &= 0x7f;
  1106. if (I_IUCLC(tty) && L_IEXTEN(tty))
  1107. c = tolower(c);
  1108. if (L_EXTPROC(tty)) {
  1109. put_tty_queue(c, ldata);
  1110. return;
  1111. }
  1112. if (tty->stopped && !tty->flow_stopped && I_IXON(tty) &&
  1113. I_IXANY(tty) && c != START_CHAR(tty) && c != STOP_CHAR(tty) &&
  1114. c != INTR_CHAR(tty) && c != QUIT_CHAR(tty) && c != SUSP_CHAR(tty)) {
  1115. start_tty(tty);
  1116. process_echoes(tty);
  1117. }
  1118. if (tty->closing) {
  1119. if (I_IXON(tty)) {
  1120. if (c == START_CHAR(tty)) {
  1121. start_tty(tty);
  1122. process_echoes(tty);
  1123. } else if (c == STOP_CHAR(tty))
  1124. stop_tty(tty);
  1125. }
  1126. return;
  1127. }
  1128. /*
  1129. * If the previous character was LNEXT, or we know that this
  1130. * character is not one of the characters that we'll have to
  1131. * handle specially, do shortcut processing to speed things
  1132. * up.
  1133. */
  1134. if (!test_bit(c, ldata->char_map) || ldata->lnext) {
  1135. ldata->lnext = 0;
  1136. parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
  1137. if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
  1138. /* beep if no space */
  1139. if (L_ECHO(tty))
  1140. process_output('\a', tty);
  1141. return;
  1142. }
  1143. if (L_ECHO(tty)) {
  1144. finish_erasing(ldata);
  1145. /* Record the column of first canon char. */
  1146. if (ldata->canon_head == ldata->read_head)
  1147. echo_set_canon_col(ldata);
  1148. echo_char(c, tty);
  1149. commit_echoes(tty);
  1150. }
  1151. if (parmrk)
  1152. put_tty_queue(c, ldata);
  1153. put_tty_queue(c, ldata);
  1154. return;
  1155. }
  1156. if (I_IXON(tty)) {
  1157. if (c == START_CHAR(tty)) {
  1158. start_tty(tty);
  1159. commit_echoes(tty);
  1160. return;
  1161. }
  1162. if (c == STOP_CHAR(tty)) {
  1163. stop_tty(tty);
  1164. return;
  1165. }
  1166. }
  1167. if (L_ISIG(tty)) {
  1168. int signal;
  1169. signal = SIGINT;
  1170. if (c == INTR_CHAR(tty))
  1171. goto send_signal;
  1172. signal = SIGQUIT;
  1173. if (c == QUIT_CHAR(tty))
  1174. goto send_signal;
  1175. signal = SIGTSTP;
  1176. if (c == SUSP_CHAR(tty)) {
  1177. send_signal:
  1178. if (!L_NOFLSH(tty)) {
  1179. /* flushing needs exclusive termios_rwsem */
  1180. up_read(&tty->termios_rwsem);
  1181. n_tty_flush_buffer(tty);
  1182. tty_driver_flush_buffer(tty);
  1183. down_read(&tty->termios_rwsem);
  1184. }
  1185. if (I_IXON(tty))
  1186. start_tty(tty);
  1187. if (L_ECHO(tty)) {
  1188. echo_char(c, tty);
  1189. commit_echoes(tty);
  1190. }
  1191. isig(signal, tty);
  1192. return;
  1193. }
  1194. }
  1195. if (c == '\r') {
  1196. if (I_IGNCR(tty))
  1197. return;
  1198. if (I_ICRNL(tty))
  1199. c = '\n';
  1200. } else if (c == '\n' && I_INLCR(tty))
  1201. c = '\r';
  1202. if (ldata->icanon) {
  1203. if (c == ERASE_CHAR(tty) || c == KILL_CHAR(tty) ||
  1204. (c == WERASE_CHAR(tty) && L_IEXTEN(tty))) {
  1205. eraser(c, tty);
  1206. commit_echoes(tty);
  1207. return;
  1208. }
  1209. if (c == LNEXT_CHAR(tty) && L_IEXTEN(tty)) {
  1210. ldata->lnext = 1;
  1211. if (L_ECHO(tty)) {
  1212. finish_erasing(ldata);
  1213. if (L_ECHOCTL(tty)) {
  1214. echo_char_raw('^', ldata);
  1215. echo_char_raw('\b', ldata);
  1216. commit_echoes(tty);
  1217. }
  1218. }
  1219. return;
  1220. }
  1221. if (c == REPRINT_CHAR(tty) && L_ECHO(tty) &&
  1222. L_IEXTEN(tty)) {
  1223. size_t tail = ldata->canon_head;
  1224. finish_erasing(ldata);
  1225. echo_char(c, tty);
  1226. echo_char_raw('\n', ldata);
  1227. while (tail != ldata->read_head) {
  1228. echo_char(read_buf(ldata, tail), tty);
  1229. tail++;
  1230. }
  1231. commit_echoes(tty);
  1232. return;
  1233. }
  1234. if (c == '\n') {
  1235. if (read_cnt(ldata) >= N_TTY_BUF_SIZE) {
  1236. if (L_ECHO(tty))
  1237. process_output('\a', tty);
  1238. return;
  1239. }
  1240. if (L_ECHO(tty) || L_ECHONL(tty)) {
  1241. echo_char_raw('\n', ldata);
  1242. commit_echoes(tty);
  1243. }
  1244. goto handle_newline;
  1245. }
  1246. if (c == EOF_CHAR(tty)) {
  1247. if (read_cnt(ldata) >= N_TTY_BUF_SIZE)
  1248. return;
  1249. c = __DISABLED_CHAR;
  1250. goto handle_newline;
  1251. }
  1252. if ((c == EOL_CHAR(tty)) ||
  1253. (c == EOL2_CHAR(tty) && L_IEXTEN(tty))) {
  1254. parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty))
  1255. ? 1 : 0;
  1256. if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk)) {
  1257. if (L_ECHO(tty))
  1258. process_output('\a', tty);
  1259. return;
  1260. }
  1261. /*
  1262. * XXX are EOL_CHAR and EOL2_CHAR echoed?!?
  1263. */
  1264. if (L_ECHO(tty)) {
  1265. /* Record the column of first canon char. */
  1266. if (ldata->canon_head == ldata->read_head)
  1267. echo_set_canon_col(ldata);
  1268. echo_char(c, tty);
  1269. commit_echoes(tty);
  1270. }
  1271. /*
  1272. * XXX does PARMRK doubling happen for
  1273. * EOL_CHAR and EOL2_CHAR?
  1274. */
  1275. if (parmrk)
  1276. put_tty_queue(c, ldata);
  1277. handle_newline:
  1278. set_bit(ldata->read_head & (N_TTY_BUF_SIZE - 1), ldata->read_flags);
  1279. put_tty_queue(c, ldata);
  1280. ldata->canon_head = ldata->read_head;
  1281. kill_fasync(&tty->fasync, SIGIO, POLL_IN);
  1282. if (waitqueue_active(&tty->read_wait))
  1283. wake_up_interruptible(&tty->read_wait);
  1284. return;
  1285. }
  1286. }
  1287. parmrk = (c == (unsigned char) '\377' && I_PARMRK(tty)) ? 1 : 0;
  1288. if (read_cnt(ldata) >= (N_TTY_BUF_SIZE - parmrk - 1)) {
  1289. /* beep if no space */
  1290. if (L_ECHO(tty))
  1291. process_output('\a', tty);
  1292. return;
  1293. }
  1294. if (L_ECHO(tty)) {
  1295. finish_erasing(ldata);
  1296. if (c == '\n')
  1297. echo_char_raw('\n', ldata);
  1298. else {
  1299. /* Record the column of first canon char. */
  1300. if (ldata->canon_head == ldata->read_head)
  1301. echo_set_canon_col(ldata);
  1302. echo_char(c, tty);
  1303. }
  1304. commit_echoes(tty);
  1305. }
  1306. if (parmrk)
  1307. put_tty_queue(c, ldata);
  1308. put_tty_queue(c, ldata);
  1309. }
  1310. /**
  1311. * n_tty_receive_buf - data receive
  1312. * @tty: terminal device
  1313. * @cp: buffer
  1314. * @fp: flag buffer
  1315. * @count: characters
  1316. *
  1317. * Called by the terminal driver when a block of characters has
  1318. * been received. This function must be called from soft contexts
  1319. * not from interrupt context. The driver is responsible for making
  1320. * calls one at a time and in order (or using flush_to_ldisc)
  1321. *
  1322. * n_tty_receive_buf()/producer path:
  1323. * claims non-exclusive termios_rwsem
  1324. * publishes read_head and canon_head
  1325. */
  1326. static void __receive_buf(struct tty_struct *tty, const unsigned char *cp,
  1327. char *fp, int count)
  1328. {
  1329. struct n_tty_data *ldata = tty->disc_data;
  1330. char flags = TTY_NORMAL;
  1331. char buf[64];
  1332. if (ldata->real_raw) {
  1333. size_t n, head;
  1334. head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
  1335. n = N_TTY_BUF_SIZE - max(read_cnt(ldata), head);
  1336. n = min_t(size_t, count, n);
  1337. memcpy(read_buf_addr(ldata, head), cp, n);
  1338. ldata->read_head += n;
  1339. cp += n;
  1340. count -= n;
  1341. head = ldata->read_head & (N_TTY_BUF_SIZE - 1);
  1342. n = N_TTY_BUF_SIZE - max(read_cnt(ldata), head);
  1343. n = min_t(size_t, count, n);
  1344. memcpy(read_buf_addr(ldata, head), cp, n);
  1345. ldata->read_head += n;
  1346. } else {
  1347. int i;
  1348. for (i = count; i; i--, cp++) {
  1349. if (fp)
  1350. flags = *fp++;
  1351. switch (flags) {
  1352. case TTY_NORMAL:
  1353. n_tty_receive_char(tty, *cp);
  1354. break;
  1355. case TTY_BREAK:
  1356. n_tty_receive_break(tty);
  1357. break;
  1358. case TTY_PARITY:
  1359. case TTY_FRAME:
  1360. n_tty_receive_parity_error(tty, *cp);
  1361. break;
  1362. case TTY_OVERRUN:
  1363. n_tty_receive_overrun(tty);
  1364. break;
  1365. default:
  1366. printk(KERN_ERR "%s: unknown flag %d\n",
  1367. tty_name(tty, buf), flags);
  1368. break;
  1369. }
  1370. }
  1371. flush_echoes(tty);
  1372. if (tty->ops->flush_chars)
  1373. tty->ops->flush_chars(tty);
  1374. }
  1375. if ((!ldata->icanon && (read_cnt(ldata) >= ldata->minimum_to_wake)) ||
  1376. L_EXTPROC(tty)) {
  1377. kill_fasync(&tty->fasync, SIGIO, POLL_IN);
  1378. if (waitqueue_active(&tty->read_wait))
  1379. wake_up_interruptible(&tty->read_wait);
  1380. }
  1381. n_tty_check_throttle(tty);
  1382. }
  1383. static void n_tty_receive_buf(struct tty_struct *tty, const unsigned char *cp,
  1384. char *fp, int count)
  1385. {
  1386. down_read(&tty->termios_rwsem);
  1387. __receive_buf(tty, cp, fp, count);
  1388. up_read(&tty->termios_rwsem);
  1389. }
  1390. static int n_tty_receive_buf2(struct tty_struct *tty, const unsigned char *cp,
  1391. char *fp, int count)
  1392. {
  1393. struct n_tty_data *ldata = tty->disc_data;
  1394. int room;
  1395. down_read(&tty->termios_rwsem);
  1396. tty->receive_room = room = receive_room(tty);
  1397. if (!room)
  1398. ldata->no_room = 1;
  1399. count = min(count, room);
  1400. if (count)
  1401. __receive_buf(tty, cp, fp, count);
  1402. up_read(&tty->termios_rwsem);
  1403. return count;
  1404. }
  1405. int is_ignored(int sig)
  1406. {
  1407. return (sigismember(&current->blocked, sig) ||
  1408. current->sighand->action[sig-1].sa.sa_handler == SIG_IGN);
  1409. }
  1410. /**
  1411. * n_tty_set_termios - termios data changed
  1412. * @tty: terminal
  1413. * @old: previous data
  1414. *
  1415. * Called by the tty layer when the user changes termios flags so
  1416. * that the line discipline can plan ahead. This function cannot sleep
  1417. * and is protected from re-entry by the tty layer. The user is
  1418. * guaranteed that this function will not be re-entered or in progress
  1419. * when the ldisc is closed.
  1420. *
  1421. * Locking: Caller holds tty->termios_rwsem
  1422. */
  1423. static void n_tty_set_termios(struct tty_struct *tty, struct ktermios *old)
  1424. {
  1425. struct n_tty_data *ldata = tty->disc_data;
  1426. int canon_change = 1;
  1427. if (old)
  1428. canon_change = (old->c_lflag ^ tty->termios.c_lflag) & ICANON;
  1429. if (canon_change) {
  1430. bitmap_zero(ldata->read_flags, N_TTY_BUF_SIZE);
  1431. ldata->line_start = 0;
  1432. ldata->canon_head = ldata->read_tail;
  1433. ldata->erasing = 0;
  1434. ldata->lnext = 0;
  1435. }
  1436. if (canon_change && !L_ICANON(tty) && read_cnt(ldata))
  1437. wake_up_interruptible(&tty->read_wait);
  1438. ldata->icanon = (L_ICANON(tty) != 0);
  1439. if (I_ISTRIP(tty) || I_IUCLC(tty) || I_IGNCR(tty) ||
  1440. I_ICRNL(tty) || I_INLCR(tty) || L_ICANON(tty) ||
  1441. I_IXON(tty) || L_ISIG(tty) || L_ECHO(tty) ||
  1442. I_PARMRK(tty)) {
  1443. bitmap_zero(ldata->char_map, 256);
  1444. if (I_IGNCR(tty) || I_ICRNL(tty))
  1445. set_bit('\r', ldata->char_map);
  1446. if (I_INLCR(tty))
  1447. set_bit('\n', ldata->char_map);
  1448. if (L_ICANON(tty)) {
  1449. set_bit(ERASE_CHAR(tty), ldata->char_map);
  1450. set_bit(KILL_CHAR(tty), ldata->char_map);
  1451. set_bit(EOF_CHAR(tty), ldata->char_map);
  1452. set_bit('\n', ldata->char_map);
  1453. set_bit(EOL_CHAR(tty), ldata->char_map);
  1454. if (L_IEXTEN(tty)) {
  1455. set_bit(WERASE_CHAR(tty), ldata->char_map);
  1456. set_bit(LNEXT_CHAR(tty), ldata->char_map);
  1457. set_bit(EOL2_CHAR(tty), ldata->char_map);
  1458. if (L_ECHO(tty))
  1459. set_bit(REPRINT_CHAR(tty),
  1460. ldata->char_map);
  1461. }
  1462. }
  1463. if (I_IXON(tty)) {
  1464. set_bit(START_CHAR(tty), ldata->char_map);
  1465. set_bit(STOP_CHAR(tty), ldata->char_map);
  1466. }
  1467. if (L_ISIG(tty)) {
  1468. set_bit(INTR_CHAR(tty), ldata->char_map);
  1469. set_bit(QUIT_CHAR(tty), ldata->char_map);
  1470. set_bit(SUSP_CHAR(tty), ldata->char_map);
  1471. }
  1472. clear_bit(__DISABLED_CHAR, ldata->char_map);
  1473. ldata->raw = 0;
  1474. ldata->real_raw = 0;
  1475. } else {
  1476. ldata->raw = 1;
  1477. if ((I_IGNBRK(tty) || (!I_BRKINT(tty) && !I_PARMRK(tty))) &&
  1478. (I_IGNPAR(tty) || !I_INPCK(tty)) &&
  1479. (tty->driver->flags & TTY_DRIVER_REAL_RAW))
  1480. ldata->real_raw = 1;
  1481. else
  1482. ldata->real_raw = 0;
  1483. }
  1484. n_tty_set_room(tty);
  1485. /*
  1486. * Fix tty hang when I_IXON(tty) is cleared, but the tty
  1487. * been stopped by STOP_CHAR(tty) before it.
  1488. */
  1489. if (!I_IXON(tty) && old && (old->c_iflag & IXON) && !tty->flow_stopped) {
  1490. start_tty(tty);
  1491. }
  1492. /* The termios change make the tty ready for I/O */
  1493. wake_up_interruptible(&tty->write_wait);
  1494. wake_up_interruptible(&tty->read_wait);
  1495. }
  1496. /**
  1497. * n_tty_close - close the ldisc for this tty
  1498. * @tty: device
  1499. *
  1500. * Called from the terminal layer when this line discipline is
  1501. * being shut down, either because of a close or becsuse of a
  1502. * discipline change. The function will not be called while other
  1503. * ldisc methods are in progress.
  1504. */
  1505. static void n_tty_close(struct tty_struct *tty)
  1506. {
  1507. struct n_tty_data *ldata = tty->disc_data;
  1508. if (tty->link)
  1509. n_tty_packet_mode_flush(tty);
  1510. vfree(ldata);
  1511. tty->disc_data = NULL;
  1512. }
  1513. /**
  1514. * n_tty_open - open an ldisc
  1515. * @tty: terminal to open
  1516. *
  1517. * Called when this line discipline is being attached to the
  1518. * terminal device. Can sleep. Called serialized so that no
  1519. * other events will occur in parallel. No further open will occur
  1520. * until a close.
  1521. */
  1522. static int n_tty_open(struct tty_struct *tty)
  1523. {
  1524. struct n_tty_data *ldata;
  1525. /* Currently a malloc failure here can panic */
  1526. ldata = vmalloc(sizeof(*ldata));
  1527. if (!ldata)
  1528. goto err;
  1529. ldata->overrun_time = jiffies;
  1530. mutex_init(&ldata->atomic_read_lock);
  1531. mutex_init(&ldata->output_lock);
  1532. tty->disc_data = ldata;
  1533. reset_buffer_flags(tty->disc_data);
  1534. ldata->column = 0;
  1535. ldata->canon_column = 0;
  1536. ldata->minimum_to_wake = 1;
  1537. ldata->num_overrun = 0;
  1538. ldata->no_room = 0;
  1539. ldata->lnext = 0;
  1540. tty->closing = 0;
  1541. /* indicate buffer work may resume */
  1542. clear_bit(TTY_LDISC_HALTED, &tty->flags);
  1543. n_tty_set_termios(tty, NULL);
  1544. tty_unthrottle(tty);
  1545. return 0;
  1546. err:
  1547. return -ENOMEM;
  1548. }
  1549. static inline int input_available_p(struct tty_struct *tty, int amt)
  1550. {
  1551. struct n_tty_data *ldata = tty->disc_data;
  1552. if (ldata->icanon && !L_EXTPROC(tty)) {
  1553. if (ldata->canon_head != ldata->read_tail)
  1554. return 1;
  1555. } else if (read_cnt(ldata) >= (amt ? amt : 1))
  1556. return 1;
  1557. return 0;
  1558. }
  1559. /**
  1560. * copy_from_read_buf - copy read data directly
  1561. * @tty: terminal device
  1562. * @b: user data
  1563. * @nr: size of data
  1564. *
  1565. * Helper function to speed up n_tty_read. It is only called when
  1566. * ICANON is off; it copies characters straight from the tty queue to
  1567. * user space directly. It can be profitably called twice; once to
  1568. * drain the space from the tail pointer to the (physical) end of the
  1569. * buffer, and once to drain the space from the (physical) beginning of
  1570. * the buffer to head pointer.
  1571. *
  1572. * Called under the ldata->atomic_read_lock sem
  1573. *
  1574. * n_tty_read()/consumer path:
  1575. * caller holds non-exclusive termios_rwsem
  1576. * read_tail published
  1577. */
  1578. static int copy_from_read_buf(struct tty_struct *tty,
  1579. unsigned char __user **b,
  1580. size_t *nr)
  1581. {
  1582. struct n_tty_data *ldata = tty->disc_data;
  1583. int retval;
  1584. size_t n;
  1585. bool is_eof;
  1586. size_t tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
  1587. retval = 0;
  1588. n = min(read_cnt(ldata), N_TTY_BUF_SIZE - tail);
  1589. n = min(*nr, n);
  1590. if (n) {
  1591. retval = copy_to_user(*b, read_buf_addr(ldata, tail), n);
  1592. n -= retval;
  1593. is_eof = n == 1 && read_buf(ldata, tail) == EOF_CHAR(tty);
  1594. tty_audit_add_data(tty, read_buf_addr(ldata, tail), n,
  1595. ldata->icanon);
  1596. ldata->read_tail += n;
  1597. /* Turn single EOF into zero-length read */
  1598. if (L_EXTPROC(tty) && ldata->icanon && is_eof && !read_cnt(ldata))
  1599. n = 0;
  1600. *b += n;
  1601. *nr -= n;
  1602. }
  1603. return retval;
  1604. }
  1605. /**
  1606. * canon_copy_from_read_buf - copy read data in canonical mode
  1607. * @tty: terminal device
  1608. * @b: user data
  1609. * @nr: size of data
  1610. *
  1611. * Helper function for n_tty_read. It is only called when ICANON is on;
  1612. * it copies one line of input up to and including the line-delimiting
  1613. * character into the user-space buffer.
  1614. *
  1615. * Called under the atomic_read_lock mutex
  1616. *
  1617. * n_tty_read()/consumer path:
  1618. * caller holds non-exclusive termios_rwsem
  1619. * read_tail published
  1620. */
  1621. static int canon_copy_from_read_buf(struct tty_struct *tty,
  1622. unsigned char __user **b,
  1623. size_t *nr)
  1624. {
  1625. struct n_tty_data *ldata = tty->disc_data;
  1626. size_t n, size, more, c;
  1627. size_t eol;
  1628. size_t tail;
  1629. int ret, found = 0;
  1630. bool eof_push = 0;
  1631. /* N.B. avoid overrun if nr == 0 */
  1632. n = min(*nr, read_cnt(ldata));
  1633. if (!n)
  1634. return 0;
  1635. tail = ldata->read_tail & (N_TTY_BUF_SIZE - 1);
  1636. size = min_t(size_t, tail + n, N_TTY_BUF_SIZE);
  1637. n_tty_trace("%s: nr:%zu tail:%zu n:%zu size:%zu\n",
  1638. __func__, *nr, tail, n, size);
  1639. eol = find_next_bit(ldata->read_flags, size, tail);
  1640. more = n - (size - tail);
  1641. if (eol == N_TTY_BUF_SIZE && more) {
  1642. /* scan wrapped without finding set bit */
  1643. eol = find_next_bit(ldata->read_flags, more, 0);
  1644. if (eol != more)
  1645. found = 1;
  1646. } else if (eol != size)
  1647. found = 1;
  1648. size = N_TTY_BUF_SIZE - tail;
  1649. n = (found + eol + size) & (N_TTY_BUF_SIZE - 1);
  1650. c = n;
  1651. if (found && read_buf(ldata, eol) == __DISABLED_CHAR) {
  1652. n--;
  1653. eof_push = !n && ldata->read_tail != ldata->line_start;
  1654. }
  1655. n_tty_trace("%s: eol:%zu found:%d n:%zu c:%zu size:%zu more:%zu\n",
  1656. __func__, eol, found, n, c, size, more);
  1657. if (n > size) {
  1658. ret = copy_to_user(*b, read_buf_addr(ldata, tail), size);
  1659. if (ret)
  1660. return -EFAULT;
  1661. ret = copy_to_user(*b + size, ldata->read_buf, n - size);
  1662. } else
  1663. ret = copy_to_user(*b, read_buf_addr(ldata, tail), n);
  1664. if (ret)
  1665. return -EFAULT;
  1666. *b += n;
  1667. *nr -= n;
  1668. if (found)
  1669. clear_bit(eol, ldata->read_flags);
  1670. smp_mb__after_clear_bit();
  1671. ldata->read_tail += c;
  1672. if (found) {
  1673. ldata->line_start = ldata->read_tail;
  1674. tty_audit_push(tty);
  1675. }
  1676. return eof_push ? -EAGAIN : 0;
  1677. }
  1678. extern ssize_t redirected_tty_write(struct file *, const char __user *,
  1679. size_t, loff_t *);
  1680. /**
  1681. * job_control - check job control
  1682. * @tty: tty
  1683. * @file: file handle
  1684. *
  1685. * Perform job control management checks on this file/tty descriptor
  1686. * and if appropriate send any needed signals and return a negative
  1687. * error code if action should be taken.
  1688. *
  1689. * Locking: redirected write test is safe
  1690. * current->signal->tty check is safe
  1691. * ctrl_lock to safely reference tty->pgrp
  1692. */
  1693. static int job_control(struct tty_struct *tty, struct file *file)
  1694. {
  1695. /* Job control check -- must be done at start and after
  1696. every sleep (POSIX.1 7.1.1.4). */
  1697. /* NOTE: not yet done after every sleep pending a thorough
  1698. check of the logic of this change. -- jlc */
  1699. /* don't stop on /dev/console */
  1700. if (file->f_op->write == redirected_tty_write ||
  1701. current->signal->tty != tty)
  1702. return 0;
  1703. spin_lock_irq(&tty->ctrl_lock);
  1704. if (!tty->pgrp)
  1705. printk(KERN_ERR "n_tty_read: no tty->pgrp!\n");
  1706. else if (task_pgrp(current) != tty->pgrp) {
  1707. spin_unlock_irq(&tty->ctrl_lock);
  1708. if (is_ignored(SIGTTIN) || is_current_pgrp_orphaned())
  1709. return -EIO;
  1710. kill_pgrp(task_pgrp(current), SIGTTIN, 1);
  1711. set_thread_flag(TIF_SIGPENDING);
  1712. return -ERESTARTSYS;
  1713. }
  1714. spin_unlock_irq(&tty->ctrl_lock);
  1715. return 0;
  1716. }
  1717. /**
  1718. * n_tty_read - read function for tty
  1719. * @tty: tty device
  1720. * @file: file object
  1721. * @buf: userspace buffer pointer
  1722. * @nr: size of I/O
  1723. *
  1724. * Perform reads for the line discipline. We are guaranteed that the
  1725. * line discipline will not be closed under us but we may get multiple
  1726. * parallel readers and must handle this ourselves. We may also get
  1727. * a hangup. Always called in user context, may sleep.
  1728. *
  1729. * This code must be sure never to sleep through a hangup.
  1730. *
  1731. * n_tty_read()/consumer path:
  1732. * claims non-exclusive termios_rwsem
  1733. * publishes read_tail
  1734. */
  1735. static ssize_t n_tty_read(struct tty_struct *tty, struct file *file,
  1736. unsigned char __user *buf, size_t nr)
  1737. {
  1738. struct n_tty_data *ldata = tty->disc_data;
  1739. unsigned char __user *b = buf;
  1740. DECLARE_WAITQUEUE(wait, current);
  1741. int c;
  1742. int minimum, time;
  1743. ssize_t retval = 0;
  1744. long timeout;
  1745. unsigned long flags;
  1746. int packet;
  1747. c = job_control(tty, file);
  1748. if (c < 0)
  1749. return c;
  1750. down_read(&tty->termios_rwsem);
  1751. minimum = time = 0;
  1752. timeout = MAX_SCHEDULE_TIMEOUT;
  1753. if (!ldata->icanon) {
  1754. minimum = MIN_CHAR(tty);
  1755. if (minimum) {
  1756. time = (HZ / 10) * TIME_CHAR(tty);
  1757. if (time)
  1758. ldata->minimum_to_wake = 1;
  1759. else if (!waitqueue_active(&tty->read_wait) ||
  1760. (ldata->minimum_to_wake > minimum))
  1761. ldata->minimum_to_wake = minimum;
  1762. } else {
  1763. timeout = (HZ / 10) * TIME_CHAR(tty);
  1764. ldata->minimum_to_wake = minimum = 1;
  1765. }
  1766. }
  1767. /*
  1768. * Internal serialization of reads.
  1769. */
  1770. if (file->f_flags & O_NONBLOCK) {
  1771. if (!mutex_trylock(&ldata->atomic_read_lock)) {
  1772. up_read(&tty->termios_rwsem);
  1773. return -EAGAIN;
  1774. }
  1775. } else {
  1776. if (mutex_lock_interruptible(&ldata->atomic_read_lock)) {
  1777. up_read(&tty->termios_rwsem);
  1778. return -ERESTARTSYS;
  1779. }
  1780. }
  1781. packet = tty->packet;
  1782. add_wait_queue(&tty->read_wait, &wait);
  1783. while (nr) {
  1784. /* First test for status change. */
  1785. if (packet && tty->link->ctrl_status) {
  1786. unsigned char cs;
  1787. if (b != buf)
  1788. break;
  1789. spin_lock_irqsave(&tty->link->ctrl_lock, flags);
  1790. cs = tty->link->ctrl_status;
  1791. tty->link->ctrl_status = 0;
  1792. spin_unlock_irqrestore(&tty->link->ctrl_lock, flags);
  1793. if (tty_put_user(tty, cs, b++)) {
  1794. retval = -EFAULT;
  1795. b--;
  1796. break;
  1797. }
  1798. nr--;
  1799. break;
  1800. }
  1801. /* This statement must be first before checking for input
  1802. so that any interrupt will set the state back to
  1803. TASK_RUNNING. */
  1804. set_current_state(TASK_INTERRUPTIBLE);
  1805. if (((minimum - (b - buf)) < ldata->minimum_to_wake) &&
  1806. ((minimum - (b - buf)) >= 1))
  1807. ldata->minimum_to_wake = (minimum - (b - buf));
  1808. if (!input_available_p(tty, 0)) {
  1809. if (test_bit(TTY_OTHER_CLOSED, &tty->flags)) {
  1810. retval = -EIO;
  1811. break;
  1812. }
  1813. if (tty_hung_up_p(file))
  1814. break;
  1815. if (!timeout)
  1816. break;
  1817. if (file->f_flags & O_NONBLOCK) {
  1818. retval = -EAGAIN;
  1819. break;
  1820. }
  1821. if (signal_pending(current)) {
  1822. retval = -ERESTARTSYS;
  1823. break;
  1824. }
  1825. n_tty_set_room(tty);
  1826. up_read(&tty->termios_rwsem);
  1827. timeout = schedule_timeout(timeout);
  1828. down_read(&tty->termios_rwsem);
  1829. continue;
  1830. }
  1831. __set_current_state(TASK_RUNNING);
  1832. /* Deal with packet mode. */
  1833. if (packet && b == buf) {
  1834. if (tty_put_user(tty, TIOCPKT_DATA, b++)) {
  1835. retval = -EFAULT;
  1836. b--;
  1837. break;
  1838. }
  1839. nr--;
  1840. }
  1841. if (ldata->icanon && !L_EXTPROC(tty)) {
  1842. retval = canon_copy_from_read_buf(tty, &b, &nr);
  1843. if (retval == -EAGAIN) {
  1844. retval = 0;
  1845. continue;
  1846. } else if (retval)
  1847. break;
  1848. } else {
  1849. int uncopied;
  1850. /* The copy function takes the read lock and handles
  1851. locking internally for this case */
  1852. uncopied = copy_from_read_buf(tty, &b, &nr);
  1853. uncopied += copy_from_read_buf(tty, &b, &nr);
  1854. if (uncopied) {
  1855. retval = -EFAULT;
  1856. break;
  1857. }
  1858. }
  1859. n_tty_check_unthrottle(tty);
  1860. if (b - buf >= minimum)
  1861. break;
  1862. if (time)
  1863. timeout = time;
  1864. }
  1865. mutex_unlock(&ldata->atomic_read_lock);
  1866. remove_wait_queue(&tty->read_wait, &wait);
  1867. if (!waitqueue_active(&tty->read_wait))
  1868. ldata->minimum_to_wake = minimum;
  1869. __set_current_state(TASK_RUNNING);
  1870. if (b - buf)
  1871. retval = b - buf;
  1872. n_tty_set_room(tty);
  1873. up_read(&tty->termios_rwsem);
  1874. return retval;
  1875. }
  1876. /**
  1877. * n_tty_write - write function for tty
  1878. * @tty: tty device
  1879. * @file: file object
  1880. * @buf: userspace buffer pointer
  1881. * @nr: size of I/O
  1882. *
  1883. * Write function of the terminal device. This is serialized with
  1884. * respect to other write callers but not to termios changes, reads
  1885. * and other such events. Since the receive code will echo characters,
  1886. * thus calling driver write methods, the output_lock is used in
  1887. * the output processing functions called here as well as in the
  1888. * echo processing function to protect the column state and space
  1889. * left in the buffer.
  1890. *
  1891. * This code must be sure never to sleep through a hangup.
  1892. *
  1893. * Locking: output_lock to protect column state and space left
  1894. * (note that the process_output*() functions take this
  1895. * lock themselves)
  1896. */
  1897. static ssize_t n_tty_write(struct tty_struct *tty, struct file *file,
  1898. const unsigned char *buf, size_t nr)
  1899. {
  1900. const unsigned char *b = buf;
  1901. DECLARE_WAITQUEUE(wait, current);
  1902. int c;
  1903. ssize_t retval = 0;
  1904. /* Job control check -- must be done at start (POSIX.1 7.1.1.4). */
  1905. if (L_TOSTOP(tty) && file->f_op->write != redirected_tty_write) {
  1906. retval = tty_check_change(tty);
  1907. if (retval)
  1908. return retval;
  1909. }
  1910. down_read(&tty->termios_rwsem);
  1911. /* Write out any echoed characters that are still pending */
  1912. process_echoes(tty);
  1913. add_wait_queue(&tty->write_wait, &wait);
  1914. while (1) {
  1915. set_current_state(TASK_INTERRUPTIBLE);
  1916. if (signal_pending(current)) {
  1917. retval = -ERESTARTSYS;
  1918. break;
  1919. }
  1920. if (tty_hung_up_p(file) || (tty->link && !tty->link->count)) {
  1921. retval = -EIO;
  1922. break;
  1923. }
  1924. if (O_OPOST(tty)) {
  1925. while (nr > 0) {
  1926. ssize_t num = process_output_block(tty, b, nr);
  1927. if (num < 0) {
  1928. if (num == -EAGAIN)
  1929. break;
  1930. retval = num;
  1931. goto break_out;
  1932. }
  1933. b += num;
  1934. nr -= num;
  1935. if (nr == 0)
  1936. break;
  1937. c = *b;
  1938. if (process_output(c, tty) < 0)
  1939. break;
  1940. b++; nr--;
  1941. }
  1942. if (tty->ops->flush_chars)
  1943. tty->ops->flush_chars(tty);
  1944. } else {
  1945. while (nr > 0) {
  1946. c = tty->ops->write(tty, b, nr);
  1947. if (c < 0) {
  1948. retval = c;
  1949. goto break_out;
  1950. }
  1951. if (!c)
  1952. break;
  1953. b += c;
  1954. nr -= c;
  1955. }
  1956. }
  1957. if (!nr)
  1958. break;
  1959. if (file->f_flags & O_NONBLOCK) {
  1960. retval = -EAGAIN;
  1961. break;
  1962. }
  1963. up_read(&tty->termios_rwsem);
  1964. schedule();
  1965. down_read(&tty->termios_rwsem);
  1966. }
  1967. break_out:
  1968. __set_current_state(TASK_RUNNING);
  1969. remove_wait_queue(&tty->write_wait, &wait);
  1970. if (b - buf != nr && tty->fasync)
  1971. set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
  1972. up_read(&tty->termios_rwsem);
  1973. return (b - buf) ? b - buf : retval;
  1974. }
  1975. /**
  1976. * n_tty_poll - poll method for N_TTY
  1977. * @tty: terminal device
  1978. * @file: file accessing it
  1979. * @wait: poll table
  1980. *
  1981. * Called when the line discipline is asked to poll() for data or
  1982. * for special events. This code is not serialized with respect to
  1983. * other events save open/close.
  1984. *
  1985. * This code must be sure never to sleep through a hangup.
  1986. * Called without the kernel lock held - fine
  1987. */
  1988. static unsigned int n_tty_poll(struct tty_struct *tty, struct file *file,
  1989. poll_table *wait)
  1990. {
  1991. struct n_tty_data *ldata = tty->disc_data;
  1992. unsigned int mask = 0;
  1993. poll_wait(file, &tty->read_wait, wait);
  1994. poll_wait(file, &tty->write_wait, wait);
  1995. if (input_available_p(tty, TIME_CHAR(tty) ? 0 : MIN_CHAR(tty)))
  1996. mask |= POLLIN | POLLRDNORM;
  1997. if (tty->packet && tty->link->ctrl_status)
  1998. mask |= POLLPRI | POLLIN | POLLRDNORM;
  1999. if (test_bit(TTY_OTHER_CLOSED, &tty->flags))
  2000. mask |= POLLHUP;
  2001. if (tty_hung_up_p(file))
  2002. mask |= POLLHUP;
  2003. if (!(mask & (POLLHUP | POLLIN | POLLRDNORM))) {
  2004. if (MIN_CHAR(tty) && !TIME_CHAR(tty))
  2005. ldata->minimum_to_wake = MIN_CHAR(tty);
  2006. else
  2007. ldata->minimum_to_wake = 1;
  2008. }
  2009. if (tty->ops->write && !tty_is_writelocked(tty) &&
  2010. tty_chars_in_buffer(tty) < WAKEUP_CHARS &&
  2011. tty_write_room(tty) > 0)
  2012. mask |= POLLOUT | POLLWRNORM;
  2013. return mask;
  2014. }
  2015. static unsigned long inq_canon(struct n_tty_data *ldata)
  2016. {
  2017. size_t nr, head, tail;
  2018. if (ldata->canon_head == ldata->read_tail)
  2019. return 0;
  2020. head = ldata->canon_head;
  2021. tail = ldata->read_tail;
  2022. nr = head - tail;
  2023. /* Skip EOF-chars.. */
  2024. while (head != tail) {
  2025. if (test_bit(tail & (N_TTY_BUF_SIZE - 1), ldata->read_flags) &&
  2026. read_buf(ldata, tail) == __DISABLED_CHAR)
  2027. nr--;
  2028. tail++;
  2029. }
  2030. return nr;
  2031. }
  2032. static int n_tty_ioctl(struct tty_struct *tty, struct file *file,
  2033. unsigned int cmd, unsigned long arg)
  2034. {
  2035. struct n_tty_data *ldata = tty->disc_data;
  2036. int retval;
  2037. switch (cmd) {
  2038. case TIOCOUTQ:
  2039. return put_user(tty_chars_in_buffer(tty), (int __user *) arg);
  2040. case TIOCINQ:
  2041. down_write(&tty->termios_rwsem);
  2042. if (L_ICANON(tty))
  2043. retval = inq_canon(ldata);
  2044. else
  2045. retval = read_cnt(ldata);
  2046. up_write(&tty->termios_rwsem);
  2047. return put_user(retval, (unsigned int __user *) arg);
  2048. default:
  2049. return n_tty_ioctl_helper(tty, file, cmd, arg);
  2050. }
  2051. }
  2052. static void n_tty_fasync(struct tty_struct *tty, int on)
  2053. {
  2054. struct n_tty_data *ldata = tty->disc_data;
  2055. if (!waitqueue_active(&tty->read_wait)) {
  2056. if (on)
  2057. ldata->minimum_to_wake = 1;
  2058. else if (!tty->fasync)
  2059. ldata->minimum_to_wake = N_TTY_BUF_SIZE;
  2060. }
  2061. }
  2062. struct tty_ldisc_ops tty_ldisc_N_TTY = {
  2063. .magic = TTY_LDISC_MAGIC,
  2064. .name = "n_tty",
  2065. .open = n_tty_open,
  2066. .close = n_tty_close,
  2067. .flush_buffer = n_tty_flush_buffer,
  2068. .chars_in_buffer = n_tty_chars_in_buffer,
  2069. .read = n_tty_read,
  2070. .write = n_tty_write,
  2071. .ioctl = n_tty_ioctl,
  2072. .set_termios = n_tty_set_termios,
  2073. .poll = n_tty_poll,
  2074. .receive_buf = n_tty_receive_buf,
  2075. .write_wakeup = n_tty_write_wakeup,
  2076. .fasync = n_tty_fasync,
  2077. .receive_buf2 = n_tty_receive_buf2,
  2078. };
  2079. /**
  2080. * n_tty_inherit_ops - inherit N_TTY methods
  2081. * @ops: struct tty_ldisc_ops where to save N_TTY methods
  2082. *
  2083. * Enables a 'subclass' line discipline to 'inherit' N_TTY
  2084. * methods.
  2085. */
  2086. void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
  2087. {
  2088. *ops = tty_ldisc_N_TTY;
  2089. ops->owner = NULL;
  2090. ops->refcount = ops->flags = 0;
  2091. }
  2092. EXPORT_SYMBOL_GPL(n_tty_inherit_ops);