tty_buffer.c 18.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
A
Alan Cox 已提交
2 3 4 5 6 7
/*
 * Tty buffer allocation management
 */

#include <linux/types.h>
#include <linux/errno.h>
8
#include <linux/minmax.h>
A
Alan Cox 已提交
9 10 11 12 13 14 15 16 17 18 19
#include <linux/tty.h>
#include <linux/tty_driver.h>
#include <linux/tty_flip.h>
#include <linux/timer.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <linux/sched.h>
#include <linux/wait.h>
#include <linux/bitops.h>
#include <linux/delay.h>
#include <linux/module.h>
20
#include <linux/ratelimit.h>
21
#include "tty.h"
P
Peter Hurley 已提交
22 23 24 25

#define MIN_TTYB_SIZE	256
#define TTYB_ALIGN_MASK	255

26 27 28 29
/*
 * Byte threshold to limit memory consumption for flip buffers.
 * The actual memory limit is > 2x this amount.
 */
30
#define TTYB_DEFAULT_MEM_LIMIT	(640 * 1024UL)
31

32 33 34 35
/*
 * We default to dicing tty buffer allocations to this many characters
 * in order to avoid multiple page allocations. We know the size of
 * tty_buffer itself but it must also be taken into account that the
36 37
 * buffer is 256 byte aligned. See tty_buffer_find for the allocation
 * logic this must match.
38 39 40 41
 */

#define TTY_BUFFER_PAGE	(((PAGE_SIZE - sizeof(struct tty_buffer)) / 2) & ~0xFF)

42
/**
43 44
 * tty_buffer_lock_exclusive	-	gain exclusive access to buffer
 * @port: tty port owning the flip buffer
45
 *
46 47 48
 * Guarantees safe use of the &tty_ldisc_ops.receive_buf() method by excluding
 * the buffer work and any pending flush from using the flip buffer. Data can
 * continue to be added concurrently to the flip buffer from the driver side.
49
 *
50
 * See also tty_buffer_unlock_exclusive().
51 52 53 54 55 56 57 58
 */
void tty_buffer_lock_exclusive(struct tty_port *port)
{
	struct tty_bufhead *buf = &port->buf;

	atomic_inc(&buf->priority);
	mutex_lock(&buf->lock);
}
59
EXPORT_SYMBOL_GPL(tty_buffer_lock_exclusive);
60

61 62 63 64 65 66 67 68
/**
 * tty_buffer_unlock_exclusive	-	release exclusive access
 * @port: tty port owning the flip buffer
 *
 * The buffer work is restarted if there is data in the flip buffer.
 *
 * See also tty_buffer_lock_exclusive().
 */
69 70 71 72 73 74 75 76 77 78 79 80
void tty_buffer_unlock_exclusive(struct tty_port *port)
{
	struct tty_bufhead *buf = &port->buf;
	int restart;

	restart = buf->head->commit != buf->head->read;

	atomic_dec(&buf->priority);
	mutex_unlock(&buf->lock);
	if (restart)
		queue_work(system_unbound_wq, &buf->work);
}
81
EXPORT_SYMBOL_GPL(tty_buffer_unlock_exclusive);
82

83
/**
84 85
 * tty_buffer_space_avail	-	return unused buffer space
 * @port: tty port owning the flip buffer
86
 *
87 88
 * Returns: the # of bytes which can be written by the driver without reaching
 * the buffer limit.
89
 *
90 91 92
 * Note: this does not guarantee that memory is available to write the returned
 * # of bytes (use tty_prepare_flip_string() to pre-allocate if memory
 * guarantee is required).
93
 */
94
unsigned int tty_buffer_space_avail(struct tty_port *port)
95
{
96
	int space = port->buf.mem_limit - atomic_read(&port->buf.mem_used);
97

98 99
	return max(space, 0);
}
100
EXPORT_SYMBOL_GPL(tty_buffer_space_avail);
101

102 103 104 105 106 107
static void tty_buffer_reset(struct tty_buffer *p, size_t size)
{
	p->used = 0;
	p->size = size;
	p->next = NULL;
	p->commit = 0;
108
	p->lookahead = 0;
109
	p->read = 0;
110
	p->flags = 0;
111 112
}

