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