2 * Tty buffer allocation management
5 #include <linux/types.h>
6 #include <linux/errno.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)
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
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
;
71 restart
= buf
->head
->commit
!= buf
->head
->read
;
73 atomic_dec(&buf
->priority
);
74 mutex_unlock(&buf
->lock
);
76 queue_work(system_unbound_wq
, &buf
->work
);
78 EXPORT_SYMBOL_GPL(tty_buffer_unlock_exclusive
);
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
);
98 static void tty_buffer_reset(struct tty_buffer
*p
, size_t size
)
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
) {
126 llist
= llist_del_all(&buf
->free
);
127 llist_for_each_entry_safe(p
, next
, llist
, free
)
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
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
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
);
160 p
= llist_entry(free
, struct tty_buffer
, free
);
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
)
169 p
= kmalloc(sizeof(struct tty_buffer
) + 2 * size
, GFP_ATOMIC
);
174 tty_buffer_reset(p
, size
);
175 atomic_add(size
, &port
->buf
.memory_used
);
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
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
)
197 else if (b
->size
> 0)
198 llist_add(&b
->free
, &buf
->free
);
202 * tty_buffer_flush - flush full tty buffers
205 * flush all the buffers containing receive data. If the buffer is
206 * being processed by flush_to_ldisc then we defer the processing
209 * Locking: takes buffer lock to ensure single-threaded flip buffer
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
);
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
;
246 left
= b
->size
- b
->used
;
249 /* This is the slow path - looking for new buffers to use */
250 if ((n
= tty_buffer_alloc(port
, size
)) != NULL
) {
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
264 EXPORT_SYMBOL_GPL(tty_buffer_request_room
);
267 * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer
270 * @flag: flag value for each character
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
)
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))
287 memcpy(char_buf_ptr(tb
, tb
->used
), chars
, space
);
288 memset(flag_buf_ptr(tb
, tb
->used
), flag
, 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
));
297 EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag
);
300 * tty_insert_flip_string_flags - Add characters to the tty buffer
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
311 int tty_insert_flip_string_flags(struct tty_port
*port
,
312 const unsigned char *chars
, const char *flags
, size_t size
)
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))
321 memcpy(char_buf_ptr(tb
, tb
->used
), chars
, space
);
322 memcpy(flag_buf_ptr(tb
, tb
->used
), 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
));
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
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
,
368 int space
= tty_buffer_request_room(port
, size
);
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
);
377 EXPORT_SYMBOL_GPL(tty_prepare_flip_string
);
380 * tty_prepare_flip_string_flags - make room for characters
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
);
398 struct tty_buffer
*tb
= port
->buf
.tail
;
399 *chars
= char_buf_ptr(tb
, tb
->used
);
400 *flags
= flag_buf_ptr(tb
, tb
->used
);
405 EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags
);
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
);
418 count
= min_t(int, count
, tty
->receive_room
);
420 disc
->ops
->receive_buf(tty
, p
, f
, count
);
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
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
;
450 disc
= tty_ldisc_ref(tty
);
454 mutex_lock(&buf
->lock
);
457 struct tty_buffer
*head
= buf
->head
;
458 struct tty_buffer
*next
;
461 /* Ldisc or user is trying to gain exclusive access */
462 if (atomic_read(&buf
->priority
))
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
471 count
= head
->commit
- head
->read
;
476 tty_buffer_free(port
, head
);
480 count
= receive_buf(tty
, head
, count
);
485 mutex_unlock(&buf
->lock
);
487 tty_ldisc_deref(disc
);
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
);