A
Alan Cox 已提交
113
/**
114 115
 * tty_buffer_free_all		-	free buffers used by a tty
 * @port: tty port to free from
A
Alan Cox 已提交
116
 *
117 118
 * Remove all the buffers pending on a tty whether queued with data or in the
 * free ring. Must be called when the tty is no longer in use.
A
Alan Cox 已提交
119
 */
J
Jiri Slaby 已提交
120
void tty_buffer_free_all(struct tty_port *port)
A
Alan Cox 已提交
121
{
J
Jiri Slaby 已提交
122
	struct tty_bufhead *buf = &port->buf;
123 124
	struct tty_buffer *p, *next;
	struct llist_node *llist;
J
Jiri Slaby 已提交
125 126
	unsigned int freed = 0;
	int still_used;
127

128 129
	while ((p = buf->head) != NULL) {
		buf->head = p->next;
J
Jiri Slaby 已提交
130
		freed += p->size;
131 132
		if (p->size > 0)
			kfree(p);
A
Alan Cox 已提交
133
	}
134 135
	llist = llist_del_all(&buf->free);
	llist_for_each_entry_safe(p, next, llist, free)
136
		kfree(p);
137

138 139 140
	tty_buffer_reset(&buf->sentinel, 0);
	buf->head = &buf->sentinel;
	buf->tail = &buf->sentinel;
141

J
Jiri Slaby 已提交
142 143 144
	still_used = atomic_xchg(&buf->mem_used, 0);
	WARN(still_used != freed, "we still have not freed %d bytes!",
			still_used - freed);
A
Alan Cox 已提交
145 146 147
}

/**
148 149 150 151 152 153 154 155 156 157
 * tty_buffer_alloc	-	allocate a tty buffer
 * @port: tty port
 * @size: desired size (characters)
 *
 * Allocate a new tty buffer to hold the desired number of characters. We
 * round our buffers off in 256 character chunks to get better allocation
 * behaviour.
 *
 * Returns: %NULL if out of memory or the allocation would exceed the per
 * device queue.
A
Alan Cox 已提交
158
 */
J
Jiri Slaby 已提交
159
static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size)
A
Alan Cox 已提交
160
{
161
	struct llist_node *free;
A
Alan Cox 已提交
162 163
	struct tty_buffer *p;

164 165 166 167
	/* Round the buffer size out */
	size = __ALIGN_MASK(size, TTYB_ALIGN_MASK);

	if (size <= MIN_TTYB_SIZE) {
168 169 170
		free = llist_del_first(&port->buf.free);
		if (free) {
			p = llist_entry(free, struct tty_buffer, free);
171 172 173 174 175
			goto found;
		}
	}

	/* Should possibly check if this fails for the largest buffer we
176 177
	 * have queued and recycle that ?
	 */
178
	if (atomic_read(&port->buf.mem_used) > port->buf.mem_limit)
A
Alan Cox 已提交
179
		return NULL;
180 181
	p = kmalloc(sizeof(struct tty_buffer) + 2 * size,
		    GFP_ATOMIC | __GFP_NOWARN);
A
Alan Cox 已提交
182 183
	if (p == NULL)
		return NULL;
184

185
found:
186
	tty_buffer_reset(p, size);
187
	atomic_add(size, &port->buf.mem_used);
A
Alan Cox 已提交
188 189 190 191
	return p;
}

/**
192 193 194
 * tty_buffer_free		-	free a tty buffer
 * @port: tty port owning the buffer
 * @b: the buffer to free
A
Alan Cox 已提交
195
 *
196 197
 * Free a tty buffer, or add it to the free list according to our internal
 * strategy.
A
Alan Cox 已提交
198
 */
