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