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