J
Jiri Slaby 已提交
199
static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b)
A
Alan Cox 已提交
200
{
J
Jiri Slaby 已提交
201
	struct tty_bufhead *buf = &port->buf;
202

A
Alan Cox 已提交
203
	/* Dumb strategy for now - should keep some stats */
204
	WARN_ON(atomic_sub_return(b->size, &buf->mem_used) < 0);
A
Alan Cox 已提交
205

P
Peter Hurley 已提交
206
	if (b->size > MIN_TTYB_SIZE)
A
Alan Cox 已提交
207
		kfree(b);
208
	else if (b->size > 0)
209
		llist_add(&b->free, &buf->free);
A
Alan Cox 已提交
210 211 212
}

/**
213 214 215
 * tty_buffer_flush		-	flush full tty buffers
 * @tty: tty to flush
 * @ld: optional ldisc ptr (must be referenced)
A
Alan Cox 已提交
216
 *
217 218
 * Flush all the buffers containing receive data. If @ld != %NULL, flush the
 * ldisc input buffer.
A
Alan Cox 已提交
219
 *
220
 * Locking: takes buffer lock to ensure single-threaded flip buffer 'consumer'.
A
Alan Cox 已提交
221
 */
222
void tty_buffer_flush(struct tty_struct *tty, struct tty_ldisc *ld)
A
Alan Cox 已提交
223
{
224
	struct tty_port *port = tty->port;
J
Jiri Slaby 已提交
225
	struct tty_bufhead *buf = &port->buf;
226
	struct tty_buffer *next;
A
Alan Cox 已提交
227

228
	atomic_inc(&buf->priority);
229

230
	mutex_lock(&buf->lock);
231 232 233 234
	/* paired w/ release in __tty_buffer_request_room; ensures there are
	 * no pending memory accesses to the freed buffer
	 */
	while ((next = smp_load_acquire(&buf->head->next)) != NULL) {
235 236 237 238
		tty_buffer_free(port, buf->head);
		buf->head = next;
	}
	buf->head->read = buf->head->commit;
239
	buf->head->lookahead = buf->head->read;
240 241 242 243

	if (ld && ld->ops->flush_buffer)
		ld->ops->flush_buffer(tty);

244 245
	atomic_dec(&buf->priority);
	mutex_unlock(&buf->lock);
A
Alan Cox 已提交
246 247 248
}

/**
249 250 251 252 253 254
 * __tty_buffer_request_room	-	grow tty buffer if needed
 * @port: tty port
 * @size: size desired
 * @flags: buffer flags if new buffer allocated (default = 0)
 *
 * Make at least @size bytes of linear space available for the tty buffer.
A
Alan Cox 已提交
255
 *
256 257 258
 * Will change over to a new buffer if the current buffer is encoded as
 * %TTY_NORMAL (so has no flags buffer) and the new buffer requires a flags
 * buffer.
259
 *
260
 * Returns: the size we managed to find.
A
Alan Cox 已提交
261
 */
262 263
static int __tty_buffer_request_room(struct tty_port *port, size_t size,
				     int flags)
A
Alan Cox 已提交
264
{
J
Jiri Slaby 已提交
265
	struct tty_bufhead *buf = &port->buf;
A
Alan Cox 已提交
266
	struct tty_buffer *b, *n;
267
	int left, change;
268

269
	b = buf->tail;
270 271 272 273
	if (b->flags & TTYB_NORMAL)
		left = 2 * b->size - b->used;
	else
		left = b->size - b->used;
A
Alan Cox 已提交
274

275 276
	change = (b->flags & TTYB_NORMAL) && (~flags & TTYB_NORMAL);
	if (change || left < size) {
A
Alan Cox 已提交
277
		/* This is the slow path - looking for new buffers to use */
278 279
		n = tty_buffer_alloc(port, size);
		if (n != NULL) {
280
			n->flags = flags;
281
			buf->tail = n;
282 283 284
			/*
			 * Paired w/ acquire in flush_to_ldisc() and lookahead_bufs()
			 * ensures they see all buffer data.
285 286
			 */
			smp_store_release(&b->commit, b->used);
287 288 289 290
			/*
			 * Paired w/ acquire in flush_to_ldisc() and lookahead_bufs()
			 * ensures the latest commit value can be read before the head
			 * is advanced to the next buffer.
P
Peter Hurley 已提交
291
			 */
292
			smp_store_release(&b->next, n);
293 294 295
		} else if (change)
			size = 0;
		else
A
Alan Cox 已提交
296 297 298 299
			size = left;
	}
	return size;
}
300 301 302 303 304

