blob: 022cd80e80cc367e616919addc6ff50fa77886bb [file] [log] [blame]
Todd Kjos0c972a02017-06-29 12:01:41 -07001/* 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
Todd Kjos0c972a02017-06-29 12:01:41 -070020#include <linux/list.h>
21#include <linux/sched/mm.h>
22#include <linux/module.h>
23#include <linux/rtmutex.h>
24#include <linux/rbtree.h>
25#include <linux/seq_file.h>
26#include <linux/vmalloc.h>
27#include <linux/slab.h>
28#include <linux/sched.h>
Sherry Yangf2517eb2017-08-23 08:46:42 -070029#include <linux/list_lru.h>
Sherry Yang128f3802018-08-07 12:57:13 -070030#include <linux/ratelimit.h>
Guenter Roeck1e81c572018-07-23 14:47:23 -070031#include <asm/cacheflush.h>
Todd Kjos0c972a02017-06-29 12:01:41 -070032#include "binder_alloc.h"
33#include "binder_trace.h"
34
Sherry Yangf2517eb2017-08-23 08:46:42 -070035struct list_lru binder_alloc_lru;
36
Todd Kjos0c972a02017-06-29 12:01:41 -070037static DEFINE_MUTEX(binder_alloc_mmap_lock);
38
39enum {
Sherry Yang128f3802018-08-07 12:57:13 -070040 BINDER_DEBUG_USER_ERROR = 1U << 0,
Todd Kjos0c972a02017-06-29 12:01:41 -070041 BINDER_DEBUG_OPEN_CLOSE = 1U << 1,
42 BINDER_DEBUG_BUFFER_ALLOC = 1U << 2,
43 BINDER_DEBUG_BUFFER_ALLOC_ASYNC = 1U << 3,
44};
Sherry Yang128f3802018-08-07 12:57:13 -070045static uint32_t binder_alloc_debug_mask = BINDER_DEBUG_USER_ERROR;
Todd Kjos0c972a02017-06-29 12:01:41 -070046
47module_param_named(debug_mask, binder_alloc_debug_mask,
48 uint, 0644);
49
50#define binder_alloc_debug(mask, x...) \
51 do { \
52 if (binder_alloc_debug_mask & mask) \
Sherry Yang128f3802018-08-07 12:57:13 -070053 pr_info_ratelimited(x); \
Todd Kjos0c972a02017-06-29 12:01:41 -070054 } while (0)
55
Sherry Yange21762192017-08-23 08:46:39 -070056static struct binder_buffer *binder_buffer_next(struct binder_buffer *buffer)
57{
58 return list_entry(buffer->entry.next, struct binder_buffer, entry);
59}
60
61static struct binder_buffer *binder_buffer_prev(struct binder_buffer *buffer)
62{
63 return list_entry(buffer->entry.prev, struct binder_buffer, entry);
64}
65
Todd Kjos0c972a02017-06-29 12:01:41 -070066static size_t binder_alloc_buffer_size(struct binder_alloc *alloc,
67 struct binder_buffer *buffer)
68{
69 if (list_is_last(&buffer->entry, &alloc->buffers))
Sherry Yang74310e02017-08-23 08:46:41 -070070 return (u8 *)alloc->buffer +
71 alloc->buffer_size - (u8 *)buffer->data;
72 return (u8 *)binder_buffer_next(buffer)->data - (u8 *)buffer->data;
Todd Kjos0c972a02017-06-29 12:01:41 -070073}
74
75static void binder_insert_free_buffer(struct binder_alloc *alloc,
76 struct binder_buffer *new_buffer)
77{
78 struct rb_node **p = &alloc->free_buffers.rb_node;
79 struct rb_node *parent = NULL;
80 struct binder_buffer *buffer;
81 size_t buffer_size;
82 size_t new_buffer_size;
83
84 BUG_ON(!new_buffer->free);
85
86 new_buffer_size = binder_alloc_buffer_size(alloc, new_buffer);
87
88 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
89 "%d: add free buffer, size %zd, at %pK\n",
90 alloc->pid, new_buffer_size, new_buffer);
91
92 while (*p) {
93 parent = *p;
94 buffer = rb_entry(parent, struct binder_buffer, rb_node);
95 BUG_ON(!buffer->free);
96
97 buffer_size = binder_alloc_buffer_size(alloc, buffer);
98
99 if (new_buffer_size < buffer_size)
100 p = &parent->rb_left;
101 else
102 p = &parent->rb_right;
103 }
104 rb_link_node(&new_buffer->rb_node, parent, p);
105 rb_insert_color(&new_buffer->rb_node, &alloc->free_buffers);
106}
107
108static void binder_insert_allocated_buffer_locked(
109 struct binder_alloc *alloc, struct binder_buffer *new_buffer)
110{
111 struct rb_node **p = &alloc->allocated_buffers.rb_node;
112 struct rb_node *parent = NULL;
113 struct binder_buffer *buffer;
114
115 BUG_ON(new_buffer->free);
116
117 while (*p) {
118 parent = *p;
119 buffer = rb_entry(parent, struct binder_buffer, rb_node);
120 BUG_ON(buffer->free);
121
Sherry Yang74310e02017-08-23 08:46:41 -0700122 if (new_buffer->data < buffer->data)
Todd Kjos0c972a02017-06-29 12:01:41 -0700123 p = &parent->rb_left;
Sherry Yang74310e02017-08-23 08:46:41 -0700124 else if (new_buffer->data > buffer->data)
Todd Kjos0c972a02017-06-29 12:01:41 -0700125 p = &parent->rb_right;
126 else
127 BUG();
128 }
129 rb_link_node(&new_buffer->rb_node, parent, p);
130 rb_insert_color(&new_buffer->rb_node, &alloc->allocated_buffers);
131}
132
Todd Kjos53d311cf2017-06-29 12:01:51 -0700133static struct binder_buffer *binder_alloc_prepare_to_free_locked(
Todd Kjos0c972a02017-06-29 12:01:41 -0700134 struct binder_alloc *alloc,
135 uintptr_t user_ptr)
136{
137 struct rb_node *n = alloc->allocated_buffers.rb_node;
138 struct binder_buffer *buffer;
Sherry Yang74310e02017-08-23 08:46:41 -0700139 void *kern_ptr;
Todd Kjos0c972a02017-06-29 12:01:41 -0700140
Sherry Yang74310e02017-08-23 08:46:41 -0700141 kern_ptr = (void *)(user_ptr - alloc->user_buffer_offset);
Todd Kjos0c972a02017-06-29 12:01:41 -0700142
143 while (n) {
144 buffer = rb_entry(n, struct binder_buffer, rb_node);
145 BUG_ON(buffer->free);
146
Sherry Yang74310e02017-08-23 08:46:41 -0700147 if (kern_ptr < buffer->data)
Todd Kjos0c972a02017-06-29 12:01:41 -0700148 n = n->rb_left;
Sherry Yang74310e02017-08-23 08:46:41 -0700149 else if (kern_ptr > buffer->data)
Todd Kjos0c972a02017-06-29 12:01:41 -0700150 n = n->rb_right;
Todd Kjos53d311cf2017-06-29 12:01:51 -0700151 else {
152 /*
153 * Guard against user threads attempting to
Todd Kjos7bada552018-11-06 15:55:32 -0800154 * free the buffer when in use by kernel or
155 * after it's already been freed.
Todd Kjos53d311cf2017-06-29 12:01:51 -0700156 */
Todd Kjos7bada552018-11-06 15:55:32 -0800157 if (!buffer->allow_user_free)
158 return ERR_PTR(-EPERM);
159 buffer->allow_user_free = 0;
Todd Kjos0c972a02017-06-29 12:01:41 -0700160 return buffer;
Todd Kjos53d311cf2017-06-29 12:01:51 -0700161 }
Todd Kjos0c972a02017-06-29 12:01:41 -0700162 }
163 return NULL;
164}
165
166/**
167 * binder_alloc_buffer_lookup() - get buffer given user ptr
168 * @alloc: binder_alloc for this proc
169 * @user_ptr: User pointer to buffer data
170 *
171 * Validate userspace pointer to buffer data and return buffer corresponding to
172 * that user pointer. Search the rb tree for buffer that matches user data
173 * pointer.
174 *
175 * Return: Pointer to buffer or NULL
176 */
Todd Kjos53d311cf2017-06-29 12:01:51 -0700177struct binder_buffer *binder_alloc_prepare_to_free(struct binder_alloc *alloc,
178 uintptr_t user_ptr)
Todd Kjos0c972a02017-06-29 12:01:41 -0700179{
180 struct binder_buffer *buffer;
181
182 mutex_lock(&alloc->mutex);
Todd Kjos53d311cf2017-06-29 12:01:51 -0700183 buffer = binder_alloc_prepare_to_free_locked(alloc, user_ptr);
Todd Kjos0c972a02017-06-29 12:01:41 -0700184 mutex_unlock(&alloc->mutex);
185 return buffer;
186}
187
188static int binder_update_page_range(struct binder_alloc *alloc, int allocate,
Sherry Yang6ae33b92017-09-16 01:11:56 -0400189 void *start, void *end)
Todd Kjos0c972a02017-06-29 12:01:41 -0700190{
191 void *page_addr;
192 unsigned long user_page_addr;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700193 struct binder_lru_page *page;
Sherry Yang6ae33b92017-09-16 01:11:56 -0400194 struct vm_area_struct *vma = NULL;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700195 struct mm_struct *mm = NULL;
196 bool need_mm = false;
Todd Kjos0c972a02017-06-29 12:01:41 -0700197
198 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
199 "%d: %s pages %pK-%pK\n", alloc->pid,
200 allocate ? "allocate" : "free", start, end);
201
202 if (end <= start)
203 return 0;
204
205 trace_binder_update_page_range(alloc, allocate, start, end);
206
Sherry Yangf2517eb2017-08-23 08:46:42 -0700207 if (allocate == 0)
208 goto free_range;
209
210 for (page_addr = start; page_addr < end; page_addr += PAGE_SIZE) {
211 page = &alloc->pages[(page_addr - alloc->buffer) / PAGE_SIZE];
212 if (!page->page_ptr) {
213 need_mm = true;
214 break;
215 }
216 }
217
Greg Kroah-Hartman6fbf2482017-10-23 17:21:44 +0200218 if (need_mm && mmget_not_zero(alloc->vma_vm_mm))
Sherry Yanga0c2baa2017-10-20 20:58:58 -0400219 mm = alloc->vma_vm_mm;
Todd Kjos0c972a02017-06-29 12:01:41 -0700220
221 if (mm) {
Minchan Kim720c24192018-05-07 23:15:37 +0900222 down_read(&mm->mmap_sem);
Todd Kjos0c972a02017-06-29 12:01:41 -0700223 vma = alloc->vma;
Todd Kjos0c972a02017-06-29 12:01:41 -0700224 }
225
Sherry Yangf2517eb2017-08-23 08:46:42 -0700226 if (!vma && need_mm) {
Sherry Yang128f3802018-08-07 12:57:13 -0700227 binder_alloc_debug(BINDER_DEBUG_USER_ERROR,
228 "%d: binder_alloc_buf failed to map pages in userspace, no vma\n",
229 alloc->pid);
Todd Kjos0c972a02017-06-29 12:01:41 -0700230 goto err_no_vma;
231 }
232
233 for (page_addr = start; page_addr < end; page_addr += PAGE_SIZE) {
234 int ret;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700235 bool on_lru;
Sherry Yange41e1642017-08-23 08:46:43 -0700236 size_t index;
Todd Kjos0c972a02017-06-29 12:01:41 -0700237
Sherry Yange41e1642017-08-23 08:46:43 -0700238 index = (page_addr - alloc->buffer) / PAGE_SIZE;
239 page = &alloc->pages[index];
Todd Kjos0c972a02017-06-29 12:01:41 -0700240
Sherry Yangf2517eb2017-08-23 08:46:42 -0700241 if (page->page_ptr) {
Sherry Yange41e1642017-08-23 08:46:43 -0700242 trace_binder_alloc_lru_start(alloc, index);
243
Sherry Yangf2517eb2017-08-23 08:46:42 -0700244 on_lru = list_lru_del(&binder_alloc_lru, &page->lru);
245 WARN_ON(!on_lru);
Sherry Yange41e1642017-08-23 08:46:43 -0700246
247 trace_binder_alloc_lru_end(alloc, index);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700248 continue;
249 }
250
251 if (WARN_ON(!vma))
252 goto err_page_ptr_cleared;
253
Sherry Yange41e1642017-08-23 08:46:43 -0700254 trace_binder_alloc_page_start(alloc, index);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700255 page->page_ptr = alloc_page(GFP_KERNEL |
256 __GFP_HIGHMEM |
257 __GFP_ZERO);
258 if (!page->page_ptr) {
Todd Kjos0c972a02017-06-29 12:01:41 -0700259 pr_err("%d: binder_alloc_buf failed for page at %pK\n",
260 alloc->pid, page_addr);
261 goto err_alloc_page_failed;
262 }
Sherry Yangf2517eb2017-08-23 08:46:42 -0700263 page->alloc = alloc;
264 INIT_LIST_HEAD(&page->lru);
265
Todd Kjos0c972a02017-06-29 12:01:41 -0700266 ret = map_kernel_range_noflush((unsigned long)page_addr,
Sherry Yangf2517eb2017-08-23 08:46:42 -0700267 PAGE_SIZE, PAGE_KERNEL,
268 &page->page_ptr);
Todd Kjos0c972a02017-06-29 12:01:41 -0700269 flush_cache_vmap((unsigned long)page_addr,
270 (unsigned long)page_addr + PAGE_SIZE);
271 if (ret != 1) {
272 pr_err("%d: binder_alloc_buf failed to map page at %pK in kernel\n",
273 alloc->pid, page_addr);
274 goto err_map_kernel_failed;
275 }
276 user_page_addr =
277 (uintptr_t)page_addr + alloc->user_buffer_offset;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700278 ret = vm_insert_page(vma, user_page_addr, page[0].page_ptr);
Todd Kjos0c972a02017-06-29 12:01:41 -0700279 if (ret) {
280 pr_err("%d: binder_alloc_buf failed to map page at %lx in userspace\n",
281 alloc->pid, user_page_addr);
282 goto err_vm_insert_page_failed;
283 }
Sherry Yange41e1642017-08-23 08:46:43 -0700284
Martijn Coenen8d9a3ab62017-11-13 10:06:56 +0100285 if (index + 1 > alloc->pages_high)
286 alloc->pages_high = index + 1;
287
Sherry Yange41e1642017-08-23 08:46:43 -0700288 trace_binder_alloc_page_end(alloc, index);
Todd Kjos0c972a02017-06-29 12:01:41 -0700289 /* vm_insert_page does not seem to increment the refcount */
290 }
291 if (mm) {
Minchan Kim720c24192018-05-07 23:15:37 +0900292 up_read(&mm->mmap_sem);
Todd Kjos0c972a02017-06-29 12:01:41 -0700293 mmput(mm);
294 }
295 return 0;
296
297free_range:
298 for (page_addr = end - PAGE_SIZE; page_addr >= start;
299 page_addr -= PAGE_SIZE) {
Sherry Yangf2517eb2017-08-23 08:46:42 -0700300 bool ret;
Sherry Yange41e1642017-08-23 08:46:43 -0700301 size_t index;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700302
Sherry Yange41e1642017-08-23 08:46:43 -0700303 index = (page_addr - alloc->buffer) / PAGE_SIZE;
304 page = &alloc->pages[index];
305
306 trace_binder_free_lru_start(alloc, index);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700307
308 ret = list_lru_add(&binder_alloc_lru, &page->lru);
309 WARN_ON(!ret);
Sherry Yange41e1642017-08-23 08:46:43 -0700310
311 trace_binder_free_lru_end(alloc, index);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700312 continue;
313
Todd Kjos0c972a02017-06-29 12:01:41 -0700314err_vm_insert_page_failed:
315 unmap_kernel_range((unsigned long)page_addr, PAGE_SIZE);
316err_map_kernel_failed:
Sherry Yangf2517eb2017-08-23 08:46:42 -0700317 __free_page(page->page_ptr);
318 page->page_ptr = NULL;
Todd Kjos0c972a02017-06-29 12:01:41 -0700319err_alloc_page_failed:
Sherry Yangf2517eb2017-08-23 08:46:42 -0700320err_page_ptr_cleared:
Todd Kjos0c972a02017-06-29 12:01:41 -0700321 ;
322 }
323err_no_vma:
324 if (mm) {
Minchan Kim720c24192018-05-07 23:15:37 +0900325 up_read(&mm->mmap_sem);
Todd Kjos0c972a02017-06-29 12:01:41 -0700326 mmput(mm);
327 }
Todd Kjos57ada2f2017-06-29 12:01:46 -0700328 return vma ? -ENOMEM : -ESRCH;
Todd Kjos0c972a02017-06-29 12:01:41 -0700329}
330
Minchan Kimda1b9562018-08-23 14:29:56 +0900331
332static inline void binder_alloc_set_vma(struct binder_alloc *alloc,
333 struct vm_area_struct *vma)
334{
335 if (vma)
336 alloc->vma_vm_mm = vma->vm_mm;
337 /*
338 * If we see alloc->vma is not NULL, buffer data structures set up
339 * completely. Look at smp_rmb side binder_alloc_get_vma.
340 * We also want to guarantee new alloc->vma_vm_mm is always visible
341 * if alloc->vma is set.
342 */
343 smp_wmb();
344 alloc->vma = vma;
345}
346
347static inline struct vm_area_struct *binder_alloc_get_vma(
348 struct binder_alloc *alloc)
349{
350 struct vm_area_struct *vma = NULL;
351
352 if (alloc->vma) {
353 /* Look at description in binder_alloc_set_vma */
354 smp_rmb();
355 vma = alloc->vma;
356 }
357 return vma;
358}
359
Xiongwei Song3f827242017-12-14 12:15:42 +0800360static struct binder_buffer *binder_alloc_new_buf_locked(
361 struct binder_alloc *alloc,
362 size_t data_size,
363 size_t offsets_size,
364 size_t extra_buffers_size,
365 int is_async)
Todd Kjos0c972a02017-06-29 12:01:41 -0700366{
367 struct rb_node *n = alloc->free_buffers.rb_node;
368 struct binder_buffer *buffer;
369 size_t buffer_size;
370 struct rb_node *best_fit = NULL;
371 void *has_page_addr;
372 void *end_page_addr;
373 size_t size, data_offsets_size;
Todd Kjos57ada2f2017-06-29 12:01:46 -0700374 int ret;
Todd Kjos0c972a02017-06-29 12:01:41 -0700375
Minchan Kimda1b9562018-08-23 14:29:56 +0900376 if (!binder_alloc_get_vma(alloc)) {
Sherry Yang128f3802018-08-07 12:57:13 -0700377 binder_alloc_debug(BINDER_DEBUG_USER_ERROR,
378 "%d: binder_alloc_buf, no vma\n",
379 alloc->pid);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700380 return ERR_PTR(-ESRCH);
Todd Kjos0c972a02017-06-29 12:01:41 -0700381 }
382
383 data_offsets_size = ALIGN(data_size, sizeof(void *)) +
384 ALIGN(offsets_size, sizeof(void *));
385
386 if (data_offsets_size < data_size || data_offsets_size < offsets_size) {
387 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
388 "%d: got transaction with invalid size %zd-%zd\n",
389 alloc->pid, data_size, offsets_size);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700390 return ERR_PTR(-EINVAL);
Todd Kjos0c972a02017-06-29 12:01:41 -0700391 }
392 size = data_offsets_size + ALIGN(extra_buffers_size, sizeof(void *));
393 if (size < data_offsets_size || size < extra_buffers_size) {
394 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
395 "%d: got transaction with invalid extra_buffers_size %zd\n",
396 alloc->pid, extra_buffers_size);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700397 return ERR_PTR(-EINVAL);
Todd Kjos0c972a02017-06-29 12:01:41 -0700398 }
399 if (is_async &&
400 alloc->free_async_space < size + sizeof(struct binder_buffer)) {
401 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
402 "%d: binder_alloc_buf size %zd failed, no async space left\n",
403 alloc->pid, size);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700404 return ERR_PTR(-ENOSPC);
Todd Kjos0c972a02017-06-29 12:01:41 -0700405 }
406
Sherry Yang74310e02017-08-23 08:46:41 -0700407 /* Pad 0-size buffers so they get assigned unique addresses */
408 size = max(size, sizeof(void *));
409
Todd Kjos0c972a02017-06-29 12:01:41 -0700410 while (n) {
411 buffer = rb_entry(n, struct binder_buffer, rb_node);
412 BUG_ON(!buffer->free);
413 buffer_size = binder_alloc_buffer_size(alloc, buffer);
414
415 if (size < buffer_size) {
416 best_fit = n;
417 n = n->rb_left;
418 } else if (size > buffer_size)
419 n = n->rb_right;
420 else {
421 best_fit = n;
422 break;
423 }
424 }
425 if (best_fit == NULL) {
Martijn Coenenb05a68e2017-06-29 12:01:52 -0700426 size_t allocated_buffers = 0;
427 size_t largest_alloc_size = 0;
428 size_t total_alloc_size = 0;
429 size_t free_buffers = 0;
430 size_t largest_free_size = 0;
431 size_t total_free_size = 0;
432
433 for (n = rb_first(&alloc->allocated_buffers); n != NULL;
434 n = rb_next(n)) {
435 buffer = rb_entry(n, struct binder_buffer, rb_node);
436 buffer_size = binder_alloc_buffer_size(alloc, buffer);
437 allocated_buffers++;
438 total_alloc_size += buffer_size;
439 if (buffer_size > largest_alloc_size)
440 largest_alloc_size = buffer_size;
441 }
442 for (n = rb_first(&alloc->free_buffers); n != NULL;
443 n = rb_next(n)) {
444 buffer = rb_entry(n, struct binder_buffer, rb_node);
445 buffer_size = binder_alloc_buffer_size(alloc, buffer);
446 free_buffers++;
447 total_free_size += buffer_size;
448 if (buffer_size > largest_free_size)
449 largest_free_size = buffer_size;
450 }
Sherry Yang128f3802018-08-07 12:57:13 -0700451 binder_alloc_debug(BINDER_DEBUG_USER_ERROR,
452 "%d: binder_alloc_buf size %zd failed, no address space\n",
453 alloc->pid, size);
454 binder_alloc_debug(BINDER_DEBUG_USER_ERROR,
455 "allocated: %zd (num: %zd largest: %zd), free: %zd (num: %zd largest: %zd)\n",
456 total_alloc_size, allocated_buffers,
457 largest_alloc_size, total_free_size,
458 free_buffers, largest_free_size);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700459 return ERR_PTR(-ENOSPC);
Todd Kjos0c972a02017-06-29 12:01:41 -0700460 }
461 if (n == NULL) {
462 buffer = rb_entry(best_fit, struct binder_buffer, rb_node);
463 buffer_size = binder_alloc_buffer_size(alloc, buffer);
464 }
465
466 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
467 "%d: binder_alloc_buf size %zd got buffer %pK size %zd\n",
468 alloc->pid, size, buffer, buffer_size);
469
470 has_page_addr =
471 (void *)(((uintptr_t)buffer->data + buffer_size) & PAGE_MASK);
Sherry Yang74310e02017-08-23 08:46:41 -0700472 WARN_ON(n && buffer_size != size);
Todd Kjos0c972a02017-06-29 12:01:41 -0700473 end_page_addr =
Sherry Yang74310e02017-08-23 08:46:41 -0700474 (void *)PAGE_ALIGN((uintptr_t)buffer->data + size);
Todd Kjos0c972a02017-06-29 12:01:41 -0700475 if (end_page_addr > has_page_addr)
476 end_page_addr = has_page_addr;
Todd Kjos57ada2f2017-06-29 12:01:46 -0700477 ret = binder_update_page_range(alloc, 1,
Sherry Yang6ae33b92017-09-16 01:11:56 -0400478 (void *)PAGE_ALIGN((uintptr_t)buffer->data), end_page_addr);
Todd Kjos57ada2f2017-06-29 12:01:46 -0700479 if (ret)
480 return ERR_PTR(ret);
Todd Kjos0c972a02017-06-29 12:01:41 -0700481
Todd Kjos0c972a02017-06-29 12:01:41 -0700482 if (buffer_size != size) {
Sherry Yang74310e02017-08-23 08:46:41 -0700483 struct binder_buffer *new_buffer;
Todd Kjos0c972a02017-06-29 12:01:41 -0700484
Sherry Yang74310e02017-08-23 08:46:41 -0700485 new_buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
486 if (!new_buffer) {
487 pr_err("%s: %d failed to alloc new buffer struct\n",
488 __func__, alloc->pid);
489 goto err_alloc_buf_struct_failed;
490 }
491 new_buffer->data = (u8 *)buffer->data + size;
Todd Kjos0c972a02017-06-29 12:01:41 -0700492 list_add(&new_buffer->entry, &buffer->entry);
493 new_buffer->free = 1;
494 binder_insert_free_buffer(alloc, new_buffer);
495 }
Sherry Yang74310e02017-08-23 08:46:41 -0700496
497 rb_erase(best_fit, &alloc->free_buffers);
498 buffer->free = 0;
Todd Kjos7bada552018-11-06 15:55:32 -0800499 buffer->allow_user_free = 0;
Sherry Yang74310e02017-08-23 08:46:41 -0700500 binder_insert_allocated_buffer_locked(alloc, buffer);
Todd Kjos0c972a02017-06-29 12:01:41 -0700501 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
502 "%d: binder_alloc_buf size %zd got %pK\n",
503 alloc->pid, size, buffer);
504 buffer->data_size = data_size;
505 buffer->offsets_size = offsets_size;
506 buffer->async_transaction = is_async;
507 buffer->extra_buffers_size = extra_buffers_size;
508 if (is_async) {
509 alloc->free_async_space -= size + sizeof(struct binder_buffer);
510 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC,
511 "%d: binder_alloc_buf size %zd async free %zd\n",
512 alloc->pid, size, alloc->free_async_space);
513 }
514 return buffer;
Sherry Yang74310e02017-08-23 08:46:41 -0700515
516err_alloc_buf_struct_failed:
517 binder_update_page_range(alloc, 0,
518 (void *)PAGE_ALIGN((uintptr_t)buffer->data),
Sherry Yang6ae33b92017-09-16 01:11:56 -0400519 end_page_addr);
Sherry Yang74310e02017-08-23 08:46:41 -0700520 return ERR_PTR(-ENOMEM);
Todd Kjos0c972a02017-06-29 12:01:41 -0700521}
522
523/**
524 * binder_alloc_new_buf() - Allocate a new binder buffer
525 * @alloc: binder_alloc for this proc
526 * @data_size: size of user data buffer
527 * @offsets_size: user specified buffer offset
528 * @extra_buffers_size: size of extra space for meta-data (eg, security context)
529 * @is_async: buffer for async transaction
530 *
531 * Allocate a new buffer given the requested sizes. Returns
532 * the kernel version of the buffer pointer. The size allocated
533 * is the sum of the three given sizes (each rounded up to
534 * pointer-sized boundary)
535 *
536 * Return: The allocated buffer or %NULL if error
537 */
538struct binder_buffer *binder_alloc_new_buf(struct binder_alloc *alloc,
539 size_t data_size,
540 size_t offsets_size,
541 size_t extra_buffers_size,
542 int is_async)
543{
544 struct binder_buffer *buffer;
545
546 mutex_lock(&alloc->mutex);
547 buffer = binder_alloc_new_buf_locked(alloc, data_size, offsets_size,
548 extra_buffers_size, is_async);
549 mutex_unlock(&alloc->mutex);
550 return buffer;
551}
552
553static void *buffer_start_page(struct binder_buffer *buffer)
554{
Sherry Yang74310e02017-08-23 08:46:41 -0700555 return (void *)((uintptr_t)buffer->data & PAGE_MASK);
Todd Kjos0c972a02017-06-29 12:01:41 -0700556}
557
Sherry Yang74310e02017-08-23 08:46:41 -0700558static void *prev_buffer_end_page(struct binder_buffer *buffer)
Todd Kjos0c972a02017-06-29 12:01:41 -0700559{
Sherry Yang74310e02017-08-23 08:46:41 -0700560 return (void *)(((uintptr_t)(buffer->data) - 1) & PAGE_MASK);
Todd Kjos0c972a02017-06-29 12:01:41 -0700561}
562
563static void binder_delete_free_buffer(struct binder_alloc *alloc,
564 struct binder_buffer *buffer)
565{
566 struct binder_buffer *prev, *next = NULL;
Sherry Yang74310e02017-08-23 08:46:41 -0700567 bool to_free = true;
Todd Kjos0c972a02017-06-29 12:01:41 -0700568 BUG_ON(alloc->buffers.next == &buffer->entry);
Sherry Yange21762192017-08-23 08:46:39 -0700569 prev = binder_buffer_prev(buffer);
Todd Kjos0c972a02017-06-29 12:01:41 -0700570 BUG_ON(!prev->free);
Sherry Yang74310e02017-08-23 08:46:41 -0700571 if (prev_buffer_end_page(prev) == buffer_start_page(buffer)) {
572 to_free = false;
Todd Kjos0c972a02017-06-29 12:01:41 -0700573 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
Sherry Yang74310e02017-08-23 08:46:41 -0700574 "%d: merge free, buffer %pK share page with %pK\n",
575 alloc->pid, buffer->data, prev->data);
Todd Kjos0c972a02017-06-29 12:01:41 -0700576 }
577
578 if (!list_is_last(&buffer->entry, &alloc->buffers)) {
Sherry Yange21762192017-08-23 08:46:39 -0700579 next = binder_buffer_next(buffer);
Sherry Yang74310e02017-08-23 08:46:41 -0700580 if (buffer_start_page(next) == buffer_start_page(buffer)) {
581 to_free = false;
Todd Kjos0c972a02017-06-29 12:01:41 -0700582 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
Sherry Yang74310e02017-08-23 08:46:41 -0700583 "%d: merge free, buffer %pK share page with %pK\n",
584 alloc->pid,
585 buffer->data,
586 next->data);
Todd Kjos0c972a02017-06-29 12:01:41 -0700587 }
588 }
Sherry Yang74310e02017-08-23 08:46:41 -0700589
590 if (PAGE_ALIGNED(buffer->data)) {
Todd Kjos0c972a02017-06-29 12:01:41 -0700591 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
Sherry Yang74310e02017-08-23 08:46:41 -0700592 "%d: merge free, buffer start %pK is page aligned\n",
593 alloc->pid, buffer->data);
594 to_free = false;
Todd Kjos0c972a02017-06-29 12:01:41 -0700595 }
Sherry Yang74310e02017-08-23 08:46:41 -0700596
597 if (to_free) {
598 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
599 "%d: merge free, buffer %pK do not share page with %pK or %pK\n",
600 alloc->pid, buffer->data,
Sherry Yangae65c852017-10-20 20:58:59 -0400601 prev->data, next ? next->data : NULL);
Sherry Yang74310e02017-08-23 08:46:41 -0700602 binder_update_page_range(alloc, 0, buffer_start_page(buffer),
Sherry Yang6ae33b92017-09-16 01:11:56 -0400603 buffer_start_page(buffer) + PAGE_SIZE);
Sherry Yang74310e02017-08-23 08:46:41 -0700604 }
605 list_del(&buffer->entry);
606 kfree(buffer);
Todd Kjos0c972a02017-06-29 12:01:41 -0700607}
608
609static void binder_free_buf_locked(struct binder_alloc *alloc,
610 struct binder_buffer *buffer)
611{
612 size_t size, buffer_size;
613
614 buffer_size = binder_alloc_buffer_size(alloc, buffer);
615
616 size = ALIGN(buffer->data_size, sizeof(void *)) +
617 ALIGN(buffer->offsets_size, sizeof(void *)) +
618 ALIGN(buffer->extra_buffers_size, sizeof(void *));
619
620 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
621 "%d: binder_free_buf %pK size %zd buffer_size %zd\n",
622 alloc->pid, buffer, size, buffer_size);
623
624 BUG_ON(buffer->free);
625 BUG_ON(size > buffer_size);
626 BUG_ON(buffer->transaction != NULL);
Sherry Yang74310e02017-08-23 08:46:41 -0700627 BUG_ON(buffer->data < alloc->buffer);
628 BUG_ON(buffer->data > alloc->buffer + alloc->buffer_size);
Todd Kjos0c972a02017-06-29 12:01:41 -0700629
630 if (buffer->async_transaction) {
631 alloc->free_async_space += size + sizeof(struct binder_buffer);
632
633 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC_ASYNC,
634 "%d: binder_free_buf size %zd async free %zd\n",
635 alloc->pid, size, alloc->free_async_space);
636 }
637
638 binder_update_page_range(alloc, 0,
639 (void *)PAGE_ALIGN((uintptr_t)buffer->data),
Sherry Yang6ae33b92017-09-16 01:11:56 -0400640 (void *)(((uintptr_t)buffer->data + buffer_size) & PAGE_MASK));
Todd Kjos0c972a02017-06-29 12:01:41 -0700641
642 rb_erase(&buffer->rb_node, &alloc->allocated_buffers);
643 buffer->free = 1;
644 if (!list_is_last(&buffer->entry, &alloc->buffers)) {
Sherry Yange21762192017-08-23 08:46:39 -0700645 struct binder_buffer *next = binder_buffer_next(buffer);
Todd Kjos0c972a02017-06-29 12:01:41 -0700646
647 if (next->free) {
648 rb_erase(&next->rb_node, &alloc->free_buffers);
649 binder_delete_free_buffer(alloc, next);
650 }
651 }
652 if (alloc->buffers.next != &buffer->entry) {
Sherry Yange21762192017-08-23 08:46:39 -0700653 struct binder_buffer *prev = binder_buffer_prev(buffer);
Todd Kjos0c972a02017-06-29 12:01:41 -0700654
655 if (prev->free) {
656 binder_delete_free_buffer(alloc, buffer);
657 rb_erase(&prev->rb_node, &alloc->free_buffers);
658 buffer = prev;
659 }
660 }
661 binder_insert_free_buffer(alloc, buffer);
662}
663
664/**
665 * binder_alloc_free_buf() - free a binder buffer
666 * @alloc: binder_alloc for this proc
667 * @buffer: kernel pointer to buffer
668 *
669 * Free the buffer allocated via binder_alloc_new_buffer()
670 */
671void binder_alloc_free_buf(struct binder_alloc *alloc,
672 struct binder_buffer *buffer)
673{
674 mutex_lock(&alloc->mutex);
675 binder_free_buf_locked(alloc, buffer);
676 mutex_unlock(&alloc->mutex);
677}
678
679/**
680 * binder_alloc_mmap_handler() - map virtual address space for proc
681 * @alloc: alloc structure for this proc
682 * @vma: vma passed to mmap()
683 *
684 * Called by binder_mmap() to initialize the space specified in
685 * vma for allocating binder buffers
686 *
687 * Return:
688 * 0 = success
689 * -EBUSY = address space already mapped
690 * -ENOMEM = failed to map memory to given address space
691 */
692int binder_alloc_mmap_handler(struct binder_alloc *alloc,
693 struct vm_area_struct *vma)
694{
695 int ret;
696 struct vm_struct *area;
697 const char *failure_string;
698 struct binder_buffer *buffer;
699
700 mutex_lock(&binder_alloc_mmap_lock);
701 if (alloc->buffer) {
702 ret = -EBUSY;
703 failure_string = "already mapped";
704 goto err_already_mapped;
705 }
706
Ganesh Mahendranaac68302018-01-10 10:49:05 +0800707 area = get_vm_area(vma->vm_end - vma->vm_start, VM_ALLOC);
Todd Kjos0c972a02017-06-29 12:01:41 -0700708 if (area == NULL) {
709 ret = -ENOMEM;
710 failure_string = "get_vm_area";
711 goto err_get_vm_area_failed;
712 }
713 alloc->buffer = area->addr;
714 alloc->user_buffer_offset =
715 vma->vm_start - (uintptr_t)alloc->buffer;
716 mutex_unlock(&binder_alloc_mmap_lock);
717
718#ifdef CONFIG_CPU_CACHE_VIPT
719 if (cache_is_vipt_aliasing()) {
720 while (CACHE_COLOUR(
721 (vma->vm_start ^ (uint32_t)alloc->buffer))) {
722 pr_info("%s: %d %lx-%lx maps %pK bad alignment\n",
723 __func__, alloc->pid, vma->vm_start,
724 vma->vm_end, alloc->buffer);
725 vma->vm_start += PAGE_SIZE;
726 }
727 }
728#endif
Kees Cook6396bb22018-06-12 14:03:40 -0700729 alloc->pages = kcalloc((vma->vm_end - vma->vm_start) / PAGE_SIZE,
730 sizeof(alloc->pages[0]),
Todd Kjos0c972a02017-06-29 12:01:41 -0700731 GFP_KERNEL);
732 if (alloc->pages == NULL) {
733 ret = -ENOMEM;
734 failure_string = "alloc page array";
735 goto err_alloc_pages_failed;
736 }
737 alloc->buffer_size = vma->vm_end - vma->vm_start;
738
Sherry Yang74310e02017-08-23 08:46:41 -0700739 buffer = kzalloc(sizeof(*buffer), GFP_KERNEL);
740 if (!buffer) {
Todd Kjos0c972a02017-06-29 12:01:41 -0700741 ret = -ENOMEM;
Sherry Yang74310e02017-08-23 08:46:41 -0700742 failure_string = "alloc buffer struct";
743 goto err_alloc_buf_struct_failed;
Todd Kjos0c972a02017-06-29 12:01:41 -0700744 }
Sherry Yang74310e02017-08-23 08:46:41 -0700745
746 buffer->data = alloc->buffer;
Todd Kjos0c972a02017-06-29 12:01:41 -0700747 list_add(&buffer->entry, &alloc->buffers);
748 buffer->free = 1;
749 binder_insert_free_buffer(alloc, buffer);
750 alloc->free_async_space = alloc->buffer_size / 2;
Minchan Kimda1b9562018-08-23 14:29:56 +0900751 binder_alloc_set_vma(alloc, vma);
Sherry Yanga0c2baa2017-10-20 20:58:58 -0400752 mmgrab(alloc->vma_vm_mm);
Todd Kjos0c972a02017-06-29 12:01:41 -0700753
754 return 0;
755
Sherry Yang74310e02017-08-23 08:46:41 -0700756err_alloc_buf_struct_failed:
Todd Kjos0c972a02017-06-29 12:01:41 -0700757 kfree(alloc->pages);
758 alloc->pages = NULL;
759err_alloc_pages_failed:
760 mutex_lock(&binder_alloc_mmap_lock);
761 vfree(alloc->buffer);
762 alloc->buffer = NULL;
763err_get_vm_area_failed:
764err_already_mapped:
765 mutex_unlock(&binder_alloc_mmap_lock);
Sherry Yang128f3802018-08-07 12:57:13 -0700766 binder_alloc_debug(BINDER_DEBUG_USER_ERROR,
767 "%s: %d %lx-%lx %s failed %d\n", __func__,
768 alloc->pid, vma->vm_start, vma->vm_end,
769 failure_string, ret);
Todd Kjos0c972a02017-06-29 12:01:41 -0700770 return ret;
771}
772
773
774void binder_alloc_deferred_release(struct binder_alloc *alloc)
775{
776 struct rb_node *n;
777 int buffers, page_count;
Sherry Yang74310e02017-08-23 08:46:41 -0700778 struct binder_buffer *buffer;
Todd Kjos0c972a02017-06-29 12:01:41 -0700779
Todd Kjos0c972a02017-06-29 12:01:41 -0700780 buffers = 0;
781 mutex_lock(&alloc->mutex);
Minchan Kimda1b9562018-08-23 14:29:56 +0900782 BUG_ON(alloc->vma);
783
Todd Kjos0c972a02017-06-29 12:01:41 -0700784 while ((n = rb_first(&alloc->allocated_buffers))) {
Todd Kjos0c972a02017-06-29 12:01:41 -0700785 buffer = rb_entry(n, struct binder_buffer, rb_node);
786
787 /* Transaction should already have been freed */
788 BUG_ON(buffer->transaction);
789
790 binder_free_buf_locked(alloc, buffer);
791 buffers++;
792 }
793
Sherry Yang74310e02017-08-23 08:46:41 -0700794 while (!list_empty(&alloc->buffers)) {
795 buffer = list_first_entry(&alloc->buffers,
796 struct binder_buffer, entry);
797 WARN_ON(!buffer->free);
798
799 list_del(&buffer->entry);
800 WARN_ON_ONCE(!list_empty(&alloc->buffers));
801 kfree(buffer);
802 }
803
Todd Kjos0c972a02017-06-29 12:01:41 -0700804 page_count = 0;
805 if (alloc->pages) {
806 int i;
807
808 for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) {
809 void *page_addr;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700810 bool on_lru;
Todd Kjos0c972a02017-06-29 12:01:41 -0700811
Sherry Yangf2517eb2017-08-23 08:46:42 -0700812 if (!alloc->pages[i].page_ptr)
Todd Kjos0c972a02017-06-29 12:01:41 -0700813 continue;
814
Sherry Yangf2517eb2017-08-23 08:46:42 -0700815 on_lru = list_lru_del(&binder_alloc_lru,
816 &alloc->pages[i].lru);
Todd Kjos0c972a02017-06-29 12:01:41 -0700817 page_addr = alloc->buffer + i * PAGE_SIZE;
818 binder_alloc_debug(BINDER_DEBUG_BUFFER_ALLOC,
Sherry Yangf2517eb2017-08-23 08:46:42 -0700819 "%s: %d: page %d at %pK %s\n",
820 __func__, alloc->pid, i, page_addr,
821 on_lru ? "on lru" : "active");
Todd Kjos0c972a02017-06-29 12:01:41 -0700822 unmap_kernel_range((unsigned long)page_addr, PAGE_SIZE);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700823 __free_page(alloc->pages[i].page_ptr);
Todd Kjos0c972a02017-06-29 12:01:41 -0700824 page_count++;
825 }
826 kfree(alloc->pages);
827 vfree(alloc->buffer);
828 }
829 mutex_unlock(&alloc->mutex);
Sherry Yanga0c2baa2017-10-20 20:58:58 -0400830 if (alloc->vma_vm_mm)
831 mmdrop(alloc->vma_vm_mm);
Todd Kjos0c972a02017-06-29 12:01:41 -0700832
833 binder_alloc_debug(BINDER_DEBUG_OPEN_CLOSE,
834 "%s: %d buffers %d, pages %d\n",
835 __func__, alloc->pid, buffers, page_count);
836}
837
838static void print_binder_buffer(struct seq_file *m, const char *prefix,
839 struct binder_buffer *buffer)
840{
Martijn Coenenb05a68e2017-06-29 12:01:52 -0700841 seq_printf(m, "%s %d: %pK size %zd:%zd:%zd %s\n",
Todd Kjos0c972a02017-06-29 12:01:41 -0700842 prefix, buffer->debug_id, buffer->data,
843 buffer->data_size, buffer->offsets_size,
Martijn Coenenb05a68e2017-06-29 12:01:52 -0700844 buffer->extra_buffers_size,
Todd Kjos0c972a02017-06-29 12:01:41 -0700845 buffer->transaction ? "active" : "delivered");
846}
847
848/**
849 * binder_alloc_print_allocated() - print buffer info
850 * @m: seq_file for output via seq_printf()
851 * @alloc: binder_alloc for this proc
852 *
853 * Prints information about every buffer associated with
854 * the binder_alloc state to the given seq_file
855 */
856void binder_alloc_print_allocated(struct seq_file *m,
857 struct binder_alloc *alloc)
858{
859 struct rb_node *n;
860
861 mutex_lock(&alloc->mutex);
862 for (n = rb_first(&alloc->allocated_buffers); n != NULL; n = rb_next(n))
863 print_binder_buffer(m, " buffer",
864 rb_entry(n, struct binder_buffer, rb_node));
865 mutex_unlock(&alloc->mutex);
866}
867
868/**
Sherry Yang8ef46652017-08-31 11:56:36 -0700869 * binder_alloc_print_pages() - print page usage
870 * @m: seq_file for output via seq_printf()
871 * @alloc: binder_alloc for this proc
872 */
873void binder_alloc_print_pages(struct seq_file *m,
874 struct binder_alloc *alloc)
875{
876 struct binder_lru_page *page;
877 int i;
878 int active = 0;
879 int lru = 0;
880 int free = 0;
881
882 mutex_lock(&alloc->mutex);
883 for (i = 0; i < alloc->buffer_size / PAGE_SIZE; i++) {
884 page = &alloc->pages[i];
885 if (!page->page_ptr)
886 free++;
887 else if (list_empty(&page->lru))
888 active++;
889 else
890 lru++;
891 }
892 mutex_unlock(&alloc->mutex);
893 seq_printf(m, " pages: %d:%d:%d\n", active, lru, free);
Martijn Coenen8d9a3ab62017-11-13 10:06:56 +0100894 seq_printf(m, " pages high watermark: %zu\n", alloc->pages_high);
Sherry Yang8ef46652017-08-31 11:56:36 -0700895}
896
897/**
Todd Kjos0c972a02017-06-29 12:01:41 -0700898 * binder_alloc_get_allocated_count() - return count of buffers
899 * @alloc: binder_alloc for this proc
900 *
901 * Return: count of allocated buffers
902 */
903int binder_alloc_get_allocated_count(struct binder_alloc *alloc)
904{
905 struct rb_node *n;
906 int count = 0;
907
908 mutex_lock(&alloc->mutex);
909 for (n = rb_first(&alloc->allocated_buffers); n != NULL; n = rb_next(n))
910 count++;
911 mutex_unlock(&alloc->mutex);
912 return count;
913}
914
915
916/**
917 * binder_alloc_vma_close() - invalidate address space
918 * @alloc: binder_alloc for this proc
919 *
920 * Called from binder_vma_close() when releasing address space.
921 * Clears alloc->vma to prevent new incoming transactions from
922 * allocating more buffers.
923 */
924void binder_alloc_vma_close(struct binder_alloc *alloc)
925{
Minchan Kimda1b9562018-08-23 14:29:56 +0900926 binder_alloc_set_vma(alloc, NULL);
Todd Kjos0c972a02017-06-29 12:01:41 -0700927}
928
929/**
Sherry Yangf2517eb2017-08-23 08:46:42 -0700930 * binder_alloc_free_page() - shrinker callback to free pages
931 * @item: item to free
932 * @lock: lock protecting the item
933 * @cb_arg: callback argument
934 *
935 * Called from list_lru_walk() in binder_shrink_scan() to free
936 * up pages when the system is under memory pressure.
937 */
938enum lru_status binder_alloc_free_page(struct list_head *item,
939 struct list_lru_one *lru,
940 spinlock_t *lock,
941 void *cb_arg)
Todd Kjos324fa642018-11-06 15:56:31 -0800942 __must_hold(lock)
Sherry Yangf2517eb2017-08-23 08:46:42 -0700943{
944 struct mm_struct *mm = NULL;
945 struct binder_lru_page *page = container_of(item,
946 struct binder_lru_page,
947 lru);
948 struct binder_alloc *alloc;
949 uintptr_t page_addr;
950 size_t index;
Sherry Yanga1b22892017-10-03 16:15:00 -0700951 struct vm_area_struct *vma;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700952
953 alloc = page->alloc;
954 if (!mutex_trylock(&alloc->mutex))
955 goto err_get_alloc_mutex_failed;
956
957 if (!page->page_ptr)
958 goto err_page_already_freed;
959
960 index = page - alloc->pages;
961 page_addr = (uintptr_t)alloc->buffer + index * PAGE_SIZE;
Minchan Kimda1b9562018-08-23 14:29:56 +0900962 vma = binder_alloc_get_vma(alloc);
Sherry Yanga1b22892017-10-03 16:15:00 -0700963 if (vma) {
Sherry Yanga0c2baa2017-10-20 20:58:58 -0400964 if (!mmget_not_zero(alloc->vma_vm_mm))
965 goto err_mmget;
966 mm = alloc->vma_vm_mm;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700967 if (!down_write_trylock(&mm->mmap_sem))
968 goto err_down_write_mmap_sem_failed;
Sherry Yanga1b22892017-10-03 16:15:00 -0700969 }
Sherry Yangf2517eb2017-08-23 08:46:42 -0700970
Sherry Yanga1b22892017-10-03 16:15:00 -0700971 list_lru_isolate(lru, item);
972 spin_unlock(lock);
973
974 if (vma) {
Sherry Yange41e1642017-08-23 08:46:43 -0700975 trace_binder_unmap_user_start(alloc, index);
976
Sherry Yanga1b22892017-10-03 16:15:00 -0700977 zap_page_range(vma,
Sherry Yangf2517eb2017-08-23 08:46:42 -0700978 page_addr + alloc->user_buffer_offset,
979 PAGE_SIZE);
980
Sherry Yange41e1642017-08-23 08:46:43 -0700981 trace_binder_unmap_user_end(alloc, index);
982
Sherry Yangf2517eb2017-08-23 08:46:42 -0700983 up_write(&mm->mmap_sem);
984 mmput(mm);
985 }
986
Sherry Yange41e1642017-08-23 08:46:43 -0700987 trace_binder_unmap_kernel_start(alloc, index);
988
Sherry Yangf2517eb2017-08-23 08:46:42 -0700989 unmap_kernel_range(page_addr, PAGE_SIZE);
990 __free_page(page->page_ptr);
991 page->page_ptr = NULL;
992
Sherry Yange41e1642017-08-23 08:46:43 -0700993 trace_binder_unmap_kernel_end(alloc, index);
994
Sherry Yanga1b22892017-10-03 16:15:00 -0700995 spin_lock(lock);
Sherry Yangf2517eb2017-08-23 08:46:42 -0700996 mutex_unlock(&alloc->mutex);
Sherry Yanga1b22892017-10-03 16:15:00 -0700997 return LRU_REMOVED_RETRY;
Sherry Yangf2517eb2017-08-23 08:46:42 -0700998
999err_down_write_mmap_sem_failed:
Sherry Yanga1b22892017-10-03 16:15:00 -07001000 mmput_async(mm);
Sherry Yanga0c2baa2017-10-20 20:58:58 -04001001err_mmget:
Sherry Yangf2517eb2017-08-23 08:46:42 -07001002err_page_already_freed:
1003 mutex_unlock(&alloc->mutex);
1004err_get_alloc_mutex_failed:
1005 return LRU_SKIP;
1006}
1007
1008static unsigned long
1009binder_shrink_count(struct shrinker *shrink, struct shrink_control *sc)
1010{
1011 unsigned long ret = list_lru_count(&binder_alloc_lru);
1012 return ret;
1013}
1014
1015static unsigned long
1016binder_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
1017{
1018 unsigned long ret;
1019
1020 ret = list_lru_walk(&binder_alloc_lru, binder_alloc_free_page,
1021 NULL, sc->nr_to_scan);
1022 return ret;
1023}
1024
Sherry Yangde7bbe32017-10-06 16:12:05 -04001025static struct shrinker binder_shrinker = {
Sherry Yangf2517eb2017-08-23 08:46:42 -07001026 .count_objects = binder_shrink_count,
1027 .scan_objects = binder_shrink_scan,
1028 .seeks = DEFAULT_SEEKS,
1029};
1030
1031/**
Todd Kjos0c972a02017-06-29 12:01:41 -07001032 * binder_alloc_init() - called by binder_open() for per-proc initialization
1033 * @alloc: binder_alloc for this proc
1034 *
1035 * Called from binder_open() to initialize binder_alloc fields for
1036 * new binder proc
1037 */
1038void binder_alloc_init(struct binder_alloc *alloc)
1039{
Todd Kjos0c972a02017-06-29 12:01:41 -07001040 alloc->pid = current->group_leader->pid;
1041 mutex_init(&alloc->mutex);
Sherry Yang957ccc22017-08-31 10:26:06 -07001042 INIT_LIST_HEAD(&alloc->buffers);
Todd Kjos0c972a02017-06-29 12:01:41 -07001043}
1044
Tetsuo Handa533dfb22017-11-29 22:29:47 +09001045int binder_alloc_shrinker_init(void)
Sherry Yangf2517eb2017-08-23 08:46:42 -07001046{
Tetsuo Handa533dfb22017-11-29 22:29:47 +09001047 int ret = list_lru_init(&binder_alloc_lru);
1048
1049 if (ret == 0) {
1050 ret = register_shrinker(&binder_shrinker);
1051 if (ret)
1052 list_lru_destroy(&binder_alloc_lru);
1053 }
1054 return ret;
Sherry Yangf2517eb2017-08-23 08:46:42 -07001055}