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