int tty_buffer_request_room(struct tty_port *port, size_t size)
{
	return __tty_buffer_request_room(port, size, 0);
}
A
Alan Cox 已提交
305 306 307
EXPORT_SYMBOL_GPL(tty_buffer_request_room);

/**
308 309 310 311 312 313 314 315 316 317
 * tty_insert_flip_string_fixed_flag - add characters to the tty buffer
 * @port: tty port
 * @chars: characters
 * @flag: flag value for each character
 * @size: size
 *
 * Queue a series of bytes to the tty buffering. All the characters passed are
 * marked with the supplied flag.
 *
 * Returns: the number added.
A
Alan Cox 已提交
318
 */
319
int tty_insert_flip_string_fixed_flag(struct tty_port *port,
320
		const unsigned char *chars, char flag, size_t size)
A
Alan Cox 已提交
321 322
{
	int copied = 0;
323

A
Alan Cox 已提交
324
	do {
325
		int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
326 327
		int flags = (flag == TTY_NORMAL) ? TTYB_NORMAL : 0;
		int space = __tty_buffer_request_room(port, goal, flags);
I
Ilya Zykov 已提交
328
		struct tty_buffer *tb = port->buf.tail;
329

330
		if (unlikely(space == 0))
A
Alan Cox 已提交
331
			break;
P
Peter Hurley 已提交
332
		memcpy(char_buf_ptr(tb, tb->used), chars, space);
333 334
		if (~tb->flags & TTYB_NORMAL)
			memset(flag_buf_ptr(tb, tb->used), flag, space);
A
Alan Cox 已提交
335 336 337 338
		tb->used += space;
		copied += space;
		chars += space;
		/* There is a small chance that we need to split the data over
339 340
		 * several buffers. If this is the case we must loop.
		 */
A
Alan Cox 已提交
341 342 343
	} while (unlikely(size > copied));
	return copied;
}
344
EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag);
A
Alan Cox 已提交
345 346

/**
347 348 349 350 351 352 353 354 355 356
 * tty_insert_flip_string_flags	-	add characters to the tty buffer
 * @port: tty port
 * @chars: characters
 * @flags: flag bytes
 * @size: size
 *
 * Queue a series of bytes to the tty buffering. For each character the flags
 * array indicates the status of the character.
 *
 * Returns: the number added.
A
Alan Cox 已提交
357
 */
358
int tty_insert_flip_string_flags(struct tty_port *port,
A
Alan Cox 已提交
359 360 361
		const unsigned char *chars, const char *flags, size_t size)
{
	int copied = 0;
362

A
Alan Cox 已提交
363
	do {
364
		int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE);
I
Ilya Zykov 已提交
365 366
		int space = tty_buffer_request_room(port, goal);
		struct tty_buffer *tb = port->buf.tail;
367

368
		if (unlikely(space == 0))
A
Alan Cox 已提交
369
			break;
P
Peter Hurley 已提交
370 371
		memcpy(char_buf_ptr(tb, tb->used), chars, space);
		memcpy(flag_buf_ptr(tb, tb->used), flags, space);
A
Alan Cox 已提交
372 373 374 375 376
		tb->used += space;
		copied += space;
		chars += space;
		flags += space;
		/* There is a small chance that we need to split the data over
377 378
		 * several buffers. If this is the case we must loop.
		 */
A
Alan Cox 已提交
379 380 381 382 383
	} while (unlikely(size > copied));
	return copied;
}
EXPORT_SYMBOL(tty_insert_flip_string_flags);

384
/**
385 386 387 388
 * __tty_insert_flip_char   -	add one character to the tty buffer
 * @port: tty port
 * @ch: character
 * @flag: flag byte
389
 *
390 391
 * Queue a single byte @ch to the tty buffering, with an optional flag. This is
 * the slow path of tty_insert_flip_char().
392 393 394
 */
