Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 1 | /* |
| 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 Spelvin | 593fb1ae4 | 2013-02-12 02:00:43 -0500 | [diff] [blame] | 19 | #include <linux/ratelimit.h> |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 20 | |
Peter Hurley | 1cef50e | 2013-06-15 09:36:02 -0400 | [diff] [blame] | 21 | |
| 22 | #define MIN_TTYB_SIZE 256 |
| 23 | #define TTYB_ALIGN_MASK 255 |
| 24 | |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 25 | /* |
| 26 | * Byte threshold to limit memory consumption for flip buffers. |
| 27 | * The actual memory limit is > 2x this amount. |
| 28 | */ |
| 29 | #define TTYB_MEM_LIMIT 65536 |
| 30 | |
Peter Hurley | 9114fe8 | 2013-06-15 09:36:16 -0400 | [diff] [blame] | 31 | /* |
| 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 |
| 37 | */ |
| 38 | |
| 39 | #define TTY_BUFFER_PAGE (((PAGE_SIZE - sizeof(struct tty_buffer)) / 2) & ~0xFF) |
| 40 | |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 41 | |
| 42 | /** |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 43 | * tty_buffer_lock_exclusive - gain exclusive access to buffer |
| 44 | * tty_buffer_unlock_exclusive - release exclusive access |
| 45 | * |
| 46 | * @port - tty_port owning the flip buffer |
| 47 | * |
| 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. |
| 52 | * |
| 53 | * On release, the buffer work is restarted if there is data in the |
| 54 | * flip buffer |
| 55 | */ |
| 56 | |
| 57 | void tty_buffer_lock_exclusive(struct tty_port *port) |
| 58 | { |
| 59 | struct tty_bufhead *buf = &port->buf; |
| 60 | |
| 61 | atomic_inc(&buf->priority); |
| 62 | mutex_lock(&buf->lock); |
| 63 | } |
| 64 | |
| 65 | void tty_buffer_unlock_exclusive(struct tty_port *port) |
| 66 | { |
| 67 | struct tty_bufhead *buf = &port->buf; |
| 68 | int restart; |
| 69 | |
| 70 | restart = buf->head->commit != buf->head->read; |
| 71 | |
| 72 | atomic_dec(&buf->priority); |
| 73 | mutex_unlock(&buf->lock); |
| 74 | if (restart) |
| 75 | queue_work(system_unbound_wq, &buf->work); |
| 76 | } |
| 77 | |
| 78 | /** |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 79 | * tty_buffer_space_avail - return unused buffer space |
| 80 | * @port - tty_port owning the flip buffer |
| 81 | * |
| 82 | * Returns the # of bytes which can be written by the driver without |
| 83 | * reaching the buffer limit. |
| 84 | * |
| 85 | * Note: this does not guarantee that memory is available to write |
| 86 | * the returned # of bytes (use tty_prepare_flip_string_xxx() to |
| 87 | * pre-allocate if memory guarantee is required). |
| 88 | */ |
| 89 | |
| 90 | int tty_buffer_space_avail(struct tty_port *port) |
| 91 | { |
| 92 | int space = TTYB_MEM_LIMIT - atomic_read(&port->buf.memory_used); |
| 93 | return max(space, 0); |
| 94 | } |
| 95 | |
Peter Hurley | 9dd5139 | 2013-06-15 09:36:03 -0400 | [diff] [blame] | 96 | static void tty_buffer_reset(struct tty_buffer *p, size_t size) |
| 97 | { |
| 98 | p->used = 0; |
| 99 | p->size = size; |
| 100 | p->next = NULL; |
| 101 | p->commit = 0; |
| 102 | p->read = 0; |
| 103 | } |
| 104 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 105 | /** |
| 106 | * tty_buffer_free_all - free buffers used by a tty |
| 107 | * @tty: tty to free from |
| 108 | * |
| 109 | * Remove all the buffers pending on a tty whether queued with data |
| 110 | * or in the free ring. Must be called when the tty is no longer in use |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 111 | */ |
| 112 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 113 | void tty_buffer_free_all(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 114 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 115 | struct tty_bufhead *buf = &port->buf; |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 116 | struct tty_buffer *p, *next; |
| 117 | struct llist_node *llist; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 118 | |
Peter Hurley | 2cf7b67 | 2013-06-15 09:36:05 -0400 | [diff] [blame] | 119 | while ((p = buf->head) != NULL) { |
| 120 | buf->head = p->next; |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 121 | if (p->size > 0) |
| 122 | kfree(p); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 123 | } |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 124 | llist = llist_del_all(&buf->free); |
| 125 | llist_for_each_entry_safe(p, next, llist, free) |
Peter Hurley | 2cf7b67 | 2013-06-15 09:36:05 -0400 | [diff] [blame] | 126 | kfree(p); |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 127 | |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 128 | tty_buffer_reset(&buf->sentinel, 0); |
| 129 | buf->head = &buf->sentinel; |
| 130 | buf->tail = &buf->sentinel; |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 131 | |
| 132 | atomic_set(&buf->memory_used, 0); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | /** |
| 136 | * tty_buffer_alloc - allocate a tty buffer |
| 137 | * @tty: tty device |
| 138 | * @size: desired size (characters) |
| 139 | * |
| 140 | * Allocate a new tty buffer to hold the desired number of characters. |
Peter Hurley | 11b9faa | 2013-06-15 09:36:04 -0400 | [diff] [blame] | 141 | * We round our buffers off in 256 character chunks to get better |
| 142 | * allocation behaviour. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 143 | * Return NULL if out of memory or the allocation would exceed the |
| 144 | * per device queue |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 145 | */ |
| 146 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 147 | static struct tty_buffer *tty_buffer_alloc(struct tty_port *port, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 148 | { |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 149 | struct llist_node *free; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 150 | struct tty_buffer *p; |
| 151 | |
Peter Hurley | 11b9faa | 2013-06-15 09:36:04 -0400 | [diff] [blame] | 152 | /* Round the buffer size out */ |
| 153 | size = __ALIGN_MASK(size, TTYB_ALIGN_MASK); |
| 154 | |
| 155 | if (size <= MIN_TTYB_SIZE) { |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 156 | free = llist_del_first(&port->buf.free); |
| 157 | if (free) { |
| 158 | p = llist_entry(free, struct tty_buffer, free); |
Peter Hurley | 11b9faa | 2013-06-15 09:36:04 -0400 | [diff] [blame] | 159 | goto found; |
| 160 | } |
| 161 | } |
| 162 | |
| 163 | /* Should possibly check if this fails for the largest buffer we |
| 164 | have queued and recycle that ? */ |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 165 | if (atomic_read(&port->buf.memory_used) > TTYB_MEM_LIMIT) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 166 | return NULL; |
| 167 | p = kmalloc(sizeof(struct tty_buffer) + 2 * size, GFP_ATOMIC); |
| 168 | if (p == NULL) |
| 169 | return NULL; |
Peter Hurley | 9dd5139 | 2013-06-15 09:36:03 -0400 | [diff] [blame] | 170 | |
Peter Hurley | 11b9faa | 2013-06-15 09:36:04 -0400 | [diff] [blame] | 171 | found: |
Peter Hurley | 9dd5139 | 2013-06-15 09:36:03 -0400 | [diff] [blame] | 172 | tty_buffer_reset(p, size); |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 173 | atomic_add(size, &port->buf.memory_used); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 174 | return p; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * tty_buffer_free - free a tty buffer |
| 179 | * @tty: tty owning the buffer |
| 180 | * @b: the buffer to free |
| 181 | * |
| 182 | * Free a tty buffer, or add it to the free list according to our |
| 183 | * internal strategy |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 184 | */ |
| 185 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 186 | static void tty_buffer_free(struct tty_port *port, struct tty_buffer *b) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 187 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 188 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 189 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 190 | /* Dumb strategy for now - should keep some stats */ |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 191 | WARN_ON(atomic_sub_return(b->size, &buf->memory_used) < 0); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 192 | |
Peter Hurley | 1cef50e | 2013-06-15 09:36:02 -0400 | [diff] [blame] | 193 | if (b->size > MIN_TTYB_SIZE) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 194 | kfree(b); |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 195 | else if (b->size > 0) |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 196 | llist_add(&b->free, &buf->free); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | /** |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 200 | * tty_buffer_flush - flush full tty buffers |
| 201 | * @tty: tty to flush |
| 202 | * |
| 203 | * flush all the buffers containing receive data. If the buffer is |
| 204 | * being processed by flush_to_ldisc then we defer the processing |
| 205 | * to that function |
| 206 | * |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 207 | * Locking: takes buffer lock to ensure single-threaded flip buffer |
Peter Hurley | e9975fd | 2013-06-15 09:36:10 -0400 | [diff] [blame] | 208 | * 'consumer' |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 209 | */ |
| 210 | |
| 211 | void tty_buffer_flush(struct tty_struct *tty) |
| 212 | { |
Jiri Slaby | 2fc2066 | 2012-10-18 22:26:44 +0200 | [diff] [blame] | 213 | struct tty_port *port = tty->port; |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 214 | struct tty_bufhead *buf = &port->buf; |
Peter Hurley | 47aa658 | 2013-06-15 09:36:14 -0400 | [diff] [blame] | 215 | struct tty_buffer *next; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 216 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 217 | atomic_inc(&buf->priority); |
Peter Hurley | e9975fd | 2013-06-15 09:36:10 -0400 | [diff] [blame] | 218 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 219 | mutex_lock(&buf->lock); |
Peter Hurley | 47aa658 | 2013-06-15 09:36:14 -0400 | [diff] [blame] | 220 | while ((next = buf->head->next) != NULL) { |
| 221 | tty_buffer_free(port, buf->head); |
| 222 | buf->head = next; |
| 223 | } |
| 224 | buf->head->read = buf->head->commit; |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 225 | atomic_dec(&buf->priority); |
| 226 | mutex_unlock(&buf->lock); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | /** |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 230 | * tty_buffer_request_room - grow tty buffer if needed |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 231 | * @tty: tty structure |
| 232 | * @size: size desired |
| 233 | * |
| 234 | * Make at least size bytes of linear space available for the tty |
| 235 | * buffer. If we fail return the size we managed to find. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 236 | */ |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 237 | int tty_buffer_request_room(struct tty_port *port, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 238 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 239 | struct tty_bufhead *buf = &port->buf; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 240 | struct tty_buffer *b, *n; |
| 241 | int left; |
Peter Hurley | e8437d7 | 2013-06-15 09:36:09 -0400 | [diff] [blame] | 242 | |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 243 | b = buf->tail; |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 244 | left = b->size - b->used; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 245 | |
| 246 | if (left < size) { |
| 247 | /* This is the slow path - looking for new buffers to use */ |
Peter Hurley | 11b9faa | 2013-06-15 09:36:04 -0400 | [diff] [blame] | 248 | if ((n = tty_buffer_alloc(port, size)) != NULL) { |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 249 | buf->tail = n; |
Peter Hurley | e8437d7 | 2013-06-15 09:36:09 -0400 | [diff] [blame] | 250 | b->commit = b->used; |
| 251 | smp_mb(); |
| 252 | b->next = n; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 253 | } else |
| 254 | size = left; |
| 255 | } |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 256 | return size; |
| 257 | } |
| 258 | EXPORT_SYMBOL_GPL(tty_buffer_request_room); |
| 259 | |
| 260 | /** |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 261 | * tty_insert_flip_string_fixed_flag - Add characters to the tty buffer |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 262 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 263 | * @chars: characters |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 264 | * @flag: flag value for each character |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 265 | * @size: size |
| 266 | * |
| 267 | * Queue a series of bytes to the tty buffering. All the characters |
Johan Hovold | ccc5ca8 | 2010-05-07 19:58:32 +0200 | [diff] [blame] | 268 | * passed are marked with the supplied flag. Returns the number added. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 269 | */ |
| 270 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 271 | int tty_insert_flip_string_fixed_flag(struct tty_port *port, |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 272 | const unsigned char *chars, char flag, size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 273 | { |
| 274 | int copied = 0; |
| 275 | do { |
Fang Wenqi | d4bee0a | 2010-03-09 18:54:28 +0800 | [diff] [blame] | 276 | int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE); |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 277 | int space = tty_buffer_request_room(port, goal); |
| 278 | struct tty_buffer *tb = port->buf.tail; |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 279 | if (unlikely(space == 0)) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 280 | break; |
Peter Hurley | 1fc359f | 2013-06-15 09:36:01 -0400 | [diff] [blame] | 281 | memcpy(char_buf_ptr(tb, tb->used), chars, space); |
| 282 | memset(flag_buf_ptr(tb, tb->used), flag, space); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 283 | tb->used += space; |
| 284 | copied += space; |
| 285 | chars += space; |
| 286 | /* There is a small chance that we need to split the data over |
| 287 | several buffers. If this is the case we must loop */ |
| 288 | } while (unlikely(size > copied)); |
| 289 | return copied; |
| 290 | } |
Alan Cox | 2832fc1 | 2010-02-18 16:43:54 +0000 | [diff] [blame] | 291 | EXPORT_SYMBOL(tty_insert_flip_string_fixed_flag); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 292 | |
| 293 | /** |
| 294 | * tty_insert_flip_string_flags - Add characters to the tty buffer |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 295 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 296 | * @chars: characters |
| 297 | * @flags: flag bytes |
| 298 | * @size: size |
| 299 | * |
| 300 | * Queue a series of bytes to the tty buffering. For each character |
| 301 | * the flags array indicates the status of the character. Returns the |
| 302 | * number added. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 303 | */ |
| 304 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 305 | int tty_insert_flip_string_flags(struct tty_port *port, |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 306 | const unsigned char *chars, const char *flags, size_t size) |
| 307 | { |
| 308 | int copied = 0; |
| 309 | do { |
Fang Wenqi | d4bee0a | 2010-03-09 18:54:28 +0800 | [diff] [blame] | 310 | int goal = min_t(size_t, size - copied, TTY_BUFFER_PAGE); |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 311 | int space = tty_buffer_request_room(port, goal); |
| 312 | struct tty_buffer *tb = port->buf.tail; |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 313 | if (unlikely(space == 0)) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 314 | break; |
Peter Hurley | 1fc359f | 2013-06-15 09:36:01 -0400 | [diff] [blame] | 315 | memcpy(char_buf_ptr(tb, tb->used), chars, space); |
| 316 | memcpy(flag_buf_ptr(tb, tb->used), flags, space); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 317 | tb->used += space; |
| 318 | copied += space; |
| 319 | chars += space; |
| 320 | flags += space; |
| 321 | /* There is a small chance that we need to split the data over |
| 322 | several buffers. If this is the case we must loop */ |
| 323 | } while (unlikely(size > copied)); |
| 324 | return copied; |
| 325 | } |
| 326 | EXPORT_SYMBOL(tty_insert_flip_string_flags); |
| 327 | |
| 328 | /** |
| 329 | * tty_schedule_flip - push characters to ldisc |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 330 | * @port: tty port to push from |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 331 | * |
| 332 | * Takes any pending buffers and transfers their ownership to the |
| 333 | * ldisc side of the queue. It then schedules those characters for |
| 334 | * processing by the line discipline. |
Ivo Sieben | cee4ad1 | 2012-09-27 14:02:05 +0200 | [diff] [blame] | 335 | * Note that this function can only be used when the low_latency flag |
| 336 | * is unset. Otherwise the workqueue won't be flushed. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 337 | */ |
| 338 | |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 339 | void tty_schedule_flip(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 340 | { |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 341 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 6732c8b | 2013-01-03 15:53:07 +0100 | [diff] [blame] | 342 | WARN_ON(port->low_latency); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 343 | |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 344 | buf->tail->commit = buf->tail->used; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 345 | schedule_work(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 346 | } |
| 347 | EXPORT_SYMBOL(tty_schedule_flip); |
| 348 | |
| 349 | /** |
| 350 | * tty_prepare_flip_string - make room for characters |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 351 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 352 | * @chars: return pointer for character write area |
| 353 | * @size: desired size |
| 354 | * |
| 355 | * Prepare a block of space in the buffer for data. Returns the length |
| 356 | * available and buffer pointer to the space which is now allocated and |
| 357 | * accounted for as ready for normal characters. This is used for drivers |
| 358 | * that need their own block copy routines into the buffer. There is no |
| 359 | * guarantee the buffer is a DMA target! |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 360 | */ |
| 361 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 362 | int tty_prepare_flip_string(struct tty_port *port, unsigned char **chars, |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 363 | size_t size) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 364 | { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 365 | int space = tty_buffer_request_room(port, size); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 366 | if (likely(space)) { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 367 | struct tty_buffer *tb = port->buf.tail; |
Peter Hurley | 1fc359f | 2013-06-15 09:36:01 -0400 | [diff] [blame] | 368 | *chars = char_buf_ptr(tb, tb->used); |
| 369 | memset(flag_buf_ptr(tb, tb->used), TTY_NORMAL, space); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 370 | tb->used += space; |
| 371 | } |
| 372 | return space; |
| 373 | } |
| 374 | EXPORT_SYMBOL_GPL(tty_prepare_flip_string); |
| 375 | |
| 376 | /** |
| 377 | * tty_prepare_flip_string_flags - make room for characters |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 378 | * @port: tty port |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 379 | * @chars: return pointer for character write area |
| 380 | * @flags: return pointer for status flag write area |
| 381 | * @size: desired size |
| 382 | * |
| 383 | * Prepare a block of space in the buffer for data. Returns the length |
| 384 | * available and buffer pointer to the space which is now allocated and |
| 385 | * accounted for as ready for characters. This is used for drivers |
| 386 | * that need their own block copy routines into the buffer. There is no |
| 387 | * guarantee the buffer is a DMA target! |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 388 | */ |
| 389 | |
Jiri Slaby | 2f69335 | 2013-01-03 15:53:02 +0100 | [diff] [blame] | 390 | int tty_prepare_flip_string_flags(struct tty_port *port, |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 391 | unsigned char **chars, char **flags, size_t size) |
| 392 | { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 393 | int space = tty_buffer_request_room(port, size); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 394 | if (likely(space)) { |
Ilya Zykov | 64325a3 | 2013-01-19 18:16:20 +0400 | [diff] [blame] | 395 | struct tty_buffer *tb = port->buf.tail; |
Peter Hurley | 1fc359f | 2013-06-15 09:36:01 -0400 | [diff] [blame] | 396 | *chars = char_buf_ptr(tb, tb->used); |
| 397 | *flags = flag_buf_ptr(tb, tb->used); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 398 | tb->used += space; |
| 399 | } |
| 400 | return space; |
| 401 | } |
| 402 | EXPORT_SYMBOL_GPL(tty_prepare_flip_string_flags); |
| 403 | |
| 404 | |
Peter Hurley | da261e7 | 2013-06-15 09:14:14 -0400 | [diff] [blame] | 405 | static int |
| 406 | receive_buf(struct tty_struct *tty, struct tty_buffer *head, int count) |
| 407 | { |
| 408 | struct tty_ldisc *disc = tty->ldisc; |
Peter Hurley | 1fc359f | 2013-06-15 09:36:01 -0400 | [diff] [blame] | 409 | unsigned char *p = char_buf_ptr(head, head->read); |
| 410 | char *f = flag_buf_ptr(head, head->read); |
Peter Hurley | da261e7 | 2013-06-15 09:14:14 -0400 | [diff] [blame] | 411 | |
Peter Hurley | 24a89d1 | 2013-06-15 09:14:15 -0400 | [diff] [blame] | 412 | if (disc->ops->receive_buf2) |
| 413 | count = disc->ops->receive_buf2(tty, p, f, count); |
| 414 | else { |
| 415 | count = min_t(int, count, tty->receive_room); |
| 416 | if (count) |
| 417 | disc->ops->receive_buf(tty, p, f, count); |
| 418 | } |
Peter Hurley | da261e7 | 2013-06-15 09:14:14 -0400 | [diff] [blame] | 419 | head->read += count; |
| 420 | return count; |
| 421 | } |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 422 | |
| 423 | /** |
| 424 | * flush_to_ldisc |
| 425 | * @work: tty structure passed from work queue. |
| 426 | * |
| 427 | * This routine is called out of the software interrupt to flush data |
| 428 | * from the buffer chain to the line discipline. |
| 429 | * |
Peter Hurley | e9975fd | 2013-06-15 09:36:10 -0400 | [diff] [blame] | 430 | * The receive_buf method is single threaded for each tty instance. |
| 431 | * |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 432 | * Locking: takes buffer lock to ensure single-threaded flip buffer |
Peter Hurley | e9975fd | 2013-06-15 09:36:10 -0400 | [diff] [blame] | 433 | * 'consumer' |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 434 | */ |
| 435 | |
| 436 | static void flush_to_ldisc(struct work_struct *work) |
| 437 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 438 | struct tty_port *port = container_of(work, struct tty_port, buf.work); |
| 439 | struct tty_bufhead *buf = &port->buf; |
| 440 | struct tty_struct *tty; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 441 | struct tty_ldisc *disc; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 442 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 443 | tty = port->itty; |
Jiri Slaby | 34dcfb8 | 2013-02-27 22:30:24 +0100 | [diff] [blame] | 444 | if (tty == NULL) |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 445 | return; |
| 446 | |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 447 | disc = tty_ldisc_ref(tty); |
Peter Hurley | 3669752 | 2013-06-15 07:04:48 -0400 | [diff] [blame] | 448 | if (disc == NULL) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 449 | return; |
| 450 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 451 | mutex_lock(&buf->lock); |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 452 | |
Peter Hurley | d7a68be | 2013-06-15 09:36:11 -0400 | [diff] [blame] | 453 | while (1) { |
| 454 | struct tty_buffer *head = buf->head; |
| 455 | int count; |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 456 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 457 | /* Ldisc or user is trying to gain exclusive access */ |
| 458 | if (atomic_read(&buf->priority)) |
Peter Hurley | d7a68be | 2013-06-15 09:36:11 -0400 | [diff] [blame] | 459 | break; |
Peter Hurley | e9975fd | 2013-06-15 09:36:10 -0400 | [diff] [blame] | 460 | |
Peter Hurley | d7a68be | 2013-06-15 09:36:11 -0400 | [diff] [blame] | 461 | count = head->commit - head->read; |
| 462 | if (!count) { |
| 463 | if (head->next == NULL) |
Peter Hurley | 39f610e | 2013-03-20 13:20:43 -0400 | [diff] [blame] | 464 | break; |
Peter Hurley | d7a68be | 2013-06-15 09:36:11 -0400 | [diff] [blame] | 465 | buf->head = head->next; |
| 466 | tty_buffer_free(port, head); |
| 467 | continue; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 468 | } |
Peter Hurley | d7a68be | 2013-06-15 09:36:11 -0400 | [diff] [blame] | 469 | |
| 470 | count = receive_buf(tty, head, count); |
| 471 | if (!count) |
| 472 | break; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 473 | } |
Linus Torvalds | 4524200 | 2009-10-14 08:59:49 -0700 | [diff] [blame] | 474 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 475 | mutex_unlock(&buf->lock); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 476 | |
| 477 | tty_ldisc_deref(disc); |
| 478 | } |
| 479 | |
| 480 | /** |
OGAWA Hirofumi | e043e42 | 2009-07-29 12:15:56 -0700 | [diff] [blame] | 481 | * tty_flush_to_ldisc |
| 482 | * @tty: tty to push |
| 483 | * |
| 484 | * Push the terminal flip buffers to the line discipline. |
| 485 | * |
| 486 | * Must not be called from IRQ context. |
| 487 | */ |
| 488 | void tty_flush_to_ldisc(struct tty_struct *tty) |
| 489 | { |
Jiri Slaby | d6c53c0 | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 490 | if (!tty->port->low_latency) |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 491 | flush_work(&tty->port->buf.work); |
OGAWA Hirofumi | e043e42 | 2009-07-29 12:15:56 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | /** |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 495 | * tty_flip_buffer_push - terminal |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 496 | * @port: tty port to push |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 497 | * |
| 498 | * Queue a push of the terminal flip buffers to the line discipline. This |
Jiri Slaby | d6c53c0 | 2013-01-03 15:53:05 +0100 | [diff] [blame] | 499 | * function must not be called from IRQ context if port->low_latency is |
| 500 | * set. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 501 | * |
| 502 | * In the event of the queue being busy for flipping the work will be |
| 503 | * held off and retried later. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 504 | */ |
| 505 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 506 | void tty_flip_buffer_push(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 507 | { |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 508 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 509 | |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 510 | buf->tail->commit = buf->tail->used; |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 511 | |
Jiri Slaby | 2e124b4 | 2013-01-03 15:53:06 +0100 | [diff] [blame] | 512 | if (port->low_latency) |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 513 | flush_to_ldisc(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 514 | else |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 515 | schedule_work(&buf->work); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 516 | } |
| 517 | EXPORT_SYMBOL(tty_flip_buffer_push); |
| 518 | |
| 519 | /** |
| 520 | * tty_buffer_init - prepare a tty buffer structure |
| 521 | * @tty: tty to initialise |
| 522 | * |
| 523 | * Set up the initial state of the buffer management for a tty device. |
| 524 | * Must be called before the other tty buffer functions are used. |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 525 | */ |
| 526 | |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 527 | void tty_buffer_init(struct tty_port *port) |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 528 | { |
Jiri Slaby | ecbbfd4 | 2012-10-18 22:26:47 +0200 | [diff] [blame] | 529 | struct tty_bufhead *buf = &port->buf; |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 530 | |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 531 | mutex_init(&buf->lock); |
Peter Hurley | 7391ee1 | 2013-06-15 09:36:07 -0400 | [diff] [blame] | 532 | tty_buffer_reset(&buf->sentinel, 0); |
| 533 | buf->head = &buf->sentinel; |
| 534 | buf->tail = &buf->sentinel; |
Peter Hurley | 809850b | 2013-06-15 09:36:06 -0400 | [diff] [blame] | 535 | init_llist_head(&buf->free); |
Peter Hurley | 7bfe0b7 | 2013-06-15 09:36:08 -0400 | [diff] [blame] | 536 | atomic_set(&buf->memory_used, 0); |
Peter Hurley | a7c8d58 | 2013-06-15 09:36:15 -0400 | [diff] [blame] | 537 | atomic_set(&buf->priority, 0); |
Jiri Slaby | 5cff39c | 2012-10-18 22:26:45 +0200 | [diff] [blame] | 538 | INIT_WORK(&buf->work, flush_to_ldisc); |
Alan Cox | e049573 | 2008-10-13 10:36:58 +0100 | [diff] [blame] | 539 | } |