1 // SPDX-License-Identifier: GPL-2.0-only 2 /* binder.c 3 * 4 * Android IPC Subsystem 5 * 6 * Copyright (C) 2007-2008 Google, Inc. 7 */ 8 9 /* 10 * Locking overview 11 * 12 * There are 3 main spinlocks which must be acquired in the 13 * order shown: 14 * 15 * 1) proc->outer_lock : protects binder_ref 16 * binder_proc_lock() and binder_proc_unlock() are 17 * used to acq/rel. 18 * 2) node->lock : protects most fields of binder_node. 19 * binder_node_lock() and binder_node_unlock() are 20 * used to acq/rel 21 * 3) proc->inner_lock : protects the thread and node lists 22 * (proc->threads, proc->waiting_threads, proc->nodes) 23 * and all todo lists associated with the binder_proc 24 * (proc->todo, thread->todo, proc->delivered_death and 25 * node->async_todo), as well as thread->transaction_stack 26 * binder_inner_proc_lock() and binder_inner_proc_unlock() 27 * are used to acq/rel 28 * 29 * Any lock under procA must never be nested under any lock at the same 30 * level or below on procB. 31 * 32 * Functions that require a lock held on entry indicate which lock 33 * in the suffix of the function name: 34 * 35 * foo_olocked() : requires node->outer_lock 36 * foo_nlocked() : requires node->lock 37 * foo_ilocked() : requires proc->inner_lock 38 * foo_oilocked(): requires proc->outer_lock and proc->inner_lock 39 * foo_nilocked(): requires node->lock and proc->inner_lock 40 * ... 41 */ 42 43 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 44 45 #include <linux/fdtable.h> 46 #include <linux/file.h> 47 #include <linux/freezer.h> 48 #include <linux/fs.h> 49 #include <linux/list.h> 50 #include <linux/miscdevice.h> 51 #include <linux/module.h> 52 #include <linux/mutex.h> 53 #include <linux/nsproxy.h> 54 #include <linux/poll.h> 55 #include <linux/debugfs.h> 56 #include <linux/rbtree.h> 57 #include <linux/sched/signal.h> 58 #include <linux/sched/mm.h> 59 #include <linux/seq_file.h> 60 #include <linux/string.h> 61 #include <linux/uaccess.h> 62 #include <linux/pid_namespace.h> 63 #include <linux/security.h> 64 #include <linux/spinlock.h> 65 #include <linux/ratelimit.h> 66 #include <linux/syscalls.h> 67 #include <linux/task_work.h> 68 #include <linux/sizes.h> 69 70 #include <uapi/linux/android/binder.h> 71 72 #include <linux/cacheflush.h> 73 74 #include "binder_internal.h" 75 #include "binder_trace.h" 76 77 static HLIST_HEAD(binder_deferred_list); 78 static DEFINE_MUTEX(binder_deferred_lock); 79 80 static HLIST_HEAD(binder_devices); 81 static HLIST_HEAD(binder_procs); 82 static DEFINE_MUTEX(binder_procs_lock); 83 84 static HLIST_HEAD(binder_dead_nodes); 85 static DEFINE_SPINLOCK(binder_dead_nodes_lock); 86 87 static struct dentry *binder_debugfs_dir_entry_root; 88 static struct dentry *binder_debugfs_dir_entry_proc; 89 static atomic_t binder_last_id; 90 91 static int proc_show(struct seq_file *m, void *unused); 92 DEFINE_SHOW_ATTRIBUTE(proc); 93 94 #define FORBIDDEN_MMAP_FLAGS (VM_WRITE) 95 96 enum { 97 BINDER_DEBUG_USER_ERROR = 1U << 0, 98 BINDER_DEBUG_FAILED_TRANSACTION = 1U << 1, 99 BINDER_DEBUG_DEAD_TRANSACTION = 1U << 2, 100 BINDER_DEBUG_OPEN_CLOSE = 1U << 3, 101 BINDER_DEBUG_DEAD_BINDER = 1U << 4, 102 BINDER_DEBUG_DEATH_NOTIFICATION = 1U << 5, 103 BINDER_DEBUG_READ_WRITE = 1U << 6, 104 BINDER_DEBUG_USER_REFS = 1U << 7, 105 BINDER_DEBUG_THREADS = 1U << 8, 106 BINDER_DEBUG_TRANSACTION = 1U << 9, 107 BINDER_DEBUG_TRANSACTION_COMPLETE = 1U << 10, 108 BINDER_DEBUG_FREE_BUFFER = 1U << 11, 109 BINDER_DEBUG_INTERNAL_REFS = 1U << 12, 110 BINDER_DEBUG_PRIORITY_CAP = 1U << 13, 111 BINDER_DEBUG_SPINLOCKS = 1U << 14, 112 }; 113 static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR | 114 BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION; 115 module_param_named(debug_mask, binder_debug_mask, uint, 0644); 116 117 char *binder_devices_param = CONFIG_ANDROID_BINDER_DEVICES; 118 module_param_named(devices, binder_devices_param, charp, 0444); 119 120 static DECLARE_WAIT_QUEUE_HEAD(binder_user_error_wait); 121 static int binder_stop_on_user_error; 122 123 static int binder_set_stop_on_user_error(const char *val, 124 const struct kernel_param *kp) 125 { 126 int ret; 127 128 ret = param_set_int(val, kp); 129 if (binder_stop_on_user_error < 2) 130 wake_up(&binder_user_error_wait); 131 return ret; 132 } 133 module_param_call(stop_on_user_error, binder_set_stop_on_user_error, 134 param_get_int, &binder_stop_on_user_error, 0644); 135 136 #define binder_debug(mask, x...) \ 137 do { \ 138 if (binder_debug_mask & mask) \ 139 pr_info_ratelimited(x); \ 140 } while (0) 141 142 #define binder_user_error(x...) \ 143 do { \ 144 if (binder_debug_mask & BINDER_DEBUG_USER_ERROR) \ 145 pr_info_ratelimited(x); \ 146 if (binder_stop_on_user_error) \ 147 binder_stop_on_user_error = 2; \ 148 } while (0) 149 150 #define to_flat_binder_object(hdr) \ 151 container_of(hdr, struct flat_binder_object, hdr) 152 153 #define to_binder_fd_object(hdr) container_of(hdr, struct binder_fd_object, hdr) 154 155 #define to_binder_buffer_object(hdr) \ 156 container_of(hdr, struct binder_buffer_object, hdr) 157 158 #define to_binder_fd_array_object(hdr) \ 159 container_of(hdr, struct binder_fd_array_object, hdr) 160 161 static struct binder_stats binder_stats; 162 163 static inline void binder_stats_deleted(enum binder_stat_types type) 164 { 165 atomic_inc(&binder_stats.obj_deleted[type]); 166 } 167 168 static inline void binder_stats_created(enum binder_stat_types type) 169 { 170 atomic_inc(&binder_stats.obj_created[type]); 171 } 172 173 struct binder_transaction_log binder_transaction_log; 174 struct binder_transaction_log binder_transaction_log_failed; 175 176 static struct binder_transaction_log_entry *binder_transaction_log_add( 177 struct binder_transaction_log *log) 178 { 179 struct binder_transaction_log_entry *e; 180 unsigned int cur = atomic_inc_return(&log->cur); 181 182 if (cur >= ARRAY_SIZE(log->entry)) 183 log->full = true; 184 e = &log->entry[cur % ARRAY_SIZE(log->entry)]; 185 WRITE_ONCE(e->debug_id_done, 0); 186 /* 187 * write-barrier to synchronize access to e->debug_id_done. 188 * We make sure the initialized 0 value is seen before 189 * memset() other fields are zeroed by memset. 190 */ 191 smp_wmb(); 192 memset(e, 0, sizeof(*e)); 193 return e; 194 } 195 196 enum binder_deferred_state { 197 BINDER_DEFERRED_FLUSH = 0x01, 198 BINDER_DEFERRED_RELEASE = 0x02, 199 }; 200 201 enum { 202 BINDER_LOOPER_STATE_REGISTERED = 0x01, 203 BINDER_LOOPER_STATE_ENTERED = 0x02, 204 BINDER_LOOPER_STATE_EXITED = 0x04, 205 BINDER_LOOPER_STATE_INVALID = 0x08, 206 BINDER_LOOPER_STATE_WAITING = 0x10, 207 BINDER_LOOPER_STATE_POLL = 0x20, 208 }; 209 210 /** 211 * binder_proc_lock() - Acquire outer lock for given binder_proc 212 * @proc: struct binder_proc to acquire 213 * 214 * Acquires proc->outer_lock. Used to protect binder_ref 215 * structures associated with the given proc. 216 */ 217 #define binder_proc_lock(proc) _binder_proc_lock(proc, __LINE__) 218 static void 219 _binder_proc_lock(struct binder_proc *proc, int line) 220 __acquires(&proc->outer_lock) 221 { 222 binder_debug(BINDER_DEBUG_SPINLOCKS, 223 "%s: line=%d\n", __func__, line); 224 spin_lock(&proc->outer_lock); 225 } 226 227 /** 228 * binder_proc_unlock() - Release spinlock for given binder_proc 229 * @proc: struct binder_proc to acquire 230 * 231 * Release lock acquired via binder_proc_lock() 232 */ 233 #define binder_proc_unlock(_proc) _binder_proc_unlock(_proc, __LINE__) 234 static void 235 _binder_proc_unlock(struct binder_proc *proc, int line) 236 __releases(&proc->outer_lock) 237 { 238 binder_debug(BINDER_DEBUG_SPINLOCKS, 239 "%s: line=%d\n", __func__, line); 240 spin_unlock(&proc->outer_lock); 241 } 242 243 /** 244 * binder_inner_proc_lock() - Acquire inner lock for given binder_proc 245 * @proc: struct binder_proc to acquire 246 * 247 * Acquires proc->inner_lock. Used to protect todo lists 248 */ 249 #define binder_inner_proc_lock(proc) _binder_inner_proc_lock(proc, __LINE__) 250 static void 251 _binder_inner_proc_lock(struct binder_proc *proc, int line) 252 __acquires(&proc->inner_lock) 253 { 254 binder_debug(BINDER_DEBUG_SPINLOCKS, 255 "%s: line=%d\n", __func__, line); 256 spin_lock(&proc->inner_lock); 257 } 258 259 /** 260 * binder_inner_proc_unlock() - Release inner lock for given binder_proc 261 * @proc: struct binder_proc to acquire 262 * 263 * Release lock acquired via binder_inner_proc_lock() 264 */ 265 #define binder_inner_proc_unlock(proc) _binder_inner_proc_unlock(proc, __LINE__) 266 static void 267 _binder_inner_proc_unlock(struct binder_proc *proc, int line) 268 __releases(&proc->inner_lock) 269 { 270 binder_debug(BINDER_DEBUG_SPINLOCKS, 271 "%s: line=%d\n", __func__, line); 272 spin_unlock(&proc->inner_lock); 273 } 274 275 /** 276 * binder_node_lock() - Acquire spinlock for given binder_node 277 * @node: struct binder_node to acquire 278 * 279 * Acquires node->lock. Used to protect binder_node fields 280 */ 281 #define binder_node_lock(node) _binder_node_lock(node, __LINE__) 282 static void 283 _binder_node_lock(struct binder_node *node, int line) 284 __acquires(&node->lock) 285 { 286 binder_debug(BINDER_DEBUG_SPINLOCKS, 287 "%s: line=%d\n", __func__, line); 288 spin_lock(&node->lock); 289 } 290 291 /** 292 * binder_node_unlock() - Release spinlock for given binder_proc 293 * @node: struct binder_node to acquire 294 * 295 * Release lock acquired via binder_node_lock() 296 */ 297 #define binder_node_unlock(node) _binder_node_unlock(node, __LINE__) 298 static void 299 _binder_node_unlock(struct binder_node *node, int line) 300 __releases(&node->lock) 301 { 302 binder_debug(BINDER_DEBUG_SPINLOCKS, 303 "%s: line=%d\n", __func__, line); 304 spin_unlock(&node->lock); 305 } 306 307 /** 308 * binder_node_inner_lock() - Acquire node and inner locks 309 * @node: struct binder_node to acquire 310 * 311 * Acquires node->lock. If node->proc also acquires 312 * proc->inner_lock. Used to protect binder_node fields 313 */ 314 #define binder_node_inner_lock(node) _binder_node_inner_lock(node, __LINE__) 315 static void 316 _binder_node_inner_lock(struct binder_node *node, int line) 317 __acquires(&node->lock) __acquires(&node->proc->inner_lock) 318 { 319 binder_debug(BINDER_DEBUG_SPINLOCKS, 320 "%s: line=%d\n", __func__, line); 321 spin_lock(&node->lock); 322 if (node->proc) 323 binder_inner_proc_lock(node->proc); 324 else 325 /* annotation for sparse */ 326 __acquire(&node->proc->inner_lock); 327 } 328 329 /** 330 * binder_node_unlock() - Release node and inner locks 331 * @node: struct binder_node to acquire 332 * 333 * Release lock acquired via binder_node_lock() 334 */ 335 #define binder_node_inner_unlock(node) _binder_node_inner_unlock(node, __LINE__) 336 static void 337 _binder_node_inner_unlock(struct binder_node *node, int line) 338 __releases(&node->lock) __releases(&node->proc->inner_lock) 339 { 340 struct binder_proc *proc = node->proc; 341 342 binder_debug(BINDER_DEBUG_SPINLOCKS, 343 "%s: line=%d\n", __func__, line); 344 if (proc) 345 binder_inner_proc_unlock(proc); 346 else 347 /* annotation for sparse */ 348 __release(&node->proc->inner_lock); 349 spin_unlock(&node->lock); 350 } 351 352 static bool binder_worklist_empty_ilocked(struct list_head *list) 353 { 354 return list_empty(list); 355 } 356 357 /** 358 * binder_worklist_empty() - Check if no items on the work list 359 * @proc: binder_proc associated with list 360 * @list: list to check 361 * 362 * Return: true if there are no items on list, else false 363 */ 364 static bool binder_worklist_empty(struct binder_proc *proc, 365 struct list_head *list) 366 { 367 bool ret; 368 369 binder_inner_proc_lock(proc); 370 ret = binder_worklist_empty_ilocked(list); 371 binder_inner_proc_unlock(proc); 372 return ret; 373 } 374 375 /** 376 * binder_enqueue_work_ilocked() - Add an item to the work list 377 * @work: struct binder_work to add to list 378 * @target_list: list to add work to 379 * 380 * Adds the work to the specified list. Asserts that work 381 * is not already on a list. 382 * 383 * Requires the proc->inner_lock to be held. 384 */ 385 static void 386 binder_enqueue_work_ilocked(struct binder_work *work, 387 struct list_head *target_list) 388 { 389 BUG_ON(target_list == NULL); 390 BUG_ON(work->entry.next && !list_empty(&work->entry)); 391 list_add_tail(&work->entry, target_list); 392 } 393 394 /** 395 * binder_enqueue_deferred_thread_work_ilocked() - Add deferred thread work 396 * @thread: thread to queue work to 397 * @work: struct binder_work to add to list 398 * 399 * Adds the work to the todo list of the thread. Doesn't set the process_todo 400 * flag, which means that (if it wasn't already set) the thread will go to 401 * sleep without handling this work when it calls read. 402 * 403 * Requires the proc->inner_lock to be held. 404 */ 405 static void 406 binder_enqueue_deferred_thread_work_ilocked(struct binder_thread *thread, 407 struct binder_work *work) 408 { 409 WARN_ON(!list_empty(&thread->waiting_thread_node)); 410 binder_enqueue_work_ilocked(work, &thread->todo); 411 } 412 413 /** 414 * binder_enqueue_thread_work_ilocked() - Add an item to the thread work list 415 * @thread: thread to queue work to 416 * @work: struct binder_work to add to list 417 * 418 * Adds the work to the todo list of the thread, and enables processing 419 * of the todo queue. 420 * 421 * Requires the proc->inner_lock to be held. 422 */ 423 static void 424 binder_enqueue_thread_work_ilocked(struct binder_thread *thread, 425 struct binder_work *work) 426 { 427 WARN_ON(!list_empty(&thread->waiting_thread_node)); 428 binder_enqueue_work_ilocked(work, &thread->todo); 429 thread->process_todo = true; 430 } 431 432 /** 433 * binder_enqueue_thread_work() - Add an item to the thread work list 434 * @thread: thread to queue work to 435 * @work: struct binder_work to add to list 436 * 437 * Adds the work to the todo list of the thread, and enables processing 438 * of the todo queue. 439 */ 440 static void 441 binder_enqueue_thread_work(struct binder_thread *thread, 442 struct binder_work *work) 443 { 444 binder_inner_proc_lock(thread->proc); 445 binder_enqueue_thread_work_ilocked(thread, work); 446 binder_inner_proc_unlock(thread->proc); 447 } 448 449 static void 450 binder_dequeue_work_ilocked(struct binder_work *work) 451 { 452 list_del_init(&work->entry); 453 } 454 455 /** 456 * binder_dequeue_work() - Removes an item from the work list 457 * @proc: binder_proc associated with list 458 * @work: struct binder_work to remove from list 459 * 460 * Removes the specified work item from whatever list it is on. 461 * Can safely be called if work is not on any list. 462 */ 463 static void 464 binder_dequeue_work(struct binder_proc *proc, struct binder_work *work) 465 { 466 binder_inner_proc_lock(proc); 467 binder_dequeue_work_ilocked(work); 468 binder_inner_proc_unlock(proc); 469 } 470 471 static struct binder_work *binder_dequeue_work_head_ilocked( 472 struct list_head *list) 473 { 474 struct binder_work *w; 475 476 w = list_first_entry_or_null(list, struct binder_work, entry); 477 if (w) 478 list_del_init(&w->entry); 479 return w; 480 } 481 482 static void 483 binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer); 484 static void binder_free_thread(struct binder_thread *thread); 485 static void binder_free_proc(struct binder_proc *proc); 486 static void binder_inc_node_tmpref_ilocked(struct binder_node *node); 487 488 static bool binder_has_work_ilocked(struct binder_thread *thread, 489 bool do_proc_work) 490 { 491 return thread->process_todo || 492 thread->looper_need_return || 493 (do_proc_work && 494 !binder_worklist_empty_ilocked(&thread->proc->todo)); 495 } 496 497 static bool binder_has_work(struct binder_thread *thread, bool do_proc_work) 498 { 499 bool has_work; 500 501 binder_inner_proc_lock(thread->proc); 502 has_work = binder_has_work_ilocked(thread, do_proc_work); 503 binder_inner_proc_unlock(thread->proc); 504 505 return has_work; 506 } 507 508 static bool binder_available_for_proc_work_ilocked(struct binder_thread *thread) 509 { 510 return !thread->transaction_stack && 511 binder_worklist_empty_ilocked(&thread->todo) && 512 (thread->looper & (BINDER_LOOPER_STATE_ENTERED | 513 BINDER_LOOPER_STATE_REGISTERED)); 514 } 515 516 static void binder_wakeup_poll_threads_ilocked(struct binder_proc *proc, 517 bool sync) 518 { 519 struct rb_node *n; 520 struct binder_thread *thread; 521 522 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) { 523 thread = rb_entry(n, struct binder_thread, rb_node); 524 if (thread->looper & BINDER_LOOPER_STATE_POLL && 525 binder_available_for_proc_work_ilocked(thread)) { 526 if (sync) 527 wake_up_interruptible_sync(&thread->wait); 528 else 529 wake_up_interruptible(&thread->wait); 530 } 531 } 532 } 533 534 /** 535 * binder_select_thread_ilocked() - selects a thread for doing proc work. 536 * @proc: process to select a thread from 537 * 538 * Note that calling this function moves the thread off the waiting_threads 539 * list, so it can only be woken up by the caller of this function, or a 540 * signal. Therefore, callers *should* always wake up the thread this function 541 * returns. 542 * 543 * Return: If there's a thread currently waiting for process work, 544 * returns that thread. Otherwise returns NULL. 545 */ 546 static struct binder_thread * 547 binder_select_thread_ilocked(struct binder_proc *proc) 548 { 549 struct binder_thread *thread; 550 551 assert_spin_locked(&proc->inner_lock); 552 thread = list_first_entry_or_null(&proc->waiting_threads, 553 struct binder_thread, 554 waiting_thread_node); 555 556 if (thread) 557 list_del_init(&thread->waiting_thread_node); 558 559 return thread; 560 } 561 562 /** 563 * binder_wakeup_thread_ilocked() - wakes up a thread for doing proc work. 564 * @proc: process to wake up a thread in 565 * @thread: specific thread to wake-up (may be NULL) 566 * @sync: whether to do a synchronous wake-up 567 * 568 * This function wakes up a thread in the @proc process. 569 * The caller may provide a specific thread to wake-up in 570 * the @thread parameter. If @thread is NULL, this function 571 * will wake up threads that have called poll(). 572 * 573 * Note that for this function to work as expected, callers 574 * should first call binder_select_thread() to find a thread 575 * to handle the work (if they don't have a thread already), 576 * and pass the result into the @thread parameter. 577 */ 578 static void binder_wakeup_thread_ilocked(struct binder_proc *proc, 579 struct binder_thread *thread, 580 bool sync) 581 { 582 assert_spin_locked(&proc->inner_lock); 583 584 if (thread) { 585 if (sync) 586 wake_up_interruptible_sync(&thread->wait); 587 else 588 wake_up_interruptible(&thread->wait); 589 return; 590 } 591 592 /* Didn't find a thread waiting for proc work; this can happen 593 * in two scenarios: 594 * 1. All threads are busy handling transactions 595 * In that case, one of those threads should call back into 596 * the kernel driver soon and pick up this work. 597 * 2. Threads are using the (e)poll interface, in which case 598 * they may be blocked on the waitqueue without having been 599 * added to waiting_threads. For this case, we just iterate 600 * over all threads not handling transaction work, and 601 * wake them all up. We wake all because we don't know whether 602 * a thread that called into (e)poll is handling non-binder 603 * work currently. 604 */ 605 binder_wakeup_poll_threads_ilocked(proc, sync); 606 } 607 608 static void binder_wakeup_proc_ilocked(struct binder_proc *proc) 609 { 610 struct binder_thread *thread = binder_select_thread_ilocked(proc); 611 612 binder_wakeup_thread_ilocked(proc, thread, /* sync = */false); 613 } 614 615 static void binder_set_nice(long nice) 616 { 617 long min_nice; 618 619 if (can_nice(current, nice)) { 620 set_user_nice(current, nice); 621 return; 622 } 623 min_nice = rlimit_to_nice(rlimit(RLIMIT_NICE)); 624 binder_debug(BINDER_DEBUG_PRIORITY_CAP, 625 "%d: nice value %ld not allowed use %ld instead\n", 626 current->pid, nice, min_nice); 627 set_user_nice(current, min_nice); 628 if (min_nice <= MAX_NICE) 629 return; 630 binder_user_error("%d RLIMIT_NICE not set\n", current->pid); 631 } 632 633 static struct binder_node *binder_get_node_ilocked(struct binder_proc *proc, 634 binder_uintptr_t ptr) 635 { 636 struct rb_node *n = proc->nodes.rb_node; 637 struct binder_node *node; 638 639 assert_spin_locked(&proc->inner_lock); 640 641 while (n) { 642 node = rb_entry(n, struct binder_node, rb_node); 643 644 if (ptr < node->ptr) 645 n = n->rb_left; 646 else if (ptr > node->ptr) 647 n = n->rb_right; 648 else { 649 /* 650 * take an implicit weak reference 651 * to ensure node stays alive until 652 * call to binder_put_node() 653 */ 654 binder_inc_node_tmpref_ilocked(node); 655 return node; 656 } 657 } 658 return NULL; 659 } 660 661 static struct binder_node *binder_get_node(struct binder_proc *proc, 662 binder_uintptr_t ptr) 663 { 664 struct binder_node *node; 665 666 binder_inner_proc_lock(proc); 667 node = binder_get_node_ilocked(proc, ptr); 668 binder_inner_proc_unlock(proc); 669 return node; 670 } 671 672 static struct binder_node *binder_init_node_ilocked( 673 struct binder_proc *proc, 674 struct binder_node *new_node, 675 struct flat_binder_object *fp) 676 { 677 struct rb_node **p = &proc->nodes.rb_node; 678 struct rb_node *parent = NULL; 679 struct binder_node *node; 680 binder_uintptr_t ptr = fp ? fp->binder : 0; 681 binder_uintptr_t cookie = fp ? fp->cookie : 0; 682 __u32 flags = fp ? fp->flags : 0; 683 684 assert_spin_locked(&proc->inner_lock); 685 686 while (*p) { 687 688 parent = *p; 689 node = rb_entry(parent, struct binder_node, rb_node); 690 691 if (ptr < node->ptr) 692 p = &(*p)->rb_left; 693 else if (ptr > node->ptr) 694 p = &(*p)->rb_right; 695 else { 696 /* 697 * A matching node is already in 698 * the rb tree. Abandon the init 699 * and return it. 700 */ 701 binder_inc_node_tmpref_ilocked(node); 702 return node; 703 } 704 } 705 node = new_node; 706 binder_stats_created(BINDER_STAT_NODE); 707 node->tmp_refs++; 708 rb_link_node(&node->rb_node, parent, p); 709 rb_insert_color(&node->rb_node, &proc->nodes); 710 node->debug_id = atomic_inc_return(&binder_last_id); 711 node->proc = proc; 712 node->ptr = ptr; 713 node->cookie = cookie; 714 node->work.type = BINDER_WORK_NODE; 715 node->min_priority = flags & FLAT_BINDER_FLAG_PRIORITY_MASK; 716 node->accept_fds = !!(flags & FLAT_BINDER_FLAG_ACCEPTS_FDS); 717 node->txn_security_ctx = !!(flags & FLAT_BINDER_FLAG_TXN_SECURITY_CTX); 718 spin_lock_init(&node->lock); 719 INIT_LIST_HEAD(&node->work.entry); 720 INIT_LIST_HEAD(&node->async_todo); 721 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 722 "%d:%d node %d u%016llx c%016llx created\n", 723 proc->pid, current->pid, node->debug_id, 724 (u64)node->ptr, (u64)node->cookie); 725 726 return node; 727 } 728 729 static struct binder_node *binder_new_node(struct binder_proc *proc, 730 struct flat_binder_object *fp) 731 { 732 struct binder_node *node; 733 struct binder_node *new_node = kzalloc(sizeof(*node), GFP_KERNEL); 734 735 if (!new_node) 736 return NULL; 737 binder_inner_proc_lock(proc); 738 node = binder_init_node_ilocked(proc, new_node, fp); 739 binder_inner_proc_unlock(proc); 740 if (node != new_node) 741 /* 742 * The node was already added by another thread 743 */ 744 kfree(new_node); 745 746 return node; 747 } 748 749 static void binder_free_node(struct binder_node *node) 750 { 751 kfree(node); 752 binder_stats_deleted(BINDER_STAT_NODE); 753 } 754 755 static int binder_inc_node_nilocked(struct binder_node *node, int strong, 756 int internal, 757 struct list_head *target_list) 758 { 759 struct binder_proc *proc = node->proc; 760 761 assert_spin_locked(&node->lock); 762 if (proc) 763 assert_spin_locked(&proc->inner_lock); 764 if (strong) { 765 if (internal) { 766 if (target_list == NULL && 767 node->internal_strong_refs == 0 && 768 !(node->proc && 769 node == node->proc->context->binder_context_mgr_node && 770 node->has_strong_ref)) { 771 pr_err("invalid inc strong node for %d\n", 772 node->debug_id); 773 return -EINVAL; 774 } 775 node->internal_strong_refs++; 776 } else 777 node->local_strong_refs++; 778 if (!node->has_strong_ref && target_list) { 779 struct binder_thread *thread = container_of(target_list, 780 struct binder_thread, todo); 781 binder_dequeue_work_ilocked(&node->work); 782 BUG_ON(&thread->todo != target_list); 783 binder_enqueue_deferred_thread_work_ilocked(thread, 784 &node->work); 785 } 786 } else { 787 if (!internal) 788 node->local_weak_refs++; 789 if (!node->has_weak_ref && list_empty(&node->work.entry)) { 790 if (target_list == NULL) { 791 pr_err("invalid inc weak node for %d\n", 792 node->debug_id); 793 return -EINVAL; 794 } 795 /* 796 * See comment above 797 */ 798 binder_enqueue_work_ilocked(&node->work, target_list); 799 } 800 } 801 return 0; 802 } 803 804 static int binder_inc_node(struct binder_node *node, int strong, int internal, 805 struct list_head *target_list) 806 { 807 int ret; 808 809 binder_node_inner_lock(node); 810 ret = binder_inc_node_nilocked(node, strong, internal, target_list); 811 binder_node_inner_unlock(node); 812 813 return ret; 814 } 815 816 static bool binder_dec_node_nilocked(struct binder_node *node, 817 int strong, int internal) 818 { 819 struct binder_proc *proc = node->proc; 820 821 assert_spin_locked(&node->lock); 822 if (proc) 823 assert_spin_locked(&proc->inner_lock); 824 if (strong) { 825 if (internal) 826 node->internal_strong_refs--; 827 else 828 node->local_strong_refs--; 829 if (node->local_strong_refs || node->internal_strong_refs) 830 return false; 831 } else { 832 if (!internal) 833 node->local_weak_refs--; 834 if (node->local_weak_refs || node->tmp_refs || 835 !hlist_empty(&node->refs)) 836 return false; 837 } 838 839 if (proc && (node->has_strong_ref || node->has_weak_ref)) { 840 if (list_empty(&node->work.entry)) { 841 binder_enqueue_work_ilocked(&node->work, &proc->todo); 842 binder_wakeup_proc_ilocked(proc); 843 } 844 } else { 845 if (hlist_empty(&node->refs) && !node->local_strong_refs && 846 !node->local_weak_refs && !node->tmp_refs) { 847 if (proc) { 848 binder_dequeue_work_ilocked(&node->work); 849 rb_erase(&node->rb_node, &proc->nodes); 850 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 851 "refless node %d deleted\n", 852 node->debug_id); 853 } else { 854 BUG_ON(!list_empty(&node->work.entry)); 855 spin_lock(&binder_dead_nodes_lock); 856 /* 857 * tmp_refs could have changed so 858 * check it again 859 */ 860 if (node->tmp_refs) { 861 spin_unlock(&binder_dead_nodes_lock); 862 return false; 863 } 864 hlist_del(&node->dead_node); 865 spin_unlock(&binder_dead_nodes_lock); 866 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 867 "dead node %d deleted\n", 868 node->debug_id); 869 } 870 return true; 871 } 872 } 873 return false; 874 } 875 876 static void binder_dec_node(struct binder_node *node, int strong, int internal) 877 { 878 bool free_node; 879 880 binder_node_inner_lock(node); 881 free_node = binder_dec_node_nilocked(node, strong, internal); 882 binder_node_inner_unlock(node); 883 if (free_node) 884 binder_free_node(node); 885 } 886 887 static void binder_inc_node_tmpref_ilocked(struct binder_node *node) 888 { 889 /* 890 * No call to binder_inc_node() is needed since we 891 * don't need to inform userspace of any changes to 892 * tmp_refs 893 */ 894 node->tmp_refs++; 895 } 896 897 /** 898 * binder_inc_node_tmpref() - take a temporary reference on node 899 * @node: node to reference 900 * 901 * Take reference on node to prevent the node from being freed 902 * while referenced only by a local variable. The inner lock is 903 * needed to serialize with the node work on the queue (which 904 * isn't needed after the node is dead). If the node is dead 905 * (node->proc is NULL), use binder_dead_nodes_lock to protect 906 * node->tmp_refs against dead-node-only cases where the node 907 * lock cannot be acquired (eg traversing the dead node list to 908 * print nodes) 909 */ 910 static void binder_inc_node_tmpref(struct binder_node *node) 911 { 912 binder_node_lock(node); 913 if (node->proc) 914 binder_inner_proc_lock(node->proc); 915 else 916 spin_lock(&binder_dead_nodes_lock); 917 binder_inc_node_tmpref_ilocked(node); 918 if (node->proc) 919 binder_inner_proc_unlock(node->proc); 920 else 921 spin_unlock(&binder_dead_nodes_lock); 922 binder_node_unlock(node); 923 } 924 925 /** 926 * binder_dec_node_tmpref() - remove a temporary reference on node 927 * @node: node to reference 928 * 929 * Release temporary reference on node taken via binder_inc_node_tmpref() 930 */ 931 static void binder_dec_node_tmpref(struct binder_node *node) 932 { 933 bool free_node; 934 935 binder_node_inner_lock(node); 936 if (!node->proc) 937 spin_lock(&binder_dead_nodes_lock); 938 else 939 __acquire(&binder_dead_nodes_lock); 940 node->tmp_refs--; 941 BUG_ON(node->tmp_refs < 0); 942 if (!node->proc) 943 spin_unlock(&binder_dead_nodes_lock); 944 else 945 __release(&binder_dead_nodes_lock); 946 /* 947 * Call binder_dec_node() to check if all refcounts are 0 948 * and cleanup is needed. Calling with strong=0 and internal=1 949 * causes no actual reference to be released in binder_dec_node(). 950 * If that changes, a change is needed here too. 951 */ 952 free_node = binder_dec_node_nilocked(node, 0, 1); 953 binder_node_inner_unlock(node); 954 if (free_node) 955 binder_free_node(node); 956 } 957 958 static void binder_put_node(struct binder_node *node) 959 { 960 binder_dec_node_tmpref(node); 961 } 962 963 static struct binder_ref *binder_get_ref_olocked(struct binder_proc *proc, 964 u32 desc, bool need_strong_ref) 965 { 966 struct rb_node *n = proc->refs_by_desc.rb_node; 967 struct binder_ref *ref; 968 969 while (n) { 970 ref = rb_entry(n, struct binder_ref, rb_node_desc); 971 972 if (desc < ref->data.desc) { 973 n = n->rb_left; 974 } else if (desc > ref->data.desc) { 975 n = n->rb_right; 976 } else if (need_strong_ref && !ref->data.strong) { 977 binder_user_error("tried to use weak ref as strong ref\n"); 978 return NULL; 979 } else { 980 return ref; 981 } 982 } 983 return NULL; 984 } 985 986 /** 987 * binder_get_ref_for_node_olocked() - get the ref associated with given node 988 * @proc: binder_proc that owns the ref 989 * @node: binder_node of target 990 * @new_ref: newly allocated binder_ref to be initialized or %NULL 991 * 992 * Look up the ref for the given node and return it if it exists 993 * 994 * If it doesn't exist and the caller provides a newly allocated 995 * ref, initialize the fields of the newly allocated ref and insert 996 * into the given proc rb_trees and node refs list. 997 * 998 * Return: the ref for node. It is possible that another thread 999 * allocated/initialized the ref first in which case the 1000 * returned ref would be different than the passed-in 1001 * new_ref. new_ref must be kfree'd by the caller in 1002 * this case. 1003 */ 1004 static struct binder_ref *binder_get_ref_for_node_olocked( 1005 struct binder_proc *proc, 1006 struct binder_node *node, 1007 struct binder_ref *new_ref) 1008 { 1009 struct binder_context *context = proc->context; 1010 struct rb_node **p = &proc->refs_by_node.rb_node; 1011 struct rb_node *parent = NULL; 1012 struct binder_ref *ref; 1013 struct rb_node *n; 1014 1015 while (*p) { 1016 parent = *p; 1017 ref = rb_entry(parent, struct binder_ref, rb_node_node); 1018 1019 if (node < ref->node) 1020 p = &(*p)->rb_left; 1021 else if (node > ref->node) 1022 p = &(*p)->rb_right; 1023 else 1024 return ref; 1025 } 1026 if (!new_ref) 1027 return NULL; 1028 1029 binder_stats_created(BINDER_STAT_REF); 1030 new_ref->data.debug_id = atomic_inc_return(&binder_last_id); 1031 new_ref->proc = proc; 1032 new_ref->node = node; 1033 rb_link_node(&new_ref->rb_node_node, parent, p); 1034 rb_insert_color(&new_ref->rb_node_node, &proc->refs_by_node); 1035 1036 new_ref->data.desc = (node == context->binder_context_mgr_node) ? 0 : 1; 1037 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) { 1038 ref = rb_entry(n, struct binder_ref, rb_node_desc); 1039 if (ref->data.desc > new_ref->data.desc) 1040 break; 1041 new_ref->data.desc = ref->data.desc + 1; 1042 } 1043 1044 p = &proc->refs_by_desc.rb_node; 1045 while (*p) { 1046 parent = *p; 1047 ref = rb_entry(parent, struct binder_ref, rb_node_desc); 1048 1049 if (new_ref->data.desc < ref->data.desc) 1050 p = &(*p)->rb_left; 1051 else if (new_ref->data.desc > ref->data.desc) 1052 p = &(*p)->rb_right; 1053 else 1054 BUG(); 1055 } 1056 rb_link_node(&new_ref->rb_node_desc, parent, p); 1057 rb_insert_color(&new_ref->rb_node_desc, &proc->refs_by_desc); 1058 1059 binder_node_lock(node); 1060 hlist_add_head(&new_ref->node_entry, &node->refs); 1061 1062 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 1063 "%d new ref %d desc %d for node %d\n", 1064 proc->pid, new_ref->data.debug_id, new_ref->data.desc, 1065 node->debug_id); 1066 binder_node_unlock(node); 1067 return new_ref; 1068 } 1069 1070 static void binder_cleanup_ref_olocked(struct binder_ref *ref) 1071 { 1072 bool delete_node = false; 1073 1074 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 1075 "%d delete ref %d desc %d for node %d\n", 1076 ref->proc->pid, ref->data.debug_id, ref->data.desc, 1077 ref->node->debug_id); 1078 1079 rb_erase(&ref->rb_node_desc, &ref->proc->refs_by_desc); 1080 rb_erase(&ref->rb_node_node, &ref->proc->refs_by_node); 1081 1082 binder_node_inner_lock(ref->node); 1083 if (ref->data.strong) 1084 binder_dec_node_nilocked(ref->node, 1, 1); 1085 1086 hlist_del(&ref->node_entry); 1087 delete_node = binder_dec_node_nilocked(ref->node, 0, 1); 1088 binder_node_inner_unlock(ref->node); 1089 /* 1090 * Clear ref->node unless we want the caller to free the node 1091 */ 1092 if (!delete_node) { 1093 /* 1094 * The caller uses ref->node to determine 1095 * whether the node needs to be freed. Clear 1096 * it since the node is still alive. 1097 */ 1098 ref->node = NULL; 1099 } 1100 1101 if (ref->death) { 1102 binder_debug(BINDER_DEBUG_DEAD_BINDER, 1103 "%d delete ref %d desc %d has death notification\n", 1104 ref->proc->pid, ref->data.debug_id, 1105 ref->data.desc); 1106 binder_dequeue_work(ref->proc, &ref->death->work); 1107 binder_stats_deleted(BINDER_STAT_DEATH); 1108 } 1109 binder_stats_deleted(BINDER_STAT_REF); 1110 } 1111 1112 /** 1113 * binder_inc_ref_olocked() - increment the ref for given handle 1114 * @ref: ref to be incremented 1115 * @strong: if true, strong increment, else weak 1116 * @target_list: list to queue node work on 1117 * 1118 * Increment the ref. @ref->proc->outer_lock must be held on entry 1119 * 1120 * Return: 0, if successful, else errno 1121 */ 1122 static int binder_inc_ref_olocked(struct binder_ref *ref, int strong, 1123 struct list_head *target_list) 1124 { 1125 int ret; 1126 1127 if (strong) { 1128 if (ref->data.strong == 0) { 1129 ret = binder_inc_node(ref->node, 1, 1, target_list); 1130 if (ret) 1131 return ret; 1132 } 1133 ref->data.strong++; 1134 } else { 1135 if (ref->data.weak == 0) { 1136 ret = binder_inc_node(ref->node, 0, 1, target_list); 1137 if (ret) 1138 return ret; 1139 } 1140 ref->data.weak++; 1141 } 1142 return 0; 1143 } 1144 1145 /** 1146 * binder_dec_ref() - dec the ref for given handle 1147 * @ref: ref to be decremented 1148 * @strong: if true, strong decrement, else weak 1149 * 1150 * Decrement the ref. 1151 * 1152 * Return: true if ref is cleaned up and ready to be freed 1153 */ 1154 static bool binder_dec_ref_olocked(struct binder_ref *ref, int strong) 1155 { 1156 if (strong) { 1157 if (ref->data.strong == 0) { 1158 binder_user_error("%d invalid dec strong, ref %d desc %d s %d w %d\n", 1159 ref->proc->pid, ref->data.debug_id, 1160 ref->data.desc, ref->data.strong, 1161 ref->data.weak); 1162 return false; 1163 } 1164 ref->data.strong--; 1165 if (ref->data.strong == 0) 1166 binder_dec_node(ref->node, strong, 1); 1167 } else { 1168 if (ref->data.weak == 0) { 1169 binder_user_error("%d invalid dec weak, ref %d desc %d s %d w %d\n", 1170 ref->proc->pid, ref->data.debug_id, 1171 ref->data.desc, ref->data.strong, 1172 ref->data.weak); 1173 return false; 1174 } 1175 ref->data.weak--; 1176 } 1177 if (ref->data.strong == 0 && ref->data.weak == 0) { 1178 binder_cleanup_ref_olocked(ref); 1179 return true; 1180 } 1181 return false; 1182 } 1183 1184 /** 1185 * binder_get_node_from_ref() - get the node from the given proc/desc 1186 * @proc: proc containing the ref 1187 * @desc: the handle associated with the ref 1188 * @need_strong_ref: if true, only return node if ref is strong 1189 * @rdata: the id/refcount data for the ref 1190 * 1191 * Given a proc and ref handle, return the associated binder_node 1192 * 1193 * Return: a binder_node or NULL if not found or not strong when strong required 1194 */ 1195 static struct binder_node *binder_get_node_from_ref( 1196 struct binder_proc *proc, 1197 u32 desc, bool need_strong_ref, 1198 struct binder_ref_data *rdata) 1199 { 1200 struct binder_node *node; 1201 struct binder_ref *ref; 1202 1203 binder_proc_lock(proc); 1204 ref = binder_get_ref_olocked(proc, desc, need_strong_ref); 1205 if (!ref) 1206 goto err_no_ref; 1207 node = ref->node; 1208 /* 1209 * Take an implicit reference on the node to ensure 1210 * it stays alive until the call to binder_put_node() 1211 */ 1212 binder_inc_node_tmpref(node); 1213 if (rdata) 1214 *rdata = ref->data; 1215 binder_proc_unlock(proc); 1216 1217 return node; 1218 1219 err_no_ref: 1220 binder_proc_unlock(proc); 1221 return NULL; 1222 } 1223 1224 /** 1225 * binder_free_ref() - free the binder_ref 1226 * @ref: ref to free 1227 * 1228 * Free the binder_ref. Free the binder_node indicated by ref->node 1229 * (if non-NULL) and the binder_ref_death indicated by ref->death. 1230 */ 1231 static void binder_free_ref(struct binder_ref *ref) 1232 { 1233 if (ref->node) 1234 binder_free_node(ref->node); 1235 kfree(ref->death); 1236 kfree(ref); 1237 } 1238 1239 /** 1240 * binder_update_ref_for_handle() - inc/dec the ref for given handle 1241 * @proc: proc containing the ref 1242 * @desc: the handle associated with the ref 1243 * @increment: true=inc reference, false=dec reference 1244 * @strong: true=strong reference, false=weak reference 1245 * @rdata: the id/refcount data for the ref 1246 * 1247 * Given a proc and ref handle, increment or decrement the ref 1248 * according to "increment" arg. 1249 * 1250 * Return: 0 if successful, else errno 1251 */ 1252 static int binder_update_ref_for_handle(struct binder_proc *proc, 1253 uint32_t desc, bool increment, bool strong, 1254 struct binder_ref_data *rdata) 1255 { 1256 int ret = 0; 1257 struct binder_ref *ref; 1258 bool delete_ref = false; 1259 1260 binder_proc_lock(proc); 1261 ref = binder_get_ref_olocked(proc, desc, strong); 1262 if (!ref) { 1263 ret = -EINVAL; 1264 goto err_no_ref; 1265 } 1266 if (increment) 1267 ret = binder_inc_ref_olocked(ref, strong, NULL); 1268 else 1269 delete_ref = binder_dec_ref_olocked(ref, strong); 1270 1271 if (rdata) 1272 *rdata = ref->data; 1273 binder_proc_unlock(proc); 1274 1275 if (delete_ref) 1276 binder_free_ref(ref); 1277 return ret; 1278 1279 err_no_ref: 1280 binder_proc_unlock(proc); 1281 return ret; 1282 } 1283 1284 /** 1285 * binder_dec_ref_for_handle() - dec the ref for given handle 1286 * @proc: proc containing the ref 1287 * @desc: the handle associated with the ref 1288 * @strong: true=strong reference, false=weak reference 1289 * @rdata: the id/refcount data for the ref 1290 * 1291 * Just calls binder_update_ref_for_handle() to decrement the ref. 1292 * 1293 * Return: 0 if successful, else errno 1294 */ 1295 static int binder_dec_ref_for_handle(struct binder_proc *proc, 1296 uint32_t desc, bool strong, struct binder_ref_data *rdata) 1297 { 1298 return binder_update_ref_for_handle(proc, desc, false, strong, rdata); 1299 } 1300 1301 1302 /** 1303 * binder_inc_ref_for_node() - increment the ref for given proc/node 1304 * @proc: proc containing the ref 1305 * @node: target node 1306 * @strong: true=strong reference, false=weak reference 1307 * @target_list: worklist to use if node is incremented 1308 * @rdata: the id/refcount data for the ref 1309 * 1310 * Given a proc and node, increment the ref. Create the ref if it 1311 * doesn't already exist 1312 * 1313 * Return: 0 if successful, else errno 1314 */ 1315 static int binder_inc_ref_for_node(struct binder_proc *proc, 1316 struct binder_node *node, 1317 bool strong, 1318 struct list_head *target_list, 1319 struct binder_ref_data *rdata) 1320 { 1321 struct binder_ref *ref; 1322 struct binder_ref *new_ref = NULL; 1323 int ret = 0; 1324 1325 binder_proc_lock(proc); 1326 ref = binder_get_ref_for_node_olocked(proc, node, NULL); 1327 if (!ref) { 1328 binder_proc_unlock(proc); 1329 new_ref = kzalloc(sizeof(*ref), GFP_KERNEL); 1330 if (!new_ref) 1331 return -ENOMEM; 1332 binder_proc_lock(proc); 1333 ref = binder_get_ref_for_node_olocked(proc, node, new_ref); 1334 } 1335 ret = binder_inc_ref_olocked(ref, strong, target_list); 1336 *rdata = ref->data; 1337 binder_proc_unlock(proc); 1338 if (new_ref && ref != new_ref) 1339 /* 1340 * Another thread created the ref first so 1341 * free the one we allocated 1342 */ 1343 kfree(new_ref); 1344 return ret; 1345 } 1346 1347 static void binder_pop_transaction_ilocked(struct binder_thread *target_thread, 1348 struct binder_transaction *t) 1349 { 1350 BUG_ON(!target_thread); 1351 assert_spin_locked(&target_thread->proc->inner_lock); 1352 BUG_ON(target_thread->transaction_stack != t); 1353 BUG_ON(target_thread->transaction_stack->from != target_thread); 1354 target_thread->transaction_stack = 1355 target_thread->transaction_stack->from_parent; 1356 t->from = NULL; 1357 } 1358 1359 /** 1360 * binder_thread_dec_tmpref() - decrement thread->tmp_ref 1361 * @thread: thread to decrement 1362 * 1363 * A thread needs to be kept alive while being used to create or 1364 * handle a transaction. binder_get_txn_from() is used to safely 1365 * extract t->from from a binder_transaction and keep the thread 1366 * indicated by t->from from being freed. When done with that 1367 * binder_thread, this function is called to decrement the 1368 * tmp_ref and free if appropriate (thread has been released 1369 * and no transaction being processed by the driver) 1370 */ 1371 static void binder_thread_dec_tmpref(struct binder_thread *thread) 1372 { 1373 /* 1374 * atomic is used to protect the counter value while 1375 * it cannot reach zero or thread->is_dead is false 1376 */ 1377 binder_inner_proc_lock(thread->proc); 1378 atomic_dec(&thread->tmp_ref); 1379 if (thread->is_dead && !atomic_read(&thread->tmp_ref)) { 1380 binder_inner_proc_unlock(thread->proc); 1381 binder_free_thread(thread); 1382 return; 1383 } 1384 binder_inner_proc_unlock(thread->proc); 1385 } 1386 1387 /** 1388 * binder_proc_dec_tmpref() - decrement proc->tmp_ref 1389 * @proc: proc to decrement 1390 * 1391 * A binder_proc needs to be kept alive while being used to create or 1392 * handle a transaction. proc->tmp_ref is incremented when 1393 * creating a new transaction or the binder_proc is currently in-use 1394 * by threads that are being released. When done with the binder_proc, 1395 * this function is called to decrement the counter and free the 1396 * proc if appropriate (proc has been released, all threads have 1397 * been released and not currenly in-use to process a transaction). 1398 */ 1399 static void binder_proc_dec_tmpref(struct binder_proc *proc) 1400 { 1401 binder_inner_proc_lock(proc); 1402 proc->tmp_ref--; 1403 if (proc->is_dead && RB_EMPTY_ROOT(&proc->threads) && 1404 !proc->tmp_ref) { 1405 binder_inner_proc_unlock(proc); 1406 binder_free_proc(proc); 1407 return; 1408 } 1409 binder_inner_proc_unlock(proc); 1410 } 1411 1412 /** 1413 * binder_get_txn_from() - safely extract the "from" thread in transaction 1414 * @t: binder transaction for t->from 1415 * 1416 * Atomically return the "from" thread and increment the tmp_ref 1417 * count for the thread to ensure it stays alive until 1418 * binder_thread_dec_tmpref() is called. 1419 * 1420 * Return: the value of t->from 1421 */ 1422 static struct binder_thread *binder_get_txn_from( 1423 struct binder_transaction *t) 1424 { 1425 struct binder_thread *from; 1426 1427 spin_lock(&t->lock); 1428 from = t->from; 1429 if (from) 1430 atomic_inc(&from->tmp_ref); 1431 spin_unlock(&t->lock); 1432 return from; 1433 } 1434 1435 /** 1436 * binder_get_txn_from_and_acq_inner() - get t->from and acquire inner lock 1437 * @t: binder transaction for t->from 1438 * 1439 * Same as binder_get_txn_from() except it also acquires the proc->inner_lock 1440 * to guarantee that the thread cannot be released while operating on it. 1441 * The caller must call binder_inner_proc_unlock() to release the inner lock 1442 * as well as call binder_dec_thread_txn() to release the reference. 1443 * 1444 * Return: the value of t->from 1445 */ 1446 static struct binder_thread *binder_get_txn_from_and_acq_inner( 1447 struct binder_transaction *t) 1448 __acquires(&t->from->proc->inner_lock) 1449 { 1450 struct binder_thread *from; 1451 1452 from = binder_get_txn_from(t); 1453 if (!from) { 1454 __acquire(&from->proc->inner_lock); 1455 return NULL; 1456 } 1457 binder_inner_proc_lock(from->proc); 1458 if (t->from) { 1459 BUG_ON(from != t->from); 1460 return from; 1461 } 1462 binder_inner_proc_unlock(from->proc); 1463 __acquire(&from->proc->inner_lock); 1464 binder_thread_dec_tmpref(from); 1465 return NULL; 1466 } 1467 1468 /** 1469 * binder_free_txn_fixups() - free unprocessed fd fixups 1470 * @t: binder transaction for t->from 1471 * 1472 * If the transaction is being torn down prior to being 1473 * processed by the target process, free all of the 1474 * fd fixups and fput the file structs. It is safe to 1475 * call this function after the fixups have been 1476 * processed -- in that case, the list will be empty. 1477 */ 1478 static void binder_free_txn_fixups(struct binder_transaction *t) 1479 { 1480 struct binder_txn_fd_fixup *fixup, *tmp; 1481 1482 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) { 1483 fput(fixup->file); 1484 if (fixup->target_fd >= 0) 1485 put_unused_fd(fixup->target_fd); 1486 list_del(&fixup->fixup_entry); 1487 kfree(fixup); 1488 } 1489 } 1490 1491 static void binder_txn_latency_free(struct binder_transaction *t) 1492 { 1493 int from_proc, from_thread, to_proc, to_thread; 1494 1495 spin_lock(&t->lock); 1496 from_proc = t->from ? t->from->proc->pid : 0; 1497 from_thread = t->from ? t->from->pid : 0; 1498 to_proc = t->to_proc ? t->to_proc->pid : 0; 1499 to_thread = t->to_thread ? t->to_thread->pid : 0; 1500 spin_unlock(&t->lock); 1501 1502 trace_binder_txn_latency_free(t, from_proc, from_thread, to_proc, to_thread); 1503 } 1504 1505 static void binder_free_transaction(struct binder_transaction *t) 1506 { 1507 struct binder_proc *target_proc = t->to_proc; 1508 1509 if (target_proc) { 1510 binder_inner_proc_lock(target_proc); 1511 target_proc->outstanding_txns--; 1512 if (target_proc->outstanding_txns < 0) 1513 pr_warn("%s: Unexpected outstanding_txns %d\n", 1514 __func__, target_proc->outstanding_txns); 1515 if (!target_proc->outstanding_txns && target_proc->is_frozen) 1516 wake_up_interruptible_all(&target_proc->freeze_wait); 1517 if (t->buffer) 1518 t->buffer->transaction = NULL; 1519 binder_inner_proc_unlock(target_proc); 1520 } 1521 if (trace_binder_txn_latency_free_enabled()) 1522 binder_txn_latency_free(t); 1523 /* 1524 * If the transaction has no target_proc, then 1525 * t->buffer->transaction has already been cleared. 1526 */ 1527 binder_free_txn_fixups(t); 1528 kfree(t); 1529 binder_stats_deleted(BINDER_STAT_TRANSACTION); 1530 } 1531 1532 static void binder_send_failed_reply(struct binder_transaction *t, 1533 uint32_t error_code) 1534 { 1535 struct binder_thread *target_thread; 1536 struct binder_transaction *next; 1537 1538 BUG_ON(t->flags & TF_ONE_WAY); 1539 while (1) { 1540 target_thread = binder_get_txn_from_and_acq_inner(t); 1541 if (target_thread) { 1542 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, 1543 "send failed reply for transaction %d to %d:%d\n", 1544 t->debug_id, 1545 target_thread->proc->pid, 1546 target_thread->pid); 1547 1548 binder_pop_transaction_ilocked(target_thread, t); 1549 if (target_thread->reply_error.cmd == BR_OK) { 1550 target_thread->reply_error.cmd = error_code; 1551 binder_enqueue_thread_work_ilocked( 1552 target_thread, 1553 &target_thread->reply_error.work); 1554 wake_up_interruptible(&target_thread->wait); 1555 } else { 1556 /* 1557 * Cannot get here for normal operation, but 1558 * we can if multiple synchronous transactions 1559 * are sent without blocking for responses. 1560 * Just ignore the 2nd error in this case. 1561 */ 1562 pr_warn("Unexpected reply error: %u\n", 1563 target_thread->reply_error.cmd); 1564 } 1565 binder_inner_proc_unlock(target_thread->proc); 1566 binder_thread_dec_tmpref(target_thread); 1567 binder_free_transaction(t); 1568 return; 1569 } 1570 __release(&target_thread->proc->inner_lock); 1571 next = t->from_parent; 1572 1573 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, 1574 "send failed reply for transaction %d, target dead\n", 1575 t->debug_id); 1576 1577 binder_free_transaction(t); 1578 if (next == NULL) { 1579 binder_debug(BINDER_DEBUG_DEAD_BINDER, 1580 "reply failed, no target thread at root\n"); 1581 return; 1582 } 1583 t = next; 1584 binder_debug(BINDER_DEBUG_DEAD_BINDER, 1585 "reply failed, no target thread -- retry %d\n", 1586 t->debug_id); 1587 } 1588 } 1589 1590 /** 1591 * binder_cleanup_transaction() - cleans up undelivered transaction 1592 * @t: transaction that needs to be cleaned up 1593 * @reason: reason the transaction wasn't delivered 1594 * @error_code: error to return to caller (if synchronous call) 1595 */ 1596 static void binder_cleanup_transaction(struct binder_transaction *t, 1597 const char *reason, 1598 uint32_t error_code) 1599 { 1600 if (t->buffer->target_node && !(t->flags & TF_ONE_WAY)) { 1601 binder_send_failed_reply(t, error_code); 1602 } else { 1603 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, 1604 "undelivered transaction %d, %s\n", 1605 t->debug_id, reason); 1606 binder_free_transaction(t); 1607 } 1608 } 1609 1610 /** 1611 * binder_get_object() - gets object and checks for valid metadata 1612 * @proc: binder_proc owning the buffer 1613 * @u: sender's user pointer to base of buffer 1614 * @buffer: binder_buffer that we're parsing. 1615 * @offset: offset in the @buffer at which to validate an object. 1616 * @object: struct binder_object to read into 1617 * 1618 * Copy the binder object at the given offset into @object. If @u is 1619 * provided then the copy is from the sender's buffer. If not, then 1620 * it is copied from the target's @buffer. 1621 * 1622 * Return: If there's a valid metadata object at @offset, the 1623 * size of that object. Otherwise, it returns zero. The object 1624 * is read into the struct binder_object pointed to by @object. 1625 */ 1626 static size_t binder_get_object(struct binder_proc *proc, 1627 const void __user *u, 1628 struct binder_buffer *buffer, 1629 unsigned long offset, 1630 struct binder_object *object) 1631 { 1632 size_t read_size; 1633 struct binder_object_header *hdr; 1634 size_t object_size = 0; 1635 1636 read_size = min_t(size_t, sizeof(*object), buffer->data_size - offset); 1637 if (offset > buffer->data_size || read_size < sizeof(*hdr)) 1638 return 0; 1639 if (u) { 1640 if (copy_from_user(object, u + offset, read_size)) 1641 return 0; 1642 } else { 1643 if (binder_alloc_copy_from_buffer(&proc->alloc, object, buffer, 1644 offset, read_size)) 1645 return 0; 1646 } 1647 1648 /* Ok, now see if we read a complete object. */ 1649 hdr = &object->hdr; 1650 switch (hdr->type) { 1651 case BINDER_TYPE_BINDER: 1652 case BINDER_TYPE_WEAK_BINDER: 1653 case BINDER_TYPE_HANDLE: 1654 case BINDER_TYPE_WEAK_HANDLE: 1655 object_size = sizeof(struct flat_binder_object); 1656 break; 1657 case BINDER_TYPE_FD: 1658 object_size = sizeof(struct binder_fd_object); 1659 break; 1660 case BINDER_TYPE_PTR: 1661 object_size = sizeof(struct binder_buffer_object); 1662 break; 1663 case BINDER_TYPE_FDA: 1664 object_size = sizeof(struct binder_fd_array_object); 1665 break; 1666 default: 1667 return 0; 1668 } 1669 if (offset <= buffer->data_size - object_size && 1670 buffer->data_size >= object_size) 1671 return object_size; 1672 else 1673 return 0; 1674 } 1675 1676 /** 1677 * binder_validate_ptr() - validates binder_buffer_object in a binder_buffer. 1678 * @proc: binder_proc owning the buffer 1679 * @b: binder_buffer containing the object 1680 * @object: struct binder_object to read into 1681 * @index: index in offset array at which the binder_buffer_object is 1682 * located 1683 * @start_offset: points to the start of the offset array 1684 * @object_offsetp: offset of @object read from @b 1685 * @num_valid: the number of valid offsets in the offset array 1686 * 1687 * Return: If @index is within the valid range of the offset array 1688 * described by @start and @num_valid, and if there's a valid 1689 * binder_buffer_object at the offset found in index @index 1690 * of the offset array, that object is returned. Otherwise, 1691 * %NULL is returned. 1692 * Note that the offset found in index @index itself is not 1693 * verified; this function assumes that @num_valid elements 1694 * from @start were previously verified to have valid offsets. 1695 * If @object_offsetp is non-NULL, then the offset within 1696 * @b is written to it. 1697 */ 1698 static struct binder_buffer_object *binder_validate_ptr( 1699 struct binder_proc *proc, 1700 struct binder_buffer *b, 1701 struct binder_object *object, 1702 binder_size_t index, 1703 binder_size_t start_offset, 1704 binder_size_t *object_offsetp, 1705 binder_size_t num_valid) 1706 { 1707 size_t object_size; 1708 binder_size_t object_offset; 1709 unsigned long buffer_offset; 1710 1711 if (index >= num_valid) 1712 return NULL; 1713 1714 buffer_offset = start_offset + sizeof(binder_size_t) * index; 1715 if (binder_alloc_copy_from_buffer(&proc->alloc, &object_offset, 1716 b, buffer_offset, 1717 sizeof(object_offset))) 1718 return NULL; 1719 object_size = binder_get_object(proc, NULL, b, object_offset, object); 1720 if (!object_size || object->hdr.type != BINDER_TYPE_PTR) 1721 return NULL; 1722 if (object_offsetp) 1723 *object_offsetp = object_offset; 1724 1725 return &object->bbo; 1726 } 1727 1728 /** 1729 * binder_validate_fixup() - validates pointer/fd fixups happen in order. 1730 * @proc: binder_proc owning the buffer 1731 * @b: transaction buffer 1732 * @objects_start_offset: offset to start of objects buffer 1733 * @buffer_obj_offset: offset to binder_buffer_object in which to fix up 1734 * @fixup_offset: start offset in @buffer to fix up 1735 * @last_obj_offset: offset to last binder_buffer_object that we fixed 1736 * @last_min_offset: minimum fixup offset in object at @last_obj_offset 1737 * 1738 * Return: %true if a fixup in buffer @buffer at offset @offset is 1739 * allowed. 1740 * 1741 * For safety reasons, we only allow fixups inside a buffer to happen 1742 * at increasing offsets; additionally, we only allow fixup on the last 1743 * buffer object that was verified, or one of its parents. 1744 * 1745 * Example of what is allowed: 1746 * 1747 * A 1748 * B (parent = A, offset = 0) 1749 * C (parent = A, offset = 16) 1750 * D (parent = C, offset = 0) 1751 * E (parent = A, offset = 32) // min_offset is 16 (C.parent_offset) 1752 * 1753 * Examples of what is not allowed: 1754 * 1755 * Decreasing offsets within the same parent: 1756 * A 1757 * C (parent = A, offset = 16) 1758 * B (parent = A, offset = 0) // decreasing offset within A 1759 * 1760 * Referring to a parent that wasn't the last object or any of its parents: 1761 * A 1762 * B (parent = A, offset = 0) 1763 * C (parent = A, offset = 0) 1764 * C (parent = A, offset = 16) 1765 * D (parent = B, offset = 0) // B is not A or any of A's parents 1766 */ 1767 static bool binder_validate_fixup(struct binder_proc *proc, 1768 struct binder_buffer *b, 1769 binder_size_t objects_start_offset, 1770 binder_size_t buffer_obj_offset, 1771 binder_size_t fixup_offset, 1772 binder_size_t last_obj_offset, 1773 binder_size_t last_min_offset) 1774 { 1775 if (!last_obj_offset) { 1776 /* Nothing to fix up in */ 1777 return false; 1778 } 1779 1780 while (last_obj_offset != buffer_obj_offset) { 1781 unsigned long buffer_offset; 1782 struct binder_object last_object; 1783 struct binder_buffer_object *last_bbo; 1784 size_t object_size = binder_get_object(proc, NULL, b, 1785 last_obj_offset, 1786 &last_object); 1787 if (object_size != sizeof(*last_bbo)) 1788 return false; 1789 1790 last_bbo = &last_object.bbo; 1791 /* 1792 * Safe to retrieve the parent of last_obj, since it 1793 * was already previously verified by the driver. 1794 */ 1795 if ((last_bbo->flags & BINDER_BUFFER_FLAG_HAS_PARENT) == 0) 1796 return false; 1797 last_min_offset = last_bbo->parent_offset + sizeof(uintptr_t); 1798 buffer_offset = objects_start_offset + 1799 sizeof(binder_size_t) * last_bbo->parent; 1800 if (binder_alloc_copy_from_buffer(&proc->alloc, 1801 &last_obj_offset, 1802 b, buffer_offset, 1803 sizeof(last_obj_offset))) 1804 return false; 1805 } 1806 return (fixup_offset >= last_min_offset); 1807 } 1808 1809 /** 1810 * struct binder_task_work_cb - for deferred close 1811 * 1812 * @twork: callback_head for task work 1813 * @fd: fd to close 1814 * 1815 * Structure to pass task work to be handled after 1816 * returning from binder_ioctl() via task_work_add(). 1817 */ 1818 struct binder_task_work_cb { 1819 struct callback_head twork; 1820 struct file *file; 1821 }; 1822 1823 /** 1824 * binder_do_fd_close() - close list of file descriptors 1825 * @twork: callback head for task work 1826 * 1827 * It is not safe to call ksys_close() during the binder_ioctl() 1828 * function if there is a chance that binder's own file descriptor 1829 * might be closed. This is to meet the requirements for using 1830 * fdget() (see comments for __fget_light()). Therefore use 1831 * task_work_add() to schedule the close operation once we have 1832 * returned from binder_ioctl(). This function is a callback 1833 * for that mechanism and does the actual ksys_close() on the 1834 * given file descriptor. 1835 */ 1836 static void binder_do_fd_close(struct callback_head *twork) 1837 { 1838 struct binder_task_work_cb *twcb = container_of(twork, 1839 struct binder_task_work_cb, twork); 1840 1841 fput(twcb->file); 1842 kfree(twcb); 1843 } 1844 1845 /** 1846 * binder_deferred_fd_close() - schedule a close for the given file-descriptor 1847 * @fd: file-descriptor to close 1848 * 1849 * See comments in binder_do_fd_close(). This function is used to schedule 1850 * a file-descriptor to be closed after returning from binder_ioctl(). 1851 */ 1852 static void binder_deferred_fd_close(int fd) 1853 { 1854 struct binder_task_work_cb *twcb; 1855 1856 twcb = kzalloc(sizeof(*twcb), GFP_KERNEL); 1857 if (!twcb) 1858 return; 1859 init_task_work(&twcb->twork, binder_do_fd_close); 1860 close_fd_get_file(fd, &twcb->file); 1861 if (twcb->file) { 1862 filp_close(twcb->file, current->files); 1863 task_work_add(current, &twcb->twork, TWA_RESUME); 1864 } else { 1865 kfree(twcb); 1866 } 1867 } 1868 1869 static void binder_transaction_buffer_release(struct binder_proc *proc, 1870 struct binder_thread *thread, 1871 struct binder_buffer *buffer, 1872 binder_size_t failed_at, 1873 bool is_failure) 1874 { 1875 int debug_id = buffer->debug_id; 1876 binder_size_t off_start_offset, buffer_offset, off_end_offset; 1877 1878 binder_debug(BINDER_DEBUG_TRANSACTION, 1879 "%d buffer release %d, size %zd-%zd, failed at %llx\n", 1880 proc->pid, buffer->debug_id, 1881 buffer->data_size, buffer->offsets_size, 1882 (unsigned long long)failed_at); 1883 1884 if (buffer->target_node) 1885 binder_dec_node(buffer->target_node, 1, 0); 1886 1887 off_start_offset = ALIGN(buffer->data_size, sizeof(void *)); 1888 off_end_offset = is_failure && failed_at ? failed_at : 1889 off_start_offset + buffer->offsets_size; 1890 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; 1891 buffer_offset += sizeof(binder_size_t)) { 1892 struct binder_object_header *hdr; 1893 size_t object_size = 0; 1894 struct binder_object object; 1895 binder_size_t object_offset; 1896 1897 if (!binder_alloc_copy_from_buffer(&proc->alloc, &object_offset, 1898 buffer, buffer_offset, 1899 sizeof(object_offset))) 1900 object_size = binder_get_object(proc, NULL, buffer, 1901 object_offset, &object); 1902 if (object_size == 0) { 1903 pr_err("transaction release %d bad object at offset %lld, size %zd\n", 1904 debug_id, (u64)object_offset, buffer->data_size); 1905 continue; 1906 } 1907 hdr = &object.hdr; 1908 switch (hdr->type) { 1909 case BINDER_TYPE_BINDER: 1910 case BINDER_TYPE_WEAK_BINDER: { 1911 struct flat_binder_object *fp; 1912 struct binder_node *node; 1913 1914 fp = to_flat_binder_object(hdr); 1915 node = binder_get_node(proc, fp->binder); 1916 if (node == NULL) { 1917 pr_err("transaction release %d bad node %016llx\n", 1918 debug_id, (u64)fp->binder); 1919 break; 1920 } 1921 binder_debug(BINDER_DEBUG_TRANSACTION, 1922 " node %d u%016llx\n", 1923 node->debug_id, (u64)node->ptr); 1924 binder_dec_node(node, hdr->type == BINDER_TYPE_BINDER, 1925 0); 1926 binder_put_node(node); 1927 } break; 1928 case BINDER_TYPE_HANDLE: 1929 case BINDER_TYPE_WEAK_HANDLE: { 1930 struct flat_binder_object *fp; 1931 struct binder_ref_data rdata; 1932 int ret; 1933 1934 fp = to_flat_binder_object(hdr); 1935 ret = binder_dec_ref_for_handle(proc, fp->handle, 1936 hdr->type == BINDER_TYPE_HANDLE, &rdata); 1937 1938 if (ret) { 1939 pr_err("transaction release %d bad handle %d, ret = %d\n", 1940 debug_id, fp->handle, ret); 1941 break; 1942 } 1943 binder_debug(BINDER_DEBUG_TRANSACTION, 1944 " ref %d desc %d\n", 1945 rdata.debug_id, rdata.desc); 1946 } break; 1947 1948 case BINDER_TYPE_FD: { 1949 /* 1950 * No need to close the file here since user-space 1951 * closes it for successfully delivered 1952 * transactions. For transactions that weren't 1953 * delivered, the new fd was never allocated so 1954 * there is no need to close and the fput on the 1955 * file is done when the transaction is torn 1956 * down. 1957 */ 1958 } break; 1959 case BINDER_TYPE_PTR: 1960 /* 1961 * Nothing to do here, this will get cleaned up when the 1962 * transaction buffer gets freed 1963 */ 1964 break; 1965 case BINDER_TYPE_FDA: { 1966 struct binder_fd_array_object *fda; 1967 struct binder_buffer_object *parent; 1968 struct binder_object ptr_object; 1969 binder_size_t fda_offset; 1970 size_t fd_index; 1971 binder_size_t fd_buf_size; 1972 binder_size_t num_valid; 1973 1974 if (is_failure) { 1975 /* 1976 * The fd fixups have not been applied so no 1977 * fds need to be closed. 1978 */ 1979 continue; 1980 } 1981 1982 num_valid = (buffer_offset - off_start_offset) / 1983 sizeof(binder_size_t); 1984 fda = to_binder_fd_array_object(hdr); 1985 parent = binder_validate_ptr(proc, buffer, &ptr_object, 1986 fda->parent, 1987 off_start_offset, 1988 NULL, 1989 num_valid); 1990 if (!parent) { 1991 pr_err("transaction release %d bad parent offset\n", 1992 debug_id); 1993 continue; 1994 } 1995 fd_buf_size = sizeof(u32) * fda->num_fds; 1996 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) { 1997 pr_err("transaction release %d invalid number of fds (%lld)\n", 1998 debug_id, (u64)fda->num_fds); 1999 continue; 2000 } 2001 if (fd_buf_size > parent->length || 2002 fda->parent_offset > parent->length - fd_buf_size) { 2003 /* No space for all file descriptors here. */ 2004 pr_err("transaction release %d not enough space for %lld fds in buffer\n", 2005 debug_id, (u64)fda->num_fds); 2006 continue; 2007 } 2008 /* 2009 * the source data for binder_buffer_object is visible 2010 * to user-space and the @buffer element is the user 2011 * pointer to the buffer_object containing the fd_array. 2012 * Convert the address to an offset relative to 2013 * the base of the transaction buffer. 2014 */ 2015 fda_offset = 2016 (parent->buffer - (uintptr_t)buffer->user_data) + 2017 fda->parent_offset; 2018 for (fd_index = 0; fd_index < fda->num_fds; 2019 fd_index++) { 2020 u32 fd; 2021 int err; 2022 binder_size_t offset = fda_offset + 2023 fd_index * sizeof(fd); 2024 2025 err = binder_alloc_copy_from_buffer( 2026 &proc->alloc, &fd, buffer, 2027 offset, sizeof(fd)); 2028 WARN_ON(err); 2029 if (!err) { 2030 binder_deferred_fd_close(fd); 2031 /* 2032 * Need to make sure the thread goes 2033 * back to userspace to complete the 2034 * deferred close 2035 */ 2036 if (thread) 2037 thread->looper_need_return = true; 2038 } 2039 } 2040 } break; 2041 default: 2042 pr_err("transaction release %d bad object type %x\n", 2043 debug_id, hdr->type); 2044 break; 2045 } 2046 } 2047 } 2048 2049 static int binder_translate_binder(struct flat_binder_object *fp, 2050 struct binder_transaction *t, 2051 struct binder_thread *thread) 2052 { 2053 struct binder_node *node; 2054 struct binder_proc *proc = thread->proc; 2055 struct binder_proc *target_proc = t->to_proc; 2056 struct binder_ref_data rdata; 2057 int ret = 0; 2058 2059 node = binder_get_node(proc, fp->binder); 2060 if (!node) { 2061 node = binder_new_node(proc, fp); 2062 if (!node) 2063 return -ENOMEM; 2064 } 2065 if (fp->cookie != node->cookie) { 2066 binder_user_error("%d:%d sending u%016llx node %d, cookie mismatch %016llx != %016llx\n", 2067 proc->pid, thread->pid, (u64)fp->binder, 2068 node->debug_id, (u64)fp->cookie, 2069 (u64)node->cookie); 2070 ret = -EINVAL; 2071 goto done; 2072 } 2073 if (security_binder_transfer_binder(proc->cred, target_proc->cred)) { 2074 ret = -EPERM; 2075 goto done; 2076 } 2077 2078 ret = binder_inc_ref_for_node(target_proc, node, 2079 fp->hdr.type == BINDER_TYPE_BINDER, 2080 &thread->todo, &rdata); 2081 if (ret) 2082 goto done; 2083 2084 if (fp->hdr.type == BINDER_TYPE_BINDER) 2085 fp->hdr.type = BINDER_TYPE_HANDLE; 2086 else 2087 fp->hdr.type = BINDER_TYPE_WEAK_HANDLE; 2088 fp->binder = 0; 2089 fp->handle = rdata.desc; 2090 fp->cookie = 0; 2091 2092 trace_binder_transaction_node_to_ref(t, node, &rdata); 2093 binder_debug(BINDER_DEBUG_TRANSACTION, 2094 " node %d u%016llx -> ref %d desc %d\n", 2095 node->debug_id, (u64)node->ptr, 2096 rdata.debug_id, rdata.desc); 2097 done: 2098 binder_put_node(node); 2099 return ret; 2100 } 2101 2102 static int binder_translate_handle(struct flat_binder_object *fp, 2103 struct binder_transaction *t, 2104 struct binder_thread *thread) 2105 { 2106 struct binder_proc *proc = thread->proc; 2107 struct binder_proc *target_proc = t->to_proc; 2108 struct binder_node *node; 2109 struct binder_ref_data src_rdata; 2110 int ret = 0; 2111 2112 node = binder_get_node_from_ref(proc, fp->handle, 2113 fp->hdr.type == BINDER_TYPE_HANDLE, &src_rdata); 2114 if (!node) { 2115 binder_user_error("%d:%d got transaction with invalid handle, %d\n", 2116 proc->pid, thread->pid, fp->handle); 2117 return -EINVAL; 2118 } 2119 if (security_binder_transfer_binder(proc->cred, target_proc->cred)) { 2120 ret = -EPERM; 2121 goto done; 2122 } 2123 2124 binder_node_lock(node); 2125 if (node->proc == target_proc) { 2126 if (fp->hdr.type == BINDER_TYPE_HANDLE) 2127 fp->hdr.type = BINDER_TYPE_BINDER; 2128 else 2129 fp->hdr.type = BINDER_TYPE_WEAK_BINDER; 2130 fp->binder = node->ptr; 2131 fp->cookie = node->cookie; 2132 if (node->proc) 2133 binder_inner_proc_lock(node->proc); 2134 else 2135 __acquire(&node->proc->inner_lock); 2136 binder_inc_node_nilocked(node, 2137 fp->hdr.type == BINDER_TYPE_BINDER, 2138 0, NULL); 2139 if (node->proc) 2140 binder_inner_proc_unlock(node->proc); 2141 else 2142 __release(&node->proc->inner_lock); 2143 trace_binder_transaction_ref_to_node(t, node, &src_rdata); 2144 binder_debug(BINDER_DEBUG_TRANSACTION, 2145 " ref %d desc %d -> node %d u%016llx\n", 2146 src_rdata.debug_id, src_rdata.desc, node->debug_id, 2147 (u64)node->ptr); 2148 binder_node_unlock(node); 2149 } else { 2150 struct binder_ref_data dest_rdata; 2151 2152 binder_node_unlock(node); 2153 ret = binder_inc_ref_for_node(target_proc, node, 2154 fp->hdr.type == BINDER_TYPE_HANDLE, 2155 NULL, &dest_rdata); 2156 if (ret) 2157 goto done; 2158 2159 fp->binder = 0; 2160 fp->handle = dest_rdata.desc; 2161 fp->cookie = 0; 2162 trace_binder_transaction_ref_to_ref(t, node, &src_rdata, 2163 &dest_rdata); 2164 binder_debug(BINDER_DEBUG_TRANSACTION, 2165 " ref %d desc %d -> ref %d desc %d (node %d)\n", 2166 src_rdata.debug_id, src_rdata.desc, 2167 dest_rdata.debug_id, dest_rdata.desc, 2168 node->debug_id); 2169 } 2170 done: 2171 binder_put_node(node); 2172 return ret; 2173 } 2174 2175 static int binder_translate_fd(u32 fd, binder_size_t fd_offset, 2176 struct binder_transaction *t, 2177 struct binder_thread *thread, 2178 struct binder_transaction *in_reply_to) 2179 { 2180 struct binder_proc *proc = thread->proc; 2181 struct binder_proc *target_proc = t->to_proc; 2182 struct binder_txn_fd_fixup *fixup; 2183 struct file *file; 2184 int ret = 0; 2185 bool target_allows_fd; 2186 2187 if (in_reply_to) 2188 target_allows_fd = !!(in_reply_to->flags & TF_ACCEPT_FDS); 2189 else 2190 target_allows_fd = t->buffer->target_node->accept_fds; 2191 if (!target_allows_fd) { 2192 binder_user_error("%d:%d got %s with fd, %d, but target does not allow fds\n", 2193 proc->pid, thread->pid, 2194 in_reply_to ? "reply" : "transaction", 2195 fd); 2196 ret = -EPERM; 2197 goto err_fd_not_accepted; 2198 } 2199 2200 file = fget(fd); 2201 if (!file) { 2202 binder_user_error("%d:%d got transaction with invalid fd, %d\n", 2203 proc->pid, thread->pid, fd); 2204 ret = -EBADF; 2205 goto err_fget; 2206 } 2207 ret = security_binder_transfer_file(proc->cred, target_proc->cred, file); 2208 if (ret < 0) { 2209 ret = -EPERM; 2210 goto err_security; 2211 } 2212 2213 /* 2214 * Add fixup record for this transaction. The allocation 2215 * of the fd in the target needs to be done from a 2216 * target thread. 2217 */ 2218 fixup = kzalloc(sizeof(*fixup), GFP_KERNEL); 2219 if (!fixup) { 2220 ret = -ENOMEM; 2221 goto err_alloc; 2222 } 2223 fixup->file = file; 2224 fixup->offset = fd_offset; 2225 fixup->target_fd = -1; 2226 trace_binder_transaction_fd_send(t, fd, fixup->offset); 2227 list_add_tail(&fixup->fixup_entry, &t->fd_fixups); 2228 2229 return ret; 2230 2231 err_alloc: 2232 err_security: 2233 fput(file); 2234 err_fget: 2235 err_fd_not_accepted: 2236 return ret; 2237 } 2238 2239 /** 2240 * struct binder_ptr_fixup - data to be fixed-up in target buffer 2241 * @offset offset in target buffer to fixup 2242 * @skip_size bytes to skip in copy (fixup will be written later) 2243 * @fixup_data data to write at fixup offset 2244 * @node list node 2245 * 2246 * This is used for the pointer fixup list (pf) which is created and consumed 2247 * during binder_transaction() and is only accessed locally. No 2248 * locking is necessary. 2249 * 2250 * The list is ordered by @offset. 2251 */ 2252 struct binder_ptr_fixup { 2253 binder_size_t offset; 2254 size_t skip_size; 2255 binder_uintptr_t fixup_data; 2256 struct list_head node; 2257 }; 2258 2259 /** 2260 * struct binder_sg_copy - scatter-gather data to be copied 2261 * @offset offset in target buffer 2262 * @sender_uaddr user address in source buffer 2263 * @length bytes to copy 2264 * @node list node 2265 * 2266 * This is used for the sg copy list (sgc) which is created and consumed 2267 * during binder_transaction() and is only accessed locally. No 2268 * locking is necessary. 2269 * 2270 * The list is ordered by @offset. 2271 */ 2272 struct binder_sg_copy { 2273 binder_size_t offset; 2274 const void __user *sender_uaddr; 2275 size_t length; 2276 struct list_head node; 2277 }; 2278 2279 /** 2280 * binder_do_deferred_txn_copies() - copy and fixup scatter-gather data 2281 * @alloc: binder_alloc associated with @buffer 2282 * @buffer: binder buffer in target process 2283 * @sgc_head: list_head of scatter-gather copy list 2284 * @pf_head: list_head of pointer fixup list 2285 * 2286 * Processes all elements of @sgc_head, applying fixups from @pf_head 2287 * and copying the scatter-gather data from the source process' user 2288 * buffer to the target's buffer. It is expected that the list creation 2289 * and processing all occurs during binder_transaction() so these lists 2290 * are only accessed in local context. 2291 * 2292 * Return: 0=success, else -errno 2293 */ 2294 static int binder_do_deferred_txn_copies(struct binder_alloc *alloc, 2295 struct binder_buffer *buffer, 2296 struct list_head *sgc_head, 2297 struct list_head *pf_head) 2298 { 2299 int ret = 0; 2300 struct binder_sg_copy *sgc, *tmpsgc; 2301 struct binder_ptr_fixup *pf = 2302 list_first_entry_or_null(pf_head, struct binder_ptr_fixup, 2303 node); 2304 2305 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { 2306 size_t bytes_copied = 0; 2307 2308 while (bytes_copied < sgc->length) { 2309 size_t copy_size; 2310 size_t bytes_left = sgc->length - bytes_copied; 2311 size_t offset = sgc->offset + bytes_copied; 2312 2313 /* 2314 * We copy up to the fixup (pointed to by pf) 2315 */ 2316 copy_size = pf ? min(bytes_left, (size_t)pf->offset - offset) 2317 : bytes_left; 2318 if (!ret && copy_size) 2319 ret = binder_alloc_copy_user_to_buffer( 2320 alloc, buffer, 2321 offset, 2322 sgc->sender_uaddr + bytes_copied, 2323 copy_size); 2324 bytes_copied += copy_size; 2325 if (copy_size != bytes_left) { 2326 BUG_ON(!pf); 2327 /* we stopped at a fixup offset */ 2328 if (pf->skip_size) { 2329 /* 2330 * we are just skipping. This is for 2331 * BINDER_TYPE_FDA where the translated 2332 * fds will be fixed up when we get 2333 * to target context. 2334 */ 2335 bytes_copied += pf->skip_size; 2336 } else { 2337 /* apply the fixup indicated by pf */ 2338 if (!ret) 2339 ret = binder_alloc_copy_to_buffer( 2340 alloc, buffer, 2341 pf->offset, 2342 &pf->fixup_data, 2343 sizeof(pf->fixup_data)); 2344 bytes_copied += sizeof(pf->fixup_data); 2345 } 2346 list_del(&pf->node); 2347 kfree(pf); 2348 pf = list_first_entry_or_null(pf_head, 2349 struct binder_ptr_fixup, node); 2350 } 2351 } 2352 list_del(&sgc->node); 2353 kfree(sgc); 2354 } 2355 BUG_ON(!list_empty(pf_head)); 2356 BUG_ON(!list_empty(sgc_head)); 2357 2358 return ret > 0 ? -EINVAL : ret; 2359 } 2360 2361 /** 2362 * binder_cleanup_deferred_txn_lists() - free specified lists 2363 * @sgc_head: list_head of scatter-gather copy list 2364 * @pf_head: list_head of pointer fixup list 2365 * 2366 * Called to clean up @sgc_head and @pf_head if there is an 2367 * error. 2368 */ 2369 static void binder_cleanup_deferred_txn_lists(struct list_head *sgc_head, 2370 struct list_head *pf_head) 2371 { 2372 struct binder_sg_copy *sgc, *tmpsgc; 2373 struct binder_ptr_fixup *pf, *tmppf; 2374 2375 list_for_each_entry_safe(sgc, tmpsgc, sgc_head, node) { 2376 list_del(&sgc->node); 2377 kfree(sgc); 2378 } 2379 list_for_each_entry_safe(pf, tmppf, pf_head, node) { 2380 list_del(&pf->node); 2381 kfree(pf); 2382 } 2383 } 2384 2385 /** 2386 * binder_defer_copy() - queue a scatter-gather buffer for copy 2387 * @sgc_head: list_head of scatter-gather copy list 2388 * @offset: binder buffer offset in target process 2389 * @sender_uaddr: user address in source process 2390 * @length: bytes to copy 2391 * 2392 * Specify a scatter-gather block to be copied. The actual copy must 2393 * be deferred until all the needed fixups are identified and queued. 2394 * Then the copy and fixups are done together so un-translated values 2395 * from the source are never visible in the target buffer. 2396 * 2397 * We are guaranteed that repeated calls to this function will have 2398 * monotonically increasing @offset values so the list will naturally 2399 * be ordered. 2400 * 2401 * Return: 0=success, else -errno 2402 */ 2403 static int binder_defer_copy(struct list_head *sgc_head, binder_size_t offset, 2404 const void __user *sender_uaddr, size_t length) 2405 { 2406 struct binder_sg_copy *bc = kzalloc(sizeof(*bc), GFP_KERNEL); 2407 2408 if (!bc) 2409 return -ENOMEM; 2410 2411 bc->offset = offset; 2412 bc->sender_uaddr = sender_uaddr; 2413 bc->length = length; 2414 INIT_LIST_HEAD(&bc->node); 2415 2416 /* 2417 * We are guaranteed that the deferred copies are in-order 2418 * so just add to the tail. 2419 */ 2420 list_add_tail(&bc->node, sgc_head); 2421 2422 return 0; 2423 } 2424 2425 /** 2426 * binder_add_fixup() - queue a fixup to be applied to sg copy 2427 * @pf_head: list_head of binder ptr fixup list 2428 * @offset: binder buffer offset in target process 2429 * @fixup: bytes to be copied for fixup 2430 * @skip_size: bytes to skip when copying (fixup will be applied later) 2431 * 2432 * Add the specified fixup to a list ordered by @offset. When copying 2433 * the scatter-gather buffers, the fixup will be copied instead of 2434 * data from the source buffer. For BINDER_TYPE_FDA fixups, the fixup 2435 * will be applied later (in target process context), so we just skip 2436 * the bytes specified by @skip_size. If @skip_size is 0, we copy the 2437 * value in @fixup. 2438 * 2439 * This function is called *mostly* in @offset order, but there are 2440 * exceptions. Since out-of-order inserts are relatively uncommon, 2441 * we insert the new element by searching backward from the tail of 2442 * the list. 2443 * 2444 * Return: 0=success, else -errno 2445 */ 2446 static int binder_add_fixup(struct list_head *pf_head, binder_size_t offset, 2447 binder_uintptr_t fixup, size_t skip_size) 2448 { 2449 struct binder_ptr_fixup *pf = kzalloc(sizeof(*pf), GFP_KERNEL); 2450 struct binder_ptr_fixup *tmppf; 2451 2452 if (!pf) 2453 return -ENOMEM; 2454 2455 pf->offset = offset; 2456 pf->fixup_data = fixup; 2457 pf->skip_size = skip_size; 2458 INIT_LIST_HEAD(&pf->node); 2459 2460 /* Fixups are *mostly* added in-order, but there are some 2461 * exceptions. Look backwards through list for insertion point. 2462 */ 2463 list_for_each_entry_reverse(tmppf, pf_head, node) { 2464 if (tmppf->offset < pf->offset) { 2465 list_add(&pf->node, &tmppf->node); 2466 return 0; 2467 } 2468 } 2469 /* 2470 * if we get here, then the new offset is the lowest so 2471 * insert at the head 2472 */ 2473 list_add(&pf->node, pf_head); 2474 return 0; 2475 } 2476 2477 static int binder_translate_fd_array(struct list_head *pf_head, 2478 struct binder_fd_array_object *fda, 2479 const void __user *sender_ubuffer, 2480 struct binder_buffer_object *parent, 2481 struct binder_buffer_object *sender_uparent, 2482 struct binder_transaction *t, 2483 struct binder_thread *thread, 2484 struct binder_transaction *in_reply_to) 2485 { 2486 binder_size_t fdi, fd_buf_size; 2487 binder_size_t fda_offset; 2488 const void __user *sender_ufda_base; 2489 struct binder_proc *proc = thread->proc; 2490 int ret; 2491 2492 fd_buf_size = sizeof(u32) * fda->num_fds; 2493 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) { 2494 binder_user_error("%d:%d got transaction with invalid number of fds (%lld)\n", 2495 proc->pid, thread->pid, (u64)fda->num_fds); 2496 return -EINVAL; 2497 } 2498 if (fd_buf_size > parent->length || 2499 fda->parent_offset > parent->length - fd_buf_size) { 2500 /* No space for all file descriptors here. */ 2501 binder_user_error("%d:%d not enough space to store %lld fds in buffer\n", 2502 proc->pid, thread->pid, (u64)fda->num_fds); 2503 return -EINVAL; 2504 } 2505 /* 2506 * the source data for binder_buffer_object is visible 2507 * to user-space and the @buffer element is the user 2508 * pointer to the buffer_object containing the fd_array. 2509 * Convert the address to an offset relative to 2510 * the base of the transaction buffer. 2511 */ 2512 fda_offset = (parent->buffer - (uintptr_t)t->buffer->user_data) + 2513 fda->parent_offset; 2514 sender_ufda_base = (void __user *)(uintptr_t)sender_uparent->buffer + 2515 fda->parent_offset; 2516 2517 if (!IS_ALIGNED((unsigned long)fda_offset, sizeof(u32)) || 2518 !IS_ALIGNED((unsigned long)sender_ufda_base, sizeof(u32))) { 2519 binder_user_error("%d:%d parent offset not aligned correctly.\n", 2520 proc->pid, thread->pid); 2521 return -EINVAL; 2522 } 2523 ret = binder_add_fixup(pf_head, fda_offset, 0, fda->num_fds * sizeof(u32)); 2524 if (ret) 2525 return ret; 2526 2527 for (fdi = 0; fdi < fda->num_fds; fdi++) { 2528 u32 fd; 2529 binder_size_t offset = fda_offset + fdi * sizeof(fd); 2530 binder_size_t sender_uoffset = fdi * sizeof(fd); 2531 2532 ret = copy_from_user(&fd, sender_ufda_base + sender_uoffset, sizeof(fd)); 2533 if (!ret) 2534 ret = binder_translate_fd(fd, offset, t, thread, 2535 in_reply_to); 2536 if (ret) 2537 return ret > 0 ? -EINVAL : ret; 2538 } 2539 return 0; 2540 } 2541 2542 static int binder_fixup_parent(struct list_head *pf_head, 2543 struct binder_transaction *t, 2544 struct binder_thread *thread, 2545 struct binder_buffer_object *bp, 2546 binder_size_t off_start_offset, 2547 binder_size_t num_valid, 2548 binder_size_t last_fixup_obj_off, 2549 binder_size_t last_fixup_min_off) 2550 { 2551 struct binder_buffer_object *parent; 2552 struct binder_buffer *b = t->buffer; 2553 struct binder_proc *proc = thread->proc; 2554 struct binder_proc *target_proc = t->to_proc; 2555 struct binder_object object; 2556 binder_size_t buffer_offset; 2557 binder_size_t parent_offset; 2558 2559 if (!(bp->flags & BINDER_BUFFER_FLAG_HAS_PARENT)) 2560 return 0; 2561 2562 parent = binder_validate_ptr(target_proc, b, &object, bp->parent, 2563 off_start_offset, &parent_offset, 2564 num_valid); 2565 if (!parent) { 2566 binder_user_error("%d:%d got transaction with invalid parent offset or type\n", 2567 proc->pid, thread->pid); 2568 return -EINVAL; 2569 } 2570 2571 if (!binder_validate_fixup(target_proc, b, off_start_offset, 2572 parent_offset, bp->parent_offset, 2573 last_fixup_obj_off, 2574 last_fixup_min_off)) { 2575 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n", 2576 proc->pid, thread->pid); 2577 return -EINVAL; 2578 } 2579 2580 if (parent->length < sizeof(binder_uintptr_t) || 2581 bp->parent_offset > parent->length - sizeof(binder_uintptr_t)) { 2582 /* No space for a pointer here! */ 2583 binder_user_error("%d:%d got transaction with invalid parent offset\n", 2584 proc->pid, thread->pid); 2585 return -EINVAL; 2586 } 2587 buffer_offset = bp->parent_offset + 2588 (uintptr_t)parent->buffer - (uintptr_t)b->user_data; 2589 return binder_add_fixup(pf_head, buffer_offset, bp->buffer, 0); 2590 } 2591 2592 /** 2593 * binder_proc_transaction() - sends a transaction to a process and wakes it up 2594 * @t: transaction to send 2595 * @proc: process to send the transaction to 2596 * @thread: thread in @proc to send the transaction to (may be NULL) 2597 * 2598 * This function queues a transaction to the specified process. It will try 2599 * to find a thread in the target process to handle the transaction and 2600 * wake it up. If no thread is found, the work is queued to the proc 2601 * waitqueue. 2602 * 2603 * If the @thread parameter is not NULL, the transaction is always queued 2604 * to the waitlist of that specific thread. 2605 * 2606 * Return: 0 if the transaction was successfully queued 2607 * BR_DEAD_REPLY if the target process or thread is dead 2608 * BR_FROZEN_REPLY if the target process or thread is frozen 2609 */ 2610 static int binder_proc_transaction(struct binder_transaction *t, 2611 struct binder_proc *proc, 2612 struct binder_thread *thread) 2613 { 2614 struct binder_node *node = t->buffer->target_node; 2615 bool oneway = !!(t->flags & TF_ONE_WAY); 2616 bool pending_async = false; 2617 2618 BUG_ON(!node); 2619 binder_node_lock(node); 2620 if (oneway) { 2621 BUG_ON(thread); 2622 if (node->has_async_transaction) 2623 pending_async = true; 2624 else 2625 node->has_async_transaction = true; 2626 } 2627 2628 binder_inner_proc_lock(proc); 2629 if (proc->is_frozen) { 2630 proc->sync_recv |= !oneway; 2631 proc->async_recv |= oneway; 2632 } 2633 2634 if ((proc->is_frozen && !oneway) || proc->is_dead || 2635 (thread && thread->is_dead)) { 2636 binder_inner_proc_unlock(proc); 2637 binder_node_unlock(node); 2638 return proc->is_frozen ? BR_FROZEN_REPLY : BR_DEAD_REPLY; 2639 } 2640 2641 if (!thread && !pending_async) 2642 thread = binder_select_thread_ilocked(proc); 2643 2644 if (thread) 2645 binder_enqueue_thread_work_ilocked(thread, &t->work); 2646 else if (!pending_async) 2647 binder_enqueue_work_ilocked(&t->work, &proc->todo); 2648 else 2649 binder_enqueue_work_ilocked(&t->work, &node->async_todo); 2650 2651 if (!pending_async) 2652 binder_wakeup_thread_ilocked(proc, thread, !oneway /* sync */); 2653 2654 proc->outstanding_txns++; 2655 binder_inner_proc_unlock(proc); 2656 binder_node_unlock(node); 2657 2658 return 0; 2659 } 2660 2661 /** 2662 * binder_get_node_refs_for_txn() - Get required refs on node for txn 2663 * @node: struct binder_node for which to get refs 2664 * @proc: returns @node->proc if valid 2665 * @error: if no @proc then returns BR_DEAD_REPLY 2666 * 2667 * User-space normally keeps the node alive when creating a transaction 2668 * since it has a reference to the target. The local strong ref keeps it 2669 * alive if the sending process dies before the target process processes 2670 * the transaction. If the source process is malicious or has a reference 2671 * counting bug, relying on the local strong ref can fail. 2672 * 2673 * Since user-space can cause the local strong ref to go away, we also take 2674 * a tmpref on the node to ensure it survives while we are constructing 2675 * the transaction. We also need a tmpref on the proc while we are 2676 * constructing the transaction, so we take that here as well. 2677 * 2678 * Return: The target_node with refs taken or NULL if no @node->proc is NULL. 2679 * Also sets @proc if valid. If the @node->proc is NULL indicating that the 2680 * target proc has died, @error is set to BR_DEAD_REPLY 2681 */ 2682 static struct binder_node *binder_get_node_refs_for_txn( 2683 struct binder_node *node, 2684 struct binder_proc **procp, 2685 uint32_t *error) 2686 { 2687 struct binder_node *target_node = NULL; 2688 2689 binder_node_inner_lock(node); 2690 if (node->proc) { 2691 target_node = node; 2692 binder_inc_node_nilocked(node, 1, 0, NULL); 2693 binder_inc_node_tmpref_ilocked(node); 2694 node->proc->tmp_ref++; 2695 *procp = node->proc; 2696 } else 2697 *error = BR_DEAD_REPLY; 2698 binder_node_inner_unlock(node); 2699 2700 return target_node; 2701 } 2702 2703 static void binder_transaction(struct binder_proc *proc, 2704 struct binder_thread *thread, 2705 struct binder_transaction_data *tr, int reply, 2706 binder_size_t extra_buffers_size) 2707 { 2708 int ret; 2709 struct binder_transaction *t; 2710 struct binder_work *w; 2711 struct binder_work *tcomplete; 2712 binder_size_t buffer_offset = 0; 2713 binder_size_t off_start_offset, off_end_offset; 2714 binder_size_t off_min; 2715 binder_size_t sg_buf_offset, sg_buf_end_offset; 2716 binder_size_t user_offset = 0; 2717 struct binder_proc *target_proc = NULL; 2718 struct binder_thread *target_thread = NULL; 2719 struct binder_node *target_node = NULL; 2720 struct binder_transaction *in_reply_to = NULL; 2721 struct binder_transaction_log_entry *e; 2722 uint32_t return_error = 0; 2723 uint32_t return_error_param = 0; 2724 uint32_t return_error_line = 0; 2725 binder_size_t last_fixup_obj_off = 0; 2726 binder_size_t last_fixup_min_off = 0; 2727 struct binder_context *context = proc->context; 2728 int t_debug_id = atomic_inc_return(&binder_last_id); 2729 char *secctx = NULL; 2730 u32 secctx_sz = 0; 2731 struct list_head sgc_head; 2732 struct list_head pf_head; 2733 const void __user *user_buffer = (const void __user *) 2734 (uintptr_t)tr->data.ptr.buffer; 2735 INIT_LIST_HEAD(&sgc_head); 2736 INIT_LIST_HEAD(&pf_head); 2737 2738 e = binder_transaction_log_add(&binder_transaction_log); 2739 e->debug_id = t_debug_id; 2740 e->call_type = reply ? 2 : !!(tr->flags & TF_ONE_WAY); 2741 e->from_proc = proc->pid; 2742 e->from_thread = thread->pid; 2743 e->target_handle = tr->target.handle; 2744 e->data_size = tr->data_size; 2745 e->offsets_size = tr->offsets_size; 2746 strscpy(e->context_name, proc->context->name, BINDERFS_MAX_NAME); 2747 2748 if (reply) { 2749 binder_inner_proc_lock(proc); 2750 in_reply_to = thread->transaction_stack; 2751 if (in_reply_to == NULL) { 2752 binder_inner_proc_unlock(proc); 2753 binder_user_error("%d:%d got reply transaction with no transaction stack\n", 2754 proc->pid, thread->pid); 2755 return_error = BR_FAILED_REPLY; 2756 return_error_param = -EPROTO; 2757 return_error_line = __LINE__; 2758 goto err_empty_call_stack; 2759 } 2760 if (in_reply_to->to_thread != thread) { 2761 spin_lock(&in_reply_to->lock); 2762 binder_user_error("%d:%d got reply transaction with bad transaction stack, transaction %d has target %d:%d\n", 2763 proc->pid, thread->pid, in_reply_to->debug_id, 2764 in_reply_to->to_proc ? 2765 in_reply_to->to_proc->pid : 0, 2766 in_reply_to->to_thread ? 2767 in_reply_to->to_thread->pid : 0); 2768 spin_unlock(&in_reply_to->lock); 2769 binder_inner_proc_unlock(proc); 2770 return_error = BR_FAILED_REPLY; 2771 return_error_param = -EPROTO; 2772 return_error_line = __LINE__; 2773 in_reply_to = NULL; 2774 goto err_bad_call_stack; 2775 } 2776 thread->transaction_stack = in_reply_to->to_parent; 2777 binder_inner_proc_unlock(proc); 2778 binder_set_nice(in_reply_to->saved_priority); 2779 target_thread = binder_get_txn_from_and_acq_inner(in_reply_to); 2780 if (target_thread == NULL) { 2781 /* annotation for sparse */ 2782 __release(&target_thread->proc->inner_lock); 2783 return_error = BR_DEAD_REPLY; 2784 return_error_line = __LINE__; 2785 goto err_dead_binder; 2786 } 2787 if (target_thread->transaction_stack != in_reply_to) { 2788 binder_user_error("%d:%d got reply transaction with bad target transaction stack %d, expected %d\n", 2789 proc->pid, thread->pid, 2790 target_thread->transaction_stack ? 2791 target_thread->transaction_stack->debug_id : 0, 2792 in_reply_to->debug_id); 2793 binder_inner_proc_unlock(target_thread->proc); 2794 return_error = BR_FAILED_REPLY; 2795 return_error_param = -EPROTO; 2796 return_error_line = __LINE__; 2797 in_reply_to = NULL; 2798 target_thread = NULL; 2799 goto err_dead_binder; 2800 } 2801 target_proc = target_thread->proc; 2802 target_proc->tmp_ref++; 2803 binder_inner_proc_unlock(target_thread->proc); 2804 } else { 2805 if (tr->target.handle) { 2806 struct binder_ref *ref; 2807 2808 /* 2809 * There must already be a strong ref 2810 * on this node. If so, do a strong 2811 * increment on the node to ensure it 2812 * stays alive until the transaction is 2813 * done. 2814 */ 2815 binder_proc_lock(proc); 2816 ref = binder_get_ref_olocked(proc, tr->target.handle, 2817 true); 2818 if (ref) { 2819 target_node = binder_get_node_refs_for_txn( 2820 ref->node, &target_proc, 2821 &return_error); 2822 } else { 2823 binder_user_error("%d:%d got transaction to invalid handle, %u\n", 2824 proc->pid, thread->pid, tr->target.handle); 2825 return_error = BR_FAILED_REPLY; 2826 } 2827 binder_proc_unlock(proc); 2828 } else { 2829 mutex_lock(&context->context_mgr_node_lock); 2830 target_node = context->binder_context_mgr_node; 2831 if (target_node) 2832 target_node = binder_get_node_refs_for_txn( 2833 target_node, &target_proc, 2834 &return_error); 2835 else 2836 return_error = BR_DEAD_REPLY; 2837 mutex_unlock(&context->context_mgr_node_lock); 2838 if (target_node && target_proc->pid == proc->pid) { 2839 binder_user_error("%d:%d got transaction to context manager from process owning it\n", 2840 proc->pid, thread->pid); 2841 return_error = BR_FAILED_REPLY; 2842 return_error_param = -EINVAL; 2843 return_error_line = __LINE__; 2844 goto err_invalid_target_handle; 2845 } 2846 } 2847 if (!target_node) { 2848 /* 2849 * return_error is set above 2850 */ 2851 return_error_param = -EINVAL; 2852 return_error_line = __LINE__; 2853 goto err_dead_binder; 2854 } 2855 e->to_node = target_node->debug_id; 2856 if (WARN_ON(proc == target_proc)) { 2857 return_error = BR_FAILED_REPLY; 2858 return_error_param = -EINVAL; 2859 return_error_line = __LINE__; 2860 goto err_invalid_target_handle; 2861 } 2862 if (security_binder_transaction(proc->cred, 2863 target_proc->cred) < 0) { 2864 return_error = BR_FAILED_REPLY; 2865 return_error_param = -EPERM; 2866 return_error_line = __LINE__; 2867 goto err_invalid_target_handle; 2868 } 2869 binder_inner_proc_lock(proc); 2870 2871 w = list_first_entry_or_null(&thread->todo, 2872 struct binder_work, entry); 2873 if (!(tr->flags & TF_ONE_WAY) && w && 2874 w->type == BINDER_WORK_TRANSACTION) { 2875 /* 2876 * Do not allow new outgoing transaction from a 2877 * thread that has a transaction at the head of 2878 * its todo list. Only need to check the head 2879 * because binder_select_thread_ilocked picks a 2880 * thread from proc->waiting_threads to enqueue 2881 * the transaction, and nothing is queued to the 2882 * todo list while the thread is on waiting_threads. 2883 */ 2884 binder_user_error("%d:%d new transaction not allowed when there is a transaction on thread todo\n", 2885 proc->pid, thread->pid); 2886 binder_inner_proc_unlock(proc); 2887 return_error = BR_FAILED_REPLY; 2888 return_error_param = -EPROTO; 2889 return_error_line = __LINE__; 2890 goto err_bad_todo_list; 2891 } 2892 2893 if (!(tr->flags & TF_ONE_WAY) && thread->transaction_stack) { 2894 struct binder_transaction *tmp; 2895 2896 tmp = thread->transaction_stack; 2897 if (tmp->to_thread != thread) { 2898 spin_lock(&tmp->lock); 2899 binder_user_error("%d:%d got new transaction with bad transaction stack, transaction %d has target %d:%d\n", 2900 proc->pid, thread->pid, tmp->debug_id, 2901 tmp->to_proc ? tmp->to_proc->pid : 0, 2902 tmp->to_thread ? 2903 tmp->to_thread->pid : 0); 2904 spin_unlock(&tmp->lock); 2905 binder_inner_proc_unlock(proc); 2906 return_error = BR_FAILED_REPLY; 2907 return_error_param = -EPROTO; 2908 return_error_line = __LINE__; 2909 goto err_bad_call_stack; 2910 } 2911 while (tmp) { 2912 struct binder_thread *from; 2913 2914 spin_lock(&tmp->lock); 2915 from = tmp->from; 2916 if (from && from->proc == target_proc) { 2917 atomic_inc(&from->tmp_ref); 2918 target_thread = from; 2919 spin_unlock(&tmp->lock); 2920 break; 2921 } 2922 spin_unlock(&tmp->lock); 2923 tmp = tmp->from_parent; 2924 } 2925 } 2926 binder_inner_proc_unlock(proc); 2927 } 2928 if (target_thread) 2929 e->to_thread = target_thread->pid; 2930 e->to_proc = target_proc->pid; 2931 2932 /* TODO: reuse incoming transaction for reply */ 2933 t = kzalloc(sizeof(*t), GFP_KERNEL); 2934 if (t == NULL) { 2935 return_error = BR_FAILED_REPLY; 2936 return_error_param = -ENOMEM; 2937 return_error_line = __LINE__; 2938 goto err_alloc_t_failed; 2939 } 2940 INIT_LIST_HEAD(&t->fd_fixups); 2941 binder_stats_created(BINDER_STAT_TRANSACTION); 2942 spin_lock_init(&t->lock); 2943 2944 tcomplete = kzalloc(sizeof(*tcomplete), GFP_KERNEL); 2945 if (tcomplete == NULL) { 2946 return_error = BR_FAILED_REPLY; 2947 return_error_param = -ENOMEM; 2948 return_error_line = __LINE__; 2949 goto err_alloc_tcomplete_failed; 2950 } 2951 binder_stats_created(BINDER_STAT_TRANSACTION_COMPLETE); 2952 2953 t->debug_id = t_debug_id; 2954 2955 if (reply) 2956 binder_debug(BINDER_DEBUG_TRANSACTION, 2957 "%d:%d BC_REPLY %d -> %d:%d, data %016llx-%016llx size %lld-%lld-%lld\n", 2958 proc->pid, thread->pid, t->debug_id, 2959 target_proc->pid, target_thread->pid, 2960 (u64)tr->data.ptr.buffer, 2961 (u64)tr->data.ptr.offsets, 2962 (u64)tr->data_size, (u64)tr->offsets_size, 2963 (u64)extra_buffers_size); 2964 else 2965 binder_debug(BINDER_DEBUG_TRANSACTION, 2966 "%d:%d BC_TRANSACTION %d -> %d - node %d, data %016llx-%016llx size %lld-%lld-%lld\n", 2967 proc->pid, thread->pid, t->debug_id, 2968 target_proc->pid, target_node->debug_id, 2969 (u64)tr->data.ptr.buffer, 2970 (u64)tr->data.ptr.offsets, 2971 (u64)tr->data_size, (u64)tr->offsets_size, 2972 (u64)extra_buffers_size); 2973 2974 if (!reply && !(tr->flags & TF_ONE_WAY)) 2975 t->from = thread; 2976 else 2977 t->from = NULL; 2978 t->sender_euid = task_euid(proc->tsk); 2979 t->to_proc = target_proc; 2980 t->to_thread = target_thread; 2981 t->code = tr->code; 2982 t->flags = tr->flags; 2983 t->priority = task_nice(current); 2984 2985 if (target_node && target_node->txn_security_ctx) { 2986 u32 secid; 2987 size_t added_size; 2988 2989 security_cred_getsecid(proc->cred, &secid); 2990 ret = security_secid_to_secctx(secid, &secctx, &secctx_sz); 2991 if (ret) { 2992 return_error = BR_FAILED_REPLY; 2993 return_error_param = ret; 2994 return_error_line = __LINE__; 2995 goto err_get_secctx_failed; 2996 } 2997 added_size = ALIGN(secctx_sz, sizeof(u64)); 2998 extra_buffers_size += added_size; 2999 if (extra_buffers_size < added_size) { 3000 /* integer overflow of extra_buffers_size */ 3001 return_error = BR_FAILED_REPLY; 3002 return_error_param = -EINVAL; 3003 return_error_line = __LINE__; 3004 goto err_bad_extra_size; 3005 } 3006 } 3007 3008 trace_binder_transaction(reply, t, target_node); 3009 3010 t->buffer = binder_alloc_new_buf(&target_proc->alloc, tr->data_size, 3011 tr->offsets_size, extra_buffers_size, 3012 !reply && (t->flags & TF_ONE_WAY), current->tgid); 3013 if (IS_ERR(t->buffer)) { 3014 /* 3015 * -ESRCH indicates VMA cleared. The target is dying. 3016 */ 3017 return_error_param = PTR_ERR(t->buffer); 3018 return_error = return_error_param == -ESRCH ? 3019 BR_DEAD_REPLY : BR_FAILED_REPLY; 3020 return_error_line = __LINE__; 3021 t->buffer = NULL; 3022 goto err_binder_alloc_buf_failed; 3023 } 3024 if (secctx) { 3025 int err; 3026 size_t buf_offset = ALIGN(tr->data_size, sizeof(void *)) + 3027 ALIGN(tr->offsets_size, sizeof(void *)) + 3028 ALIGN(extra_buffers_size, sizeof(void *)) - 3029 ALIGN(secctx_sz, sizeof(u64)); 3030 3031 t->security_ctx = (uintptr_t)t->buffer->user_data + buf_offset; 3032 err = binder_alloc_copy_to_buffer(&target_proc->alloc, 3033 t->buffer, buf_offset, 3034 secctx, secctx_sz); 3035 if (err) { 3036 t->security_ctx = 0; 3037 WARN_ON(1); 3038 } 3039 security_release_secctx(secctx, secctx_sz); 3040 secctx = NULL; 3041 } 3042 t->buffer->debug_id = t->debug_id; 3043 t->buffer->transaction = t; 3044 t->buffer->target_node = target_node; 3045 t->buffer->clear_on_free = !!(t->flags & TF_CLEAR_BUF); 3046 trace_binder_transaction_alloc_buf(t->buffer); 3047 3048 if (binder_alloc_copy_user_to_buffer( 3049 &target_proc->alloc, 3050 t->buffer, 3051 ALIGN(tr->data_size, sizeof(void *)), 3052 (const void __user *) 3053 (uintptr_t)tr->data.ptr.offsets, 3054 tr->offsets_size)) { 3055 binder_user_error("%d:%d got transaction with invalid offsets ptr\n", 3056 proc->pid, thread->pid); 3057 return_error = BR_FAILED_REPLY; 3058 return_error_param = -EFAULT; 3059 return_error_line = __LINE__; 3060 goto err_copy_data_failed; 3061 } 3062 if (!IS_ALIGNED(tr->offsets_size, sizeof(binder_size_t))) { 3063 binder_user_error("%d:%d got transaction with invalid offsets size, %lld\n", 3064 proc->pid, thread->pid, (u64)tr->offsets_size); 3065 return_error = BR_FAILED_REPLY; 3066 return_error_param = -EINVAL; 3067 return_error_line = __LINE__; 3068 goto err_bad_offset; 3069 } 3070 if (!IS_ALIGNED(extra_buffers_size, sizeof(u64))) { 3071 binder_user_error("%d:%d got transaction with unaligned buffers size, %lld\n", 3072 proc->pid, thread->pid, 3073 (u64)extra_buffers_size); 3074 return_error = BR_FAILED_REPLY; 3075 return_error_param = -EINVAL; 3076 return_error_line = __LINE__; 3077 goto err_bad_offset; 3078 } 3079 off_start_offset = ALIGN(tr->data_size, sizeof(void *)); 3080 buffer_offset = off_start_offset; 3081 off_end_offset = off_start_offset + tr->offsets_size; 3082 sg_buf_offset = ALIGN(off_end_offset, sizeof(void *)); 3083 sg_buf_end_offset = sg_buf_offset + extra_buffers_size - 3084 ALIGN(secctx_sz, sizeof(u64)); 3085 off_min = 0; 3086 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; 3087 buffer_offset += sizeof(binder_size_t)) { 3088 struct binder_object_header *hdr; 3089 size_t object_size; 3090 struct binder_object object; 3091 binder_size_t object_offset; 3092 binder_size_t copy_size; 3093 3094 if (binder_alloc_copy_from_buffer(&target_proc->alloc, 3095 &object_offset, 3096 t->buffer, 3097 buffer_offset, 3098 sizeof(object_offset))) { 3099 return_error = BR_FAILED_REPLY; 3100 return_error_param = -EINVAL; 3101 return_error_line = __LINE__; 3102 goto err_bad_offset; 3103 } 3104 3105 /* 3106 * Copy the source user buffer up to the next object 3107 * that will be processed. 3108 */ 3109 copy_size = object_offset - user_offset; 3110 if (copy_size && (user_offset > object_offset || 3111 binder_alloc_copy_user_to_buffer( 3112 &target_proc->alloc, 3113 t->buffer, user_offset, 3114 user_buffer + user_offset, 3115 copy_size))) { 3116 binder_user_error("%d:%d got transaction with invalid data ptr\n", 3117 proc->pid, thread->pid); 3118 return_error = BR_FAILED_REPLY; 3119 return_error_param = -EFAULT; 3120 return_error_line = __LINE__; 3121 goto err_copy_data_failed; 3122 } 3123 object_size = binder_get_object(target_proc, user_buffer, 3124 t->buffer, object_offset, &object); 3125 if (object_size == 0 || object_offset < off_min) { 3126 binder_user_error("%d:%d got transaction with invalid offset (%lld, min %lld max %lld) or object.\n", 3127 proc->pid, thread->pid, 3128 (u64)object_offset, 3129 (u64)off_min, 3130 (u64)t->buffer->data_size); 3131 return_error = BR_FAILED_REPLY; 3132 return_error_param = -EINVAL; 3133 return_error_line = __LINE__; 3134 goto err_bad_offset; 3135 } 3136 /* 3137 * Set offset to the next buffer fragment to be 3138 * copied 3139 */ 3140 user_offset = object_offset + object_size; 3141 3142 hdr = &object.hdr; 3143 off_min = object_offset + object_size; 3144 switch (hdr->type) { 3145 case BINDER_TYPE_BINDER: 3146 case BINDER_TYPE_WEAK_BINDER: { 3147 struct flat_binder_object *fp; 3148 3149 fp = to_flat_binder_object(hdr); 3150 ret = binder_translate_binder(fp, t, thread); 3151 3152 if (ret < 0 || 3153 binder_alloc_copy_to_buffer(&target_proc->alloc, 3154 t->buffer, 3155 object_offset, 3156 fp, sizeof(*fp))) { 3157 return_error = BR_FAILED_REPLY; 3158 return_error_param = ret; 3159 return_error_line = __LINE__; 3160 goto err_translate_failed; 3161 } 3162 } break; 3163 case BINDER_TYPE_HANDLE: 3164 case BINDER_TYPE_WEAK_HANDLE: { 3165 struct flat_binder_object *fp; 3166 3167 fp = to_flat_binder_object(hdr); 3168 ret = binder_translate_handle(fp, t, thread); 3169 if (ret < 0 || 3170 binder_alloc_copy_to_buffer(&target_proc->alloc, 3171 t->buffer, 3172 object_offset, 3173 fp, sizeof(*fp))) { 3174 return_error = BR_FAILED_REPLY; 3175 return_error_param = ret; 3176 return_error_line = __LINE__; 3177 goto err_translate_failed; 3178 } 3179 } break; 3180 3181 case BINDER_TYPE_FD: { 3182 struct binder_fd_object *fp = to_binder_fd_object(hdr); 3183 binder_size_t fd_offset = object_offset + 3184 (uintptr_t)&fp->fd - (uintptr_t)fp; 3185 int ret = binder_translate_fd(fp->fd, fd_offset, t, 3186 thread, in_reply_to); 3187 3188 fp->pad_binder = 0; 3189 if (ret < 0 || 3190 binder_alloc_copy_to_buffer(&target_proc->alloc, 3191 t->buffer, 3192 object_offset, 3193 fp, sizeof(*fp))) { 3194 return_error = BR_FAILED_REPLY; 3195 return_error_param = ret; 3196 return_error_line = __LINE__; 3197 goto err_translate_failed; 3198 } 3199 } break; 3200 case BINDER_TYPE_FDA: { 3201 struct binder_object ptr_object; 3202 binder_size_t parent_offset; 3203 struct binder_object user_object; 3204 size_t user_parent_size; 3205 struct binder_fd_array_object *fda = 3206 to_binder_fd_array_object(hdr); 3207 size_t num_valid = (buffer_offset - off_start_offset) / 3208 sizeof(binder_size_t); 3209 struct binder_buffer_object *parent = 3210 binder_validate_ptr(target_proc, t->buffer, 3211 &ptr_object, fda->parent, 3212 off_start_offset, 3213 &parent_offset, 3214 num_valid); 3215 if (!parent) { 3216 binder_user_error("%d:%d got transaction with invalid parent offset or type\n", 3217 proc->pid, thread->pid); 3218 return_error = BR_FAILED_REPLY; 3219 return_error_param = -EINVAL; 3220 return_error_line = __LINE__; 3221 goto err_bad_parent; 3222 } 3223 if (!binder_validate_fixup(target_proc, t->buffer, 3224 off_start_offset, 3225 parent_offset, 3226 fda->parent_offset, 3227 last_fixup_obj_off, 3228 last_fixup_min_off)) { 3229 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n", 3230 proc->pid, thread->pid); 3231 return_error = BR_FAILED_REPLY; 3232 return_error_param = -EINVAL; 3233 return_error_line = __LINE__; 3234 goto err_bad_parent; 3235 } 3236 /* 3237 * We need to read the user version of the parent 3238 * object to get the original user offset 3239 */ 3240 user_parent_size = 3241 binder_get_object(proc, user_buffer, t->buffer, 3242 parent_offset, &user_object); 3243 if (user_parent_size != sizeof(user_object.bbo)) { 3244 binder_user_error("%d:%d invalid ptr object size: %zd vs %zd\n", 3245 proc->pid, thread->pid, 3246 user_parent_size, 3247 sizeof(user_object.bbo)); 3248 return_error = BR_FAILED_REPLY; 3249 return_error_param = -EINVAL; 3250 return_error_line = __LINE__; 3251 goto err_bad_parent; 3252 } 3253 ret = binder_translate_fd_array(&pf_head, fda, 3254 user_buffer, parent, 3255 &user_object.bbo, t, 3256 thread, in_reply_to); 3257 if (!ret) 3258 ret = binder_alloc_copy_to_buffer(&target_proc->alloc, 3259 t->buffer, 3260 object_offset, 3261 fda, sizeof(*fda)); 3262 if (ret) { 3263 return_error = BR_FAILED_REPLY; 3264 return_error_param = ret > 0 ? -EINVAL : ret; 3265 return_error_line = __LINE__; 3266 goto err_translate_failed; 3267 } 3268 last_fixup_obj_off = parent_offset; 3269 last_fixup_min_off = 3270 fda->parent_offset + sizeof(u32) * fda->num_fds; 3271 } break; 3272 case BINDER_TYPE_PTR: { 3273 struct binder_buffer_object *bp = 3274 to_binder_buffer_object(hdr); 3275 size_t buf_left = sg_buf_end_offset - sg_buf_offset; 3276 size_t num_valid; 3277 3278 if (bp->length > buf_left) { 3279 binder_user_error("%d:%d got transaction with too large buffer\n", 3280 proc->pid, thread->pid); 3281 return_error = BR_FAILED_REPLY; 3282 return_error_param = -EINVAL; 3283 return_error_line = __LINE__; 3284 goto err_bad_offset; 3285 } 3286 ret = binder_defer_copy(&sgc_head, sg_buf_offset, 3287 (const void __user *)(uintptr_t)bp->buffer, 3288 bp->length); 3289 if (ret) { 3290 return_error = BR_FAILED_REPLY; 3291 return_error_param = ret; 3292 return_error_line = __LINE__; 3293 goto err_translate_failed; 3294 } 3295 /* Fixup buffer pointer to target proc address space */ 3296 bp->buffer = (uintptr_t) 3297 t->buffer->user_data + sg_buf_offset; 3298 sg_buf_offset += ALIGN(bp->length, sizeof(u64)); 3299 3300 num_valid = (buffer_offset - off_start_offset) / 3301 sizeof(binder_size_t); 3302 ret = binder_fixup_parent(&pf_head, t, 3303 thread, bp, 3304 off_start_offset, 3305 num_valid, 3306 last_fixup_obj_off, 3307 last_fixup_min_off); 3308 if (ret < 0 || 3309 binder_alloc_copy_to_buffer(&target_proc->alloc, 3310 t->buffer, 3311 object_offset, 3312 bp, sizeof(*bp))) { 3313 return_error = BR_FAILED_REPLY; 3314 return_error_param = ret; 3315 return_error_line = __LINE__; 3316 goto err_translate_failed; 3317 } 3318 last_fixup_obj_off = object_offset; 3319 last_fixup_min_off = 0; 3320 } break; 3321 default: 3322 binder_user_error("%d:%d got transaction with invalid object type, %x\n", 3323 proc->pid, thread->pid, hdr->type); 3324 return_error = BR_FAILED_REPLY; 3325 return_error_param = -EINVAL; 3326 return_error_line = __LINE__; 3327 goto err_bad_object_type; 3328 } 3329 } 3330 /* Done processing objects, copy the rest of the buffer */ 3331 if (binder_alloc_copy_user_to_buffer( 3332 &target_proc->alloc, 3333 t->buffer, user_offset, 3334 user_buffer + user_offset, 3335 tr->data_size - user_offset)) { 3336 binder_user_error("%d:%d got transaction with invalid data ptr\n", 3337 proc->pid, thread->pid); 3338 return_error = BR_FAILED_REPLY; 3339 return_error_param = -EFAULT; 3340 return_error_line = __LINE__; 3341 goto err_copy_data_failed; 3342 } 3343 3344 ret = binder_do_deferred_txn_copies(&target_proc->alloc, t->buffer, 3345 &sgc_head, &pf_head); 3346 if (ret) { 3347 binder_user_error("%d:%d got transaction with invalid offsets ptr\n", 3348 proc->pid, thread->pid); 3349 return_error = BR_FAILED_REPLY; 3350 return_error_param = ret; 3351 return_error_line = __LINE__; 3352 goto err_copy_data_failed; 3353 } 3354 if (t->buffer->oneway_spam_suspect) 3355 tcomplete->type = BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT; 3356 else 3357 tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE; 3358 t->work.type = BINDER_WORK_TRANSACTION; 3359 3360 if (reply) { 3361 binder_enqueue_thread_work(thread, tcomplete); 3362 binder_inner_proc_lock(target_proc); 3363 if (target_thread->is_dead) { 3364 return_error = BR_DEAD_REPLY; 3365 binder_inner_proc_unlock(target_proc); 3366 goto err_dead_proc_or_thread; 3367 } 3368 BUG_ON(t->buffer->async_transaction != 0); 3369 binder_pop_transaction_ilocked(target_thread, in_reply_to); 3370 binder_enqueue_thread_work_ilocked(target_thread, &t->work); 3371 target_proc->outstanding_txns++; 3372 binder_inner_proc_unlock(target_proc); 3373 wake_up_interruptible_sync(&target_thread->wait); 3374 binder_free_transaction(in_reply_to); 3375 } else if (!(t->flags & TF_ONE_WAY)) { 3376 BUG_ON(t->buffer->async_transaction != 0); 3377 binder_inner_proc_lock(proc); 3378 /* 3379 * Defer the TRANSACTION_COMPLETE, so we don't return to 3380 * userspace immediately; this allows the target process to 3381 * immediately start processing this transaction, reducing 3382 * latency. We will then return the TRANSACTION_COMPLETE when 3383 * the target replies (or there is an error). 3384 */ 3385 binder_enqueue_deferred_thread_work_ilocked(thread, tcomplete); 3386 t->need_reply = 1; 3387 t->from_parent = thread->transaction_stack; 3388 thread->transaction_stack = t; 3389 binder_inner_proc_unlock(proc); 3390 return_error = binder_proc_transaction(t, 3391 target_proc, target_thread); 3392 if (return_error) { 3393 binder_inner_proc_lock(proc); 3394 binder_pop_transaction_ilocked(thread, t); 3395 binder_inner_proc_unlock(proc); 3396 goto err_dead_proc_or_thread; 3397 } 3398 } else { 3399 BUG_ON(target_node == NULL); 3400 BUG_ON(t->buffer->async_transaction != 1); 3401 binder_enqueue_thread_work(thread, tcomplete); 3402 return_error = binder_proc_transaction(t, target_proc, NULL); 3403 if (return_error) 3404 goto err_dead_proc_or_thread; 3405 } 3406 if (target_thread) 3407 binder_thread_dec_tmpref(target_thread); 3408 binder_proc_dec_tmpref(target_proc); 3409 if (target_node) 3410 binder_dec_node_tmpref(target_node); 3411 /* 3412 * write barrier to synchronize with initialization 3413 * of log entry 3414 */ 3415 smp_wmb(); 3416 WRITE_ONCE(e->debug_id_done, t_debug_id); 3417 return; 3418 3419 err_dead_proc_or_thread: 3420 return_error_line = __LINE__; 3421 binder_dequeue_work(proc, tcomplete); 3422 err_translate_failed: 3423 err_bad_object_type: 3424 err_bad_offset: 3425 err_bad_parent: 3426 err_copy_data_failed: 3427 binder_cleanup_deferred_txn_lists(&sgc_head, &pf_head); 3428 binder_free_txn_fixups(t); 3429 trace_binder_transaction_failed_buffer_release(t->buffer); 3430 binder_transaction_buffer_release(target_proc, NULL, t->buffer, 3431 buffer_offset, true); 3432 if (target_node) 3433 binder_dec_node_tmpref(target_node); 3434 target_node = NULL; 3435 t->buffer->transaction = NULL; 3436 binder_alloc_free_buf(&target_proc->alloc, t->buffer); 3437 err_binder_alloc_buf_failed: 3438 err_bad_extra_size: 3439 if (secctx) 3440 security_release_secctx(secctx, secctx_sz); 3441 err_get_secctx_failed: 3442 kfree(tcomplete); 3443 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); 3444 err_alloc_tcomplete_failed: 3445 if (trace_binder_txn_latency_free_enabled()) 3446 binder_txn_latency_free(t); 3447 kfree(t); 3448 binder_stats_deleted(BINDER_STAT_TRANSACTION); 3449 err_alloc_t_failed: 3450 err_bad_todo_list: 3451 err_bad_call_stack: 3452 err_empty_call_stack: 3453 err_dead_binder: 3454 err_invalid_target_handle: 3455 if (target_thread) 3456 binder_thread_dec_tmpref(target_thread); 3457 if (target_proc) 3458 binder_proc_dec_tmpref(target_proc); 3459 if (target_node) { 3460 binder_dec_node(target_node, 1, 0); 3461 binder_dec_node_tmpref(target_node); 3462 } 3463 3464 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, 3465 "%d:%d transaction failed %d/%d, size %lld-%lld line %d\n", 3466 proc->pid, thread->pid, return_error, return_error_param, 3467 (u64)tr->data_size, (u64)tr->offsets_size, 3468 return_error_line); 3469 3470 { 3471 struct binder_transaction_log_entry *fe; 3472 3473 e->return_error = return_error; 3474 e->return_error_param = return_error_param; 3475 e->return_error_line = return_error_line; 3476 fe = binder_transaction_log_add(&binder_transaction_log_failed); 3477 *fe = *e; 3478 /* 3479 * write barrier to synchronize with initialization 3480 * of log entry 3481 */ 3482 smp_wmb(); 3483 WRITE_ONCE(e->debug_id_done, t_debug_id); 3484 WRITE_ONCE(fe->debug_id_done, t_debug_id); 3485 } 3486 3487 BUG_ON(thread->return_error.cmd != BR_OK); 3488 if (in_reply_to) { 3489 thread->return_error.cmd = BR_TRANSACTION_COMPLETE; 3490 binder_enqueue_thread_work(thread, &thread->return_error.work); 3491 binder_send_failed_reply(in_reply_to, return_error); 3492 } else { 3493 thread->return_error.cmd = return_error; 3494 binder_enqueue_thread_work(thread, &thread->return_error.work); 3495 } 3496 } 3497 3498 /** 3499 * binder_free_buf() - free the specified buffer 3500 * @proc: binder proc that owns buffer 3501 * @buffer: buffer to be freed 3502 * @is_failure: failed to send transaction 3503 * 3504 * If buffer for an async transaction, enqueue the next async 3505 * transaction from the node. 3506 * 3507 * Cleanup buffer and free it. 3508 */ 3509 static void 3510 binder_free_buf(struct binder_proc *proc, 3511 struct binder_thread *thread, 3512 struct binder_buffer *buffer, bool is_failure) 3513 { 3514 binder_inner_proc_lock(proc); 3515 if (buffer->transaction) { 3516 buffer->transaction->buffer = NULL; 3517 buffer->transaction = NULL; 3518 } 3519 binder_inner_proc_unlock(proc); 3520 if (buffer->async_transaction && buffer->target_node) { 3521 struct binder_node *buf_node; 3522 struct binder_work *w; 3523 3524 buf_node = buffer->target_node; 3525 binder_node_inner_lock(buf_node); 3526 BUG_ON(!buf_node->has_async_transaction); 3527 BUG_ON(buf_node->proc != proc); 3528 w = binder_dequeue_work_head_ilocked( 3529 &buf_node->async_todo); 3530 if (!w) { 3531 buf_node->has_async_transaction = false; 3532 } else { 3533 binder_enqueue_work_ilocked( 3534 w, &proc->todo); 3535 binder_wakeup_proc_ilocked(proc); 3536 } 3537 binder_node_inner_unlock(buf_node); 3538 } 3539 trace_binder_transaction_buffer_release(buffer); 3540 binder_transaction_buffer_release(proc, thread, buffer, 0, is_failure); 3541 binder_alloc_free_buf(&proc->alloc, buffer); 3542 } 3543 3544 static int binder_thread_write(struct binder_proc *proc, 3545 struct binder_thread *thread, 3546 binder_uintptr_t binder_buffer, size_t size, 3547 binder_size_t *consumed) 3548 { 3549 uint32_t cmd; 3550 struct binder_context *context = proc->context; 3551 void __user *buffer = (void __user *)(uintptr_t)binder_buffer; 3552 void __user *ptr = buffer + *consumed; 3553 void __user *end = buffer + size; 3554 3555 while (ptr < end && thread->return_error.cmd == BR_OK) { 3556 int ret; 3557 3558 if (get_user(cmd, (uint32_t __user *)ptr)) 3559 return -EFAULT; 3560 ptr += sizeof(uint32_t); 3561 trace_binder_command(cmd); 3562 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.bc)) { 3563 atomic_inc(&binder_stats.bc[_IOC_NR(cmd)]); 3564 atomic_inc(&proc->stats.bc[_IOC_NR(cmd)]); 3565 atomic_inc(&thread->stats.bc[_IOC_NR(cmd)]); 3566 } 3567 switch (cmd) { 3568 case BC_INCREFS: 3569 case BC_ACQUIRE: 3570 case BC_RELEASE: 3571 case BC_DECREFS: { 3572 uint32_t target; 3573 const char *debug_string; 3574 bool strong = cmd == BC_ACQUIRE || cmd == BC_RELEASE; 3575 bool increment = cmd == BC_INCREFS || cmd == BC_ACQUIRE; 3576 struct binder_ref_data rdata; 3577 3578 if (get_user(target, (uint32_t __user *)ptr)) 3579 return -EFAULT; 3580 3581 ptr += sizeof(uint32_t); 3582 ret = -1; 3583 if (increment && !target) { 3584 struct binder_node *ctx_mgr_node; 3585 3586 mutex_lock(&context->context_mgr_node_lock); 3587 ctx_mgr_node = context->binder_context_mgr_node; 3588 if (ctx_mgr_node) { 3589 if (ctx_mgr_node->proc == proc) { 3590 binder_user_error("%d:%d context manager tried to acquire desc 0\n", 3591 proc->pid, thread->pid); 3592 mutex_unlock(&context->context_mgr_node_lock); 3593 return -EINVAL; 3594 } 3595 ret = binder_inc_ref_for_node( 3596 proc, ctx_mgr_node, 3597 strong, NULL, &rdata); 3598 } 3599 mutex_unlock(&context->context_mgr_node_lock); 3600 } 3601 if (ret) 3602 ret = binder_update_ref_for_handle( 3603 proc, target, increment, strong, 3604 &rdata); 3605 if (!ret && rdata.desc != target) { 3606 binder_user_error("%d:%d tried to acquire reference to desc %d, got %d instead\n", 3607 proc->pid, thread->pid, 3608 target, rdata.desc); 3609 } 3610 switch (cmd) { 3611 case BC_INCREFS: 3612 debug_string = "IncRefs"; 3613 break; 3614 case BC_ACQUIRE: 3615 debug_string = "Acquire"; 3616 break; 3617 case BC_RELEASE: 3618 debug_string = "Release"; 3619 break; 3620 case BC_DECREFS: 3621 default: 3622 debug_string = "DecRefs"; 3623 break; 3624 } 3625 if (ret) { 3626 binder_user_error("%d:%d %s %d refcount change on invalid ref %d ret %d\n", 3627 proc->pid, thread->pid, debug_string, 3628 strong, target, ret); 3629 break; 3630 } 3631 binder_debug(BINDER_DEBUG_USER_REFS, 3632 "%d:%d %s ref %d desc %d s %d w %d\n", 3633 proc->pid, thread->pid, debug_string, 3634 rdata.debug_id, rdata.desc, rdata.strong, 3635 rdata.weak); 3636 break; 3637 } 3638 case BC_INCREFS_DONE: 3639 case BC_ACQUIRE_DONE: { 3640 binder_uintptr_t node_ptr; 3641 binder_uintptr_t cookie; 3642 struct binder_node *node; 3643 bool free_node; 3644 3645 if (get_user(node_ptr, (binder_uintptr_t __user *)ptr)) 3646 return -EFAULT; 3647 ptr += sizeof(binder_uintptr_t); 3648 if (get_user(cookie, (binder_uintptr_t __user *)ptr)) 3649 return -EFAULT; 3650 ptr += sizeof(binder_uintptr_t); 3651 node = binder_get_node(proc, node_ptr); 3652 if (node == NULL) { 3653 binder_user_error("%d:%d %s u%016llx no match\n", 3654 proc->pid, thread->pid, 3655 cmd == BC_INCREFS_DONE ? 3656 "BC_INCREFS_DONE" : 3657 "BC_ACQUIRE_DONE", 3658 (u64)node_ptr); 3659 break; 3660 } 3661 if (cookie != node->cookie) { 3662 binder_user_error("%d:%d %s u%016llx node %d cookie mismatch %016llx != %016llx\n", 3663 proc->pid, thread->pid, 3664 cmd == BC_INCREFS_DONE ? 3665 "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE", 3666 (u64)node_ptr, node->debug_id, 3667 (u64)cookie, (u64)node->cookie); 3668 binder_put_node(node); 3669 break; 3670 } 3671 binder_node_inner_lock(node); 3672 if (cmd == BC_ACQUIRE_DONE) { 3673 if (node->pending_strong_ref == 0) { 3674 binder_user_error("%d:%d BC_ACQUIRE_DONE node %d has no pending acquire request\n", 3675 proc->pid, thread->pid, 3676 node->debug_id); 3677 binder_node_inner_unlock(node); 3678 binder_put_node(node); 3679 break; 3680 } 3681 node->pending_strong_ref = 0; 3682 } else { 3683 if (node->pending_weak_ref == 0) { 3684 binder_user_error("%d:%d BC_INCREFS_DONE node %d has no pending increfs request\n", 3685 proc->pid, thread->pid, 3686 node->debug_id); 3687 binder_node_inner_unlock(node); 3688 binder_put_node(node); 3689 break; 3690 } 3691 node->pending_weak_ref = 0; 3692 } 3693 free_node = binder_dec_node_nilocked(node, 3694 cmd == BC_ACQUIRE_DONE, 0); 3695 WARN_ON(free_node); 3696 binder_debug(BINDER_DEBUG_USER_REFS, 3697 "%d:%d %s node %d ls %d lw %d tr %d\n", 3698 proc->pid, thread->pid, 3699 cmd == BC_INCREFS_DONE ? "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE", 3700 node->debug_id, node->local_strong_refs, 3701 node->local_weak_refs, node->tmp_refs); 3702 binder_node_inner_unlock(node); 3703 binder_put_node(node); 3704 break; 3705 } 3706 case BC_ATTEMPT_ACQUIRE: 3707 pr_err("BC_ATTEMPT_ACQUIRE not supported\n"); 3708 return -EINVAL; 3709 case BC_ACQUIRE_RESULT: 3710 pr_err("BC_ACQUIRE_RESULT not supported\n"); 3711 return -EINVAL; 3712 3713 case BC_FREE_BUFFER: { 3714 binder_uintptr_t data_ptr; 3715 struct binder_buffer *buffer; 3716 3717 if (get_user(data_ptr, (binder_uintptr_t __user *)ptr)) 3718 return -EFAULT; 3719 ptr += sizeof(binder_uintptr_t); 3720 3721 buffer = binder_alloc_prepare_to_free(&proc->alloc, 3722 data_ptr); 3723 if (IS_ERR_OR_NULL(buffer)) { 3724 if (PTR_ERR(buffer) == -EPERM) { 3725 binder_user_error( 3726 "%d:%d BC_FREE_BUFFER u%016llx matched unreturned or currently freeing buffer\n", 3727 proc->pid, thread->pid, 3728 (u64)data_ptr); 3729 } else { 3730 binder_user_error( 3731 "%d:%d BC_FREE_BUFFER u%016llx no match\n", 3732 proc->pid, thread->pid, 3733 (u64)data_ptr); 3734 } 3735 break; 3736 } 3737 binder_debug(BINDER_DEBUG_FREE_BUFFER, 3738 "%d:%d BC_FREE_BUFFER u%016llx found buffer %d for %s transaction\n", 3739 proc->pid, thread->pid, (u64)data_ptr, 3740 buffer->debug_id, 3741 buffer->transaction ? "active" : "finished"); 3742 binder_free_buf(proc, thread, buffer, false); 3743 break; 3744 } 3745 3746 case BC_TRANSACTION_SG: 3747 case BC_REPLY_SG: { 3748 struct binder_transaction_data_sg tr; 3749 3750 if (copy_from_user(&tr, ptr, sizeof(tr))) 3751 return -EFAULT; 3752 ptr += sizeof(tr); 3753 binder_transaction(proc, thread, &tr.transaction_data, 3754 cmd == BC_REPLY_SG, tr.buffers_size); 3755 break; 3756 } 3757 case BC_TRANSACTION: 3758 case BC_REPLY: { 3759 struct binder_transaction_data tr; 3760 3761 if (copy_from_user(&tr, ptr, sizeof(tr))) 3762 return -EFAULT; 3763 ptr += sizeof(tr); 3764 binder_transaction(proc, thread, &tr, 3765 cmd == BC_REPLY, 0); 3766 break; 3767 } 3768 3769 case BC_REGISTER_LOOPER: 3770 binder_debug(BINDER_DEBUG_THREADS, 3771 "%d:%d BC_REGISTER_LOOPER\n", 3772 proc->pid, thread->pid); 3773 binder_inner_proc_lock(proc); 3774 if (thread->looper & BINDER_LOOPER_STATE_ENTERED) { 3775 thread->looper |= BINDER_LOOPER_STATE_INVALID; 3776 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called after BC_ENTER_LOOPER\n", 3777 proc->pid, thread->pid); 3778 } else if (proc->requested_threads == 0) { 3779 thread->looper |= BINDER_LOOPER_STATE_INVALID; 3780 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called without request\n", 3781 proc->pid, thread->pid); 3782 } else { 3783 proc->requested_threads--; 3784 proc->requested_threads_started++; 3785 } 3786 thread->looper |= BINDER_LOOPER_STATE_REGISTERED; 3787 binder_inner_proc_unlock(proc); 3788 break; 3789 case BC_ENTER_LOOPER: 3790 binder_debug(BINDER_DEBUG_THREADS, 3791 "%d:%d BC_ENTER_LOOPER\n", 3792 proc->pid, thread->pid); 3793 if (thread->looper & BINDER_LOOPER_STATE_REGISTERED) { 3794 thread->looper |= BINDER_LOOPER_STATE_INVALID; 3795 binder_user_error("%d:%d ERROR: BC_ENTER_LOOPER called after BC_REGISTER_LOOPER\n", 3796 proc->pid, thread->pid); 3797 } 3798 thread->looper |= BINDER_LOOPER_STATE_ENTERED; 3799 break; 3800 case BC_EXIT_LOOPER: 3801 binder_debug(BINDER_DEBUG_THREADS, 3802 "%d:%d BC_EXIT_LOOPER\n", 3803 proc->pid, thread->pid); 3804 thread->looper |= BINDER_LOOPER_STATE_EXITED; 3805 break; 3806 3807 case BC_REQUEST_DEATH_NOTIFICATION: 3808 case BC_CLEAR_DEATH_NOTIFICATION: { 3809 uint32_t target; 3810 binder_uintptr_t cookie; 3811 struct binder_ref *ref; 3812 struct binder_ref_death *death = NULL; 3813 3814 if (get_user(target, (uint32_t __user *)ptr)) 3815 return -EFAULT; 3816 ptr += sizeof(uint32_t); 3817 if (get_user(cookie, (binder_uintptr_t __user *)ptr)) 3818 return -EFAULT; 3819 ptr += sizeof(binder_uintptr_t); 3820 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) { 3821 /* 3822 * Allocate memory for death notification 3823 * before taking lock 3824 */ 3825 death = kzalloc(sizeof(*death), GFP_KERNEL); 3826 if (death == NULL) { 3827 WARN_ON(thread->return_error.cmd != 3828 BR_OK); 3829 thread->return_error.cmd = BR_ERROR; 3830 binder_enqueue_thread_work( 3831 thread, 3832 &thread->return_error.work); 3833 binder_debug( 3834 BINDER_DEBUG_FAILED_TRANSACTION, 3835 "%d:%d BC_REQUEST_DEATH_NOTIFICATION failed\n", 3836 proc->pid, thread->pid); 3837 break; 3838 } 3839 } 3840 binder_proc_lock(proc); 3841 ref = binder_get_ref_olocked(proc, target, false); 3842 if (ref == NULL) { 3843 binder_user_error("%d:%d %s invalid ref %d\n", 3844 proc->pid, thread->pid, 3845 cmd == BC_REQUEST_DEATH_NOTIFICATION ? 3846 "BC_REQUEST_DEATH_NOTIFICATION" : 3847 "BC_CLEAR_DEATH_NOTIFICATION", 3848 target); 3849 binder_proc_unlock(proc); 3850 kfree(death); 3851 break; 3852 } 3853 3854 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION, 3855 "%d:%d %s %016llx ref %d desc %d s %d w %d for node %d\n", 3856 proc->pid, thread->pid, 3857 cmd == BC_REQUEST_DEATH_NOTIFICATION ? 3858 "BC_REQUEST_DEATH_NOTIFICATION" : 3859 "BC_CLEAR_DEATH_NOTIFICATION", 3860 (u64)cookie, ref->data.debug_id, 3861 ref->data.desc, ref->data.strong, 3862 ref->data.weak, ref->node->debug_id); 3863 3864 binder_node_lock(ref->node); 3865 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) { 3866 if (ref->death) { 3867 binder_user_error("%d:%d BC_REQUEST_DEATH_NOTIFICATION death notification already set\n", 3868 proc->pid, thread->pid); 3869 binder_node_unlock(ref->node); 3870 binder_proc_unlock(proc); 3871 kfree(death); 3872 break; 3873 } 3874 binder_stats_created(BINDER_STAT_DEATH); 3875 INIT_LIST_HEAD(&death->work.entry); 3876 death->cookie = cookie; 3877 ref->death = death; 3878 if (ref->node->proc == NULL) { 3879 ref->death->work.type = BINDER_WORK_DEAD_BINDER; 3880 3881 binder_inner_proc_lock(proc); 3882 binder_enqueue_work_ilocked( 3883 &ref->death->work, &proc->todo); 3884 binder_wakeup_proc_ilocked(proc); 3885 binder_inner_proc_unlock(proc); 3886 } 3887 } else { 3888 if (ref->death == NULL) { 3889 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification not active\n", 3890 proc->pid, thread->pid); 3891 binder_node_unlock(ref->node); 3892 binder_proc_unlock(proc); 3893 break; 3894 } 3895 death = ref->death; 3896 if (death->cookie != cookie) { 3897 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification cookie mismatch %016llx != %016llx\n", 3898 proc->pid, thread->pid, 3899 (u64)death->cookie, 3900 (u64)cookie); 3901 binder_node_unlock(ref->node); 3902 binder_proc_unlock(proc); 3903 break; 3904 } 3905 ref->death = NULL; 3906 binder_inner_proc_lock(proc); 3907 if (list_empty(&death->work.entry)) { 3908 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION; 3909 if (thread->looper & 3910 (BINDER_LOOPER_STATE_REGISTERED | 3911 BINDER_LOOPER_STATE_ENTERED)) 3912 binder_enqueue_thread_work_ilocked( 3913 thread, 3914 &death->work); 3915 else { 3916 binder_enqueue_work_ilocked( 3917 &death->work, 3918 &proc->todo); 3919 binder_wakeup_proc_ilocked( 3920 proc); 3921 } 3922 } else { 3923 BUG_ON(death->work.type != BINDER_WORK_DEAD_BINDER); 3924 death->work.type = BINDER_WORK_DEAD_BINDER_AND_CLEAR; 3925 } 3926 binder_inner_proc_unlock(proc); 3927 } 3928 binder_node_unlock(ref->node); 3929 binder_proc_unlock(proc); 3930 } break; 3931 case BC_DEAD_BINDER_DONE: { 3932 struct binder_work *w; 3933 binder_uintptr_t cookie; 3934 struct binder_ref_death *death = NULL; 3935 3936 if (get_user(cookie, (binder_uintptr_t __user *)ptr)) 3937 return -EFAULT; 3938 3939 ptr += sizeof(cookie); 3940 binder_inner_proc_lock(proc); 3941 list_for_each_entry(w, &proc->delivered_death, 3942 entry) { 3943 struct binder_ref_death *tmp_death = 3944 container_of(w, 3945 struct binder_ref_death, 3946 work); 3947 3948 if (tmp_death->cookie == cookie) { 3949 death = tmp_death; 3950 break; 3951 } 3952 } 3953 binder_debug(BINDER_DEBUG_DEAD_BINDER, 3954 "%d:%d BC_DEAD_BINDER_DONE %016llx found %pK\n", 3955 proc->pid, thread->pid, (u64)cookie, 3956 death); 3957 if (death == NULL) { 3958 binder_user_error("%d:%d BC_DEAD_BINDER_DONE %016llx not found\n", 3959 proc->pid, thread->pid, (u64)cookie); 3960 binder_inner_proc_unlock(proc); 3961 break; 3962 } 3963 binder_dequeue_work_ilocked(&death->work); 3964 if (death->work.type == BINDER_WORK_DEAD_BINDER_AND_CLEAR) { 3965 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION; 3966 if (thread->looper & 3967 (BINDER_LOOPER_STATE_REGISTERED | 3968 BINDER_LOOPER_STATE_ENTERED)) 3969 binder_enqueue_thread_work_ilocked( 3970 thread, &death->work); 3971 else { 3972 binder_enqueue_work_ilocked( 3973 &death->work, 3974 &proc->todo); 3975 binder_wakeup_proc_ilocked(proc); 3976 } 3977 } 3978 binder_inner_proc_unlock(proc); 3979 } break; 3980 3981 default: 3982 pr_err("%d:%d unknown command %d\n", 3983 proc->pid, thread->pid, cmd); 3984 return -EINVAL; 3985 } 3986 *consumed = ptr - buffer; 3987 } 3988 return 0; 3989 } 3990 3991 static void binder_stat_br(struct binder_proc *proc, 3992 struct binder_thread *thread, uint32_t cmd) 3993 { 3994 trace_binder_return(cmd); 3995 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.br)) { 3996 atomic_inc(&binder_stats.br[_IOC_NR(cmd)]); 3997 atomic_inc(&proc->stats.br[_IOC_NR(cmd)]); 3998 atomic_inc(&thread->stats.br[_IOC_NR(cmd)]); 3999 } 4000 } 4001 4002 static int binder_put_node_cmd(struct binder_proc *proc, 4003 struct binder_thread *thread, 4004 void __user **ptrp, 4005 binder_uintptr_t node_ptr, 4006 binder_uintptr_t node_cookie, 4007 int node_debug_id, 4008 uint32_t cmd, const char *cmd_name) 4009 { 4010 void __user *ptr = *ptrp; 4011 4012 if (put_user(cmd, (uint32_t __user *)ptr)) 4013 return -EFAULT; 4014 ptr += sizeof(uint32_t); 4015 4016 if (put_user(node_ptr, (binder_uintptr_t __user *)ptr)) 4017 return -EFAULT; 4018 ptr += sizeof(binder_uintptr_t); 4019 4020 if (put_user(node_cookie, (binder_uintptr_t __user *)ptr)) 4021 return -EFAULT; 4022 ptr += sizeof(binder_uintptr_t); 4023 4024 binder_stat_br(proc, thread, cmd); 4025 binder_debug(BINDER_DEBUG_USER_REFS, "%d:%d %s %d u%016llx c%016llx\n", 4026 proc->pid, thread->pid, cmd_name, node_debug_id, 4027 (u64)node_ptr, (u64)node_cookie); 4028 4029 *ptrp = ptr; 4030 return 0; 4031 } 4032 4033 static int binder_wait_for_work(struct binder_thread *thread, 4034 bool do_proc_work) 4035 { 4036 DEFINE_WAIT(wait); 4037 struct binder_proc *proc = thread->proc; 4038 int ret = 0; 4039 4040 freezer_do_not_count(); 4041 binder_inner_proc_lock(proc); 4042 for (;;) { 4043 prepare_to_wait(&thread->wait, &wait, TASK_INTERRUPTIBLE); 4044 if (binder_has_work_ilocked(thread, do_proc_work)) 4045 break; 4046 if (do_proc_work) 4047 list_add(&thread->waiting_thread_node, 4048 &proc->waiting_threads); 4049 binder_inner_proc_unlock(proc); 4050 schedule(); 4051 binder_inner_proc_lock(proc); 4052 list_del_init(&thread->waiting_thread_node); 4053 if (signal_pending(current)) { 4054 ret = -EINTR; 4055 break; 4056 } 4057 } 4058 finish_wait(&thread->wait, &wait); 4059 binder_inner_proc_unlock(proc); 4060 freezer_count(); 4061 4062 return ret; 4063 } 4064 4065 /** 4066 * binder_apply_fd_fixups() - finish fd translation 4067 * @proc: binder_proc associated @t->buffer 4068 * @t: binder transaction with list of fd fixups 4069 * 4070 * Now that we are in the context of the transaction target 4071 * process, we can allocate and install fds. Process the 4072 * list of fds to translate and fixup the buffer with the 4073 * new fds first and only then install the files. 4074 * 4075 * If we fail to allocate an fd, skip the install and release 4076 * any fds that have already been allocated. 4077 */ 4078 static int binder_apply_fd_fixups(struct binder_proc *proc, 4079 struct binder_transaction *t) 4080 { 4081 struct binder_txn_fd_fixup *fixup, *tmp; 4082 int ret = 0; 4083 4084 list_for_each_entry(fixup, &t->fd_fixups, fixup_entry) { 4085 int fd = get_unused_fd_flags(O_CLOEXEC); 4086 4087 if (fd < 0) { 4088 binder_debug(BINDER_DEBUG_TRANSACTION, 4089 "failed fd fixup txn %d fd %d\n", 4090 t->debug_id, fd); 4091 ret = -ENOMEM; 4092 goto err; 4093 } 4094 binder_debug(BINDER_DEBUG_TRANSACTION, 4095 "fd fixup txn %d fd %d\n", 4096 t->debug_id, fd); 4097 trace_binder_transaction_fd_recv(t, fd, fixup->offset); 4098 fixup->target_fd = fd; 4099 if (binder_alloc_copy_to_buffer(&proc->alloc, t->buffer, 4100 fixup->offset, &fd, 4101 sizeof(u32))) { 4102 ret = -EINVAL; 4103 goto err; 4104 } 4105 } 4106 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) { 4107 fd_install(fixup->target_fd, fixup->file); 4108 list_del(&fixup->fixup_entry); 4109 kfree(fixup); 4110 } 4111 4112 return ret; 4113 4114 err: 4115 binder_free_txn_fixups(t); 4116 return ret; 4117 } 4118 4119 static int binder_thread_read(struct binder_proc *proc, 4120 struct binder_thread *thread, 4121 binder_uintptr_t binder_buffer, size_t size, 4122 binder_size_t *consumed, int non_block) 4123 { 4124 void __user *buffer = (void __user *)(uintptr_t)binder_buffer; 4125 void __user *ptr = buffer + *consumed; 4126 void __user *end = buffer + size; 4127 4128 int ret = 0; 4129 int wait_for_proc_work; 4130 4131 if (*consumed == 0) { 4132 if (put_user(BR_NOOP, (uint32_t __user *)ptr)) 4133 return -EFAULT; 4134 ptr += sizeof(uint32_t); 4135 } 4136 4137 retry: 4138 binder_inner_proc_lock(proc); 4139 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread); 4140 binder_inner_proc_unlock(proc); 4141 4142 thread->looper |= BINDER_LOOPER_STATE_WAITING; 4143 4144 trace_binder_wait_for_work(wait_for_proc_work, 4145 !!thread->transaction_stack, 4146 !binder_worklist_empty(proc, &thread->todo)); 4147 if (wait_for_proc_work) { 4148 if (!(thread->looper & (BINDER_LOOPER_STATE_REGISTERED | 4149 BINDER_LOOPER_STATE_ENTERED))) { 4150 binder_user_error("%d:%d ERROR: Thread waiting for process work before calling BC_REGISTER_LOOPER or BC_ENTER_LOOPER (state %x)\n", 4151 proc->pid, thread->pid, thread->looper); 4152 wait_event_interruptible(binder_user_error_wait, 4153 binder_stop_on_user_error < 2); 4154 } 4155 binder_set_nice(proc->default_priority); 4156 } 4157 4158 if (non_block) { 4159 if (!binder_has_work(thread, wait_for_proc_work)) 4160 ret = -EAGAIN; 4161 } else { 4162 ret = binder_wait_for_work(thread, wait_for_proc_work); 4163 } 4164 4165 thread->looper &= ~BINDER_LOOPER_STATE_WAITING; 4166 4167 if (ret) 4168 return ret; 4169 4170 while (1) { 4171 uint32_t cmd; 4172 struct binder_transaction_data_secctx tr; 4173 struct binder_transaction_data *trd = &tr.transaction_data; 4174 struct binder_work *w = NULL; 4175 struct list_head *list = NULL; 4176 struct binder_transaction *t = NULL; 4177 struct binder_thread *t_from; 4178 size_t trsize = sizeof(*trd); 4179 4180 binder_inner_proc_lock(proc); 4181 if (!binder_worklist_empty_ilocked(&thread->todo)) 4182 list = &thread->todo; 4183 else if (!binder_worklist_empty_ilocked(&proc->todo) && 4184 wait_for_proc_work) 4185 list = &proc->todo; 4186 else { 4187 binder_inner_proc_unlock(proc); 4188 4189 /* no data added */ 4190 if (ptr - buffer == 4 && !thread->looper_need_return) 4191 goto retry; 4192 break; 4193 } 4194 4195 if (end - ptr < sizeof(tr) + 4) { 4196 binder_inner_proc_unlock(proc); 4197 break; 4198 } 4199 w = binder_dequeue_work_head_ilocked(list); 4200 if (binder_worklist_empty_ilocked(&thread->todo)) 4201 thread->process_todo = false; 4202 4203 switch (w->type) { 4204 case BINDER_WORK_TRANSACTION: { 4205 binder_inner_proc_unlock(proc); 4206 t = container_of(w, struct binder_transaction, work); 4207 } break; 4208 case BINDER_WORK_RETURN_ERROR: { 4209 struct binder_error *e = container_of( 4210 w, struct binder_error, work); 4211 4212 WARN_ON(e->cmd == BR_OK); 4213 binder_inner_proc_unlock(proc); 4214 if (put_user(e->cmd, (uint32_t __user *)ptr)) 4215 return -EFAULT; 4216 cmd = e->cmd; 4217 e->cmd = BR_OK; 4218 ptr += sizeof(uint32_t); 4219 4220 binder_stat_br(proc, thread, cmd); 4221 } break; 4222 case BINDER_WORK_TRANSACTION_COMPLETE: 4223 case BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT: { 4224 if (proc->oneway_spam_detection_enabled && 4225 w->type == BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT) 4226 cmd = BR_ONEWAY_SPAM_SUSPECT; 4227 else 4228 cmd = BR_TRANSACTION_COMPLETE; 4229 binder_inner_proc_unlock(proc); 4230 kfree(w); 4231 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); 4232 if (put_user(cmd, (uint32_t __user *)ptr)) 4233 return -EFAULT; 4234 ptr += sizeof(uint32_t); 4235 4236 binder_stat_br(proc, thread, cmd); 4237 binder_debug(BINDER_DEBUG_TRANSACTION_COMPLETE, 4238 "%d:%d BR_TRANSACTION_COMPLETE\n", 4239 proc->pid, thread->pid); 4240 } break; 4241 case BINDER_WORK_NODE: { 4242 struct binder_node *node = container_of(w, struct binder_node, work); 4243 int strong, weak; 4244 binder_uintptr_t node_ptr = node->ptr; 4245 binder_uintptr_t node_cookie = node->cookie; 4246 int node_debug_id = node->debug_id; 4247 int has_weak_ref; 4248 int has_strong_ref; 4249 void __user *orig_ptr = ptr; 4250 4251 BUG_ON(proc != node->proc); 4252 strong = node->internal_strong_refs || 4253 node->local_strong_refs; 4254 weak = !hlist_empty(&node->refs) || 4255 node->local_weak_refs || 4256 node->tmp_refs || strong; 4257 has_strong_ref = node->has_strong_ref; 4258 has_weak_ref = node->has_weak_ref; 4259 4260 if (weak && !has_weak_ref) { 4261 node->has_weak_ref = 1; 4262 node->pending_weak_ref = 1; 4263 node->local_weak_refs++; 4264 } 4265 if (strong && !has_strong_ref) { 4266 node->has_strong_ref = 1; 4267 node->pending_strong_ref = 1; 4268 node->local_strong_refs++; 4269 } 4270 if (!strong && has_strong_ref) 4271 node->has_strong_ref = 0; 4272 if (!weak && has_weak_ref) 4273 node->has_weak_ref = 0; 4274 if (!weak && !strong) { 4275 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 4276 "%d:%d node %d u%016llx c%016llx deleted\n", 4277 proc->pid, thread->pid, 4278 node_debug_id, 4279 (u64)node_ptr, 4280 (u64)node_cookie); 4281 rb_erase(&node->rb_node, &proc->nodes); 4282 binder_inner_proc_unlock(proc); 4283 binder_node_lock(node); 4284 /* 4285 * Acquire the node lock before freeing the 4286 * node to serialize with other threads that 4287 * may have been holding the node lock while 4288 * decrementing this node (avoids race where 4289 * this thread frees while the other thread 4290 * is unlocking the node after the final 4291 * decrement) 4292 */ 4293 binder_node_unlock(node); 4294 binder_free_node(node); 4295 } else 4296 binder_inner_proc_unlock(proc); 4297 4298 if (weak && !has_weak_ref) 4299 ret = binder_put_node_cmd( 4300 proc, thread, &ptr, node_ptr, 4301 node_cookie, node_debug_id, 4302 BR_INCREFS, "BR_INCREFS"); 4303 if (!ret && strong && !has_strong_ref) 4304 ret = binder_put_node_cmd( 4305 proc, thread, &ptr, node_ptr, 4306 node_cookie, node_debug_id, 4307 BR_ACQUIRE, "BR_ACQUIRE"); 4308 if (!ret && !strong && has_strong_ref) 4309 ret = binder_put_node_cmd( 4310 proc, thread, &ptr, node_ptr, 4311 node_cookie, node_debug_id, 4312 BR_RELEASE, "BR_RELEASE"); 4313 if (!ret && !weak && has_weak_ref) 4314 ret = binder_put_node_cmd( 4315 proc, thread, &ptr, node_ptr, 4316 node_cookie, node_debug_id, 4317 BR_DECREFS, "BR_DECREFS"); 4318 if (orig_ptr == ptr) 4319 binder_debug(BINDER_DEBUG_INTERNAL_REFS, 4320 "%d:%d node %d u%016llx c%016llx state unchanged\n", 4321 proc->pid, thread->pid, 4322 node_debug_id, 4323 (u64)node_ptr, 4324 (u64)node_cookie); 4325 if (ret) 4326 return ret; 4327 } break; 4328 case BINDER_WORK_DEAD_BINDER: 4329 case BINDER_WORK_DEAD_BINDER_AND_CLEAR: 4330 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: { 4331 struct binder_ref_death *death; 4332 uint32_t cmd; 4333 binder_uintptr_t cookie; 4334 4335 death = container_of(w, struct binder_ref_death, work); 4336 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) 4337 cmd = BR_CLEAR_DEATH_NOTIFICATION_DONE; 4338 else 4339 cmd = BR_DEAD_BINDER; 4340 cookie = death->cookie; 4341 4342 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION, 4343 "%d:%d %s %016llx\n", 4344 proc->pid, thread->pid, 4345 cmd == BR_DEAD_BINDER ? 4346 "BR_DEAD_BINDER" : 4347 "BR_CLEAR_DEATH_NOTIFICATION_DONE", 4348 (u64)cookie); 4349 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) { 4350 binder_inner_proc_unlock(proc); 4351 kfree(death); 4352 binder_stats_deleted(BINDER_STAT_DEATH); 4353 } else { 4354 binder_enqueue_work_ilocked( 4355 w, &proc->delivered_death); 4356 binder_inner_proc_unlock(proc); 4357 } 4358 if (put_user(cmd, (uint32_t __user *)ptr)) 4359 return -EFAULT; 4360 ptr += sizeof(uint32_t); 4361 if (put_user(cookie, 4362 (binder_uintptr_t __user *)ptr)) 4363 return -EFAULT; 4364 ptr += sizeof(binder_uintptr_t); 4365 binder_stat_br(proc, thread, cmd); 4366 if (cmd == BR_DEAD_BINDER) 4367 goto done; /* DEAD_BINDER notifications can cause transactions */ 4368 } break; 4369 default: 4370 binder_inner_proc_unlock(proc); 4371 pr_err("%d:%d: bad work type %d\n", 4372 proc->pid, thread->pid, w->type); 4373 break; 4374 } 4375 4376 if (!t) 4377 continue; 4378 4379 BUG_ON(t->buffer == NULL); 4380 if (t->buffer->target_node) { 4381 struct binder_node *target_node = t->buffer->target_node; 4382 4383 trd->target.ptr = target_node->ptr; 4384 trd->cookie = target_node->cookie; 4385 t->saved_priority = task_nice(current); 4386 if (t->priority < target_node->min_priority && 4387 !(t->flags & TF_ONE_WAY)) 4388 binder_set_nice(t->priority); 4389 else if (!(t->flags & TF_ONE_WAY) || 4390 t->saved_priority > target_node->min_priority) 4391 binder_set_nice(target_node->min_priority); 4392 cmd = BR_TRANSACTION; 4393 } else { 4394 trd->target.ptr = 0; 4395 trd->cookie = 0; 4396 cmd = BR_REPLY; 4397 } 4398 trd->code = t->code; 4399 trd->flags = t->flags; 4400 trd->sender_euid = from_kuid(current_user_ns(), t->sender_euid); 4401 4402 t_from = binder_get_txn_from(t); 4403 if (t_from) { 4404 struct task_struct *sender = t_from->proc->tsk; 4405 4406 trd->sender_pid = 4407 task_tgid_nr_ns(sender, 4408 task_active_pid_ns(current)); 4409 } else { 4410 trd->sender_pid = 0; 4411 } 4412 4413 ret = binder_apply_fd_fixups(proc, t); 4414 if (ret) { 4415 struct binder_buffer *buffer = t->buffer; 4416 bool oneway = !!(t->flags & TF_ONE_WAY); 4417 int tid = t->debug_id; 4418 4419 if (t_from) 4420 binder_thread_dec_tmpref(t_from); 4421 buffer->transaction = NULL; 4422 binder_cleanup_transaction(t, "fd fixups failed", 4423 BR_FAILED_REPLY); 4424 binder_free_buf(proc, thread, buffer, true); 4425 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, 4426 "%d:%d %stransaction %d fd fixups failed %d/%d, line %d\n", 4427 proc->pid, thread->pid, 4428 oneway ? "async " : 4429 (cmd == BR_REPLY ? "reply " : ""), 4430 tid, BR_FAILED_REPLY, ret, __LINE__); 4431 if (cmd == BR_REPLY) { 4432 cmd = BR_FAILED_REPLY; 4433 if (put_user(cmd, (uint32_t __user *)ptr)) 4434 return -EFAULT; 4435 ptr += sizeof(uint32_t); 4436 binder_stat_br(proc, thread, cmd); 4437 break; 4438 } 4439 continue; 4440 } 4441 trd->data_size = t->buffer->data_size; 4442 trd->offsets_size = t->buffer->offsets_size; 4443 trd->data.ptr.buffer = (uintptr_t)t->buffer->user_data; 4444 trd->data.ptr.offsets = trd->data.ptr.buffer + 4445 ALIGN(t->buffer->data_size, 4446 sizeof(void *)); 4447 4448 tr.secctx = t->security_ctx; 4449 if (t->security_ctx) { 4450 cmd = BR_TRANSACTION_SEC_CTX; 4451 trsize = sizeof(tr); 4452 } 4453 if (put_user(cmd, (uint32_t __user *)ptr)) { 4454 if (t_from) 4455 binder_thread_dec_tmpref(t_from); 4456 4457 binder_cleanup_transaction(t, "put_user failed", 4458 BR_FAILED_REPLY); 4459 4460 return -EFAULT; 4461 } 4462 ptr += sizeof(uint32_t); 4463 if (copy_to_user(ptr, &tr, trsize)) { 4464 if (t_from) 4465 binder_thread_dec_tmpref(t_from); 4466 4467 binder_cleanup_transaction(t, "copy_to_user failed", 4468 BR_FAILED_REPLY); 4469 4470 return -EFAULT; 4471 } 4472 ptr += trsize; 4473 4474 trace_binder_transaction_received(t); 4475 binder_stat_br(proc, thread, cmd); 4476 binder_debug(BINDER_DEBUG_TRANSACTION, 4477 "%d:%d %s %d %d:%d, cmd %d size %zd-%zd ptr %016llx-%016llx\n", 4478 proc->pid, thread->pid, 4479 (cmd == BR_TRANSACTION) ? "BR_TRANSACTION" : 4480 (cmd == BR_TRANSACTION_SEC_CTX) ? 4481 "BR_TRANSACTION_SEC_CTX" : "BR_REPLY", 4482 t->debug_id, t_from ? t_from->proc->pid : 0, 4483 t_from ? t_from->pid : 0, cmd, 4484 t->buffer->data_size, t->buffer->offsets_size, 4485 (u64)trd->data.ptr.buffer, 4486 (u64)trd->data.ptr.offsets); 4487 4488 if (t_from) 4489 binder_thread_dec_tmpref(t_from); 4490 t->buffer->allow_user_free = 1; 4491 if (cmd != BR_REPLY && !(t->flags & TF_ONE_WAY)) { 4492 binder_inner_proc_lock(thread->proc); 4493 t->to_parent = thread->transaction_stack; 4494 t->to_thread = thread; 4495 thread->transaction_stack = t; 4496 binder_inner_proc_unlock(thread->proc); 4497 } else { 4498 binder_free_transaction(t); 4499 } 4500 break; 4501 } 4502 4503 done: 4504 4505 *consumed = ptr - buffer; 4506 binder_inner_proc_lock(proc); 4507 if (proc->requested_threads == 0 && 4508 list_empty(&thread->proc->waiting_threads) && 4509 proc->requested_threads_started < proc->max_threads && 4510 (thread->looper & (BINDER_LOOPER_STATE_REGISTERED | 4511 BINDER_LOOPER_STATE_ENTERED)) /* the user-space code fails to */ 4512 /*spawn a new thread if we leave this out */) { 4513 proc->requested_threads++; 4514 binder_inner_proc_unlock(proc); 4515 binder_debug(BINDER_DEBUG_THREADS, 4516 "%d:%d BR_SPAWN_LOOPER\n", 4517 proc->pid, thread->pid); 4518 if (put_user(BR_SPAWN_LOOPER, (uint32_t __user *)buffer)) 4519 return -EFAULT; 4520 binder_stat_br(proc, thread, BR_SPAWN_LOOPER); 4521 } else 4522 binder_inner_proc_unlock(proc); 4523 return 0; 4524 } 4525 4526 static void binder_release_work(struct binder_proc *proc, 4527 struct list_head *list) 4528 { 4529 struct binder_work *w; 4530 enum binder_work_type wtype; 4531 4532 while (1) { 4533 binder_inner_proc_lock(proc); 4534 w = binder_dequeue_work_head_ilocked(list); 4535 wtype = w ? w->type : 0; 4536 binder_inner_proc_unlock(proc); 4537 if (!w) 4538 return; 4539 4540 switch (wtype) { 4541 case BINDER_WORK_TRANSACTION: { 4542 struct binder_transaction *t; 4543 4544 t = container_of(w, struct binder_transaction, work); 4545 4546 binder_cleanup_transaction(t, "process died.", 4547 BR_DEAD_REPLY); 4548 } break; 4549 case BINDER_WORK_RETURN_ERROR: { 4550 struct binder_error *e = container_of( 4551 w, struct binder_error, work); 4552 4553 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, 4554 "undelivered TRANSACTION_ERROR: %u\n", 4555 e->cmd); 4556 } break; 4557 case BINDER_WORK_TRANSACTION_COMPLETE: { 4558 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, 4559 "undelivered TRANSACTION_COMPLETE\n"); 4560 kfree(w); 4561 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); 4562 } break; 4563 case BINDER_WORK_DEAD_BINDER_AND_CLEAR: 4564 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: { 4565 struct binder_ref_death *death; 4566 4567 death = container_of(w, struct binder_ref_death, work); 4568 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, 4569 "undelivered death notification, %016llx\n", 4570 (u64)death->cookie); 4571 kfree(death); 4572 binder_stats_deleted(BINDER_STAT_DEATH); 4573 } break; 4574 case BINDER_WORK_NODE: 4575 break; 4576 default: 4577 pr_err("unexpected work type, %d, not freed\n", 4578 wtype); 4579 break; 4580 } 4581 } 4582 4583 } 4584 4585 static struct binder_thread *binder_get_thread_ilocked( 4586 struct binder_proc *proc, struct binder_thread *new_thread) 4587 { 4588 struct binder_thread *thread = NULL; 4589 struct rb_node *parent = NULL; 4590 struct rb_node **p = &proc->threads.rb_node; 4591 4592 while (*p) { 4593 parent = *p; 4594 thread = rb_entry(parent, struct binder_thread, rb_node); 4595 4596 if (current->pid < thread->pid) 4597 p = &(*p)->rb_left; 4598 else if (current->pid > thread->pid) 4599 p = &(*p)->rb_right; 4600 else 4601 return thread; 4602 } 4603 if (!new_thread) 4604 return NULL; 4605 thread = new_thread; 4606 binder_stats_created(BINDER_STAT_THREAD); 4607 thread->proc = proc; 4608 thread->pid = current->pid; 4609 atomic_set(&thread->tmp_ref, 0); 4610 init_waitqueue_head(&thread->wait); 4611 INIT_LIST_HEAD(&thread->todo); 4612 rb_link_node(&thread->rb_node, parent, p); 4613 rb_insert_color(&thread->rb_node, &proc->threads); 4614 thread->looper_need_return = true; 4615 thread->return_error.work.type = BINDER_WORK_RETURN_ERROR; 4616 thread->return_error.cmd = BR_OK; 4617 thread->reply_error.work.type = BINDER_WORK_RETURN_ERROR; 4618 thread->reply_error.cmd = BR_OK; 4619 INIT_LIST_HEAD(&new_thread->waiting_thread_node); 4620 return thread; 4621 } 4622 4623 static struct binder_thread *binder_get_thread(struct binder_proc *proc) 4624 { 4625 struct binder_thread *thread; 4626 struct binder_thread *new_thread; 4627 4628 binder_inner_proc_lock(proc); 4629 thread = binder_get_thread_ilocked(proc, NULL); 4630 binder_inner_proc_unlock(proc); 4631 if (!thread) { 4632 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); 4633 if (new_thread == NULL) 4634 return NULL; 4635 binder_inner_proc_lock(proc); 4636 thread = binder_get_thread_ilocked(proc, new_thread); 4637 binder_inner_proc_unlock(proc); 4638 if (thread != new_thread) 4639 kfree(new_thread); 4640 } 4641 return thread; 4642 } 4643 4644 static void binder_free_proc(struct binder_proc *proc) 4645 { 4646 struct binder_device *device; 4647 4648 BUG_ON(!list_empty(&proc->todo)); 4649 BUG_ON(!list_empty(&proc->delivered_death)); 4650 if (proc->outstanding_txns) 4651 pr_warn("%s: Unexpected outstanding_txns %d\n", 4652 __func__, proc->outstanding_txns); 4653 device = container_of(proc->context, struct binder_device, context); 4654 if (refcount_dec_and_test(&device->ref)) { 4655 kfree(proc->context->name); 4656 kfree(device); 4657 } 4658 binder_alloc_deferred_release(&proc->alloc); 4659 put_task_struct(proc->tsk); 4660 put_cred(proc->cred); 4661 binder_stats_deleted(BINDER_STAT_PROC); 4662 kfree(proc); 4663 } 4664 4665 static void binder_free_thread(struct binder_thread *thread) 4666 { 4667 BUG_ON(!list_empty(&thread->todo)); 4668 binder_stats_deleted(BINDER_STAT_THREAD); 4669 binder_proc_dec_tmpref(thread->proc); 4670 kfree(thread); 4671 } 4672 4673 static int binder_thread_release(struct binder_proc *proc, 4674 struct binder_thread *thread) 4675 { 4676 struct binder_transaction *t; 4677 struct binder_transaction *send_reply = NULL; 4678 int active_transactions = 0; 4679 struct binder_transaction *last_t = NULL; 4680 4681 binder_inner_proc_lock(thread->proc); 4682 /* 4683 * take a ref on the proc so it survives 4684 * after we remove this thread from proc->threads. 4685 * The corresponding dec is when we actually 4686 * free the thread in binder_free_thread() 4687 */ 4688 proc->tmp_ref++; 4689 /* 4690 * take a ref on this thread to ensure it 4691 * survives while we are releasing it 4692 */ 4693 atomic_inc(&thread->tmp_ref); 4694 rb_erase(&thread->rb_node, &proc->threads); 4695 t = thread->transaction_stack; 4696 if (t) { 4697 spin_lock(&t->lock); 4698 if (t->to_thread == thread) 4699 send_reply = t; 4700 } else { 4701 __acquire(&t->lock); 4702 } 4703 thread->is_dead = true; 4704 4705 while (t) { 4706 last_t = t; 4707 active_transactions++; 4708 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, 4709 "release %d:%d transaction %d %s, still active\n", 4710 proc->pid, thread->pid, 4711 t->debug_id, 4712 (t->to_thread == thread) ? "in" : "out"); 4713 4714 if (t->to_thread == thread) { 4715 thread->proc->outstanding_txns--; 4716 t->to_proc = NULL; 4717 t->to_thread = NULL; 4718 if (t->buffer) { 4719 t->buffer->transaction = NULL; 4720 t->buffer = NULL; 4721 } 4722 t = t->to_parent; 4723 } else if (t->from == thread) { 4724 t->from = NULL; 4725 t = t->from_parent; 4726 } else 4727 BUG(); 4728 spin_unlock(&last_t->lock); 4729 if (t) 4730 spin_lock(&t->lock); 4731 else 4732 __acquire(&t->lock); 4733 } 4734 /* annotation for sparse, lock not acquired in last iteration above */ 4735 __release(&t->lock); 4736 4737 /* 4738 * If this thread used poll, make sure we remove the waitqueue from any 4739 * poll data structures holding it. 4740 */ 4741 if (thread->looper & BINDER_LOOPER_STATE_POLL) 4742 wake_up_pollfree(&thread->wait); 4743 4744 binder_inner_proc_unlock(thread->proc); 4745 4746 /* 4747 * This is needed to avoid races between wake_up_pollfree() above and 4748 * someone else removing the last entry from the queue for other reasons 4749 * (e.g. ep_remove_wait_queue() being called due to an epoll file 4750 * descriptor being closed). Such other users hold an RCU read lock, so 4751 * we can be sure they're done after we call synchronize_rcu(). 4752 */ 4753 if (thread->looper & BINDER_LOOPER_STATE_POLL) 4754 synchronize_rcu(); 4755 4756 if (send_reply) 4757 binder_send_failed_reply(send_reply, BR_DEAD_REPLY); 4758 binder_release_work(proc, &thread->todo); 4759 binder_thread_dec_tmpref(thread); 4760 return active_transactions; 4761 } 4762 4763 static __poll_t binder_poll(struct file *filp, 4764 struct poll_table_struct *wait) 4765 { 4766 struct binder_proc *proc = filp->private_data; 4767 struct binder_thread *thread = NULL; 4768 bool wait_for_proc_work; 4769 4770 thread = binder_get_thread(proc); 4771 if (!thread) 4772 return POLLERR; 4773 4774 binder_inner_proc_lock(thread->proc); 4775 thread->looper |= BINDER_LOOPER_STATE_POLL; 4776 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread); 4777 4778 binder_inner_proc_unlock(thread->proc); 4779 4780 poll_wait(filp, &thread->wait, wait); 4781 4782 if (binder_has_work(thread, wait_for_proc_work)) 4783 return EPOLLIN; 4784 4785 return 0; 4786 } 4787 4788 static int binder_ioctl_write_read(struct file *filp, 4789 unsigned int cmd, unsigned long arg, 4790 struct binder_thread *thread) 4791 { 4792 int ret = 0; 4793 struct binder_proc *proc = filp->private_data; 4794 unsigned int size = _IOC_SIZE(cmd); 4795 void __user *ubuf = (void __user *)arg; 4796 struct binder_write_read bwr; 4797 4798 if (size != sizeof(struct binder_write_read)) { 4799 ret = -EINVAL; 4800 goto out; 4801 } 4802 if (copy_from_user(&bwr, ubuf, sizeof(bwr))) { 4803 ret = -EFAULT; 4804 goto out; 4805 } 4806 binder_debug(BINDER_DEBUG_READ_WRITE, 4807 "%d:%d write %lld at %016llx, read %lld at %016llx\n", 4808 proc->pid, thread->pid, 4809 (u64)bwr.write_size, (u64)bwr.write_buffer, 4810 (u64)bwr.read_size, (u64)bwr.read_buffer); 4811 4812 if (bwr.write_size > 0) { 4813 ret = binder_thread_write(proc, thread, 4814 bwr.write_buffer, 4815 bwr.write_size, 4816 &bwr.write_consumed); 4817 trace_binder_write_done(ret); 4818 if (ret < 0) { 4819 bwr.read_consumed = 0; 4820 if (copy_to_user(ubuf, &bwr, sizeof(bwr))) 4821 ret = -EFAULT; 4822 goto out; 4823 } 4824 } 4825 if (bwr.read_size > 0) { 4826 ret = binder_thread_read(proc, thread, bwr.read_buffer, 4827 bwr.read_size, 4828 &bwr.read_consumed, 4829 filp->f_flags & O_NONBLOCK); 4830 trace_binder_read_done(ret); 4831 binder_inner_proc_lock(proc); 4832 if (!binder_worklist_empty_ilocked(&proc->todo)) 4833 binder_wakeup_proc_ilocked(proc); 4834 binder_inner_proc_unlock(proc); 4835 if (ret < 0) { 4836 if (copy_to_user(ubuf, &bwr, sizeof(bwr))) 4837 ret = -EFAULT; 4838 goto out; 4839 } 4840 } 4841 binder_debug(BINDER_DEBUG_READ_WRITE, 4842 "%d:%d wrote %lld of %lld, read return %lld of %lld\n", 4843 proc->pid, thread->pid, 4844 (u64)bwr.write_consumed, (u64)bwr.write_size, 4845 (u64)bwr.read_consumed, (u64)bwr.read_size); 4846 if (copy_to_user(ubuf, &bwr, sizeof(bwr))) { 4847 ret = -EFAULT; 4848 goto out; 4849 } 4850 out: 4851 return ret; 4852 } 4853 4854 static int binder_ioctl_set_ctx_mgr(struct file *filp, 4855 struct flat_binder_object *fbo) 4856 { 4857 int ret = 0; 4858 struct binder_proc *proc = filp->private_data; 4859 struct binder_context *context = proc->context; 4860 struct binder_node *new_node; 4861 kuid_t curr_euid = current_euid(); 4862 4863 mutex_lock(&context->context_mgr_node_lock); 4864 if (context->binder_context_mgr_node) { 4865 pr_err("BINDER_SET_CONTEXT_MGR already set\n"); 4866 ret = -EBUSY; 4867 goto out; 4868 } 4869 ret = security_binder_set_context_mgr(proc->cred); 4870 if (ret < 0) 4871 goto out; 4872 if (uid_valid(context->binder_context_mgr_uid)) { 4873 if (!uid_eq(context->binder_context_mgr_uid, curr_euid)) { 4874 pr_err("BINDER_SET_CONTEXT_MGR bad uid %d != %d\n", 4875 from_kuid(&init_user_ns, curr_euid), 4876 from_kuid(&init_user_ns, 4877 context->binder_context_mgr_uid)); 4878 ret = -EPERM; 4879 goto out; 4880 } 4881 } else { 4882 context->binder_context_mgr_uid = curr_euid; 4883 } 4884 new_node = binder_new_node(proc, fbo); 4885 if (!new_node) { 4886 ret = -ENOMEM; 4887 goto out; 4888 } 4889 binder_node_lock(new_node); 4890 new_node->local_weak_refs++; 4891 new_node->local_strong_refs++; 4892 new_node->has_strong_ref = 1; 4893 new_node->has_weak_ref = 1; 4894 context->binder_context_mgr_node = new_node; 4895 binder_node_unlock(new_node); 4896 binder_put_node(new_node); 4897 out: 4898 mutex_unlock(&context->context_mgr_node_lock); 4899 return ret; 4900 } 4901 4902 static int binder_ioctl_get_node_info_for_ref(struct binder_proc *proc, 4903 struct binder_node_info_for_ref *info) 4904 { 4905 struct binder_node *node; 4906 struct binder_context *context = proc->context; 4907 __u32 handle = info->handle; 4908 4909 if (info->strong_count || info->weak_count || info->reserved1 || 4910 info->reserved2 || info->reserved3) { 4911 binder_user_error("%d BINDER_GET_NODE_INFO_FOR_REF: only handle may be non-zero.", 4912 proc->pid); 4913 return -EINVAL; 4914 } 4915 4916 /* This ioctl may only be used by the context manager */ 4917 mutex_lock(&context->context_mgr_node_lock); 4918 if (!context->binder_context_mgr_node || 4919 context->binder_context_mgr_node->proc != proc) { 4920 mutex_unlock(&context->context_mgr_node_lock); 4921 return -EPERM; 4922 } 4923 mutex_unlock(&context->context_mgr_node_lock); 4924 4925 node = binder_get_node_from_ref(proc, handle, true, NULL); 4926 if (!node) 4927 return -EINVAL; 4928 4929 info->strong_count = node->local_strong_refs + 4930 node->internal_strong_refs; 4931 info->weak_count = node->local_weak_refs; 4932 4933 binder_put_node(node); 4934 4935 return 0; 4936 } 4937 4938 static int binder_ioctl_get_node_debug_info(struct binder_proc *proc, 4939 struct binder_node_debug_info *info) 4940 { 4941 struct rb_node *n; 4942 binder_uintptr_t ptr = info->ptr; 4943 4944 memset(info, 0, sizeof(*info)); 4945 4946 binder_inner_proc_lock(proc); 4947 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) { 4948 struct binder_node *node = rb_entry(n, struct binder_node, 4949 rb_node); 4950 if (node->ptr > ptr) { 4951 info->ptr = node->ptr; 4952 info->cookie = node->cookie; 4953 info->has_strong_ref = node->has_strong_ref; 4954 info->has_weak_ref = node->has_weak_ref; 4955 break; 4956 } 4957 } 4958 binder_inner_proc_unlock(proc); 4959 4960 return 0; 4961 } 4962 4963 static bool binder_txns_pending_ilocked(struct binder_proc *proc) 4964 { 4965 struct rb_node *n; 4966 struct binder_thread *thread; 4967 4968 if (proc->outstanding_txns > 0) 4969 return true; 4970 4971 for (n = rb_first(&proc->threads); n; n = rb_next(n)) { 4972 thread = rb_entry(n, struct binder_thread, rb_node); 4973 if (thread->transaction_stack) 4974 return true; 4975 } 4976 return false; 4977 } 4978 4979 static int binder_ioctl_freeze(struct binder_freeze_info *info, 4980 struct binder_proc *target_proc) 4981 { 4982 int ret = 0; 4983 4984 if (!info->enable) { 4985 binder_inner_proc_lock(target_proc); 4986 target_proc->sync_recv = false; 4987 target_proc->async_recv = false; 4988 target_proc->is_frozen = false; 4989 binder_inner_proc_unlock(target_proc); 4990 return 0; 4991 } 4992 4993 /* 4994 * Freezing the target. Prevent new transactions by 4995 * setting frozen state. If timeout specified, wait 4996 * for transactions to drain. 4997 */ 4998 binder_inner_proc_lock(target_proc); 4999 target_proc->sync_recv = false; 5000 target_proc->async_recv = false; 5001 target_proc->is_frozen = true; 5002 binder_inner_proc_unlock(target_proc); 5003 5004 if (info->timeout_ms > 0) 5005 ret = wait_event_interruptible_timeout( 5006 target_proc->freeze_wait, 5007 (!target_proc->outstanding_txns), 5008 msecs_to_jiffies(info->timeout_ms)); 5009 5010 /* Check pending transactions that wait for reply */ 5011 if (ret >= 0) { 5012 binder_inner_proc_lock(target_proc); 5013 if (binder_txns_pending_ilocked(target_proc)) 5014 ret = -EAGAIN; 5015 binder_inner_proc_unlock(target_proc); 5016 } 5017 5018 if (ret < 0) { 5019 binder_inner_proc_lock(target_proc); 5020 target_proc->is_frozen = false; 5021 binder_inner_proc_unlock(target_proc); 5022 } 5023 5024 return ret; 5025 } 5026 5027 static int binder_ioctl_get_freezer_info( 5028 struct binder_frozen_status_info *info) 5029 { 5030 struct binder_proc *target_proc; 5031 bool found = false; 5032 __u32 txns_pending; 5033 5034 info->sync_recv = 0; 5035 info->async_recv = 0; 5036 5037 mutex_lock(&binder_procs_lock); 5038 hlist_for_each_entry(target_proc, &binder_procs, proc_node) { 5039 if (target_proc->pid == info->pid) { 5040 found = true; 5041 binder_inner_proc_lock(target_proc); 5042 txns_pending = binder_txns_pending_ilocked(target_proc); 5043 info->sync_recv |= target_proc->sync_recv | 5044 (txns_pending << 1); 5045 info->async_recv |= target_proc->async_recv; 5046 binder_inner_proc_unlock(target_proc); 5047 } 5048 } 5049 mutex_unlock(&binder_procs_lock); 5050 5051 if (!found) 5052 return -EINVAL; 5053 5054 return 0; 5055 } 5056 5057 static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) 5058 { 5059 int ret; 5060 struct binder_proc *proc = filp->private_data; 5061 struct binder_thread *thread; 5062 unsigned int size = _IOC_SIZE(cmd); 5063 void __user *ubuf = (void __user *)arg; 5064 5065 /*pr_info("binder_ioctl: %d:%d %x %lx\n", 5066 proc->pid, current->pid, cmd, arg);*/ 5067 5068 binder_selftest_alloc(&proc->alloc); 5069 5070 trace_binder_ioctl(cmd, arg); 5071 5072 ret = wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2); 5073 if (ret) 5074 goto err_unlocked; 5075 5076 thread = binder_get_thread(proc); 5077 if (thread == NULL) { 5078 ret = -ENOMEM; 5079 goto err; 5080 } 5081 5082 switch (cmd) { 5083 case BINDER_WRITE_READ: 5084 ret = binder_ioctl_write_read(filp, cmd, arg, thread); 5085 if (ret) 5086 goto err; 5087 break; 5088 case BINDER_SET_MAX_THREADS: { 5089 int max_threads; 5090 5091 if (copy_from_user(&max_threads, ubuf, 5092 sizeof(max_threads))) { 5093 ret = -EINVAL; 5094 goto err; 5095 } 5096 binder_inner_proc_lock(proc); 5097 proc->max_threads = max_threads; 5098 binder_inner_proc_unlock(proc); 5099 break; 5100 } 5101 case BINDER_SET_CONTEXT_MGR_EXT: { 5102 struct flat_binder_object fbo; 5103 5104 if (copy_from_user(&fbo, ubuf, sizeof(fbo))) { 5105 ret = -EINVAL; 5106 goto err; 5107 } 5108 ret = binder_ioctl_set_ctx_mgr(filp, &fbo); 5109 if (ret) 5110 goto err; 5111 break; 5112 } 5113 case BINDER_SET_CONTEXT_MGR: 5114 ret = binder_ioctl_set_ctx_mgr(filp, NULL); 5115 if (ret) 5116 goto err; 5117 break; 5118 case BINDER_THREAD_EXIT: 5119 binder_debug(BINDER_DEBUG_THREADS, "%d:%d exit\n", 5120 proc->pid, thread->pid); 5121 binder_thread_release(proc, thread); 5122 thread = NULL; 5123 break; 5124 case BINDER_VERSION: { 5125 struct binder_version __user *ver = ubuf; 5126 5127 if (size != sizeof(struct binder_version)) { 5128 ret = -EINVAL; 5129 goto err; 5130 } 5131 if (put_user(BINDER_CURRENT_PROTOCOL_VERSION, 5132 &ver->protocol_version)) { 5133 ret = -EINVAL; 5134 goto err; 5135 } 5136 break; 5137 } 5138 case BINDER_GET_NODE_INFO_FOR_REF: { 5139 struct binder_node_info_for_ref info; 5140 5141 if (copy_from_user(&info, ubuf, sizeof(info))) { 5142 ret = -EFAULT; 5143 goto err; 5144 } 5145 5146 ret = binder_ioctl_get_node_info_for_ref(proc, &info); 5147 if (ret < 0) 5148 goto err; 5149 5150 if (copy_to_user(ubuf, &info, sizeof(info))) { 5151 ret = -EFAULT; 5152 goto err; 5153 } 5154 5155 break; 5156 } 5157 case BINDER_GET_NODE_DEBUG_INFO: { 5158 struct binder_node_debug_info info; 5159 5160 if (copy_from_user(&info, ubuf, sizeof(info))) { 5161 ret = -EFAULT; 5162 goto err; 5163 } 5164 5165 ret = binder_ioctl_get_node_debug_info(proc, &info); 5166 if (ret < 0) 5167 goto err; 5168 5169 if (copy_to_user(ubuf, &info, sizeof(info))) { 5170 ret = -EFAULT; 5171 goto err; 5172 } 5173 break; 5174 } 5175 case BINDER_FREEZE: { 5176 struct binder_freeze_info info; 5177 struct binder_proc **target_procs = NULL, *target_proc; 5178 int target_procs_count = 0, i = 0; 5179 5180 ret = 0; 5181 5182 if (copy_from_user(&info, ubuf, sizeof(info))) { 5183 ret = -EFAULT; 5184 goto err; 5185 } 5186 5187 mutex_lock(&binder_procs_lock); 5188 hlist_for_each_entry(target_proc, &binder_procs, proc_node) { 5189 if (target_proc->pid == info.pid) 5190 target_procs_count++; 5191 } 5192 5193 if (target_procs_count == 0) { 5194 mutex_unlock(&binder_procs_lock); 5195 ret = -EINVAL; 5196 goto err; 5197 } 5198 5199 target_procs = kcalloc(target_procs_count, 5200 sizeof(struct binder_proc *), 5201 GFP_KERNEL); 5202 5203 if (!target_procs) { 5204 mutex_unlock(&binder_procs_lock); 5205 ret = -ENOMEM; 5206 goto err; 5207 } 5208 5209 hlist_for_each_entry(target_proc, &binder_procs, proc_node) { 5210 if (target_proc->pid != info.pid) 5211 continue; 5212 5213 binder_inner_proc_lock(target_proc); 5214 target_proc->tmp_ref++; 5215 binder_inner_proc_unlock(target_proc); 5216 5217 target_procs[i++] = target_proc; 5218 } 5219 mutex_unlock(&binder_procs_lock); 5220 5221 for (i = 0; i < target_procs_count; i++) { 5222 if (ret >= 0) 5223 ret = binder_ioctl_freeze(&info, 5224 target_procs[i]); 5225 5226 binder_proc_dec_tmpref(target_procs[i]); 5227 } 5228 5229 kfree(target_procs); 5230 5231 if (ret < 0) 5232 goto err; 5233 break; 5234 } 5235 case BINDER_GET_FROZEN_INFO: { 5236 struct binder_frozen_status_info info; 5237 5238 if (copy_from_user(&info, ubuf, sizeof(info))) { 5239 ret = -EFAULT; 5240 goto err; 5241 } 5242 5243 ret = binder_ioctl_get_freezer_info(&info); 5244 if (ret < 0) 5245 goto err; 5246 5247 if (copy_to_user(ubuf, &info, sizeof(info))) { 5248 ret = -EFAULT; 5249 goto err; 5250 } 5251 break; 5252 } 5253 case BINDER_ENABLE_ONEWAY_SPAM_DETECTION: { 5254 uint32_t enable; 5255 5256 if (copy_from_user(&enable, ubuf, sizeof(enable))) { 5257 ret = -EFAULT; 5258 goto err; 5259 } 5260 binder_inner_proc_lock(proc); 5261 proc->oneway_spam_detection_enabled = (bool)enable; 5262 binder_inner_proc_unlock(proc); 5263 break; 5264 } 5265 default: 5266 ret = -EINVAL; 5267 goto err; 5268 } 5269 ret = 0; 5270 err: 5271 if (thread) 5272 thread->looper_need_return = false; 5273 wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2); 5274 if (ret && ret != -EINTR) 5275 pr_info("%d:%d ioctl %x %lx returned %d\n", proc->pid, current->pid, cmd, arg, ret); 5276 err_unlocked: 5277 trace_binder_ioctl_done(ret); 5278 return ret; 5279 } 5280 5281 static void binder_vma_open(struct vm_area_struct *vma) 5282 { 5283 struct binder_proc *proc = vma->vm_private_data; 5284 5285 binder_debug(BINDER_DEBUG_OPEN_CLOSE, 5286 "%d open vm area %lx-%lx (%ld K) vma %lx pagep %lx\n", 5287 proc->pid, vma->vm_start, vma->vm_end, 5288 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, 5289 (unsigned long)pgprot_val(vma->vm_page_prot)); 5290 } 5291 5292 static void binder_vma_close(struct vm_area_struct *vma) 5293 { 5294 struct binder_proc *proc = vma->vm_private_data; 5295 5296 binder_debug(BINDER_DEBUG_OPEN_CLOSE, 5297 "%d close vm area %lx-%lx (%ld K) vma %lx pagep %lx\n", 5298 proc->pid, vma->vm_start, vma->vm_end, 5299 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, 5300 (unsigned long)pgprot_val(vma->vm_page_prot)); 5301 binder_alloc_vma_close(&proc->alloc); 5302 } 5303 5304 static vm_fault_t binder_vm_fault(struct vm_fault *vmf) 5305 { 5306 return VM_FAULT_SIGBUS; 5307 } 5308 5309 static const struct vm_operations_struct binder_vm_ops = { 5310 .open = binder_vma_open, 5311 .close = binder_vma_close, 5312 .fault = binder_vm_fault, 5313 }; 5314 5315 static int binder_mmap(struct file *filp, struct vm_area_struct *vma) 5316 { 5317 struct binder_proc *proc = filp->private_data; 5318 5319 if (proc->tsk != current->group_leader) 5320 return -EINVAL; 5321 5322 binder_debug(BINDER_DEBUG_OPEN_CLOSE, 5323 "%s: %d %lx-%lx (%ld K) vma %lx pagep %lx\n", 5324 __func__, proc->pid, vma->vm_start, vma->vm_end, 5325 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, 5326 (unsigned long)pgprot_val(vma->vm_page_prot)); 5327 5328 if (vma->vm_flags & FORBIDDEN_MMAP_FLAGS) { 5329 pr_err("%s: %d %lx-%lx %s failed %d\n", __func__, 5330 proc->pid, vma->vm_start, vma->vm_end, "bad vm_flags", -EPERM); 5331 return -EPERM; 5332 } 5333 vma->vm_flags |= VM_DONTCOPY | VM_MIXEDMAP; 5334 vma->vm_flags &= ~VM_MAYWRITE; 5335 5336 vma->vm_ops = &binder_vm_ops; 5337 vma->vm_private_data = proc; 5338 5339 return binder_alloc_mmap_handler(&proc->alloc, vma); 5340 } 5341 5342 static int binder_open(struct inode *nodp, struct file *filp) 5343 { 5344 struct binder_proc *proc, *itr; 5345 struct binder_device *binder_dev; 5346 struct binderfs_info *info; 5347 struct dentry *binder_binderfs_dir_entry_proc = NULL; 5348 bool existing_pid = false; 5349 5350 binder_debug(BINDER_DEBUG_OPEN_CLOSE, "%s: %d:%d\n", __func__, 5351 current->group_leader->pid, current->pid); 5352 5353 proc = kzalloc(sizeof(*proc), GFP_KERNEL); 5354 if (proc == NULL) 5355 return -ENOMEM; 5356 spin_lock_init(&proc->inner_lock); 5357 spin_lock_init(&proc->outer_lock); 5358 get_task_struct(current->group_leader); 5359 proc->tsk = current->group_leader; 5360 proc->cred = get_cred(filp->f_cred); 5361 INIT_LIST_HEAD(&proc->todo); 5362 init_waitqueue_head(&proc->freeze_wait); 5363 proc->default_priority = task_nice(current); 5364 /* binderfs stashes devices in i_private */ 5365 if (is_binderfs_device(nodp)) { 5366 binder_dev = nodp->i_private; 5367 info = nodp->i_sb->s_fs_info; 5368 binder_binderfs_dir_entry_proc = info->proc_log_dir; 5369 } else { 5370 binder_dev = container_of(filp->private_data, 5371 struct binder_device, miscdev); 5372 } 5373 refcount_inc(&binder_dev->ref); 5374 proc->context = &binder_dev->context; 5375 binder_alloc_init(&proc->alloc); 5376 5377 binder_stats_created(BINDER_STAT_PROC); 5378 proc->pid = current->group_leader->pid; 5379 INIT_LIST_HEAD(&proc->delivered_death); 5380 INIT_LIST_HEAD(&proc->waiting_threads); 5381 filp->private_data = proc; 5382 5383 mutex_lock(&binder_procs_lock); 5384 hlist_for_each_entry(itr, &binder_procs, proc_node) { 5385 if (itr->pid == proc->pid) { 5386 existing_pid = true; 5387 break; 5388 } 5389 } 5390 hlist_add_head(&proc->proc_node, &binder_procs); 5391 mutex_unlock(&binder_procs_lock); 5392 5393 if (binder_debugfs_dir_entry_proc && !existing_pid) { 5394 char strbuf[11]; 5395 5396 snprintf(strbuf, sizeof(strbuf), "%u", proc->pid); 5397 /* 5398 * proc debug entries are shared between contexts. 5399 * Only create for the first PID to avoid debugfs log spamming 5400 * The printing code will anyway print all contexts for a given 5401 * PID so this is not a problem. 5402 */ 5403 proc->debugfs_entry = debugfs_create_file(strbuf, 0444, 5404 binder_debugfs_dir_entry_proc, 5405 (void *)(unsigned long)proc->pid, 5406 &proc_fops); 5407 } 5408 5409 if (binder_binderfs_dir_entry_proc && !existing_pid) { 5410 char strbuf[11]; 5411 struct dentry *binderfs_entry; 5412 5413 snprintf(strbuf, sizeof(strbuf), "%u", proc->pid); 5414 /* 5415 * Similar to debugfs, the process specific log file is shared 5416 * between contexts. Only create for the first PID. 5417 * This is ok since same as debugfs, the log file will contain 5418 * information on all contexts of a given PID. 5419 */ 5420 binderfs_entry = binderfs_create_file(binder_binderfs_dir_entry_proc, 5421 strbuf, &proc_fops, (void *)(unsigned long)proc->pid); 5422 if (!IS_ERR(binderfs_entry)) { 5423 proc->binderfs_entry = binderfs_entry; 5424 } else { 5425 int error; 5426 5427 error = PTR_ERR(binderfs_entry); 5428 pr_warn("Unable to create file %s in binderfs (error %d)\n", 5429 strbuf, error); 5430 } 5431 } 5432 5433 return 0; 5434 } 5435 5436 static int binder_flush(struct file *filp, fl_owner_t id) 5437 { 5438 struct binder_proc *proc = filp->private_data; 5439 5440 binder_defer_work(proc, BINDER_DEFERRED_FLUSH); 5441 5442 return 0; 5443 } 5444 5445 static void binder_deferred_flush(struct binder_proc *proc) 5446 { 5447 struct rb_node *n; 5448 int wake_count = 0; 5449 5450 binder_inner_proc_lock(proc); 5451 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) { 5452 struct binder_thread *thread = rb_entry(n, struct binder_thread, rb_node); 5453 5454 thread->looper_need_return = true; 5455 if (thread->looper & BINDER_LOOPER_STATE_WAITING) { 5456 wake_up_interruptible(&thread->wait); 5457 wake_count++; 5458 } 5459 } 5460 binder_inner_proc_unlock(proc); 5461 5462 binder_debug(BINDER_DEBUG_OPEN_CLOSE, 5463 "binder_flush: %d woke %d threads\n", proc->pid, 5464 wake_count); 5465 } 5466 5467 static int binder_release(struct inode *nodp, struct file *filp) 5468 { 5469 struct binder_proc *proc = filp->private_data; 5470 5471 debugfs_remove(proc->debugfs_entry); 5472 5473 if (proc->binderfs_entry) { 5474 binderfs_remove_file(proc->binderfs_entry); 5475 proc->binderfs_entry = NULL; 5476 } 5477 5478 binder_defer_work(proc, BINDER_DEFERRED_RELEASE); 5479 5480 return 0; 5481 } 5482 5483 static int binder_node_release(struct binder_node *node, int refs) 5484 { 5485 struct binder_ref *ref; 5486 int death = 0; 5487 struct binder_proc *proc = node->proc; 5488 5489 binder_release_work(proc, &node->async_todo); 5490 5491 binder_node_lock(node); 5492 binder_inner_proc_lock(proc); 5493 binder_dequeue_work_ilocked(&node->work); 5494 /* 5495 * The caller must have taken a temporary ref on the node, 5496 */ 5497 BUG_ON(!node->tmp_refs); 5498 if (hlist_empty(&node->refs) && node->tmp_refs == 1) { 5499 binder_inner_proc_unlock(proc); 5500 binder_node_unlock(node); 5501 binder_free_node(node); 5502 5503 return refs; 5504 } 5505 5506 node->proc = NULL; 5507 node->local_strong_refs = 0; 5508 node->local_weak_refs = 0; 5509 binder_inner_proc_unlock(proc); 5510 5511 spin_lock(&binder_dead_nodes_lock); 5512 hlist_add_head(&node->dead_node, &binder_dead_nodes); 5513 spin_unlock(&binder_dead_nodes_lock); 5514 5515 hlist_for_each_entry(ref, &node->refs, node_entry) { 5516 refs++; 5517 /* 5518 * Need the node lock to synchronize 5519 * with new notification requests and the 5520 * inner lock to synchronize with queued 5521 * death notifications. 5522 */ 5523 binder_inner_proc_lock(ref->proc); 5524 if (!ref->death) { 5525 binder_inner_proc_unlock(ref->proc); 5526 continue; 5527 } 5528 5529 death++; 5530 5531 BUG_ON(!list_empty(&ref->death->work.entry)); 5532 ref->death->work.type = BINDER_WORK_DEAD_BINDER; 5533 binder_enqueue_work_ilocked(&ref->death->work, 5534 &ref->proc->todo); 5535 binder_wakeup_proc_ilocked(ref->proc); 5536 binder_inner_proc_unlock(ref->proc); 5537 } 5538 5539 binder_debug(BINDER_DEBUG_DEAD_BINDER, 5540 "node %d now dead, refs %d, death %d\n", 5541 node->debug_id, refs, death); 5542 binder_node_unlock(node); 5543 binder_put_node(node); 5544 5545 return refs; 5546 } 5547 5548 static void binder_deferred_release(struct binder_proc *proc) 5549 { 5550 struct binder_context *context = proc->context; 5551 struct rb_node *n; 5552 int threads, nodes, incoming_refs, outgoing_refs, active_transactions; 5553 5554 mutex_lock(&binder_procs_lock); 5555 hlist_del(&proc->proc_node); 5556 mutex_unlock(&binder_procs_lock); 5557 5558 mutex_lock(&context->context_mgr_node_lock); 5559 if (context->binder_context_mgr_node && 5560 context->binder_context_mgr_node->proc == proc) { 5561 binder_debug(BINDER_DEBUG_DEAD_BINDER, 5562 "%s: %d context_mgr_node gone\n", 5563 __func__, proc->pid); 5564 context->binder_context_mgr_node = NULL; 5565 } 5566 mutex_unlock(&context->context_mgr_node_lock); 5567 binder_inner_proc_lock(proc); 5568 /* 5569 * Make sure proc stays alive after we 5570 * remove all the threads 5571 */ 5572 proc->tmp_ref++; 5573 5574 proc->is_dead = true; 5575 proc->is_frozen = false; 5576 proc->sync_recv = false; 5577 proc->async_recv = false; 5578 threads = 0; 5579 active_transactions = 0; 5580 while ((n = rb_first(&proc->threads))) { 5581 struct binder_thread *thread; 5582 5583 thread = rb_entry(n, struct binder_thread, rb_node); 5584 binder_inner_proc_unlock(proc); 5585 threads++; 5586 active_transactions += binder_thread_release(proc, thread); 5587 binder_inner_proc_lock(proc); 5588 } 5589 5590 nodes = 0; 5591 incoming_refs = 0; 5592 while ((n = rb_first(&proc->nodes))) { 5593 struct binder_node *node; 5594 5595 node = rb_entry(n, struct binder_node, rb_node); 5596 nodes++; 5597 /* 5598 * take a temporary ref on the node before 5599 * calling binder_node_release() which will either 5600 * kfree() the node or call binder_put_node() 5601 */ 5602 binder_inc_node_tmpref_ilocked(node); 5603 rb_erase(&node->rb_node, &proc->nodes); 5604 binder_inner_proc_unlock(proc); 5605 incoming_refs = binder_node_release(node, incoming_refs); 5606 binder_inner_proc_lock(proc); 5607 } 5608 binder_inner_proc_unlock(proc); 5609 5610 outgoing_refs = 0; 5611 binder_proc_lock(proc); 5612 while ((n = rb_first(&proc->refs_by_desc))) { 5613 struct binder_ref *ref; 5614 5615 ref = rb_entry(n, struct binder_ref, rb_node_desc); 5616 outgoing_refs++; 5617 binder_cleanup_ref_olocked(ref); 5618 binder_proc_unlock(proc); 5619 binder_free_ref(ref); 5620 binder_proc_lock(proc); 5621 } 5622 binder_proc_unlock(proc); 5623 5624 binder_release_work(proc, &proc->todo); 5625 binder_release_work(proc, &proc->delivered_death); 5626 5627 binder_debug(BINDER_DEBUG_OPEN_CLOSE, 5628 "%s: %d threads %d, nodes %d (ref %d), refs %d, active transactions %d\n", 5629 __func__, proc->pid, threads, nodes, incoming_refs, 5630 outgoing_refs, active_transactions); 5631 5632 binder_proc_dec_tmpref(proc); 5633 } 5634 5635 static void binder_deferred_func(struct work_struct *work) 5636 { 5637 struct binder_proc *proc; 5638 5639 int defer; 5640 5641 do { 5642 mutex_lock(&binder_deferred_lock); 5643 if (!hlist_empty(&binder_deferred_list)) { 5644 proc = hlist_entry(binder_deferred_list.first, 5645 struct binder_proc, deferred_work_node); 5646 hlist_del_init(&proc->deferred_work_node); 5647 defer = proc->deferred_work; 5648 proc->deferred_work = 0; 5649 } else { 5650 proc = NULL; 5651 defer = 0; 5652 } 5653 mutex_unlock(&binder_deferred_lock); 5654 5655 if (defer & BINDER_DEFERRED_FLUSH) 5656 binder_deferred_flush(proc); 5657 5658 if (defer & BINDER_DEFERRED_RELEASE) 5659 binder_deferred_release(proc); /* frees proc */ 5660 } while (proc); 5661 } 5662 static DECLARE_WORK(binder_deferred_work, binder_deferred_func); 5663 5664 static void 5665 binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer) 5666 { 5667 mutex_lock(&binder_deferred_lock); 5668 proc->deferred_work |= defer; 5669 if (hlist_unhashed(&proc->deferred_work_node)) { 5670 hlist_add_head(&proc->deferred_work_node, 5671 &binder_deferred_list); 5672 schedule_work(&binder_deferred_work); 5673 } 5674 mutex_unlock(&binder_deferred_lock); 5675 } 5676 5677 static void print_binder_transaction_ilocked(struct seq_file *m, 5678 struct binder_proc *proc, 5679 const char *prefix, 5680 struct binder_transaction *t) 5681 { 5682 struct binder_proc *to_proc; 5683 struct binder_buffer *buffer = t->buffer; 5684 5685 spin_lock(&t->lock); 5686 to_proc = t->to_proc; 5687 seq_printf(m, 5688 "%s %d: %pK from %d:%d to %d:%d code %x flags %x pri %ld r%d", 5689 prefix, t->debug_id, t, 5690 t->from ? t->from->proc->pid : 0, 5691 t->from ? t->from->pid : 0, 5692 to_proc ? to_proc->pid : 0, 5693 t->to_thread ? t->to_thread->pid : 0, 5694 t->code, t->flags, t->priority, t->need_reply); 5695 spin_unlock(&t->lock); 5696 5697 if (proc != to_proc) { 5698 /* 5699 * Can only safely deref buffer if we are holding the 5700 * correct proc inner lock for this node 5701 */ 5702 seq_puts(m, "\n"); 5703 return; 5704 } 5705 5706 if (buffer == NULL) { 5707 seq_puts(m, " buffer free\n"); 5708 return; 5709 } 5710 if (buffer->target_node) 5711 seq_printf(m, " node %d", buffer->target_node->debug_id); 5712 seq_printf(m, " size %zd:%zd data %pK\n", 5713 buffer->data_size, buffer->offsets_size, 5714 buffer->user_data); 5715 } 5716 5717 static void print_binder_work_ilocked(struct seq_file *m, 5718 struct binder_proc *proc, 5719 const char *prefix, 5720 const char *transaction_prefix, 5721 struct binder_work *w) 5722 { 5723 struct binder_node *node; 5724 struct binder_transaction *t; 5725 5726 switch (w->type) { 5727 case BINDER_WORK_TRANSACTION: 5728 t = container_of(w, struct binder_transaction, work); 5729 print_binder_transaction_ilocked( 5730 m, proc, transaction_prefix, t); 5731 break; 5732 case BINDER_WORK_RETURN_ERROR: { 5733 struct binder_error *e = container_of( 5734 w, struct binder_error, work); 5735 5736 seq_printf(m, "%stransaction error: %u\n", 5737 prefix, e->cmd); 5738 } break; 5739 case BINDER_WORK_TRANSACTION_COMPLETE: 5740 seq_printf(m, "%stransaction complete\n", prefix); 5741 break; 5742 case BINDER_WORK_NODE: 5743 node = container_of(w, struct binder_node, work); 5744 seq_printf(m, "%snode work %d: u%016llx c%016llx\n", 5745 prefix, node->debug_id, 5746 (u64)node->ptr, (u64)node->cookie); 5747 break; 5748 case BINDER_WORK_DEAD_BINDER: 5749 seq_printf(m, "%shas dead binder\n", prefix); 5750 break; 5751 case BINDER_WORK_DEAD_BINDER_AND_CLEAR: 5752 seq_printf(m, "%shas cleared dead binder\n", prefix); 5753 break; 5754 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: 5755 seq_printf(m, "%shas cleared death notification\n", prefix); 5756 break; 5757 default: 5758 seq_printf(m, "%sunknown work: type %d\n", prefix, w->type); 5759 break; 5760 } 5761 } 5762 5763 static void print_binder_thread_ilocked(struct seq_file *m, 5764 struct binder_thread *thread, 5765 int print_always) 5766 { 5767 struct binder_transaction *t; 5768 struct binder_work *w; 5769 size_t start_pos = m->count; 5770 size_t header_pos; 5771 5772 seq_printf(m, " thread %d: l %02x need_return %d tr %d\n", 5773 thread->pid, thread->looper, 5774 thread->looper_need_return, 5775 atomic_read(&thread->tmp_ref)); 5776 header_pos = m->count; 5777 t = thread->transaction_stack; 5778 while (t) { 5779 if (t->from == thread) { 5780 print_binder_transaction_ilocked(m, thread->proc, 5781 " outgoing transaction", t); 5782 t = t->from_parent; 5783 } else if (t->to_thread == thread) { 5784 print_binder_transaction_ilocked(m, thread->proc, 5785 " incoming transaction", t); 5786 t = t->to_parent; 5787 } else { 5788 print_binder_transaction_ilocked(m, thread->proc, 5789 " bad transaction", t); 5790 t = NULL; 5791 } 5792 } 5793 list_for_each_entry(w, &thread->todo, entry) { 5794 print_binder_work_ilocked(m, thread->proc, " ", 5795 " pending transaction", w); 5796 } 5797 if (!print_always && m->count == header_pos) 5798 m->count = start_pos; 5799 } 5800 5801 static void print_binder_node_nilocked(struct seq_file *m, 5802 struct binder_node *node) 5803 { 5804 struct binder_ref *ref; 5805 struct binder_work *w; 5806 int count; 5807 5808 count = 0; 5809 hlist_for_each_entry(ref, &node->refs, node_entry) 5810 count++; 5811 5812 seq_printf(m, " node %d: u%016llx c%016llx hs %d hw %d ls %d lw %d is %d iw %d tr %d", 5813 node->debug_id, (u64)node->ptr, (u64)node->cookie, 5814 node->has_strong_ref, node->has_weak_ref, 5815 node->local_strong_refs, node->local_weak_refs, 5816 node->internal_strong_refs, count, node->tmp_refs); 5817 if (count) { 5818 seq_puts(m, " proc"); 5819 hlist_for_each_entry(ref, &node->refs, node_entry) 5820 seq_printf(m, " %d", ref->proc->pid); 5821 } 5822 seq_puts(m, "\n"); 5823 if (node->proc) { 5824 list_for_each_entry(w, &node->async_todo, entry) 5825 print_binder_work_ilocked(m, node->proc, " ", 5826 " pending async transaction", w); 5827 } 5828 } 5829 5830 static void print_binder_ref_olocked(struct seq_file *m, 5831 struct binder_ref *ref) 5832 { 5833 binder_node_lock(ref->node); 5834 seq_printf(m, " ref %d: desc %d %snode %d s %d w %d d %pK\n", 5835 ref->data.debug_id, ref->data.desc, 5836 ref->node->proc ? "" : "dead ", 5837 ref->node->debug_id, ref->data.strong, 5838 ref->data.weak, ref->death); 5839 binder_node_unlock(ref->node); 5840 } 5841 5842 static void print_binder_proc(struct seq_file *m, 5843 struct binder_proc *proc, int print_all) 5844 { 5845 struct binder_work *w; 5846 struct rb_node *n; 5847 size_t start_pos = m->count; 5848 size_t header_pos; 5849 struct binder_node *last_node = NULL; 5850 5851 seq_printf(m, "proc %d\n", proc->pid); 5852 seq_printf(m, "context %s\n", proc->context->name); 5853 header_pos = m->count; 5854 5855 binder_inner_proc_lock(proc); 5856 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) 5857 print_binder_thread_ilocked(m, rb_entry(n, struct binder_thread, 5858 rb_node), print_all); 5859 5860 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) { 5861 struct binder_node *node = rb_entry(n, struct binder_node, 5862 rb_node); 5863 if (!print_all && !node->has_async_transaction) 5864 continue; 5865 5866 /* 5867 * take a temporary reference on the node so it 5868 * survives and isn't removed from the tree 5869 * while we print it. 5870 */ 5871 binder_inc_node_tmpref_ilocked(node); 5872 /* Need to drop inner lock to take node lock */ 5873 binder_inner_proc_unlock(proc); 5874 if (last_node) 5875 binder_put_node(last_node); 5876 binder_node_inner_lock(node); 5877 print_binder_node_nilocked(m, node); 5878 binder_node_inner_unlock(node); 5879 last_node = node; 5880 binder_inner_proc_lock(proc); 5881 } 5882 binder_inner_proc_unlock(proc); 5883 if (last_node) 5884 binder_put_node(last_node); 5885 5886 if (print_all) { 5887 binder_proc_lock(proc); 5888 for (n = rb_first(&proc->refs_by_desc); 5889 n != NULL; 5890 n = rb_next(n)) 5891 print_binder_ref_olocked(m, rb_entry(n, 5892 struct binder_ref, 5893 rb_node_desc)); 5894 binder_proc_unlock(proc); 5895 } 5896 binder_alloc_print_allocated(m, &proc->alloc); 5897 binder_inner_proc_lock(proc); 5898 list_for_each_entry(w, &proc->todo, entry) 5899 print_binder_work_ilocked(m, proc, " ", 5900 " pending transaction", w); 5901 list_for_each_entry(w, &proc->delivered_death, entry) { 5902 seq_puts(m, " has delivered dead binder\n"); 5903 break; 5904 } 5905 binder_inner_proc_unlock(proc); 5906 if (!print_all && m->count == header_pos) 5907 m->count = start_pos; 5908 } 5909 5910 static const char * const binder_return_strings[] = { 5911 "BR_ERROR", 5912 "BR_OK", 5913 "BR_TRANSACTION", 5914 "BR_REPLY", 5915 "BR_ACQUIRE_RESULT", 5916 "BR_DEAD_REPLY", 5917 "BR_TRANSACTION_COMPLETE", 5918 "BR_INCREFS", 5919 "BR_ACQUIRE", 5920 "BR_RELEASE", 5921 "BR_DECREFS", 5922 "BR_ATTEMPT_ACQUIRE", 5923 "BR_NOOP", 5924 "BR_SPAWN_LOOPER", 5925 "BR_FINISHED", 5926 "BR_DEAD_BINDER", 5927 "BR_CLEAR_DEATH_NOTIFICATION_DONE", 5928 "BR_FAILED_REPLY", 5929 "BR_FROZEN_REPLY", 5930 "BR_ONEWAY_SPAM_SUSPECT", 5931 }; 5932 5933 static const char * const binder_command_strings[] = { 5934 "BC_TRANSACTION", 5935 "BC_REPLY", 5936 "BC_ACQUIRE_RESULT", 5937 "BC_FREE_BUFFER", 5938 "BC_INCREFS", 5939 "BC_ACQUIRE", 5940 "BC_RELEASE", 5941 "BC_DECREFS", 5942 "BC_INCREFS_DONE", 5943 "BC_ACQUIRE_DONE", 5944 "BC_ATTEMPT_ACQUIRE", 5945 "BC_REGISTER_LOOPER", 5946 "BC_ENTER_LOOPER", 5947 "BC_EXIT_LOOPER", 5948 "BC_REQUEST_DEATH_NOTIFICATION", 5949 "BC_CLEAR_DEATH_NOTIFICATION", 5950 "BC_DEAD_BINDER_DONE", 5951 "BC_TRANSACTION_SG", 5952 "BC_REPLY_SG", 5953 }; 5954 5955 static const char * const binder_objstat_strings[] = { 5956 "proc", 5957 "thread", 5958 "node", 5959 "ref", 5960 "death", 5961 "transaction", 5962 "transaction_complete" 5963 }; 5964 5965 static void print_binder_stats(struct seq_file *m, const char *prefix, 5966 struct binder_stats *stats) 5967 { 5968 int i; 5969 5970 BUILD_BUG_ON(ARRAY_SIZE(stats->bc) != 5971 ARRAY_SIZE(binder_command_strings)); 5972 for (i = 0; i < ARRAY_SIZE(stats->bc); i++) { 5973 int temp = atomic_read(&stats->bc[i]); 5974 5975 if (temp) 5976 seq_printf(m, "%s%s: %d\n", prefix, 5977 binder_command_strings[i], temp); 5978 } 5979 5980 BUILD_BUG_ON(ARRAY_SIZE(stats->br) != 5981 ARRAY_SIZE(binder_return_strings)); 5982 for (i = 0; i < ARRAY_SIZE(stats->br); i++) { 5983 int temp = atomic_read(&stats->br[i]); 5984 5985 if (temp) 5986 seq_printf(m, "%s%s: %d\n", prefix, 5987 binder_return_strings[i], temp); 5988 } 5989 5990 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) != 5991 ARRAY_SIZE(binder_objstat_strings)); 5992 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) != 5993 ARRAY_SIZE(stats->obj_deleted)); 5994 for (i = 0; i < ARRAY_SIZE(stats->obj_created); i++) { 5995 int created = atomic_read(&stats->obj_created[i]); 5996 int deleted = atomic_read(&stats->obj_deleted[i]); 5997 5998 if (created || deleted) 5999 seq_printf(m, "%s%s: active %d total %d\n", 6000 prefix, 6001 binder_objstat_strings[i], 6002 created - deleted, 6003 created); 6004 } 6005 } 6006 6007 static void print_binder_proc_stats(struct seq_file *m, 6008 struct binder_proc *proc) 6009 { 6010 struct binder_work *w; 6011 struct binder_thread *thread; 6012 struct rb_node *n; 6013 int count, strong, weak, ready_threads; 6014 size_t free_async_space = 6015 binder_alloc_get_free_async_space(&proc->alloc); 6016 6017 seq_printf(m, "proc %d\n", proc->pid); 6018 seq_printf(m, "context %s\n", proc->context->name); 6019 count = 0; 6020 ready_threads = 0; 6021 binder_inner_proc_lock(proc); 6022 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) 6023 count++; 6024 6025 list_for_each_entry(thread, &proc->waiting_threads, waiting_thread_node) 6026 ready_threads++; 6027 6028 seq_printf(m, " threads: %d\n", count); 6029 seq_printf(m, " requested threads: %d+%d/%d\n" 6030 " ready threads %d\n" 6031 " free async space %zd\n", proc->requested_threads, 6032 proc->requested_threads_started, proc->max_threads, 6033 ready_threads, 6034 free_async_space); 6035 count = 0; 6036 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) 6037 count++; 6038 binder_inner_proc_unlock(proc); 6039 seq_printf(m, " nodes: %d\n", count); 6040 count = 0; 6041 strong = 0; 6042 weak = 0; 6043 binder_proc_lock(proc); 6044 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) { 6045 struct binder_ref *ref = rb_entry(n, struct binder_ref, 6046 rb_node_desc); 6047 count++; 6048 strong += ref->data.strong; 6049 weak += ref->data.weak; 6050 } 6051 binder_proc_unlock(proc); 6052 seq_printf(m, " refs: %d s %d w %d\n", count, strong, weak); 6053 6054 count = binder_alloc_get_allocated_count(&proc->alloc); 6055 seq_printf(m, " buffers: %d\n", count); 6056 6057 binder_alloc_print_pages(m, &proc->alloc); 6058 6059 count = 0; 6060 binder_inner_proc_lock(proc); 6061 list_for_each_entry(w, &proc->todo, entry) { 6062 if (w->type == BINDER_WORK_TRANSACTION) 6063 count++; 6064 } 6065 binder_inner_proc_unlock(proc); 6066 seq_printf(m, " pending transactions: %d\n", count); 6067 6068 print_binder_stats(m, " ", &proc->stats); 6069 } 6070 6071 6072 int binder_state_show(struct seq_file *m, void *unused) 6073 { 6074 struct binder_proc *proc; 6075 struct binder_node *node; 6076 struct binder_node *last_node = NULL; 6077 6078 seq_puts(m, "binder state:\n"); 6079 6080 spin_lock(&binder_dead_nodes_lock); 6081 if (!hlist_empty(&binder_dead_nodes)) 6082 seq_puts(m, "dead nodes:\n"); 6083 hlist_for_each_entry(node, &binder_dead_nodes, dead_node) { 6084 /* 6085 * take a temporary reference on the node so it 6086 * survives and isn't removed from the list 6087 * while we print it. 6088 */ 6089 node->tmp_refs++; 6090 spin_unlock(&binder_dead_nodes_lock); 6091 if (last_node) 6092 binder_put_node(last_node); 6093 binder_node_lock(node); 6094 print_binder_node_nilocked(m, node); 6095 binder_node_unlock(node); 6096 last_node = node; 6097 spin_lock(&binder_dead_nodes_lock); 6098 } 6099 spin_unlock(&binder_dead_nodes_lock); 6100 if (last_node) 6101 binder_put_node(last_node); 6102 6103 mutex_lock(&binder_procs_lock); 6104 hlist_for_each_entry(proc, &binder_procs, proc_node) 6105 print_binder_proc(m, proc, 1); 6106 mutex_unlock(&binder_procs_lock); 6107 6108 return 0; 6109 } 6110 6111 int binder_stats_show(struct seq_file *m, void *unused) 6112 { 6113 struct binder_proc *proc; 6114 6115 seq_puts(m, "binder stats:\n"); 6116 6117 print_binder_stats(m, "", &binder_stats); 6118 6119 mutex_lock(&binder_procs_lock); 6120 hlist_for_each_entry(proc, &binder_procs, proc_node) 6121 print_binder_proc_stats(m, proc); 6122 mutex_unlock(&binder_procs_lock); 6123 6124 return 0; 6125 } 6126 6127 int binder_transactions_show(struct seq_file *m, void *unused) 6128 { 6129 struct binder_proc *proc; 6130 6131 seq_puts(m, "binder transactions:\n"); 6132 mutex_lock(&binder_procs_lock); 6133 hlist_for_each_entry(proc, &binder_procs, proc_node) 6134 print_binder_proc(m, proc, 0); 6135 mutex_unlock(&binder_procs_lock); 6136 6137 return 0; 6138 } 6139 6140 static int proc_show(struct seq_file *m, void *unused) 6141 { 6142 struct binder_proc *itr; 6143 int pid = (unsigned long)m->private; 6144 6145 mutex_lock(&binder_procs_lock); 6146 hlist_for_each_entry(itr, &binder_procs, proc_node) { 6147 if (itr->pid == pid) { 6148 seq_puts(m, "binder proc state:\n"); 6149 print_binder_proc(m, itr, 1); 6150 } 6151 } 6152 mutex_unlock(&binder_procs_lock); 6153 6154 return 0; 6155 } 6156 6157 static void print_binder_transaction_log_entry(struct seq_file *m, 6158 struct binder_transaction_log_entry *e) 6159 { 6160 int debug_id = READ_ONCE(e->debug_id_done); 6161 /* 6162 * read barrier to guarantee debug_id_done read before 6163 * we print the log values 6164 */ 6165 smp_rmb(); 6166 seq_printf(m, 6167 "%d: %s from %d:%d to %d:%d context %s node %d handle %d size %d:%d ret %d/%d l=%d", 6168 e->debug_id, (e->call_type == 2) ? "reply" : 6169 ((e->call_type == 1) ? "async" : "call "), e->from_proc, 6170 e->from_thread, e->to_proc, e->to_thread, e->context_name, 6171 e->to_node, e->target_handle, e->data_size, e->offsets_size, 6172 e->return_error, e->return_error_param, 6173 e->return_error_line); 6174 /* 6175 * read-barrier to guarantee read of debug_id_done after 6176 * done printing the fields of the entry 6177 */ 6178 smp_rmb(); 6179 seq_printf(m, debug_id && debug_id == READ_ONCE(e->debug_id_done) ? 6180 "\n" : " (incomplete)\n"); 6181 } 6182 6183 int binder_transaction_log_show(struct seq_file *m, void *unused) 6184 { 6185 struct binder_transaction_log *log = m->private; 6186 unsigned int log_cur = atomic_read(&log->cur); 6187 unsigned int count; 6188 unsigned int cur; 6189 int i; 6190 6191 count = log_cur + 1; 6192 cur = count < ARRAY_SIZE(log->entry) && !log->full ? 6193 0 : count % ARRAY_SIZE(log->entry); 6194 if (count > ARRAY_SIZE(log->entry) || log->full) 6195 count = ARRAY_SIZE(log->entry); 6196 for (i = 0; i < count; i++) { 6197 unsigned int index = cur++ % ARRAY_SIZE(log->entry); 6198 6199 print_binder_transaction_log_entry(m, &log->entry[index]); 6200 } 6201 return 0; 6202 } 6203 6204 const struct file_operations binder_fops = { 6205 .owner = THIS_MODULE, 6206 .poll = binder_poll, 6207 .unlocked_ioctl = binder_ioctl, 6208 .compat_ioctl = compat_ptr_ioctl, 6209 .mmap = binder_mmap, 6210 .open = binder_open, 6211 .flush = binder_flush, 6212 .release = binder_release, 6213 }; 6214 6215 static int __init init_binder_device(const char *name) 6216 { 6217 int ret; 6218 struct binder_device *binder_device; 6219 6220 binder_device = kzalloc(sizeof(*binder_device), GFP_KERNEL); 6221 if (!binder_device) 6222 return -ENOMEM; 6223 6224 binder_device->miscdev.fops = &binder_fops; 6225 binder_device->miscdev.minor = MISC_DYNAMIC_MINOR; 6226 binder_device->miscdev.name = name; 6227 6228 refcount_set(&binder_device->ref, 1); 6229 binder_device->context.binder_context_mgr_uid = INVALID_UID; 6230 binder_device->context.name = name; 6231 mutex_init(&binder_device->context.context_mgr_node_lock); 6232 6233 ret = misc_register(&binder_device->miscdev); 6234 if (ret < 0) { 6235 kfree(binder_device); 6236 return ret; 6237 } 6238 6239 hlist_add_head(&binder_device->hlist, &binder_devices); 6240 6241 return ret; 6242 } 6243 6244 static int __init binder_init(void) 6245 { 6246 int ret; 6247 char *device_name, *device_tmp; 6248 struct binder_device *device; 6249 struct hlist_node *tmp; 6250 char *device_names = NULL; 6251 6252 ret = binder_alloc_shrinker_init(); 6253 if (ret) 6254 return ret; 6255 6256 atomic_set(&binder_transaction_log.cur, ~0U); 6257 atomic_set(&binder_transaction_log_failed.cur, ~0U); 6258 6259 binder_debugfs_dir_entry_root = debugfs_create_dir("binder", NULL); 6260 if (binder_debugfs_dir_entry_root) 6261 binder_debugfs_dir_entry_proc = debugfs_create_dir("proc", 6262 binder_debugfs_dir_entry_root); 6263 6264 if (binder_debugfs_dir_entry_root) { 6265 debugfs_create_file("state", 6266 0444, 6267 binder_debugfs_dir_entry_root, 6268 NULL, 6269 &binder_state_fops); 6270 debugfs_create_file("stats", 6271 0444, 6272 binder_debugfs_dir_entry_root, 6273 NULL, 6274 &binder_stats_fops); 6275 debugfs_create_file("transactions", 6276 0444, 6277 binder_debugfs_dir_entry_root, 6278 NULL, 6279 &binder_transactions_fops); 6280 debugfs_create_file("transaction_log", 6281 0444, 6282 binder_debugfs_dir_entry_root, 6283 &binder_transaction_log, 6284 &binder_transaction_log_fops); 6285 debugfs_create_file("failed_transaction_log", 6286 0444, 6287 binder_debugfs_dir_entry_root, 6288 &binder_transaction_log_failed, 6289 &binder_transaction_log_fops); 6290 } 6291 6292 if (!IS_ENABLED(CONFIG_ANDROID_BINDERFS) && 6293 strcmp(binder_devices_param, "") != 0) { 6294 /* 6295 * Copy the module_parameter string, because we don't want to 6296 * tokenize it in-place. 6297 */ 6298 device_names = kstrdup(binder_devices_param, GFP_KERNEL); 6299 if (!device_names) { 6300 ret = -ENOMEM; 6301 goto err_alloc_device_names_failed; 6302 } 6303 6304 device_tmp = device_names; 6305 while ((device_name = strsep(&device_tmp, ","))) { 6306 ret = init_binder_device(device_name); 6307 if (ret) 6308 goto err_init_binder_device_failed; 6309 } 6310 } 6311 6312 ret = init_binderfs(); 6313 if (ret) 6314 goto err_init_binder_device_failed; 6315 6316 return ret; 6317 6318 err_init_binder_device_failed: 6319 hlist_for_each_entry_safe(device, tmp, &binder_devices, hlist) { 6320 misc_deregister(&device->miscdev); 6321 hlist_del(&device->hlist); 6322 kfree(device); 6323 } 6324 6325 kfree(device_names); 6326 6327 err_alloc_device_names_failed: 6328 debugfs_remove_recursive(binder_debugfs_dir_entry_root); 6329 6330 return ret; 6331 } 6332 6333 device_initcall(binder_init); 6334 6335 #define CREATE_TRACE_POINTS 6336 #include "binder_trace.h" 6337 6338 MODULE_LICENSE("GPL v2"); 6339