int __tty_insert_flip_char(struct tty_port *port, unsigned char ch, char flag)
{
395
	struct tty_buffer *tb;
396 397
	int flags = (flag == TTY_NORMAL) ? TTYB_NORMAL : 0;

398
	if (!__tty_buffer_request_room(port, 1, flags))
399 400
		return 0;

401
	tb = port->buf.tail;
402 403
	if (~tb->flags & TTYB_NORMAL)
		*flag_buf_ptr(tb, tb->used) = flag;
404 405 406 407 408 409
	*char_buf_ptr(tb, tb->used++) = ch;

	return 1;
}
EXPORT_SYMBOL(__tty_insert_flip_char);

A
Alan Cox 已提交
410
/**
411 412 413 414 415 416 417 418 419 420 421 422
 * tty_prepare_flip_string	-	make room for characters
 * @port: tty port
 * @chars: return pointer for character write area
 * @size: desired size
 *
 * Prepare a block of space in the buffer for data.
 *
 * This is used for drivers that need their own block copy routines into the
 * buffer. There is no guarantee the buffer is a DMA target!
 *
 * Returns: the length available and buffer pointer (@chars) to the space which
 * is now allocated and accounted for as ready for normal characters.
A
Alan Cox 已提交
423
 */
424
int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars,
J
Jiri Slaby 已提交
425
		size_t size)
A
Alan Cox 已提交
426
{
427
	int space = __tty_buffer_request_room(port, size, TTYB_NORMAL);
428

A
Alan Cox 已提交
429
	if (likely(space)) {
I
Ilya Zykov 已提交
430
		struct tty_buffer *tb = port->buf.tail;
431

P
Peter Hurley 已提交
432
		*chars = char_buf_ptr(tb, tb->used);
433 434
		if (~tb->flags & TTYB_NORMAL)
			memset(flag_buf_ptr(tb, tb->used), TTY_NORMAL, space);
A
Alan Cox 已提交
435 436 437 438 439 440
		tb->used += space;
	}
	return space;
}
EXPORT_SYMBOL_GPL(tty_prepare_flip_string);

441
/**
442 443 444 445 446
 * tty_ldisc_receive_buf	-	forward data to line discipline
 * @ld: line discipline to process input
 * @p: char buffer
 * @f: %TTY_NORMAL, %TTY_BREAK, etc. flags buffer
 * @count: number of bytes to process
447
 *
448 449
 * Callers other than flush_to_ldisc() need to exclude the kworker from
 * concurrent use of the line discipline, see paste_selection().
450
 *
451
 * Returns: the number of bytes processed.
452
 */
453
int tty_ldisc_receive_buf(struct tty_ldisc *ld, const unsigned char *p,
454
			  const char *f, int count)
455 456 457 458 459 460 461 462 463 464 465
{
	if (ld->ops->receive_buf2)
		count = ld->ops->receive_buf2(ld->tty, p, f, count);
	else {
		count = min_t(int, count, ld->tty->receive_room);
		if (count && ld->ops->receive_buf)
			ld->ops->receive_buf(ld->tty, p, f, count);
	}
	return count;
}
EXPORT_SYMBOL_GPL(tty_ldisc_receive_buf);
A
Alan Cox 已提交
466

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
static void lookahead_bufs(struct tty_port *port, struct tty_buffer *head)
{
	head->lookahead = max(head->lookahead, head->read);

	while (head) {
		struct tty_buffer *next;
		unsigned int count;

		/*
		 * Paired w/ release in __tty_buffer_request_room();
		 * ensures commit value read is not stale if the head
		 * is advancing to the next buffer.
		 */
		next = smp_load_acquire(&head->next);
		/*
		 * Paired w/ release in __tty_buffer_request_room() or in
		 * tty_buffer_flush(); ensures we see the committed buffer data.
		 */
		count = smp_load_acquire(&head->commit) - head->lookahead;
		if (!count) {
			head = next;
			continue;
		}

491 492 493 494 495 496 497 498 499
		if (port->client_ops->lookahead_buf) {
			unsigned char *p, *f = NULL;

			p = char_buf_ptr(head, head->lookahead);
			if (~head->flags & TTYB_NORMAL)
				f = flag_buf_ptr(head, head->lookahead);

			port->client_ops->lookahead_buf(port, p, f, count);
		}
500 501 502 503 504

		head->lookahead += count;
	}
}

