1 /* binder_alloc.c
2 *
3 * Android IPC Subsystem
4 *
5 * Copyright (C) 2007-2017 Google, Inc.
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
20 #include <asm/cacheflush.h>
21 #include <linux/list.h>
22 #include <linux/mm.h>
23 #include <linux/module.h>
24 #include <linux/rtmutex.h>
25 #include <linux/rbtree.h>
26 #include <linux/seq_file.h>
27 #include <linux/vmalloc.h>
28 #include <linux/slab.h>
29 #include <linux/sched.h>
30 #include <linux/list_lru.h>
31 #include "binder_alloc.h"
32 #include "binder_trace.h"
33
34 struct list_lru binder_alloc_lru;
35
36 static DEFINE_MUTEX(binder_alloc_mmap_lock);
37
38 enum {
39 BINDER_DEBUG_OPEN_CLOSE = 1U << 1,
40 BINDER_DEBUG_BUFFER_ALLOC = 1U << 2,
41 BINDER_DEBUG_BUFFER_ALLOC_ASYNC = 1U << 3,
42 };
43 static uint32_t binder_alloc_debug_mask;
44
45 module_param_named(debug_mask, binder_alloc_debug_mask,
46 uint, S_IWUSR | S_IRUGO);
47
48 #define binder_alloc_debug(mask, x...) \
49 do { \
50 if (binder_alloc_debug_mask & mask) \
51 pr_info(x); \
52 } while (0)
53
binder_buffer_next(struct binder_buffer * buffer)54 static struct binder_buffer *binder_buffer_next(struct binder_buffer *buffer)
55 {
56 return list_entry(buffer->entry.next, struct binder_buffer, entry);
57 }
58
binder_buffer_prev(struct binder_buffer * buffer)59 static struct binder_buffer *binder_buffer_prev(struct binder_buffer *buffer)
60 {
61 return list_entry(buffer->entry.prev, struct binder_buffer, entry);
62 }
63
binder_alloc_buffer_size(struct binder_alloc * alloc,struct binder_buffer * buffer)64 static size_t binder_alloc_buffer_size(struct binder_alloc *alloc,
65 struct binder_buffer *buffer)
66 {
67 if (list_is_last(&buffer->entry, &alloc->buffers))
68 return (u8 *)alloc->buffer +
69 alloc->buffer_size - (u8 *)buffer->data;
70 return (u8 *)binder_buffer_next(buffer)->data - (u8 *)buffer->data;
71 }
72
binder_insert_free_buffer(struct binder_alloc * alloc,struct binder_buffer * new_buffer)73 static void binder_insert_free_buffer(struct binder_alloc *alloc,
74 struct binder_buffer *new_buffer)
75 {
76 struct rb_node **p = &alloc->free_buffers.rb_node;
77 struct rb_node *parent = NULL;
78 struct binder_buffer *buffer;
79 size_t buffer_size;
80 size_t new_buffer_size;
81
82 BUG_ON(!new_buffer->free);
83
84 new_buffer_size = binder_alloc_buffer_size(alloc, new_buffer);
85
86 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
87 "%d: add free buffer, size %zd, at %pK\n",
88 alloc->pid, new_buffer_size, new_buffer);
89
90 while (*p) {
91 parent = *p;
92 buffer = rb_entry(parent, struct binder_buffer, rb_node);
93 BUG_ON(!buffer->free);
94
95 buffer_size = binder_alloc_buffer_size(alloc, buffer);
96
97 if (new_buffer_size < buffer_size)
98 p = &parent->rb_left;
99 else
100 p = &parent->rb_right;
101 }
102 rb_link_node(&new_buffer->rb_node, parent, p);
103 rb_insert_color(&new_buffer->rb_node, &alloc->free_buffers);
104 }
105
binder_insert_allocated_buffer_locked(struct binder_alloc * alloc,struct binder_buffer * new_buffer)106 static void binder_insert_allocated_buffer_locked(
107 struct binder_alloc *alloc, struct binder_buffer *new_buffer)
108 {
109 struct rb_node **p = &alloc->allocated_buffers.rb_node;
110 struct rb_node *parent = NULL;
111 struct binder_buffer *buffer;
112
113 BUG_ON(new_buffer->free);
114
115 while (*p) {
116 parent = *p;
117 buffer = rb_entry(parent, struct binder_buffer, rb_node);
118 BUG_ON(buffer->free);
119
120 if (new_buffer->data < buffer->data)
121 p = &parent->rb_left;
122 else if (new_buffer->data > buffer->data)
123 p = &parent->rb_right;
124 else
125 BUG();
126 }
127 rb_link_node(&new_buffer->rb_node, parent, p);
128 rb_insert_color(&new_buffer->rb_node, &alloc->allocated_buffers);
129 }
130
binder_alloc_prepare_to_free_locked(struct binder_alloc * alloc,uintptr_t user_ptr)131 static struct binder_buffer *binder_alloc_prepare_to_free_locked(
132 struct binder_alloc *alloc,
133 uintptr_t user_ptr)
134 {
135 struct rb_node *n = alloc->allocated_buffers.rb_node;
136 struct binder_buffer *buffer;
137 void *kern_ptr;
138
139 kern_ptr = (void *)(user_ptr - alloc->user_buffer_offset);
140
141 while (n) {
142 buffer = rb_entry(n, struct binder_buffer, rb_node);
143 BUG_ON(buffer->free);
144
145 if (kern_ptr < buffer->data)
146 n = n->rb_left;
147 else if (kern_ptr > buffer->data)
148 n = n->rb_right;
149 else {
150 /*
151 * Guard against user threads attempting to
152 * free the buffer when in use by kernel or
153 * after it's already been freed.
154 */
155 if (!buffer->allow_user_free)
156 return ERR_PTR(-EPERM);
157 buffer->allow_user_free = 0;
158 return buffer;
159 }
160 }
161 return NULL;
162 }
163
164 /**
165 * binder_alloc_buffer_lookup() - get buffer given user ptr
166 * @alloc: binder_alloc for this proc
167 * @user_ptr: User pointer to buffer data
168 *
169 * Validate userspace pointer to buffer data and return buffer corresponding to
170 * that user pointer. Search the rb tree for buffer that matches user data
171 * pointer.
172 *
173 * Return: Pointer to buffer or NULL
174 */
binder_alloc_prepare_to_free(struct binder_alloc * alloc,uintptr_t user_ptr)175 struct binder_buffer *binder_alloc_prepare_to_free(struct binder_alloc *alloc,
176 uintptr_t user_ptr)
177 {
178 struct binder_buffer *buffer;
179
180 mutex_lock(&alloc->mutex);
181 buffer = binder_alloc_prepare_to_free_locked(alloc, user_ptr);
182 mutex_unlock(&alloc->mutex);
183 return buffer;
184 }
185
binder_update_page_range(struct binder_alloc * alloc,int allocate,void * start,void * end)186 static int binder_update_page_range(struct binder_alloc *alloc, int allocate,
187 void *start, void *end)
188 {
189 void *page_addr;
190 unsigned long user_page_addr;
191 struct binder_lru_page *page;
192 struct vm_area_struct *vma = NULL;
193 struct mm_struct *mm = NULL;
194 bool need_mm = false;
195
196 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
197 "%d: %s pages %pK-%pK\n", alloc->pid,
198 allocate ? "allocate" : "free", start, end);
199
200 if (end <= start)
201 return 0;
202
203 trace_binder_update_page_range(alloc, allocate, start, end);
204
205 if (allocate == 0)
206 goto free_range;
207
208 for (page_addr = start; page_addr < end; page_addr += PAGE_SIZE) {
209 page = &alloc->pages[(page_addr - alloc->buffer) / PAGE_SIZE];
210 if (!page->page_ptr) {
211 need_mm = true;
212 break;
213 }
214 }
215
216 /* Same as mmget_not_zero() in later kernel versions */
217 if (need_mm && atomic_inc_not_zero(&alloc->vma_vm_mm->mm_users))
218 mm = alloc->vma_vm_mm;
219
220 if (mm) {
221 down_read(&mm->mmap_sem);
222 if (!mmget_still_valid(mm)) {
223 if (allocate == 0)
224 goto free_range;
225 goto err_no_vma;
226 }
227 vma = alloc->vma;
228 }
229
230 if (!vma && need_mm) {
231 pr_err("%d: binder_alloc_buf failed to map pages in userspace, no vma\n",
232 alloc->pid);
233 goto err_no_vma;
234 }
235
236 for (page_addr = start; page_addr < end; page_addr += PAGE_SIZE) {
237 int ret;
238 bool on_lru;
239 size_t index;
240
241 index = (page_addr - alloc->buffer) / PAGE_SIZE;
242 page = &alloc->pages[index];
243
244 if (page->page_ptr) {
245 trace_binder_alloc_lru_start(alloc, index);
246
247 on_lru = list_lru_del(&binder_alloc_lru, &page->lru);
248 WARN_ON(!on_lru);
249
250 trace_binder_alloc_lru_end(alloc, index);
251 continue;
252 }
253
254 if (WARN_ON(!vma))
255 goto err_page_ptr_cleared;
256
257 trace_binder_alloc_page_start(alloc, index);
258 page->page_ptr = alloc_page(GFP_KERNEL |
259 __GFP_HIGHMEM |
260 __GFP_ZERO);
261 if (!page->page_ptr) {
262 pr_err("%d: binder_alloc_buf failed for page at %pK\n",
263 alloc->pid, page_addr);
264 goto err_alloc_page_failed;
265 }
266 page->alloc = alloc;
267 INIT_LIST_HEAD(&page->lru);
268
269 ret = map_kernel_range_noflush((unsigned long)page_addr,
270 PAGE_SIZE, PAGE_KERNEL,
271 &page->page_ptr);
272 flush_cache_vmap((unsigned long)page_addr,
273 (unsigned long)page_addr + PAGE_SIZE);
274 if (ret != 1) {
275 pr_err("%d: binder_alloc_buf failed to map page at %pK in kernel\n",
276 alloc->pid, page_addr);
277 goto err_map_kernel_failed;
278 }
279 user_page_addr =
280 (uintptr_t)page_addr + alloc->user_buffer_offset;
281 ret = vm_insert_page(vma, user_page_addr, page[0].page_ptr);
282 if (ret) {
283 pr_err("%d: binder_alloc_buf failed to map page at %lx in userspace\n",
284 alloc->pid, user_page_addr);
285 goto err_vm_insert_page_failed;
286 }
287
288 if (index + 1 > alloc->pages_high)
289 alloc->pages_high = index + 1;
290
291 trace_binder_alloc_page_end(alloc, index);
292 /* vm_insert_page does not seem to increment the refcount */
293 }
294 if (mm) {
295 up_read(&mm->mmap_sem);
296 mmput(mm);
297 }
298 return 0;
299
300 free_range:
301 for (page_addr = end - PAGE_SIZE; page_addr >= start;
302 page_addr -= PAGE_SIZE) {
303 bool ret;
304 size_t index;
305
306 index = (page_addr - alloc->buffer) / PAGE_SIZE;
307 page = &alloc->pages[index];
308
309 trace_binder_free_lru_start(alloc, index);
310
311 ret = list_lru_add(&binder_alloc_lru, &page->lru);
312 WARN_ON(!ret);
313
314 trace_binder_free_lru_end(alloc, index);
315 continue;
316
317 err_vm_insert_page_failed:
318 unmap_kernel_range((unsigned long)page_addr, PAGE_SIZE);
319 err_map_kernel_failed:
320 __free_page(page->page_ptr);
321 page->page_ptr = NULL;
322 err_alloc_page_failed:
323 err_page_ptr_cleared:
324 ;
325 }
326 err_no_vma:
327 if (mm) {
328 up_read(&mm->mmap_sem);
329 mmput(mm);
330 }
331 return vma ? -ENOMEM : -ESRCH;
332 }
333
binder_alloc_new_buf_locked(struct binder_alloc * alloc,size_t data_size,size_t offsets_size,size_t extra_buffers_size,int is_async)334 static struct binder_buffer *binder_alloc_new_buf_locked(
335 struct binder_alloc *alloc,
336 size_t data_size,
337 size_t offsets_size,
338 size_t extra_buffers_size,
339 int is_async)
340 {
341 struct rb_node *n = alloc->free_buffers.rb_node;
342 struct binder_buffer *buffer;
343 size_t buffer_size;
344 struct rb_node *best_fit = NULL;
345 void *has_page_addr;
346 void *end_page_addr;
347 size_t size, data_offsets_size;
348 int ret;
349
350 if (alloc->vma == NULL) {
351 pr_err("%d: binder_alloc_buf, no vma\n",
352 alloc->pid);
353 return ERR_PTR(-ESRCH);
354 }
355
356 data_offsets_size = ALIGN(data_size, sizeof(void *)) +
357 ALIGN(offsets_size, sizeof(void *));
358
359 if (data_offsets_size < data_size || data_offsets_size < offsets_size) {
360 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
361 "%d: got transaction with invalid size %zd-%zd\n",
362 alloc->pid, data_size, offsets_size);
363 return ERR_PTR(-EINVAL);
364 }
365 size = data_offsets_size + ALIGN(extra_buffers_size, sizeof(void *));
366 if (size < data_offsets_size || size < extra_buffers_size) {
367 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
368 "%d: got transaction with invalid extra_buffers_size %zd\n",
369 alloc->pid, extra_buffers_size);
370 return ERR_PTR(-EINVAL);
371 }
372 if (is_async &&
373 alloc->free_async_space < size + sizeof(struct binder_buffer)) {
374 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
375 "%d: binder_alloc_buf size %zd failed, no async space left\n",
376 alloc->pid, size);
377 return ERR_PTR(-ENOSPC);
378 }
379
380 /* Pad 0-size buffers so they get assigned unique addresses */
381 size = max(size, sizeof(void *));
382
383 while (n) {
384 buffer = rb_entry(n, struct binder_buffer, rb_node);
385 BUG_ON(!buffer->free);
386 buffer_size = binder_alloc_buffer_size(alloc, buffer);
387
388 if (size < buffer_size) {
389 best_fit = n;
390 n = n->rb_left;
391 } else if (size > buffer_size)
392 n = n->rb_right;
393 else {
394 best_fit = n;
395 break;
396 }
397 }
398 if (best_fit == NULL) {
399 size_t allocated_buffers = 0;
400 size_t largest_alloc_size = 0;
401 size_t total_alloc_size = 0;
402 size_t free_buffers = 0;
403 size_t largest_free_size = 0;
404 size_t total_free_size = 0;
405
406 for (n = rb_first(&alloc->allocated_buffers); n != NULL;
407 n = rb_next(n)) {
408 buffer = rb_entry(n, struct binder_buffer, rb_node);
409 buffer_size = binder_alloc_buffer_size(alloc, buffer);
410 allocated_buffers++;
411 total_alloc_size += buffer_size;
412 if (buffer_size > largest_alloc_size)
413 largest_alloc_size = buffer_size;
414 }
415 for (n = rb_first(&alloc->free_buffers); n != NULL;
416 n = rb_next(n)) {
417 buffer = rb_entry(n, struct binder_buffer, rb_node);
418 buffer_size = binder_alloc_buffer_size(alloc, buffer);
419 free_buffers++;
420 total_free_size += buffer_size;
421 if (buffer_size > largest_free_size)
422 largest_free_size = buffer_size;
423 }
424 pr_err("%d: binder_alloc_buf size %zd failed, no address space\n",
425 alloc->pid, size);
426 pr_err("allocated: %zd (num: %zd largest: %zd), free: %zd (num: %zd largest: %zd)\n",
427 total_alloc_size, allocated_buffers, largest_alloc_size,
428 total_free_size, free_buffers, largest_free_size);
429 return ERR_PTR(-ENOSPC);
430 }
431 if (n == NULL) {
432 buffer = rb_entry(best_fit, struct binder_buffer, rb_node);
433 buffer_size = binder_alloc_buffer_size(alloc, buffer);
434 }
435
436 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
437 "%d: binder_alloc_buf size %zd got buffer %pK size %zd\n",
438 alloc->pid, size, buffer, buffer_size);
439
440 has_page_addr =
441 (void *)(((uintptr_t)buffer->data + buffer_size) & PAGE_MASK);
442 WARN_ON(n && buffer_size != size);
443 end_page_addr =
444 (void *)PAGE_ALIGN((uintptr_t)buffer->data + size);
445 if (end_page_addr > has_page_addr)
446 end_page_addr = has_page_addr;
447 ret = binder_update_page_range(alloc, 1,
448 (void *)PAGE_ALIGN((uintptr_t)buffer->data), end_page_addr);
449 if (ret)
450 return ERR_PTR(ret);
451
452 if (buffer_size != size) {
453 struct binder_buffer *new_buffer;
454
455 new_buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
456 if (!new_buffer) {
457 pr_err("%s: %d failed to alloc new buffer struct\n",
458 __func__, alloc->pid);
459 goto err_alloc_buf_struct_failed;
460 }
461 new_buffer->data = (u8 *)buffer->data + size;
462 list_add(&new_buffer->entry, &buffer->entry);
463 new_buffer->free = 1;
464 binder_insert_free_buffer(alloc, new_buffer);
465 }
466
467 rb_erase(best_fit, &alloc->free_buffers);
468 buffer->free = 0;
469 buffer->allow_user_free = 0;
470 binder_insert_allocated_buffer_locked(alloc, buffer);
471 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
472 "%d: binder_alloc_buf size %zd got %pK\n",
473 alloc->pid, size, buffer);
474 buffer->data_size = data_size;
475 buffer->offsets_size = offsets_size;
476 buffer->async_transaction = is_async;
477 buffer->extra_buffers_size = extra_buffers_size;
478 if (is_async) {
479 alloc->free_async_space -= size + sizeof(struct binder_buffer);
480 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC,
481 "%d: binder_alloc_buf size %zd async free %zd\n",
482 alloc->pid, size, alloc->free_async_space);
483 }
484 return buffer;
485
486 err_alloc_buf_struct_failed:
487 binder_update_page_range(alloc, 0,
488 (void *)PAGE_ALIGN((uintptr_t)buffer->data),
489 end_page_addr);
490 return ERR_PTR(-ENOMEM);
491 }
492
493 /**
494 * binder_alloc_new_buf() - Allocate a new binder buffer
495 * @alloc: binder_alloc for this proc
496 * @data_size: size of user data buffer
497 * @offsets_size: user specified buffer offset
498 * @extra_buffers_size: size of extra space for meta-data (eg, security context)
499 * @is_async: buffer for async transaction
500 *
501 * Allocate a new buffer given the requested sizes. Returns
502 * the kernel version of the buffer pointer. The size allocated
503 * is the sum of the three given sizes (each rounded up to
504 * pointer-sized boundary)
505 *
506 * Return: The allocated buffer or %NULL if error
507 */
binder_alloc_new_buf(struct binder_alloc * alloc,size_t data_size,size_t offsets_size,size_t extra_buffers_size,int is_async)508 struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc,
509 size_t data_size,
510 size_t offsets_size,
511 size_t extra_buffers_size,
512 int is_async)
513 {
514 struct binder_buffer *buffer;
515
516 mutex_lock(&alloc->mutex);
517 buffer = binder_alloc_new_buf_locked(alloc, data_size, offsets_size,
518 extra_buffers_size, is_async);
519 mutex_unlock(&alloc->mutex);
520 return buffer;
521 }
522
buffer_start_page(struct binder_buffer * buffer)523 static void *buffer_start_page(struct binder_buffer *buffer)
524 {
525 return (void *)((uintptr_t)buffer->data & PAGE_MASK);
526 }
527
prev_buffer_end_page(struct binder_buffer * buffer)528 static void *prev_buffer_end_page(struct binder_buffer *buffer)
529 {
530 return (void *)(((uintptr_t)(buffer->data) - 1) & PAGE_MASK);
531 }
532
binder_delete_free_buffer(struct binder_alloc * alloc,struct binder_buffer * buffer)533 static void binder_delete_free_buffer(struct binder_alloc *alloc,
534 struct binder_buffer *buffer)
535 {
536 struct binder_buffer *prev, *next = NULL;
537 bool to_free = true;
538 BUG_ON(alloc->buffers.next == &buffer->entry);
539 prev = binder_buffer_prev(buffer);
540 BUG_ON(!prev->free);
541 if (prev_buffer_end_page(prev) == buffer_start_page(buffer)) {
542 to_free = false;
543 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
544 "%d: merge free, buffer %pK share page with %pK\n",
545 alloc->pid, buffer->data, prev->data);
546 }
547
548 if (!list_is_last(&buffer->entry, &alloc->buffers)) {
549 next = binder_buffer_next(buffer);
550 if (buffer_start_page(next) == buffer_start_page(buffer)) {
551 to_free = false;
552 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
553 "%d: merge free, buffer %pK share page with %pK\n",
554 alloc->pid,
555 buffer->data,
556 next->data);
557 }
558 }
559
560 if (PAGE_ALIGNED(buffer->data)) {
561 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
562 "%d: merge free, buffer start %pK is page aligned\n",
563 alloc->pid, buffer->data);
564 to_free = false;
565 }
566
567 if (to_free) {
568 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
569 "%d: merge free, buffer %pK do not share page with %pK or %pK\n",
570 alloc->pid, buffer->data,
571 prev->data, next ? next->data : NULL);
572 binder_update_page_range(alloc, 0, buffer_start_page(buffer),
573 buffer_start_page(buffer) + PAGE_SIZE);
574 }
575 list_del(&buffer->entry);
576 kfree(buffer);
577 }
578
binder_free_buf_locked(struct binder_alloc * alloc,struct binder_buffer * buffer)579 static void binder_free_buf_locked(struct binder_alloc *alloc,
580 struct binder_buffer *buffer)
581 {
582 size_t size, buffer_size;
583
584 buffer_size = binder_alloc_buffer_size(alloc, buffer);
585
586 size = ALIGN(buffer->data_size, sizeof(void *)) +
587 ALIGN(buffer->offsets_size, sizeof(void *)) +
588 ALIGN(buffer->extra_buffers_size, sizeof(void *));
589
590 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
591 "%d: binder_free_buf %pK size %zd buffer_size %zd\n",
592 alloc->pid, buffer, size, buffer_size);
593
594 BUG_ON(buffer->free);
595 BUG_ON(size > buffer_size);
596 BUG_ON(buffer->transaction != NULL);
597 BUG_ON(buffer->data < alloc->buffer);
598 BUG_ON(buffer->data > alloc->buffer + alloc->buffer_size);
599
600 if (buffer->async_transaction) {
601 alloc->free_async_space += size + sizeof(struct binder_buffer);
602
603 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC,
604 "%d: binder_free_buf size %zd async free %zd\n",
605 alloc->pid, size, alloc->free_async_space);
606 }
607
608 binder_update_page_range(alloc, 0,
609 (void *)PAGE_ALIGN((uintptr_t)buffer->data),
610 (void *)(((uintptr_t)buffer->data + buffer_size) & PAGE_MASK));
611
612 rb_erase(&buffer->rb_node, &alloc->allocated_buffers);
613 buffer->free = 1;
614 if (!list_is_last(&buffer->entry, &alloc->buffers)) {
615 struct binder_buffer *next = binder_buffer_next(buffer);
616
617 if (next->free) {
618 rb_erase(&next->rb_node, &alloc->free_buffers);
619 binder_delete_free_buffer(alloc, next);
620 }
621 }
622 if (alloc->buffers.next != &buffer->entry) {
623 struct binder_buffer *prev = binder_buffer_prev(buffer);
624
625 if (prev->free) {
626 binder_delete_free_buffer(alloc, buffer);
627 rb_erase(&prev->rb_node, &alloc->free_buffers);
628 buffer = prev;
629 }
630 }
631 binder_insert_free_buffer(alloc, buffer);
632 }
633
634 /**
635 * binder_alloc_free_buf() - free a binder buffer
636 * @alloc: binder_alloc for this proc
637 * @buffer: kernel pointer to buffer
638 *
639 * Free the buffer allocated via binder_alloc_new_buffer()
640 */
binder_alloc_free_buf(struct binder_alloc * alloc,struct binder_buffer * buffer)641 void binder_alloc_free_buf(struct binder_alloc *alloc,
642 struct binder_buffer *buffer)
643 {
644 mutex_lock(&alloc->mutex);
645 binder_free_buf_locked(alloc, buffer);
646 mutex_unlock(&alloc->mutex);
647 }
648
649 /**
650 * binder_alloc_mmap_handler() - map virtual address space for proc
651 * @alloc: alloc structure for this proc
652 * @vma: vma passed to mmap()
653 *
654 * Called by binder_mmap() to initialize the space specified in
655 * vma for allocating binder buffers
656 *
657 * Return:
658 * 0 = success
659 * -EBUSY = address space already mapped
660 * -ENOMEM = failed to map memory to given address space
661 */
binder_alloc_mmap_handler(struct binder_alloc * alloc,struct vm_area_struct * vma)662 int binder_alloc_mmap_handler(struct binder_alloc *alloc,
663 struct vm_area_struct *vma)
664 {
665 int ret;
666 struct vm_struct *area;
667 const char *failure_string;
668 struct binder_buffer *buffer;
669
670 mutex_lock(&binder_alloc_mmap_lock);
671 if (alloc->buffer) {
672 ret = -EBUSY;
673 failure_string = "already mapped";
674 goto err_already_mapped;
675 }
676
677 area = get_vm_area(vma->vm_end - vma->vm_start, VM_ALLOC);
678 if (area == NULL) {
679 ret = -ENOMEM;
680 failure_string = "get_vm_area";
681 goto err_get_vm_area_failed;
682 }
683 alloc->buffer = area->addr;
684 alloc->user_buffer_offset =
685 vma->vm_start - (uintptr_t)alloc->buffer;
686 mutex_unlock(&binder_alloc_mmap_lock);
687
688 #ifdef CONFIG_CPU_CACHE_VIPT
689 if (cache_is_vipt_aliasing()) {
690 while (CACHE_COLOUR(
691 (vma->vm_start ^ (uint32_t)alloc->buffer))) {
692 pr_info("binder_mmap: %d %lx-%lx maps %pK bad alignment\n",
693 alloc->pid, vma->vm_start, vma->vm_end,
694 alloc->buffer);
695 vma->vm_start += PAGE_SIZE;
696 }
697 }
698 #endif
699 alloc->pages = kzalloc(sizeof(alloc->pages[0]) *
700 ((vma->vm_end - vma->vm_start) / PAGE_SIZE),
701 GFP_KERNEL);
702 if (alloc->pages == NULL) {
703 ret = -ENOMEM;
704 failure_string = "alloc page array";
705 goto err_alloc_pages_failed;
706 }
707 alloc->buffer_size = vma->vm_end - vma->vm_start;
708
709 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
710 if (!buffer) {
711 ret = -ENOMEM;
712 failure_string = "alloc buffer struct";
713 goto err_alloc_buf_struct_failed;
714 }
715
716 buffer->data = alloc->buffer;
717 list_add(&buffer->entry, &alloc->buffers);
718 buffer->free = 1;
719 binder_insert_free_buffer(alloc, buffer);
720 alloc->free_async_space = alloc->buffer_size / 2;
721 barrier();
722 alloc->vma = vma;
723 alloc->vma_vm_mm = vma->vm_mm;
724 /* Same as mmgrab() in later kernel versions */
725 atomic_inc(&alloc->vma_vm_mm->mm_count);
726
727 return 0;
728
729 err_alloc_buf_struct_failed:
730 kfree(alloc->pages);
731 alloc->pages = NULL;
732 err_alloc_pages_failed:
733 mutex_lock(&binder_alloc_mmap_lock);
734 vfree(alloc->buffer);
735 alloc->buffer = NULL;
736 err_get_vm_area_failed:
737 err_already_mapped:
738 mutex_unlock(&binder_alloc_mmap_lock);
739 pr_err("%s: %d %lx-%lx %s failed %d\n", __func__,
740 alloc->pid, vma->vm_start, vma->vm_end, failure_string, ret);
741 return ret;
742 }
743
744
binder_alloc_deferred_release(struct binder_alloc * alloc)745 void binder_alloc_deferred_release(struct binder_alloc *alloc)
746 {
747 struct rb_node *n;
748 int buffers, page_count;
749 struct binder_buffer *buffer;
750
751 BUG_ON(alloc->vma);
752
753 buffers = 0;
754 mutex_lock(&alloc->mutex);
755 while ((n = rb_first(&alloc->allocated_buffers))) {
756 buffer = rb_entry(n, struct binder_buffer, rb_node);
757
758 /* Transaction should already have been freed */
759 BUG_ON(buffer->transaction);
760
761 binder_free_buf_locked(alloc, buffer);
762 buffers++;
763 }
764
765 while (!list_empty(&alloc->buffers)) {
766 buffer = list_first_entry(&alloc->buffers,
767 struct binder_buffer, entry);
768 WARN_ON(!buffer->free);
769
770 list_del(&buffer->entry);
771 WARN_ON_ONCE(!list_empty(&alloc->buffers));
772 kfree(buffer);
773 }
774
775 page_count = 0;
776 if (alloc->pages) {
777 int i;
778
779 for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) {
780 void *page_addr;
781 bool on_lru;
782
783 if (!alloc->pages[i].page_ptr)
784 continue;
785
786 on_lru = list_lru_del(&binder_alloc_lru,
787 &alloc->pages[i].lru);
788 page_addr = alloc->buffer + i * PAGE_SIZE;
789 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
790 "%s: %d: page %d at %pK %s\n",
791 __func__, alloc->pid, i, page_addr,
792 on_lru ? "on lru" : "active");
793 unmap_kernel_range((unsigned long)page_addr, PAGE_SIZE);
794 __free_page(alloc->pages[i].page_ptr);
795 page_count++;
796 }
797 kfree(alloc->pages);
798 vfree(alloc->buffer);
799 }
800 mutex_unlock(&alloc->mutex);
801 if (alloc->vma_vm_mm)
802 mmdrop(alloc->vma_vm_mm);
803
804 binder_alloc_debug(BINDER_DEBUG_OPEN_CLOSE,
805 "%s: %d buffers %d, pages %d\n",
806 __func__, alloc->pid, buffers, page_count);
807 }
808
print_binder_buffer(struct seq_file * m,const char * prefix,struct binder_buffer * buffer)809 static void print_binder_buffer(struct seq_file *m, const char *prefix,
810 struct binder_buffer *buffer)
811 {
812 seq_printf(m, "%s %d: %pK size %zd:%zd:%zd %s\n",
813 prefix, buffer->debug_id, buffer->data,
814 buffer->data_size, buffer->offsets_size,
815 buffer->extra_buffers_size,
816 buffer->transaction ? "active" : "delivered");
817 }
818
819 /**
820 * binder_alloc_print_allocated() - print buffer info
821 * @m: seq_file for output via seq_printf()
822 * @alloc: binder_alloc for this proc
823 *
824 * Prints information about every buffer associated with
825 * the binder_alloc state to the given seq_file
826 */
binder_alloc_print_allocated(struct seq_file * m,struct binder_alloc * alloc)827 void binder_alloc_print_allocated(struct seq_file *m,
828 struct binder_alloc *alloc)
829 {
830 struct rb_node *n;
831
832 mutex_lock(&alloc->mutex);
833 for (n = rb_first(&alloc->allocated_buffers); n != NULL; n = rb_next(n))
834 print_binder_buffer(m, " buffer",
835 rb_entry(n, struct binder_buffer, rb_node));
836 mutex_unlock(&alloc->mutex);
837 }
838
839 /**
840 * binder_alloc_print_pages() - print page usage
841 * @m: seq_file for output via seq_printf()
842 * @alloc: binder_alloc for this proc
843 */
binder_alloc_print_pages(struct seq_file * m,struct binder_alloc * alloc)844 void binder_alloc_print_pages(struct seq_file *m,
845 struct binder_alloc *alloc)
846 {
847 struct binder_lru_page *page;
848 int i;
849 int active = 0;
850 int lru = 0;
851 int free = 0;
852
853 mutex_lock(&alloc->mutex);
854 for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) {
855 page = &alloc->pages[i];
856 if (!page->page_ptr)
857 free++;
858 else if (list_empty(&page->lru))
859 active++;
860 else
861 lru++;
862 }
863 mutex_unlock(&alloc->mutex);
864 seq_printf(m, " pages: %d:%d:%d\n", active, lru, free);
865 seq_printf(m, " pages high watermark: %zu\n", alloc->pages_high);
866 }
867
868 /**
869 * binder_alloc_get_allocated_count() - return count of buffers
870 * @alloc: binder_alloc for this proc
871 *
872 * Return: count of allocated buffers
873 */
binder_alloc_get_allocated_count(struct binder_alloc * alloc)874 int binder_alloc_get_allocated_count(struct binder_alloc *alloc)
875 {
876 struct rb_node *n;
877 int count = 0;
878
879 mutex_lock(&alloc->mutex);
880 for (n = rb_first(&alloc->allocated_buffers); n != NULL; n = rb_next(n))
881 count++;
882 mutex_unlock(&alloc->mutex);
883 return count;
884 }
885
886
887 /**
888 * binder_alloc_vma_close() - invalidate address space
889 * @alloc: binder_alloc for this proc
890 *
891 * Called from binder_vma_close() when releasing address space.
892 * Clears alloc->vma to prevent new incoming transactions from
893 * allocating more buffers.
894 */
binder_alloc_vma_close(struct binder_alloc * alloc)895 void binder_alloc_vma_close(struct binder_alloc *alloc)
896 {
897 WRITE_ONCE(alloc->vma, NULL);
898 }
899
900 /**
901 * binder_alloc_free_page() - shrinker callback to free pages
902 * @item: item to free
903 * @lock: lock protecting the item
904 * @cb_arg: callback argument
905 *
906 * Called from list_lru_walk() in binder_shrink_scan() to free
907 * up pages when the system is under memory pressure.
908 */
binder_alloc_free_page(struct list_head * item,struct list_lru_one * lru,spinlock_t * lock,void * cb_arg)909 enum lru_status binder_alloc_free_page(struct list_head *item,
910 struct list_lru_one *lru,
911 spinlock_t *lock,
912 void *cb_arg)
913 {
914 struct mm_struct *mm = NULL;
915 struct binder_lru_page *page = container_of(item,
916 struct binder_lru_page,
917 lru);
918 struct binder_alloc *alloc;
919 uintptr_t page_addr;
920 size_t index;
921 struct vm_area_struct *vma;
922
923 alloc = page->alloc;
924 if (!mutex_trylock(&alloc->mutex))
925 goto err_get_alloc_mutex_failed;
926
927 if (!page->page_ptr)
928 goto err_page_already_freed;
929
930 index = page - alloc->pages;
931 page_addr = (uintptr_t)alloc->buffer + index * PAGE_SIZE;
932
933 mm = alloc->vma_vm_mm;
934 /* Same as mmget_not_zero() in later kernel versions */
935 if (!atomic_inc_not_zero(&alloc->vma_vm_mm->mm_users))
936 goto err_mmget;
937 if (!down_write_trylock(&mm->mmap_sem))
938 goto err_down_write_mmap_sem_failed;
939 vma = alloc->vma;
940
941 list_lru_isolate(lru, item);
942 spin_unlock(lock);
943
944 if (vma) {
945 trace_binder_unmap_user_start(alloc, index);
946
947 zap_page_range(vma,
948 page_addr +
949 alloc->user_buffer_offset,
950 PAGE_SIZE, NULL);
951
952 trace_binder_unmap_user_end(alloc, index);
953 }
954 up_write(&mm->mmap_sem);
955 mmput(mm);
956
957 trace_binder_unmap_kernel_start(alloc, index);
958
959 unmap_kernel_range(page_addr, PAGE_SIZE);
960 __free_page(page->page_ptr);
961 page->page_ptr = NULL;
962
963 trace_binder_unmap_kernel_end(alloc, index);
964
965 spin_lock(lock);
966 mutex_unlock(&alloc->mutex);
967 return LRU_REMOVED_RETRY;
968
969 err_down_write_mmap_sem_failed:
970 mmput_async(mm);
971 err_mmget:
972 err_page_already_freed:
973 mutex_unlock(&alloc->mutex);
974 err_get_alloc_mutex_failed:
975 return LRU_SKIP;
976 }
977
978 static unsigned long
binder_shrink_count(struct shrinker * shrink,struct shrink_control * sc)979 binder_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
980 {
981 unsigned long ret = list_lru_count(&binder_alloc_lru);
982 return ret;
983 }
984
985 static unsigned long
binder_shrink_scan(struct shrinker * shrink,struct shrink_control * sc)986 binder_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
987 {
988 unsigned long ret;
989
990 ret = list_lru_walk(&binder_alloc_lru, binder_alloc_free_page,
991 NULL, sc->nr_to_scan);
992 return ret;
993 }
994
995 static struct shrinker binder_shrinker = {
996 .count_objects = binder_shrink_count,
997 .scan_objects = binder_shrink_scan,
998 .seeks = DEFAULT_SEEKS,
999 };
1000
1001 /**
1002 * binder_alloc_init() - called by binder_open() for per-proc initialization
1003 * @alloc: binder_alloc for this proc
1004 *
1005 * Called from binder_open() to initialize binder_alloc fields for
1006 * new binder proc
1007 */
binder_alloc_init(struct binder_alloc * alloc)1008 void binder_alloc_init(struct binder_alloc *alloc)
1009 {
1010 alloc->pid = current->group_leader->pid;
1011 mutex_init(&alloc->mutex);
1012 INIT_LIST_HEAD(&alloc->buffers);
1013 }
1014
binder_alloc_shrinker_init(void)1015 int binder_alloc_shrinker_init(void)
1016 {
1017 int ret = list_lru_init(&binder_alloc_lru);
1018
1019 if (ret == 0) {
1020 ret = register_shrinker(&binder_shrinker);
1021 if (ret)
1022 list_lru_destroy(&binder_alloc_lru);
1023 }
1024 return ret;
1025 }
1026