Linux 3.12.39
[linux/fpc-iii.git] / drivers / tty / tty_buffer.c
blobd9d216eb7db97b7a20a3b7f0af519d0ebbb8b0df
1 /*
2 * Tty buffer allocation management
3 */
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>
19 #include <linux/ratelimit.h>
22 #define MIN_TTYB_SIZE 256
23 #define TTYB_ALIGN_MASK 255
26 * Byte threshold to limit memory consumption for flip buffers.
27 * The actual memory limit is > 2x this amount.
29 #define TTYB_MEM_LIMIT 65536
32 * We default to dicing tty buffer allocations to this many characters
33 * in order to avoid multiple page allocations. We know the size of
34 * tty_buffer itself but it must also be taken into account that the
35 * the buffer is 256 byte aligned. See tty_buffer_find for the allocation
36 * logic this must match
39 #define TTY_BUFFER_PAGE (((PAGE_SIZE - sizeof(struct tty_buffer)) / 2) & ~0xFF)
42 /**
43 * tty_buffer_lock_exclusive - gain exclusive access to buffer
44 * tty_buffer_unlock_exclusive - release exclusive access
46 * @port - tty_port owning the flip buffer
48 * Guarantees safe use of the line discipline's receive_buf() method by
49 * excluding the buffer work and any pending flush from using the flip
50 * buffer. Data can continue to be added concurrently to the flip buffer
51 * from the driver side.
53 * On release, the buffer work is restarted if there is data in the
54 * flip buffer
57 void tty_buffer_lock_exclusive(struct tty_port *port)
59 struct tty_bufhead *buf = &port->buf;
61 atomic_inc(&buf->priority);
62 mutex_lock(&buf->lock);
64 EXPORT_SYMBOL_GPL(tty_buffer_lock_exclusive);
66 void tty_buffer_unlock_exclusive(struct tty_port *port)
68 struct tty_bufhead *buf = &port->buf;
69 int restart;
71 restart = buf->head->commit != buf->head->read;
73 atomic_dec(&buf->priority);
74 mutex_unlock(&buf->lock);
75 if (restart)
76 queue_work(system_unbound_wq, &buf->work);
78 EXPORT_SYMBOL_GPL(tty_buffer_unlock_exclusive);
80 /**
81 * tty_buffer_space_avail - return unused buffer space
82 * @port - tty_port owning the flip buffer
84 * Returns the # of bytes which can be written by the driver without
85 * reaching the buffer limit.
87 * Note: this does not guarantee that memory is available to write
88 * the returned # of bytes (use tty_prepare_flip_string_xxx() to
89 * pre-allocate if memory guarantee is required).
92 int tty_buffer_space_avail(struct tty_port *port)
94 int space = TTYB_MEM_LIMIT - atomic_read(&port->buf.memory_used);
95 return max(space, 0);
98 static void tty_buffer_reset(struct tty_buffer *p, size_t size)
100 p->used = 0;
101 p->size = size;
102 p->next = NULL;
103 p->commit = 0;
104 p->read = 0;
108 * tty_buffer_free_all - free buffers used by a tty
109 * @tty: tty to free from
111 * Remove all the buffers pending on a tty whether queued with data
112 * or in the free ring. Must be called when the tty is no longer in use
115 void tty_buffer_free_all(struct tty_port *port)
117 struct tty_bufhead *buf = &port->buf;
118 struct tty_buffer *p, *next;
119 struct llist_node *llist;
121 while ((p = buf->head) != NULL) {
122 buf->head = p->next;
123 if (p->size > 0)
124 kfree(p);
126 llist = llist_del_all(&buf->free);
127 llist_for_each_entry_safe(p, next, llist, free)
128 kfree(p);
130 tty_buffer_reset(&buf->sentinel, 0);
131 buf->head = &buf->sentinel;
132 buf->tail = &buf->sentinel;
134 atomic_set(&buf->memory_used, 0);
138 * tty_buffer_alloc - allocate a tty buffer
139 * @tty: tty device
140 * @size: desired size (characters)
142 * Allocate a new tty buffer to hold the desired number of characters.
143 * We round our buffers off in 256 character chunks to get better
144 * allocation behaviour.
145 * Return NULL if out of memory or the allocation would exceed the
146 * per device queue
149 static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size)
151 struct llist_node *free;
152 struct tty_buffer *p;
154 /* Round the buffer size out */
155 size = __ALIGN_MASK(size, TTYB_ALIGN_MASK);
157 if (size <= MIN_TTYB_SIZE) {
158 free = llist_del_first(&port->buf.free);
159 if (free) {
160 p = llist_entry(free, struct tty_buffer, free);
161 goto found;
165 /* Should possibly check if this fails for the largest buffer we
166 have queued and recycle that ? */
167 if (atomic_read(&port->buf.memory_used) > TTYB_MEM_LIMIT)
168 return NULL;
169 p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC);
170 if (p == NULL)
171 return NULL;
173 found:
174 tty_buffer_reset(p, size);
175 atomic_add(size, &port->buf.memory_used);
176 return p;
180 * tty_buffer_free - free a tty buffer
181 * @tty: tty owning the buffer
182 * @b: the buffer to free
184 * Free a tty buffer, or add it to the free list according to our
185 * internal strategy
188 static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
190 struct tty_bufhead *buf = &port->buf;
192 /* Dumb strategy for now - should keep some stats */
193 WARN_ON(atomic_sub_return(b->size, &buf->memory_used) < 0);
195 if (b->size > MIN_TTYB_SIZE)
196 kfree(b);
197 else if (b->size > 0)
198 llist_add(&b->free, &buf->free);
202 * tty_buffer_flush - flush full tty buffers
203 * @tty: tty to flush
205 * flush all the buffers containing receive data. If the buffer is
206 * being processed by flush_to_ldisc then we defer the processing
207 * to that function
209 * Locking: takes buffer lock to ensure single-threaded flip buffer
210 * 'consumer'
213 void tty_buffer_flush(struct tty_struct *tty)
215 struct tty_port *port = tty->port;
216 struct tty_bufhead *buf = &port->buf;
217 struct tty_buffer *next;
219 atomic_inc(&buf->priority);
221 mutex_lock(&buf->lock);
222 while ((next = buf->head->next) != NULL) {
223 tty_buffer_free(port, buf->head);
224 buf->head = next;
226 buf->head->read = buf->head->commit;
227 atomic_dec(&buf->priority);
228 mutex_unlock(&buf->lock);
232 * tty_buffer_request_room - grow tty buffer if needed
233 * @tty: tty structure
234 * @size: size desired
236 * Make at least size bytes of linear space available for the tty
237 * buffer. If we fail return the size we managed to find.
239 int tty_buffer_request_room(struct tty_port *port, size_t size)
241 struct tty_bufhead *buf = &port->buf;
242 struct tty_buffer *b, *n;
243 int left;
245 b = buf->tail;
246 left = b->size - b->used;
248 if (left < size) {
249 /* This is the slow path - looking for new buffers to use */
250 if ((n = tty_buffer_alloc(port, size)) != NULL) {
251 buf->tail = n;
252 b->commit = b->used;
253 /* paired w/ barrier in flush_to_ldisc(); ensures the
254 * latest commit value can be read before the head is
255 * advanced to the next buffer
257 smp_wmb();
258 b->next = n;
259 } else
260 size = left;
262 return size;
264 EXPORT_SYMBOL_GPL(tty_buffer_request_room);
267 * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer
268 * @port: tty port
269 * @chars: characters
270 * @flag: flag value for each character
271 * @size: size
273 * Queue a series of bytes to the tty buffering. All the characters
274 * passed are marked with the supplied flag. Returns the number added.
277 int tty_insert_flip_string_fixed_flag(struct tty_port *port,
278 const unsigned char *chars, char flag, size_t size)
280 int copied = 0;
281 do {
282 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
283 int space = tty_buffer_request_room(port, goal);
284 struct tty_buffer *tb = port->buf.tail;
285 if (unlikely(space == 0))
286 break;
287 memcpy(char_buf_ptr(tb, tb->used), chars, space);
288 memset(flag_buf_ptr(tb, tb->used), flag, space);
289 tb->used += space;
290 copied += space;
291 chars += space;
292 /* There is a small chance that we need to split the data over
293 several buffers. If this is the case we must loop */
294 } while (unlikely(size > copied));
295 return copied;
297 EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag);
300 * tty_insert_flip_string_flags - Add characters to the tty buffer
301 * @port: tty port
302 * @chars: characters
303 * @flags: flag bytes
304 * @size: size
306 * Queue a series of bytes to the tty buffering. For each character
307 * the flags array indicates the status of the character. Returns the
308 * number added.
311 int tty_insert_flip_string_flags(struct tty_port *port,
312 const unsigned char *chars, const char *flags, size_t size)
314 int copied = 0;
315 do {
316 int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
317 int space = tty_buffer_request_room(port, goal);
318 struct tty_buffer *tb = port->buf.tail;
319 if (unlikely(space == 0))
320 break;
321 memcpy(char_buf_ptr(tb, tb->used), chars, space);
322 memcpy(flag_buf_ptr(tb, tb->used), flags, space);
323 tb->used += space;
324 copied += space;
325 chars += space;
326 flags += space;
327 /* There is a small chance that we need to split the data over
328 several buffers. If this is the case we must loop */
329 } while (unlikely(size > copied));
330 return copied;
332 EXPORT_SYMBOL(tty_insert_flip_string_flags);
335 * tty_schedule_flip - push characters to ldisc
336 * @port: tty port to push from
338 * Takes any pending buffers and transfers their ownership to the
339 * ldisc side of the queue. It then schedules those characters for
340 * processing by the line discipline.
343 void tty_schedule_flip(struct tty_port *port)
345 struct tty_bufhead *buf = &port->buf;
347 buf->tail->commit = buf->tail->used;
348 schedule_work(&buf->work);
350 EXPORT_SYMBOL(tty_schedule_flip);
353 * tty_prepare_flip_string - make room for characters
354 * @port: tty port
355 * @chars: return pointer for character write area
356 * @size: desired size
358 * Prepare a block of space in the buffer for data. Returns the length
359 * available and buffer pointer to the space which is now allocated and
360 * accounted for as ready for normal characters. This is used for drivers
361 * that need their own block copy routines into the buffer. There is no
362 * guarantee the buffer is a DMA target!
365 int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars,
366 size_t size)
368 int space = tty_buffer_request_room(port, size);
369 if (likely(space)) {
370 struct tty_buffer *tb = port->buf.tail;
371 *chars = char_buf_ptr(tb, tb->used);
372 memset(flag_buf_ptr(tb, tb->used), TTY_NORMAL, space);
373 tb->used += space;
375 return space;
377 EXPORT_SYMBOL_GPL(tty_prepare_flip_string);
380 * tty_prepare_flip_string_flags - make room for characters
381 * @port: tty port
382 * @chars: return pointer for character write area
383 * @flags: return pointer for status flag write area
384 * @size: desired size
386 * Prepare a block of space in the buffer for data. Returns the length
387 * available and buffer pointer to the space which is now allocated and
388 * accounted for as ready for characters. This is used for drivers
389 * that need their own block copy routines into the buffer. There is no
390 * guarantee the buffer is a DMA target!
393 int tty_prepare_flip_string_flags(struct tty_port *port,
394 unsigned char **chars, char **flags, size_t size)
396 int space = tty_buffer_request_room(port, size);
397 if (likely(space)) {
398 struct tty_buffer *tb = port->buf.tail;
399 *chars = char_buf_ptr(tb, tb->used);
400 *flags = flag_buf_ptr(tb, tb->used);
401 tb->used += space;
403 return space;
405 EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags);
408 static int
409 receive_buf(struct tty_struct *tty, struct tty_buffer *head, int count)
411 struct tty_ldisc *disc = tty->ldisc;
412 unsigned char *p = char_buf_ptr(head, head->read);
413 char *f = flag_buf_ptr(head, head->read);
415 if (disc->ops->receive_buf2)
416 count = disc->ops->receive_buf2(tty, p, f, count);
417 else {
418 count = min_t(int, count, tty->receive_room);
419 if (count)
420 disc->ops->receive_buf(tty, p, f, count);
422 head->read += count;
423 return count;
427 * flush_to_ldisc
428 * @work: tty structure passed from work queue.
430 * This routine is called out of the software interrupt to flush data
431 * from the buffer chain to the line discipline.
433 * The receive_buf method is single threaded for each tty instance.
435 * Locking: takes buffer lock to ensure single-threaded flip buffer
436 * 'consumer'
439 static void flush_to_ldisc(struct work_struct *work)
441 struct tty_port *port = container_of(work, struct tty_port, buf.work);
442 struct tty_bufhead *buf = &port->buf;
443 struct tty_struct *tty;
444 struct tty_ldisc *disc;
446 tty = port->itty;
447 if (tty == NULL)
448 return;
450 disc = tty_ldisc_ref(tty);
451 if (disc == NULL)
452 return;
454 mutex_lock(&buf->lock);
456 while (1) {
457 struct tty_buffer *head = buf->head;
458 struct tty_buffer *next;
459 int count;
461 /* Ldisc or user is trying to gain exclusive access */
462 if (atomic_read(&buf->priority))
463 break;
465 next = head->next;
466 /* paired w/ barrier in __tty_buffer_request_room();
467 * ensures commit value read is not stale if the head
468 * is advancing to the next buffer
470 smp_rmb();
471 count = head->commit - head->read;
472 if (!count) {
473 if (next == NULL)
474 break;
475 buf->head = next;
476 tty_buffer_free(port, head);
477 continue;
480 count = receive_buf(tty, head, count);
481 if (!count)
482 break;
485 mutex_unlock(&buf->lock);
487 tty_ldisc_deref(disc);
491 * tty_flush_to_ldisc
492 * @tty: tty to push
494 * Push the terminal flip buffers to the line discipline.
496 * Must not be called from IRQ context.
498 void tty_flush_to_ldisc(struct tty_struct *tty)
500 flush_work(&tty->port->buf.work);
504 * tty_flip_buffer_push - terminal
505 * @port: tty port to push
507 * Queue a push of the terminal flip buffers to the line discipline.
508 * Can be called from IRQ/atomic context.
510 * In the event of the queue being busy for flipping the work will be
511 * held off and retried later.
514 void tty_flip_buffer_push(struct tty_port *port)
516 tty_schedule_flip(port);
518 EXPORT_SYMBOL(tty_flip_buffer_push);
521 * tty_buffer_init - prepare a tty buffer structure
522 * @tty: tty to initialise
524 * Set up the initial state of the buffer management for a tty device.
525 * Must be called before the other tty buffer functions are used.
528 void tty_buffer_init(struct tty_port *port)
530 struct tty_bufhead *buf = &port->buf;
532 mutex_init(&buf->lock);
533 tty_buffer_reset(&buf->sentinel, 0);
534 buf->head = &buf->sentinel;
535 buf->tail = &buf->sentinel;
536 init_llist_head(&buf->free);
537 atomic_set(&buf->memory_used, 0);
538 atomic_set(&buf->priority, 0);
539 INIT_WORK(&buf->work, flush_to_ldisc);