505
static int
506
receive_buf(struct tty_port *port, struct tty_buffer *head, int count)
507
{
P
Peter Hurley 已提交
508
	unsigned char *p = char_buf_ptr(head, head->read);
509
	const char *f = NULL;
L
Linus Torvalds 已提交
510
	int n;
511 512 513

	if (~head->flags & TTYB_NORMAL)
		f = flag_buf_ptr(head, head->read);
514

L
Linus Torvalds 已提交
515 516 517 518
	n = port->client_ops->receive_buf(port, p, f, count);
	if (n > 0)
		memset(p, 0, n);
	return n;
519
}
A
Alan Cox 已提交
520 521

/**
522 523
 * flush_to_ldisc		-	flush data from buffer to ldisc
 * @work: tty structure passed from work queue.
A
Alan Cox 已提交
524
 *
525 526
 * This routine is called out of the software interrupt to flush data from the
 * buffer chain to the line discipline.
A
Alan Cox 已提交
527
 *
528
 * The receive_buf() method is single threaded for each tty instance.
529
 *
530
 * Locking: takes buffer lock to ensure single-threaded flip buffer 'consumer'.
A
Alan Cox 已提交
531 532 533
 */
static void flush_to_ldisc(struct work_struct *work)
{
J
Jiri Slaby 已提交
534 535
	struct tty_port *port = container_of(work, struct tty_port, buf.work);
	struct tty_bufhead *buf = &port->buf;
A
Alan Cox 已提交
536

537
	mutex_lock(&buf->lock);
538

539 540
	while (1) {
		struct tty_buffer *head = buf->head;
P
Peter Hurley 已提交
541
		struct tty_buffer *next;
542
		int count, rcvd;
543

544 545
		/* Ldisc or user is trying to gain exclusive access */
		if (atomic_read(&buf->priority))
546 547
			break;

548
		/* paired w/ release in __tty_buffer_request_room();
P
Peter Hurley 已提交
549 550 551
		 * ensures commit value read is not stale if the head
		 * is advancing to the next buffer
		 */
552
		next = smp_load_acquire(&head->next);
553 554 555 556
		/* paired w/ release in __tty_buffer_request_room() or in
		 * tty_buffer_flush(); ensures we see the committed buffer data
		 */
		count = smp_load_acquire(&head->commit) - head->read;
557
		if (!count) {
558
			if (next == NULL)
559
				break;
P
Peter Hurley 已提交
560
			buf->head = next;
561 562
			tty_buffer_free(port, head);
			continue;
A
Alan Cox 已提交
563
		}
564

565 566 567 568 569
		rcvd = receive_buf(port, head, count);
		head->read += rcvd;
		if (rcvd < count)
			lookahead_bufs(port, head);
		if (!rcvd)
570
			break;
571 572 573

		if (need_resched())
			cond_resched();
A
Alan Cox 已提交
574
	}
575

576
	mutex_unlock(&buf->lock);
A
Alan Cox 已提交
577 578 579

}

580 581 582 583 584 585 586 587 588
static inline void tty_flip_buffer_commit(struct tty_buffer *tail)
{
	/*
	 * Paired w/ acquire in flush_to_ldisc(); ensures flush_to_ldisc() sees
	 * buffer data.
	 */
	smp_store_release(&tail->commit, tail->used);
}

A
Alan Cox 已提交
589
/**
590 591
 * tty_flip_buffer_push		-	push terminal buffers
 * @port: tty port to push
A
Alan Cox 已提交
592
 *
593 594
 * Queue a push of the terminal flip buffers to the line discipline. Can be
 * called from IRQ/atomic context.
A
Alan Cox 已提交
595
 *
596 597
 * In the event of the queue being busy for flipping the work will be held off
 * and retried later.
A
Alan Cox 已提交
598
 */
