blob: 56d460295c87f62d33a25a783b736e4fab58018f [file] [log] [blame]
Alan Coxe0495732008-10-13 10:36:58 +01001/*
2 * Tty buffer allocation management
3 */
4
5#include <linux/types.h>
6#include <linux/errno.h>
7#include <linux/tty.h>
8#include <linux/tty_driver.h>
9#include <linux/tty_flip.h>
10#include <linux/timer.h>
11#include <linux/string.h>
12#include <linux/slab.h>
13#include <linux/sched.h>
14#include <linux/init.h>
15#include <linux/wait.h>
16#include <linux/bitops.h>
17#include <linux/delay.h>
18#include <linux/module.h>
George Spelvin593fb1ae42013-02-12 02:00:43 -050019#include <linux/ratelimit.h>
Alan Coxe0495732008-10-13 10:36:58 +010020
Peter Hurley1cef50e2013-06-15 09:36:02 -040021
22#define MIN_TTYB_SIZE 256
23#define TTYB_ALIGN_MASK 255
24
Peter Hurley9dd51392013-06-15 09:36:03 -040025static void tty_buffer_reset(struct tty_buffer *p, size_t size)
26{
27 p->used = 0;
28 p->size = size;
29 p->next = NULL;
30 p->commit = 0;
31 p->read = 0;
32}
33
Alan Coxe0495732008-10-13 10:36:58 +010034/**
35 * tty_buffer_free_all - free buffers used by a tty
36 * @tty: tty to free from
37 *
38 * Remove all the buffers pending on a tty whether queued with data
39 * or in the free ring. Must be called when the tty is no longer in use
40 *
41 * Locking: none
42 */
43
Jiri Slabyecbbfd42012-10-18 22:26:47 +020044void tty_buffer_free_all(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +010045{
Jiri Slabyecbbfd42012-10-18 22:26:47 +020046 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +010047 struct tty_buffer *thead;
Jiri Slaby5cff39c2012-10-18 22:26:45 +020048
49 while ((thead = buf->head) != NULL) {
50 buf->head = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010051 kfree(thead);
52 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020053 while ((thead = buf->free) != NULL) {
54 buf->free = thead->next;
Alan Coxe0495732008-10-13 10:36:58 +010055 kfree(thead);
56 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +020057 buf->tail = NULL;
58 buf->memory_used = 0;
Alan Coxe0495732008-10-13 10:36:58 +010059}
60
61/**
62 * tty_buffer_alloc - allocate a tty buffer
63 * @tty: tty device
64 * @size: desired size (characters)
65 *
66 * Allocate a new tty buffer to hold the desired number of characters.
67 * Return NULL if out of memory or the allocation would exceed the
68 * per device queue
69 *
70 * Locking: Caller must hold tty->buf.lock
71 */
72
Jiri Slabyecbbfd42012-10-18 22:26:47 +020073static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +010074{
75 struct tty_buffer *p;
76
Jiri Slabyecbbfd42012-10-18 22:26:47 +020077 if (port->buf.memory_used + size > 65536)
Alan Coxe0495732008-10-13 10:36:58 +010078 return NULL;
79 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
80 if (p == NULL)
81 return NULL;
Peter Hurley9dd51392013-06-15 09:36:03 -040082
83 tty_buffer_reset(p, size);
Jiri Slabyecbbfd42012-10-18 22:26:47 +020084 port->buf.memory_used += size;
Alan Coxe0495732008-10-13 10:36:58 +010085 return p;
86}
87
88/**
89 * tty_buffer_free - free a tty buffer
90 * @tty: tty owning the buffer
91 * @b: the buffer to free
92 *
93 * Free a tty buffer, or add it to the free list according to our
94 * internal strategy
95 *
96 * Locking: Caller must hold tty->buf.lock
97 */
98
Jiri Slabyecbbfd42012-10-18 22:26:47 +020099static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
Alan Coxe0495732008-10-13 10:36:58 +0100100{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200101 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200102
Alan Coxe0495732008-10-13 10:36:58 +0100103 /* Dumb strategy for now - should keep some stats */
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200104 buf->memory_used -= b->size;
105 WARN_ON(buf->memory_used < 0);
Alan Coxe0495732008-10-13 10:36:58 +0100106
Peter Hurley1cef50e2013-06-15 09:36:02 -0400107 if (b->size > MIN_TTYB_SIZE)
Alan Coxe0495732008-10-13 10:36:58 +0100108 kfree(b);
109 else {
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200110 b->next = buf->free;
111 buf->free = b;
Alan Coxe0495732008-10-13 10:36:58 +0100112 }
113}
114
115/**
116 * __tty_buffer_flush - flush full tty buffers
117 * @tty: tty to flush
118 *
119 * flush all the buffers containing receive data. Caller must
120 * hold the buffer lock and must have ensured no parallel flush to
121 * ldisc is running.
122 *
123 * Locking: Caller must hold tty->buf.lock
124 */
125
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200126static void __tty_buffer_flush(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100127{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200128 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100129 struct tty_buffer *thead;
130
Ilya Zykov64325a32013-01-19 18:16:20 +0400131 if (unlikely(buf->head == NULL))
132 return;
133 while ((thead = buf->head->next) != NULL) {
134 tty_buffer_free(port, buf->head);
135 buf->head = thead;
Alan Coxe0495732008-10-13 10:36:58 +0100136 }
Ilya Zykov64325a32013-01-19 18:16:20 +0400137 WARN_ON(buf->head != buf->tail);
138 buf->head->read = buf->head->commit;
Alan Coxe0495732008-10-13 10:36:58 +0100139}
140
141/**
142 * tty_buffer_flush - flush full tty buffers
143 * @tty: tty to flush
144 *
145 * flush all the buffers containing receive data. If the buffer is
146 * being processed by flush_to_ldisc then we defer the processing
147 * to that function
148 *
149 * Locking: none
150 */
151
152void tty_buffer_flush(struct tty_struct *tty)
153{
Jiri Slaby2fc20662012-10-18 22:26:44 +0200154 struct tty_port *port = tty->port;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200155 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100156 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200157
158 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100159
160 /* If the data is being pushed to the tty layer then we can't
161 process it here. Instead set a flag and the flush_to_ldisc
162 path will process the flush request before it exits */
Jiri Slaby2fc20662012-10-18 22:26:44 +0200163 if (test_bit(TTYP_FLUSHING, &port->iflags)) {
164 set_bit(TTYP_FLUSHPENDING, &port->iflags);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200165 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100166 wait_event(tty->read_wait,
Jiri Slaby2fc20662012-10-18 22:26:44 +0200167 test_bit(TTYP_FLUSHPENDING, &port->iflags) == 0);
Alan Coxe0495732008-10-13 10:36:58 +0100168 return;
169 } else
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200170 __tty_buffer_flush(port);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200171 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100172}
173
174/**
175 * tty_buffer_find - find a free tty buffer
176 * @tty: tty owning the buffer
177 * @size: characters wanted
178 *
179 * Locate an existing suitable tty buffer or if we are lacking one then
180 * allocate a new one. We round our buffers off in 256 character chunks
181 * to get better allocation behaviour.
182 *
183 * Locking: Caller must hold tty->buf.lock
184 */
185
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200186static struct tty_buffer *tty_buffer_find(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100187{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200188 struct tty_buffer **tbh = &port->buf.free;
Peter Hurley1cef50e2013-06-15 09:36:02 -0400189 if (size <= MIN_TTYB_SIZE) {
190 if (*tbh) {
191 struct tty_buffer *t = *tbh;
192
Alan Coxe0495732008-10-13 10:36:58 +0100193 *tbh = t->next;
Peter Hurley9dd51392013-06-15 09:36:03 -0400194 tty_buffer_reset(t, t->size);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200195 port->buf.memory_used += t->size;
Alan Coxe0495732008-10-13 10:36:58 +0100196 return t;
197 }
Alan Coxe0495732008-10-13 10:36:58 +0100198 }
199 /* Round the buffer size out */
Peter Hurley1cef50e2013-06-15 09:36:02 -0400200 size = __ALIGN_MASK(size, TTYB_ALIGN_MASK);
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200201 return tty_buffer_alloc(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100202 /* Should possibly check if this fails for the largest buffer we
203 have queued and recycle that ? */
204}
Alan Coxe0495732008-10-13 10:36:58 +0100205/**
Ilya Zykov64325a32013-01-19 18:16:20 +0400206 * tty_buffer_request_room - grow tty buffer if needed
Alan Coxe0495732008-10-13 10:36:58 +0100207 * @tty: tty structure
208 * @size: size desired
209 *
210 * Make at least size bytes of linear space available for the tty
211 * buffer. If we fail return the size we managed to find.
Ilya Zykov64325a32013-01-19 18:16:20 +0400212 *
213 * Locking: Takes port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100214 */
Ilya Zykov64325a32013-01-19 18:16:20 +0400215int tty_buffer_request_room(struct tty_port *port, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100216{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200217 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100218 struct tty_buffer *b, *n;
219 int left;
Ilya Zykov64325a32013-01-19 18:16:20 +0400220 unsigned long flags;
221 spin_lock_irqsave(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100222 /* OPTIMISATION: We could keep a per tty "zero" sized buffer to
223 remove this conditional if its worth it. This would be invisible
224 to the callers */
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200225 b = buf->tail;
226 if (b != NULL)
Alan Coxe0495732008-10-13 10:36:58 +0100227 left = b->size - b->used;
228 else
229 left = 0;
230
231 if (left < size) {
232 /* This is the slow path - looking for new buffers to use */
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200233 if ((n = tty_buffer_find(port, size)) != NULL) {
Alan Coxe0495732008-10-13 10:36:58 +0100234 if (b != NULL) {
235 b->next = n;
236 b->commit = b->used;
237 } else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200238 buf->head = n;
239 buf->tail = n;
Alan Coxe0495732008-10-13 10:36:58 +0100240 } else
241 size = left;
242 }
Ilya Zykov64325a32013-01-19 18:16:20 +0400243 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100244 return size;
245}
246EXPORT_SYMBOL_GPL(tty_buffer_request_room);
247
248/**
Alan Cox2832fc12010-02-18 16:43:54 +0000249 * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100250 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100251 * @chars: characters
Alan Cox2832fc12010-02-18 16:43:54 +0000252 * @flag: flag value for each character
Alan Coxe0495732008-10-13 10:36:58 +0100253 * @size: size
254 *
255 * Queue a series of bytes to the tty buffering. All the characters
Johan Hovoldccc5ca82010-05-07 19:58:32 +0200256 * passed are marked with the supplied flag. Returns the number added.
Alan Coxe0495732008-10-13 10:36:58 +0100257 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200258 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100259 */
260
Jiri Slaby2f693352013-01-03 15:53:02 +0100261int tty_insert_flip_string_fixed_flag(struct tty_port *port,
Alan Cox2832fc12010-02-18 16:43:54 +0000262 const unsigned char *chars, char flag, size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100263{
264 int copied = 0;
265 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800266 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Ilya Zykov64325a32013-01-19 18:16:20 +0400267 int space = tty_buffer_request_room(port, goal);
268 struct tty_buffer *tb = port->buf.tail;
Alan Coxe0495732008-10-13 10:36:58 +0100269 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000270 if (unlikely(space == 0)) {
Alan Coxe0495732008-10-13 10:36:58 +0100271 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000272 }
Peter Hurley1fc359f2013-06-15 09:36:01 -0400273 memcpy(char_buf_ptr(tb, tb->used), chars, space);
274 memset(flag_buf_ptr(tb, tb->used), flag, space);
Alan Coxe0495732008-10-13 10:36:58 +0100275 tb->used += space;
276 copied += space;
277 chars += space;
278 /* There is a small chance that we need to split the data over
279 several buffers. If this is the case we must loop */
280 } while (unlikely(size > copied));
281 return copied;
282}
Alan Cox2832fc12010-02-18 16:43:54 +0000283EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag);
Alan Coxe0495732008-10-13 10:36:58 +0100284
285/**
286 * tty_insert_flip_string_flags - Add characters to the tty buffer
Jiri Slaby2f693352013-01-03 15:53:02 +0100287 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100288 * @chars: characters
289 * @flags: flag bytes
290 * @size: size
291 *
292 * Queue a series of bytes to the tty buffering. For each character
293 * the flags array indicates the status of the character. Returns the
294 * number added.
295 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200296 * Locking: Called functions may take port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100297 */
298
Jiri Slaby2f693352013-01-03 15:53:02 +0100299int tty_insert_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100300 const unsigned char *chars, const char *flags, size_t size)
301{
302 int copied = 0;
303 do {
Fang Wenqid4bee0a2010-03-09 18:54:28 +0800304 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
Ilya Zykov64325a32013-01-19 18:16:20 +0400305 int space = tty_buffer_request_room(port, goal);
306 struct tty_buffer *tb = port->buf.tail;
Alan Coxe0495732008-10-13 10:36:58 +0100307 /* If there is no space then tb may be NULL */
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000308 if (unlikely(space == 0)) {
Alan Coxe0495732008-10-13 10:36:58 +0100309 break;
Xiaobing Tuc56a00a2012-03-16 03:00:26 +0000310 }
Peter Hurley1fc359f2013-06-15 09:36:01 -0400311 memcpy(char_buf_ptr(tb, tb->used), chars, space);
312 memcpy(flag_buf_ptr(tb, tb->used), flags, space);
Alan Coxe0495732008-10-13 10:36:58 +0100313 tb->used += space;
314 copied += space;
315 chars += space;
316 flags += space;
317 /* There is a small chance that we need to split the data over
318 several buffers. If this is the case we must loop */
319 } while (unlikely(size > copied));
320 return copied;
321}
322EXPORT_SYMBOL(tty_insert_flip_string_flags);
323
324/**
325 * tty_schedule_flip - push characters to ldisc
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100326 * @port: tty port to push from
Alan Coxe0495732008-10-13 10:36:58 +0100327 *
328 * Takes any pending buffers and transfers their ownership to the
329 * ldisc side of the queue. It then schedules those characters for
330 * processing by the line discipline.
Ivo Siebencee4ad12012-09-27 14:02:05 +0200331 * Note that this function can only be used when the low_latency flag
332 * is unset. Otherwise the workqueue won't be flushed.
Alan Coxe0495732008-10-13 10:36:58 +0100333 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200334 * Locking: Takes port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100335 */
336
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100337void tty_schedule_flip(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100338{
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100339 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100340 unsigned long flags;
Jiri Slaby6732c8b2013-01-03 15:53:07 +0100341 WARN_ON(port->low_latency);
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200342
343 spin_lock_irqsave(&buf->lock, flags);
344 if (buf->tail != NULL)
345 buf->tail->commit = buf->tail->used;
346 spin_unlock_irqrestore(&buf->lock, flags);
347 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100348}
349EXPORT_SYMBOL(tty_schedule_flip);
350
351/**
352 * tty_prepare_flip_string - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100353 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100354 * @chars: return pointer for character write area
355 * @size: desired size
356 *
357 * Prepare a block of space in the buffer for data. Returns the length
358 * available and buffer pointer to the space which is now allocated and
359 * accounted for as ready for normal characters. This is used for drivers
360 * that need their own block copy routines into the buffer. There is no
361 * guarantee the buffer is a DMA target!
362 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200363 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100364 */
365
Jiri Slaby2f693352013-01-03 15:53:02 +0100366int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars,
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200367 size_t size)
Alan Coxe0495732008-10-13 10:36:58 +0100368{
Ilya Zykov64325a32013-01-19 18:16:20 +0400369 int space = tty_buffer_request_room(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100370 if (likely(space)) {
Ilya Zykov64325a32013-01-19 18:16:20 +0400371 struct tty_buffer *tb = port->buf.tail;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400372 *chars = char_buf_ptr(tb, tb->used);
373 memset(flag_buf_ptr(tb, tb->used), TTY_NORMAL, space);
Alan Coxe0495732008-10-13 10:36:58 +0100374 tb->used += space;
375 }
376 return space;
377}
378EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
379
380/**
381 * tty_prepare_flip_string_flags - make room for characters
Jiri Slaby2f693352013-01-03 15:53:02 +0100382 * @port: tty port
Alan Coxe0495732008-10-13 10:36:58 +0100383 * @chars: return pointer for character write area
384 * @flags: return pointer for status flag write area
385 * @size: desired size
386 *
387 * Prepare a block of space in the buffer for data. Returns the length
388 * available and buffer pointer to the space which is now allocated and
389 * accounted for as ready for characters. This is used for drivers
390 * that need their own block copy routines into the buffer. There is no
391 * guarantee the buffer is a DMA target!
392 *
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200393 * Locking: May call functions taking port->buf.lock
Alan Coxe0495732008-10-13 10:36:58 +0100394 */
395
Jiri Slaby2f693352013-01-03 15:53:02 +0100396int tty_prepare_flip_string_flags(struct tty_port *port,
Alan Coxe0495732008-10-13 10:36:58 +0100397 unsigned char **chars, char **flags, size_t size)
398{
Ilya Zykov64325a32013-01-19 18:16:20 +0400399 int space = tty_buffer_request_room(port, size);
Alan Coxe0495732008-10-13 10:36:58 +0100400 if (likely(space)) {
Ilya Zykov64325a32013-01-19 18:16:20 +0400401 struct tty_buffer *tb = port->buf.tail;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400402 *chars = char_buf_ptr(tb, tb->used);
403 *flags = flag_buf_ptr(tb, tb->used);
Alan Coxe0495732008-10-13 10:36:58 +0100404 tb->used += space;
405 }
406 return space;
407}
408EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
409
410
Peter Hurleyda261e72013-06-15 09:14:14 -0400411static int
412receive_buf(struct tty_struct *tty, struct tty_buffer *head, int count)
413{
414 struct tty_ldisc *disc = tty->ldisc;
Peter Hurley1fc359f2013-06-15 09:36:01 -0400415 unsigned char *p = char_buf_ptr(head, head->read);
416 char *f = flag_buf_ptr(head, head->read);
Peter Hurleyda261e72013-06-15 09:14:14 -0400417
Peter Hurley24a89d12013-06-15 09:14:15 -0400418 if (disc->ops->receive_buf2)
419 count = disc->ops->receive_buf2(tty, p, f, count);
420 else {
421 count = min_t(int, count, tty->receive_room);
422 if (count)
423 disc->ops->receive_buf(tty, p, f, count);
424 }
Peter Hurleyda261e72013-06-15 09:14:14 -0400425 head->read += count;
426 return count;
427}
Alan Coxe0495732008-10-13 10:36:58 +0100428
429/**
430 * flush_to_ldisc
431 * @work: tty structure passed from work queue.
432 *
433 * This routine is called out of the software interrupt to flush data
434 * from the buffer chain to the line discipline.
435 *
436 * Locking: holds tty->buf.lock to guard buffer list. Drops the lock
437 * while invoking the line discipline receive_buf method. The
438 * receive_buf method is single threaded for each tty instance.
439 */
440
441static void flush_to_ldisc(struct work_struct *work)
442{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200443 struct tty_port *port = container_of(work, struct tty_port, buf.work);
444 struct tty_bufhead *buf = &port->buf;
445 struct tty_struct *tty;
Alan Coxe0495732008-10-13 10:36:58 +0100446 unsigned long flags;
447 struct tty_ldisc *disc;
Alan Coxe0495732008-10-13 10:36:58 +0100448
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200449 tty = port->itty;
Jiri Slaby34dcfb82013-02-27 22:30:24 +0100450 if (tty == NULL)
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200451 return;
452
Alan Coxe0495732008-10-13 10:36:58 +0100453 disc = tty_ldisc_ref(tty);
Peter Hurley36697522013-06-15 07:04:48 -0400454 if (disc == NULL)
Alan Coxe0495732008-10-13 10:36:58 +0100455 return;
456
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200457 spin_lock_irqsave(&buf->lock, flags);
Linus Torvalds45242002009-10-14 08:59:49 -0700458
Jiri Slaby2fc20662012-10-18 22:26:44 +0200459 if (!test_and_set_bit(TTYP_FLUSHING, &port->iflags)) {
Linus Torvalds81de9162011-06-08 07:46:30 -0700460 struct tty_buffer *head;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200461 while ((head = buf->head) != NULL) {
Linus Torvalds45242002009-10-14 08:59:49 -0700462 int count;
Linus Torvalds45242002009-10-14 08:59:49 -0700463
464 count = head->commit - head->read;
Alan Coxe0495732008-10-13 10:36:58 +0100465 if (!count) {
466 if (head->next == NULL)
467 break;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200468 buf->head = head->next;
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200469 tty_buffer_free(port, head);
Alan Coxe0495732008-10-13 10:36:58 +0100470 continue;
471 }
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200472 spin_unlock_irqrestore(&buf->lock, flags);
Peter Hurleyda261e72013-06-15 09:14:14 -0400473
474 count = receive_buf(tty, head, count);
475
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200476 spin_lock_irqsave(&buf->lock, flags);
Peter Hurley39f610e2013-03-20 13:20:43 -0400477 /* Ldisc or user is trying to flush the buffers.
478 We may have a deferred request to flush the
479 input buffer, if so pull the chain under the lock
480 and empty the queue */
481 if (test_bit(TTYP_FLUSHPENDING, &port->iflags)) {
482 __tty_buffer_flush(port);
483 clear_bit(TTYP_FLUSHPENDING, &port->iflags);
484 wake_up(&tty->read_wait);
485 break;
Peter Hurleyda261e72013-06-15 09:14:14 -0400486 } else if (!count)
487 break;
Alan Coxe0495732008-10-13 10:36:58 +0100488 }
Jiri Slaby2fc20662012-10-18 22:26:44 +0200489 clear_bit(TTYP_FLUSHING, &port->iflags);
Alan Coxe0495732008-10-13 10:36:58 +0100490 }
Linus Torvalds45242002009-10-14 08:59:49 -0700491
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200492 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100493
494 tty_ldisc_deref(disc);
495}
496
497/**
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700498 * tty_flush_to_ldisc
499 * @tty: tty to push
500 *
501 * Push the terminal flip buffers to the line discipline.
502 *
503 * Must not be called from IRQ context.
504 */
505void tty_flush_to_ldisc(struct tty_struct *tty)
506{
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100507 if (!tty->port->low_latency)
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200508 flush_work(&tty->port->buf.work);
OGAWA Hirofumie043e422009-07-29 12:15:56 -0700509}
510
511/**
Alan Coxe0495732008-10-13 10:36:58 +0100512 * tty_flip_buffer_push - terminal
Jiri Slaby2e124b42013-01-03 15:53:06 +0100513 * @port: tty port to push
Alan Coxe0495732008-10-13 10:36:58 +0100514 *
515 * Queue a push of the terminal flip buffers to the line discipline. This
Jiri Slabyd6c53c02013-01-03 15:53:05 +0100516 * function must not be called from IRQ context if port->low_latency is
517 * set.
Alan Coxe0495732008-10-13 10:36:58 +0100518 *
519 * In the event of the queue being busy for flipping the work will be
520 * held off and retried later.
521 *
522 * Locking: tty buffer lock. Driver locks in low latency mode.
523 */
524
Jiri Slaby2e124b42013-01-03 15:53:06 +0100525void tty_flip_buffer_push(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100526{
Jiri Slaby2e124b42013-01-03 15:53:06 +0100527 struct tty_bufhead *buf = &port->buf;
Alan Coxe0495732008-10-13 10:36:58 +0100528 unsigned long flags;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200529
530 spin_lock_irqsave(&buf->lock, flags);
531 if (buf->tail != NULL)
532 buf->tail->commit = buf->tail->used;
533 spin_unlock_irqrestore(&buf->lock, flags);
Alan Coxe0495732008-10-13 10:36:58 +0100534
Jiri Slaby2e124b42013-01-03 15:53:06 +0100535 if (port->low_latency)
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200536 flush_to_ldisc(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100537 else
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200538 schedule_work(&buf->work);
Alan Coxe0495732008-10-13 10:36:58 +0100539}
540EXPORT_SYMBOL(tty_flip_buffer_push);
541
542/**
543 * tty_buffer_init - prepare a tty buffer structure
544 * @tty: tty to initialise
545 *
546 * Set up the initial state of the buffer management for a tty device.
547 * Must be called before the other tty buffer functions are used.
548 *
549 * Locking: none
550 */
551
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200552void tty_buffer_init(struct tty_port *port)
Alan Coxe0495732008-10-13 10:36:58 +0100553{
Jiri Slabyecbbfd42012-10-18 22:26:47 +0200554 struct tty_bufhead *buf = &port->buf;
Jiri Slaby5cff39c2012-10-18 22:26:45 +0200555
556 spin_lock_init(&buf->lock);
557 buf->head = NULL;
558 buf->tail = NULL;
559 buf->free = NULL;
560 buf->memory_used = 0;
561 INIT_WORK(&buf->work, flush_to_ldisc);
Alan Coxe0495732008-10-13 10:36:58 +0100562}
563