J
Jiri Slaby 已提交
599
void tty_flip_buffer_push(struct tty_port *port)
A
Alan Cox 已提交
600
{
J
Jiri Slaby 已提交
601 602
	struct tty_bufhead *buf = &port->buf;

603
	tty_flip_buffer_commit(buf->tail);
J
Jiri Slaby 已提交
604
	queue_work(system_unbound_wq, &buf->work);
A
Alan Cox 已提交
605 606 607
}
EXPORT_SYMBOL(tty_flip_buffer_push);

608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
/**
 * tty_insert_flip_string_and_push_buffer - add characters to the tty buffer and
 *	push
 * @port: tty port
 * @chars: characters
 * @size: size
 *
 * The function combines tty_insert_flip_string() and tty_flip_buffer_push()
 * with the exception of properly holding the @port->lock.
 *
 * To be used only internally (by pty currently).
 *
 * Returns: the number added.
 */
int tty_insert_flip_string_and_push_buffer(struct tty_port *port,
		const unsigned char *chars, size_t size)
{
	struct tty_bufhead *buf = &port->buf;
	unsigned long flags;

	spin_lock_irqsave(&port->lock, flags);
	size = tty_insert_flip_string(port, chars, size);
	if (size)
		tty_flip_buffer_commit(buf->tail);
	spin_unlock_irqrestore(&port->lock, flags);

	queue_work(system_unbound_wq, &buf->work);

	return size;
}

A
Alan Cox 已提交
639
/**
640 641
 * tty_buffer_init		-	prepare a tty buffer structure
 * @port: tty port to initialise
A
Alan Cox 已提交
642
 *
643 644
 * Set up the initial state of the buffer management for a tty device. Must be
 * called before the other tty buffer functions are used.
A
Alan Cox 已提交
645
 */
J
Jiri Slaby 已提交
646
void tty_buffer_init(struct tty_port *port)
A
Alan Cox 已提交
647
{
J
Jiri Slaby 已提交
648
	struct tty_bufhead *buf = &port->buf;
649

650
	mutex_init(&buf->lock);
651 652 653
	tty_buffer_reset(&buf->sentinel, 0);
	buf->head = &buf->sentinel;
	buf->tail = &buf->sentinel;
654
	init_llist_head(&buf->free);
655
	atomic_set(&buf->mem_used, 0);
656
	atomic_set(&buf->priority, 0);
657
	INIT_WORK(&buf->work, flush_to_ldisc);
658
	buf->mem_limit = TTYB_DEFAULT_MEM_LIMIT;
A
Alan Cox 已提交
659
}
660 661

/**
662 663 664 665 666
 * tty_buffer_set_limit		-	change the tty buffer memory limit
 * @port: tty port to change
 * @limit: memory limit to set
 *
 * Change the tty buffer memory limit.
667
 *
668
 * Must be called before the other tty buffer functions are used.
669 670 671 672 673 674 675 676 677
 */
int tty_buffer_set_limit(struct tty_port *port, int limit)
{
	if (limit < MIN_TTYB_SIZE)
		return -EINVAL;
	port->buf.mem_limit = limit;
	return 0;
}
EXPORT_SYMBOL_GPL(tty_buffer_set_limit);
P
Peter Hurley 已提交
678 679 680 681 682 683

/* slave ptys can claim nested buffer lock when handling BRK and INTR */
void tty_buffer_set_lock_subclass(struct tty_port *port)
{
	lockdep_set_subclass(&port->buf.lock, TTY_LOCK_SLAVE);
}
P
Peter Hurley 已提交
684 685 686 687 688 689 690 691 692 693

bool tty_buffer_restart_work(struct tty_port *port)
{
	return queue_work(system_unbound_wq, &port->buf.work);
}

bool tty_buffer_cancel_work(struct tty_port *port)
{
	return cancel_work_sync(&port->buf.work);
}
694 695 696 697 698

void tty_buffer_flush_work(struct tty_port *port)
{
	flush_work(&port->buf.work);
}