1 // SPDX-License-Identifier: GPL-2.0-only
4 * Android IPC Subsystem
6 * Copyright (C) 2007-2008 Google, Inc.
12 * There are 3 main spinlocks which must be acquired in the
15 * 1) proc->outer_lock : protects binder_ref
16 * binder_proc_lock() and binder_proc_unlock() are
18 * 2) node->lock : protects most fields of binder_node.
19 * binder_node_lock() and binder_node_unlock() are
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()
29 * Any lock under procA must never be nested under any lock at the same
30 * level or below on procB.
32 * Functions that require a lock held on entry indicate which lock
33 * in the suffix of the function name:
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
43 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
45 #include <linux/fdtable.h>
46 #include <linux/file.h>
47 #include <linux/freezer.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/uaccess.h>
61 #include <linux/pid_namespace.h>
62 #include <linux/security.h>
63 #include <linux/spinlock.h>
64 #include <linux/ratelimit.h>
65 #include <linux/syscalls.h>
66 #include <linux/task_work.h>
68 #include <uapi/linux/android/binder.h>
70 #include <asm/cacheflush.h>
72 #include "binder_alloc.h"
73 #include "binder_internal.h"
74 #include "binder_trace.h"
76 static HLIST_HEAD(binder_deferred_list);
77 static DEFINE_MUTEX(binder_deferred_lock);
79 static HLIST_HEAD(binder_devices);
80 static HLIST_HEAD(binder_procs);
81 static DEFINE_MUTEX(binder_procs_lock);
83 static HLIST_HEAD(binder_dead_nodes);
84 static DEFINE_SPINLOCK(binder_dead_nodes_lock);
86 static struct dentry *binder_debugfs_dir_entry_root;
87 static struct dentry *binder_debugfs_dir_entry_proc;
88 static atomic_t binder_last_id;
90 static int proc_show(struct seq_file *m, void *unused);
91 DEFINE_SHOW_ATTRIBUTE(proc);
93 /* This is only defined in include/asm-arm/sizes.h */
99 #define SZ_4M 0x400000
102 #define FORBIDDEN_MMAP_FLAGS (VM_WRITE)
105 BINDER_DEBUG_USER_ERROR = 1U << 0,
106 BINDER_DEBUG_FAILED_TRANSACTION = 1U << 1,
107 BINDER_DEBUG_DEAD_TRANSACTION = 1U << 2,
108 BINDER_DEBUG_OPEN_CLOSE = 1U << 3,
109 BINDER_DEBUG_DEAD_BINDER = 1U << 4,
110 BINDER_DEBUG_DEATH_NOTIFICATION = 1U << 5,
111 BINDER_DEBUG_READ_WRITE = 1U << 6,
112 BINDER_DEBUG_USER_REFS = 1U << 7,
113 BINDER_DEBUG_THREADS = 1U << 8,
114 BINDER_DEBUG_TRANSACTION = 1U << 9,
115 BINDER_DEBUG_TRANSACTION_COMPLETE = 1U << 10,
116 BINDER_DEBUG_FREE_BUFFER = 1U << 11,
117 BINDER_DEBUG_INTERNAL_REFS = 1U << 12,
118 BINDER_DEBUG_PRIORITY_CAP = 1U << 13,
119 BINDER_DEBUG_SPINLOCKS = 1U << 14,
121 static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR |
122 BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION;
123 module_param_named(debug_mask, binder_debug_mask, uint, 0644);
125 static char *binder_devices_param = CONFIG_ANDROID_BINDER_DEVICES;
126 module_param_named(devices, binder_devices_param, charp, 0444);
128 static DECLARE_WAIT_QUEUE_HEAD(binder_user_error_wait);
129 static int binder_stop_on_user_error;
131 static int binder_set_stop_on_user_error(const char *val,
132 const struct kernel_param *kp)
136 ret = param_set_int(val, kp);
137 if (binder_stop_on_user_error < 2)
138 wake_up(&binder_user_error_wait);
141 module_param_call(stop_on_user_error, binder_set_stop_on_user_error,
142 param_get_int, &binder_stop_on_user_error, 0644);
144 #define binder_debug(mask, x...) \
146 if (binder_debug_mask & mask) \
147 pr_info_ratelimited(x); \
150 #define binder_user_error(x...) \
152 if (binder_debug_mask & BINDER_DEBUG_USER_ERROR) \
153 pr_info_ratelimited(x); \
154 if (binder_stop_on_user_error) \
155 binder_stop_on_user_error = 2; \
158 #define to_flat_binder_object(hdr) \
159 container_of(hdr, struct flat_binder_object, hdr)
161 #define to_binder_fd_object(hdr) container_of(hdr, struct binder_fd_object, hdr)
163 #define to_binder_buffer_object(hdr) \
164 container_of(hdr, struct binder_buffer_object, hdr)
166 #define to_binder_fd_array_object(hdr) \
167 container_of(hdr, struct binder_fd_array_object, hdr)
169 enum binder_stat_types {
175 BINDER_STAT_TRANSACTION,
176 BINDER_STAT_TRANSACTION_COMPLETE,
180 struct binder_stats {
181 atomic_t br[_IOC_NR(BR_FAILED_REPLY) + 1];
182 atomic_t bc[_IOC_NR(BC_REPLY_SG) + 1];
183 atomic_t obj_created[BINDER_STAT_COUNT];
184 atomic_t obj_deleted[BINDER_STAT_COUNT];
187 static struct binder_stats binder_stats;
189 static inline void binder_stats_deleted(enum binder_stat_types type)
191 atomic_inc(&binder_stats.obj_deleted[type]);
194 static inline void binder_stats_created(enum binder_stat_types type)
196 atomic_inc(&binder_stats.obj_created[type]);
199 struct binder_transaction_log_entry {
211 int return_error_line;
212 uint32_t return_error;
213 uint32_t return_error_param;
214 const char *context_name;
216 struct binder_transaction_log {
219 struct binder_transaction_log_entry entry[32];
221 static struct binder_transaction_log binder_transaction_log;
222 static struct binder_transaction_log binder_transaction_log_failed;
224 static struct binder_transaction_log_entry *binder_transaction_log_add(
225 struct binder_transaction_log *log)
227 struct binder_transaction_log_entry *e;
228 unsigned int cur = atomic_inc_return(&log->cur);
230 if (cur >= ARRAY_SIZE(log->entry))
232 e = &log->entry[cur % ARRAY_SIZE(log->entry)];
233 WRITE_ONCE(e->debug_id_done, 0);
235 * write-barrier to synchronize access to e->debug_id_done.
236 * We make sure the initialized 0 value is seen before
237 * memset() other fields are zeroed by memset.
240 memset(e, 0, sizeof(*e));
245 * struct binder_work - work enqueued on a worklist
246 * @entry: node enqueued on list
247 * @type: type of work to be performed
249 * There are separate work lists for proc, thread, and node (async).
252 struct list_head entry;
255 BINDER_WORK_TRANSACTION = 1,
256 BINDER_WORK_TRANSACTION_COMPLETE,
257 BINDER_WORK_RETURN_ERROR,
259 BINDER_WORK_DEAD_BINDER,
260 BINDER_WORK_DEAD_BINDER_AND_CLEAR,
261 BINDER_WORK_CLEAR_DEATH_NOTIFICATION,
265 struct binder_error {
266 struct binder_work work;
271 * struct binder_node - binder node bookkeeping
272 * @debug_id: unique ID for debugging
273 * (invariant after initialized)
274 * @lock: lock for node fields
275 * @work: worklist element for node work
276 * (protected by @proc->inner_lock)
277 * @rb_node: element for proc->nodes tree
278 * (protected by @proc->inner_lock)
279 * @dead_node: element for binder_dead_nodes list
280 * (protected by binder_dead_nodes_lock)
281 * @proc: binder_proc that owns this node
282 * (invariant after initialized)
283 * @refs: list of references on this node
284 * (protected by @lock)
285 * @internal_strong_refs: used to take strong references when
286 * initiating a transaction
287 * (protected by @proc->inner_lock if @proc
289 * @local_weak_refs: weak user refs from local process
290 * (protected by @proc->inner_lock if @proc
292 * @local_strong_refs: strong user refs from local process
293 * (protected by @proc->inner_lock if @proc
295 * @tmp_refs: temporary kernel refs
296 * (protected by @proc->inner_lock while @proc
297 * is valid, and by binder_dead_nodes_lock
298 * if @proc is NULL. During inc/dec and node release
299 * it is also protected by @lock to provide safety
300 * as the node dies and @proc becomes NULL)
301 * @ptr: userspace pointer for node
302 * (invariant, no lock needed)
303 * @cookie: userspace cookie for node
304 * (invariant, no lock needed)
305 * @has_strong_ref: userspace notified of strong ref
306 * (protected by @proc->inner_lock if @proc
308 * @pending_strong_ref: userspace has acked notification of strong ref
309 * (protected by @proc->inner_lock if @proc
311 * @has_weak_ref: userspace notified of weak ref
312 * (protected by @proc->inner_lock if @proc
314 * @pending_weak_ref: userspace has acked notification of weak ref
315 * (protected by @proc->inner_lock if @proc
317 * @has_async_transaction: async transaction to node in progress
318 * (protected by @lock)
319 * @accept_fds: file descriptor operations supported for node
320 * (invariant after initialized)
321 * @min_priority: minimum scheduling priority
322 * (invariant after initialized)
323 * @txn_security_ctx: require sender's security context
324 * (invariant after initialized)
325 * @async_todo: list of async work items
326 * (protected by @proc->inner_lock)
328 * Bookkeeping structure for binder nodes.
333 struct binder_work work;
335 struct rb_node rb_node;
336 struct hlist_node dead_node;
338 struct binder_proc *proc;
339 struct hlist_head refs;
340 int internal_strong_refs;
342 int local_strong_refs;
344 binder_uintptr_t ptr;
345 binder_uintptr_t cookie;
348 * bitfield elements protected by
352 u8 pending_strong_ref:1;
354 u8 pending_weak_ref:1;
358 * invariant after initialization
361 u8 txn_security_ctx:1;
364 bool has_async_transaction;
365 struct list_head async_todo;
368 struct binder_ref_death {
370 * @work: worklist element for death notifications
371 * (protected by inner_lock of the proc that
372 * this ref belongs to)
374 struct binder_work work;
375 binder_uintptr_t cookie;
379 * struct binder_ref_data - binder_ref counts and id
380 * @debug_id: unique ID for the ref
381 * @desc: unique userspace handle for ref
382 * @strong: strong ref count (debugging only if not locked)
383 * @weak: weak ref count (debugging only if not locked)
385 * Structure to hold ref count and ref id information. Since
386 * the actual ref can only be accessed with a lock, this structure
387 * is used to return information about the ref to callers of
388 * ref inc/dec functions.
390 struct binder_ref_data {
398 * struct binder_ref - struct to track references on nodes
399 * @data: binder_ref_data containing id, handle, and current refcounts
400 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
401 * @rb_node_node: node for lookup by @node in proc's rb_tree
402 * @node_entry: list entry for node->refs list in target node
403 * (protected by @node->lock)
404 * @proc: binder_proc containing ref
405 * @node: binder_node of target node. When cleaning up a
406 * ref for deletion in binder_cleanup_ref, a non-NULL
407 * @node indicates the node must be freed
408 * @death: pointer to death notification (ref_death) if requested
409 * (protected by @node->lock)
411 * Structure to track references from procA to target node (on procB). This
412 * structure is unsafe to access without holding @proc->outer_lock.
415 /* Lookups needed: */
416 /* node + proc => ref (transaction) */
417 /* desc + proc => ref (transaction, inc/dec ref) */
418 /* node => refs + procs (proc exit) */
419 struct binder_ref_data data;
420 struct rb_node rb_node_desc;
421 struct rb_node rb_node_node;
422 struct hlist_node node_entry;
423 struct binder_proc *proc;
424 struct binder_node *node;
425 struct binder_ref_death *death;
428 enum binder_deferred_state {
429 BINDER_DEFERRED_FLUSH = 0x01,
430 BINDER_DEFERRED_RELEASE = 0x02,
434 * struct binder_proc - binder process bookkeeping
435 * @proc_node: element for binder_procs list
436 * @threads: rbtree of binder_threads in this proc
437 * (protected by @inner_lock)
438 * @nodes: rbtree of binder nodes associated with
439 * this proc ordered by node->ptr
440 * (protected by @inner_lock)
441 * @refs_by_desc: rbtree of refs ordered by ref->desc
442 * (protected by @outer_lock)
443 * @refs_by_node: rbtree of refs ordered by ref->node
444 * (protected by @outer_lock)
445 * @waiting_threads: threads currently waiting for proc work
446 * (protected by @inner_lock)
447 * @pid PID of group_leader of process
448 * (invariant after initialized)
449 * @tsk task_struct for group_leader of process
450 * (invariant after initialized)
451 * @deferred_work_node: element for binder_deferred_list
452 * (protected by binder_deferred_lock)
453 * @deferred_work: bitmap of deferred work to perform
454 * (protected by binder_deferred_lock)
455 * @is_dead: process is dead and awaiting free
456 * when outstanding transactions are cleaned up
457 * (protected by @inner_lock)
458 * @todo: list of work for this process
459 * (protected by @inner_lock)
460 * @stats: per-process binder statistics
461 * (atomics, no lock needed)
462 * @delivered_death: list of delivered death notification
463 * (protected by @inner_lock)
464 * @max_threads: cap on number of binder threads
465 * (protected by @inner_lock)
466 * @requested_threads: number of binder threads requested but not
467 * yet started. In current implementation, can
469 * (protected by @inner_lock)
470 * @requested_threads_started: number binder threads started
471 * (protected by @inner_lock)
472 * @tmp_ref: temporary reference to indicate proc is in use
473 * (protected by @inner_lock)
474 * @default_priority: default scheduler priority
475 * (invariant after initialized)
476 * @debugfs_entry: debugfs node
477 * @alloc: binder allocator bookkeeping
478 * @context: binder_context for this proc
479 * (invariant after initialized)
480 * @inner_lock: can nest under outer_lock and/or node lock
481 * @outer_lock: no nesting under innor or node lock
482 * Lock order: 1) outer, 2) node, 3) inner
484 * Bookkeeping structure for binder processes
487 struct hlist_node proc_node;
488 struct rb_root threads;
489 struct rb_root nodes;
490 struct rb_root refs_by_desc;
491 struct rb_root refs_by_node;
492 struct list_head waiting_threads;
494 struct task_struct *tsk;
495 struct hlist_node deferred_work_node;
499 struct list_head todo;
500 struct binder_stats stats;
501 struct list_head delivered_death;
503 int requested_threads;
504 int requested_threads_started;
506 long default_priority;
507 struct dentry *debugfs_entry;
508 struct binder_alloc alloc;
509 struct binder_context *context;
510 spinlock_t inner_lock;
511 spinlock_t outer_lock;
515 BINDER_LOOPER_STATE_REGISTERED = 0x01,
516 BINDER_LOOPER_STATE_ENTERED = 0x02,
517 BINDER_LOOPER_STATE_EXITED = 0x04,
518 BINDER_LOOPER_STATE_INVALID = 0x08,
519 BINDER_LOOPER_STATE_WAITING = 0x10,
520 BINDER_LOOPER_STATE_POLL = 0x20,
524 * struct binder_thread - binder thread bookkeeping
525 * @proc: binder process for this thread
526 * (invariant after initialization)
527 * @rb_node: element for proc->threads rbtree
528 * (protected by @proc->inner_lock)
529 * @waiting_thread_node: element for @proc->waiting_threads list
530 * (protected by @proc->inner_lock)
531 * @pid: PID for this thread
532 * (invariant after initialization)
533 * @looper: bitmap of looping state
534 * (only accessed by this thread)
535 * @looper_needs_return: looping thread needs to exit driver
537 * @transaction_stack: stack of in-progress transactions for this thread
538 * (protected by @proc->inner_lock)
539 * @todo: list of work to do for this thread
540 * (protected by @proc->inner_lock)
541 * @process_todo: whether work in @todo should be processed
542 * (protected by @proc->inner_lock)
543 * @return_error: transaction errors reported by this thread
544 * (only accessed by this thread)
545 * @reply_error: transaction errors reported by target thread
546 * (protected by @proc->inner_lock)
547 * @wait: wait queue for thread work
548 * @stats: per-thread statistics
549 * (atomics, no lock needed)
550 * @tmp_ref: temporary reference to indicate thread is in use
551 * (atomic since @proc->inner_lock cannot
552 * always be acquired)
553 * @is_dead: thread is dead and awaiting free
554 * when outstanding transactions are cleaned up
555 * (protected by @proc->inner_lock)
557 * Bookkeeping structure for binder threads.
559 struct binder_thread {
560 struct binder_proc *proc;
561 struct rb_node rb_node;
562 struct list_head waiting_thread_node;
564 int looper; /* only modified by this thread */
565 bool looper_need_return; /* can be written by other thread */
566 struct binder_transaction *transaction_stack;
567 struct list_head todo;
569 struct binder_error return_error;
570 struct binder_error reply_error;
571 wait_queue_head_t wait;
572 struct binder_stats stats;
578 * struct binder_txn_fd_fixup - transaction fd fixup list element
579 * @fixup_entry: list entry
580 * @file: struct file to be associated with new fd
581 * @offset: offset in buffer data to this fixup
583 * List element for fd fixups in a transaction. Since file
584 * descriptors need to be allocated in the context of the
585 * target process, we pass each fd to be processed in this
588 struct binder_txn_fd_fixup {
589 struct list_head fixup_entry;
594 struct binder_transaction {
596 struct binder_work work;
597 struct binder_thread *from;
598 struct binder_transaction *from_parent;
599 struct binder_proc *to_proc;
600 struct binder_thread *to_thread;
601 struct binder_transaction *to_parent;
602 unsigned need_reply:1;
603 /* unsigned is_dead:1; */ /* not used at the moment */
605 struct binder_buffer *buffer;
611 struct list_head fd_fixups;
612 binder_uintptr_t security_ctx;
614 * @lock: protects @from, @to_proc, and @to_thread
616 * @from, @to_proc, and @to_thread can be set to NULL
617 * during thread teardown
623 * struct binder_object - union of flat binder object types
624 * @hdr: generic object header
625 * @fbo: binder object (nodes and refs)
626 * @fdo: file descriptor object
627 * @bbo: binder buffer pointer
628 * @fdao: file descriptor array
630 * Used for type-independent object copies
632 struct binder_object {
634 struct binder_object_header hdr;
635 struct flat_binder_object fbo;
636 struct binder_fd_object fdo;
637 struct binder_buffer_object bbo;
638 struct binder_fd_array_object fdao;
643 * binder_proc_lock() - Acquire outer lock for given binder_proc
644 * @proc: struct binder_proc to acquire
646 * Acquires proc->outer_lock. Used to protect binder_ref
647 * structures associated with the given proc.
649 #define binder_proc_lock(proc) _binder_proc_lock(proc, __LINE__)
651 _binder_proc_lock(struct binder_proc *proc, int line)
652 __acquires(&proc->outer_lock)
654 binder_debug(BINDER_DEBUG_SPINLOCKS,
655 "%s: line=%d\n", __func__, line);
656 spin_lock(&proc->outer_lock);
660 * binder_proc_unlock() - Release spinlock for given binder_proc
661 * @proc: struct binder_proc to acquire
663 * Release lock acquired via binder_proc_lock()
665 #define binder_proc_unlock(_proc) _binder_proc_unlock(_proc, __LINE__)
667 _binder_proc_unlock(struct binder_proc *proc, int line)
668 __releases(&proc->outer_lock)
670 binder_debug(BINDER_DEBUG_SPINLOCKS,
671 "%s: line=%d\n", __func__, line);
672 spin_unlock(&proc->outer_lock);
676 * binder_inner_proc_lock() - Acquire inner lock for given binder_proc
677 * @proc: struct binder_proc to acquire
679 * Acquires proc->inner_lock. Used to protect todo lists
681 #define binder_inner_proc_lock(proc) _binder_inner_proc_lock(proc, __LINE__)
683 _binder_inner_proc_lock(struct binder_proc *proc, int line)
684 __acquires(&proc->inner_lock)
686 binder_debug(BINDER_DEBUG_SPINLOCKS,
687 "%s: line=%d\n", __func__, line);
688 spin_lock(&proc->inner_lock);
692 * binder_inner_proc_unlock() - Release inner lock for given binder_proc
693 * @proc: struct binder_proc to acquire
695 * Release lock acquired via binder_inner_proc_lock()
697 #define binder_inner_proc_unlock(proc) _binder_inner_proc_unlock(proc, __LINE__)
699 _binder_inner_proc_unlock(struct binder_proc *proc, int line)
700 __releases(&proc->inner_lock)
702 binder_debug(BINDER_DEBUG_SPINLOCKS,
703 "%s: line=%d\n", __func__, line);
704 spin_unlock(&proc->inner_lock);
708 * binder_node_lock() - Acquire spinlock for given binder_node
709 * @node: struct binder_node to acquire
711 * Acquires node->lock. Used to protect binder_node fields
713 #define binder_node_lock(node) _binder_node_lock(node, __LINE__)
715 _binder_node_lock(struct binder_node *node, int line)
716 __acquires(&node->lock)
718 binder_debug(BINDER_DEBUG_SPINLOCKS,
719 "%s: line=%d\n", __func__, line);
720 spin_lock(&node->lock);
724 * binder_node_unlock() - Release spinlock for given binder_proc
725 * @node: struct binder_node to acquire
727 * Release lock acquired via binder_node_lock()
729 #define binder_node_unlock(node) _binder_node_unlock(node, __LINE__)
731 _binder_node_unlock(struct binder_node *node, int line)
732 __releases(&node->lock)
734 binder_debug(BINDER_DEBUG_SPINLOCKS,
735 "%s: line=%d\n", __func__, line);
736 spin_unlock(&node->lock);
740 * binder_node_inner_lock() - Acquire node and inner locks
741 * @node: struct binder_node to acquire
743 * Acquires node->lock. If node->proc also acquires
744 * proc->inner_lock. Used to protect binder_node fields
746 #define binder_node_inner_lock(node) _binder_node_inner_lock(node, __LINE__)
748 _binder_node_inner_lock(struct binder_node *node, int line)
749 __acquires(&node->lock) __acquires(&node->proc->inner_lock)
751 binder_debug(BINDER_DEBUG_SPINLOCKS,
752 "%s: line=%d\n", __func__, line);
753 spin_lock(&node->lock);
755 binder_inner_proc_lock(node->proc);
757 /* annotation for sparse */
758 __acquire(&node->proc->inner_lock);
762 * binder_node_unlock() - Release node and inner locks
763 * @node: struct binder_node to acquire
765 * Release lock acquired via binder_node_lock()
767 #define binder_node_inner_unlock(node) _binder_node_inner_unlock(node, __LINE__)
769 _binder_node_inner_unlock(struct binder_node *node, int line)
770 __releases(&node->lock) __releases(&node->proc->inner_lock)
772 struct binder_proc *proc = node->proc;
774 binder_debug(BINDER_DEBUG_SPINLOCKS,
775 "%s: line=%d\n", __func__, line);
777 binder_inner_proc_unlock(proc);
779 /* annotation for sparse */
780 __release(&node->proc->inner_lock);
781 spin_unlock(&node->lock);
784 static bool binder_worklist_empty_ilocked(struct list_head *list)
786 return list_empty(list);
790 * binder_worklist_empty() - Check if no items on the work list
791 * @proc: binder_proc associated with list
792 * @list: list to check
794 * Return: true if there are no items on list, else false
796 static bool binder_worklist_empty(struct binder_proc *proc,
797 struct list_head *list)
801 binder_inner_proc_lock(proc);
802 ret = binder_worklist_empty_ilocked(list);
803 binder_inner_proc_unlock(proc);
808 * binder_enqueue_work_ilocked() - Add an item to the work list
809 * @work: struct binder_work to add to list
810 * @target_list: list to add work to
812 * Adds the work to the specified list. Asserts that work
813 * is not already on a list.
815 * Requires the proc->inner_lock to be held.
818 binder_enqueue_work_ilocked(struct binder_work *work,
819 struct list_head *target_list)
821 BUG_ON(target_list == NULL);
822 BUG_ON(work->entry.next && !list_empty(&work->entry));
823 list_add_tail(&work->entry, target_list);
827 * binder_enqueue_deferred_thread_work_ilocked() - Add deferred thread work
828 * @thread: thread to queue work to
829 * @work: struct binder_work to add to list
831 * Adds the work to the todo list of the thread. Doesn't set the process_todo
832 * flag, which means that (if it wasn't already set) the thread will go to
833 * sleep without handling this work when it calls read.
835 * Requires the proc->inner_lock to be held.
838 binder_enqueue_deferred_thread_work_ilocked(struct binder_thread *thread,
839 struct binder_work *work)
841 WARN_ON(!list_empty(&thread->waiting_thread_node));
842 binder_enqueue_work_ilocked(work, &thread->todo);
846 * binder_enqueue_thread_work_ilocked() - Add an item to the thread work list
847 * @thread: thread to queue work to
848 * @work: struct binder_work to add to list
850 * Adds the work to the todo list of the thread, and enables processing
853 * Requires the proc->inner_lock to be held.
856 binder_enqueue_thread_work_ilocked(struct binder_thread *thread,
857 struct binder_work *work)
859 WARN_ON(!list_empty(&thread->waiting_thread_node));
860 binder_enqueue_work_ilocked(work, &thread->todo);
861 thread->process_todo = true;
865 * binder_enqueue_thread_work() - Add an item to the thread work list
866 * @thread: thread to queue work to
867 * @work: struct binder_work to add to list
869 * Adds the work to the todo list of the thread, and enables processing
873 binder_enqueue_thread_work(struct binder_thread *thread,
874 struct binder_work *work)
876 binder_inner_proc_lock(thread->proc);
877 binder_enqueue_thread_work_ilocked(thread, work);
878 binder_inner_proc_unlock(thread->proc);
882 binder_dequeue_work_ilocked(struct binder_work *work)
884 list_del_init(&work->entry);
888 * binder_dequeue_work() - Removes an item from the work list
889 * @proc: binder_proc associated with list
890 * @work: struct binder_work to remove from list
892 * Removes the specified work item from whatever list it is on.
893 * Can safely be called if work is not on any list.
896 binder_dequeue_work(struct binder_proc *proc, struct binder_work *work)
898 binder_inner_proc_lock(proc);
899 binder_dequeue_work_ilocked(work);
900 binder_inner_proc_unlock(proc);
903 static struct binder_work *binder_dequeue_work_head_ilocked(
904 struct list_head *list)
906 struct binder_work *w;
908 w = list_first_entry_or_null(list, struct binder_work, entry);
910 list_del_init(&w->entry);
915 * binder_dequeue_work_head() - Dequeues the item at head of list
916 * @proc: binder_proc associated with list
917 * @list: list to dequeue head
919 * Removes the head of the list if there are items on the list
921 * Return: pointer dequeued binder_work, NULL if list was empty
923 static struct binder_work *binder_dequeue_work_head(
924 struct binder_proc *proc,
925 struct list_head *list)
927 struct binder_work *w;
929 binder_inner_proc_lock(proc);
930 w = binder_dequeue_work_head_ilocked(list);
931 binder_inner_proc_unlock(proc);
936 binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer);
937 static void binder_free_thread(struct binder_thread *thread);
938 static void binder_free_proc(struct binder_proc *proc);
939 static void binder_inc_node_tmpref_ilocked(struct binder_node *node);
941 static bool binder_has_work_ilocked(struct binder_thread *thread,
944 return thread->process_todo ||
945 thread->looper_need_return ||
947 !binder_worklist_empty_ilocked(&thread->proc->todo));
950 static bool binder_has_work(struct binder_thread *thread, bool do_proc_work)
954 binder_inner_proc_lock(thread->proc);
955 has_work = binder_has_work_ilocked(thread, do_proc_work);
956 binder_inner_proc_unlock(thread->proc);
961 static bool binder_available_for_proc_work_ilocked(struct binder_thread *thread)
963 return !thread->transaction_stack &&
964 binder_worklist_empty_ilocked(&thread->todo) &&
965 (thread->looper & (BINDER_LOOPER_STATE_ENTERED |
966 BINDER_LOOPER_STATE_REGISTERED));
969 static void binder_wakeup_poll_threads_ilocked(struct binder_proc *proc,
973 struct binder_thread *thread;
975 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) {
976 thread = rb_entry(n, struct binder_thread, rb_node);
977 if (thread->looper & BINDER_LOOPER_STATE_POLL &&
978 binder_available_for_proc_work_ilocked(thread)) {
980 wake_up_interruptible_sync(&thread->wait);
982 wake_up_interruptible(&thread->wait);
988 * binder_select_thread_ilocked() - selects a thread for doing proc work.
989 * @proc: process to select a thread from
991 * Note that calling this function moves the thread off the waiting_threads
992 * list, so it can only be woken up by the caller of this function, or a
993 * signal. Therefore, callers *should* always wake up the thread this function
996 * Return: If there's a thread currently waiting for process work,
997 * returns that thread. Otherwise returns NULL.
999 static struct binder_thread *
1000 binder_select_thread_ilocked(struct binder_proc *proc)
1002 struct binder_thread *thread;
1004 assert_spin_locked(&proc->inner_lock);
1005 thread = list_first_entry_or_null(&proc->waiting_threads,
1006 struct binder_thread,
1007 waiting_thread_node);
1010 list_del_init(&thread->waiting_thread_node);
1016 * binder_wakeup_thread_ilocked() - wakes up a thread for doing proc work.
1017 * @proc: process to wake up a thread in
1018 * @thread: specific thread to wake-up (may be NULL)
1019 * @sync: whether to do a synchronous wake-up
1021 * This function wakes up a thread in the @proc process.
1022 * The caller may provide a specific thread to wake-up in
1023 * the @thread parameter. If @thread is NULL, this function
1024 * will wake up threads that have called poll().
1026 * Note that for this function to work as expected, callers
1027 * should first call binder_select_thread() to find a thread
1028 * to handle the work (if they don't have a thread already),
1029 * and pass the result into the @thread parameter.
1031 static void binder_wakeup_thread_ilocked(struct binder_proc *proc,
1032 struct binder_thread *thread,
1035 assert_spin_locked(&proc->inner_lock);
1039 wake_up_interruptible_sync(&thread->wait);
1041 wake_up_interruptible(&thread->wait);
1045 /* Didn't find a thread waiting for proc work; this can happen
1047 * 1. All threads are busy handling transactions
1048 * In that case, one of those threads should call back into
1049 * the kernel driver soon and pick up this work.
1050 * 2. Threads are using the (e)poll interface, in which case
1051 * they may be blocked on the waitqueue without having been
1052 * added to waiting_threads. For this case, we just iterate
1053 * over all threads not handling transaction work, and
1054 * wake them all up. We wake all because we don't know whether
1055 * a thread that called into (e)poll is handling non-binder
1058 binder_wakeup_poll_threads_ilocked(proc, sync);
1061 static void binder_wakeup_proc_ilocked(struct binder_proc *proc)
1063 struct binder_thread *thread = binder_select_thread_ilocked(proc);
1065 binder_wakeup_thread_ilocked(proc, thread, /* sync = */false);
1068 static void binder_set_nice(long nice)
1072 if (can_nice(current, nice)) {
1073 set_user_nice(current, nice);
1076 min_nice = rlimit_to_nice(rlimit(RLIMIT_NICE));
1077 binder_debug(BINDER_DEBUG_PRIORITY_CAP,
1078 "%d: nice value %ld not allowed use %ld instead\n",
1079 current->pid, nice, min_nice);
1080 set_user_nice(current, min_nice);
1081 if (min_nice <= MAX_NICE)
1083 binder_user_error("%d RLIMIT_NICE not set\n", current->pid);
1086 static struct binder_node *binder_get_node_ilocked(struct binder_proc *proc,
1087 binder_uintptr_t ptr)
1089 struct rb_node *n = proc->nodes.rb_node;
1090 struct binder_node *node;
1092 assert_spin_locked(&proc->inner_lock);
1095 node = rb_entry(n, struct binder_node, rb_node);
1097 if (ptr < node->ptr)
1099 else if (ptr > node->ptr)
1103 * take an implicit weak reference
1104 * to ensure node stays alive until
1105 * call to binder_put_node()
1107 binder_inc_node_tmpref_ilocked(node);
1114 static struct binder_node *binder_get_node(struct binder_proc *proc,
1115 binder_uintptr_t ptr)
1117 struct binder_node *node;
1119 binder_inner_proc_lock(proc);
1120 node = binder_get_node_ilocked(proc, ptr);
1121 binder_inner_proc_unlock(proc);
1125 static struct binder_node *binder_init_node_ilocked(
1126 struct binder_proc *proc,
1127 struct binder_node *new_node,
1128 struct flat_binder_object *fp)
1130 struct rb_node **p = &proc->nodes.rb_node;
1131 struct rb_node *parent = NULL;
1132 struct binder_node *node;
1133 binder_uintptr_t ptr = fp ? fp->binder : 0;
1134 binder_uintptr_t cookie = fp ? fp->cookie : 0;
1135 __u32 flags = fp ? fp->flags : 0;
1137 assert_spin_locked(&proc->inner_lock);
1142 node = rb_entry(parent, struct binder_node, rb_node);
1144 if (ptr < node->ptr)
1146 else if (ptr > node->ptr)
1147 p = &(*p)->rb_right;
1150 * A matching node is already in
1151 * the rb tree. Abandon the init
1154 binder_inc_node_tmpref_ilocked(node);
1159 binder_stats_created(BINDER_STAT_NODE);
1161 rb_link_node(&node->rb_node, parent, p);
1162 rb_insert_color(&node->rb_node, &proc->nodes);
1163 node->debug_id = atomic_inc_return(&binder_last_id);
1166 node->cookie = cookie;
1167 node->work.type = BINDER_WORK_NODE;
1168 node->min_priority = flags & FLAT_BINDER_FLAG_PRIORITY_MASK;
1169 node->accept_fds = !!(flags & FLAT_BINDER_FLAG_ACCEPTS_FDS);
1170 node->txn_security_ctx = !!(flags & FLAT_BINDER_FLAG_TXN_SECURITY_CTX);
1171 spin_lock_init(&node->lock);
1172 INIT_LIST_HEAD(&node->work.entry);
1173 INIT_LIST_HEAD(&node->async_todo);
1174 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1175 "%d:%d node %d u%016llx c%016llx created\n",
1176 proc->pid, current->pid, node->debug_id,
1177 (u64)node->ptr, (u64)node->cookie);
1182 static struct binder_node *binder_new_node(struct binder_proc *proc,
1183 struct flat_binder_object *fp)
1185 struct binder_node *node;
1186 struct binder_node *new_node = kzalloc(sizeof(*node), GFP_KERNEL);
1190 binder_inner_proc_lock(proc);
1191 node = binder_init_node_ilocked(proc, new_node, fp);
1192 binder_inner_proc_unlock(proc);
1193 if (node != new_node)
1195 * The node was already added by another thread
1202 static void binder_free_node(struct binder_node *node)
1205 binder_stats_deleted(BINDER_STAT_NODE);
1208 static int binder_inc_node_nilocked(struct binder_node *node, int strong,
1210 struct list_head *target_list)
1212 struct binder_proc *proc = node->proc;
1214 assert_spin_locked(&node->lock);
1216 assert_spin_locked(&proc->inner_lock);
1219 if (target_list == NULL &&
1220 node->internal_strong_refs == 0 &&
1222 node == node->proc->context->binder_context_mgr_node &&
1223 node->has_strong_ref)) {
1224 pr_err("invalid inc strong node for %d\n",
1228 node->internal_strong_refs++;
1230 node->local_strong_refs++;
1231 if (!node->has_strong_ref && target_list) {
1232 struct binder_thread *thread = container_of(target_list,
1233 struct binder_thread, todo);
1234 binder_dequeue_work_ilocked(&node->work);
1235 BUG_ON(&thread->todo != target_list);
1236 binder_enqueue_deferred_thread_work_ilocked(thread,
1241 node->local_weak_refs++;
1242 if (!node->has_weak_ref && list_empty(&node->work.entry)) {
1243 if (target_list == NULL) {
1244 pr_err("invalid inc weak node for %d\n",
1251 binder_enqueue_work_ilocked(&node->work, target_list);
1257 static int binder_inc_node(struct binder_node *node, int strong, int internal,
1258 struct list_head *target_list)
1262 binder_node_inner_lock(node);
1263 ret = binder_inc_node_nilocked(node, strong, internal, target_list);
1264 binder_node_inner_unlock(node);
1269 static bool binder_dec_node_nilocked(struct binder_node *node,
1270 int strong, int internal)
1272 struct binder_proc *proc = node->proc;
1274 assert_spin_locked(&node->lock);
1276 assert_spin_locked(&proc->inner_lock);
1279 node->internal_strong_refs--;
1281 node->local_strong_refs--;
1282 if (node->local_strong_refs || node->internal_strong_refs)
1286 node->local_weak_refs--;
1287 if (node->local_weak_refs || node->tmp_refs ||
1288 !hlist_empty(&node->refs))
1292 if (proc && (node->has_strong_ref || node->has_weak_ref)) {
1293 if (list_empty(&node->work.entry)) {
1294 binder_enqueue_work_ilocked(&node->work, &proc->todo);
1295 binder_wakeup_proc_ilocked(proc);
1298 if (hlist_empty(&node->refs) && !node->local_strong_refs &&
1299 !node->local_weak_refs && !node->tmp_refs) {
1301 binder_dequeue_work_ilocked(&node->work);
1302 rb_erase(&node->rb_node, &proc->nodes);
1303 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1304 "refless node %d deleted\n",
1307 BUG_ON(!list_empty(&node->work.entry));
1308 spin_lock(&binder_dead_nodes_lock);
1310 * tmp_refs could have changed so
1313 if (node->tmp_refs) {
1314 spin_unlock(&binder_dead_nodes_lock);
1317 hlist_del(&node->dead_node);
1318 spin_unlock(&binder_dead_nodes_lock);
1319 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1320 "dead node %d deleted\n",
1329 static void binder_dec_node(struct binder_node *node, int strong, int internal)
1333 binder_node_inner_lock(node);
1334 free_node = binder_dec_node_nilocked(node, strong, internal);
1335 binder_node_inner_unlock(node);
1337 binder_free_node(node);
1340 static void binder_inc_node_tmpref_ilocked(struct binder_node *node)
1343 * No call to binder_inc_node() is needed since we
1344 * don't need to inform userspace of any changes to
1351 * binder_inc_node_tmpref() - take a temporary reference on node
1352 * @node: node to reference
1354 * Take reference on node to prevent the node from being freed
1355 * while referenced only by a local variable. The inner lock is
1356 * needed to serialize with the node work on the queue (which
1357 * isn't needed after the node is dead). If the node is dead
1358 * (node->proc is NULL), use binder_dead_nodes_lock to protect
1359 * node->tmp_refs against dead-node-only cases where the node
1360 * lock cannot be acquired (eg traversing the dead node list to
1363 static void binder_inc_node_tmpref(struct binder_node *node)
1365 binder_node_lock(node);
1367 binder_inner_proc_lock(node->proc);
1369 spin_lock(&binder_dead_nodes_lock);
1370 binder_inc_node_tmpref_ilocked(node);
1372 binder_inner_proc_unlock(node->proc);
1374 spin_unlock(&binder_dead_nodes_lock);
1375 binder_node_unlock(node);
1379 * binder_dec_node_tmpref() - remove a temporary reference on node
1380 * @node: node to reference
1382 * Release temporary reference on node taken via binder_inc_node_tmpref()
1384 static void binder_dec_node_tmpref(struct binder_node *node)
1388 binder_node_inner_lock(node);
1390 spin_lock(&binder_dead_nodes_lock);
1392 __acquire(&binder_dead_nodes_lock);
1394 BUG_ON(node->tmp_refs < 0);
1396 spin_unlock(&binder_dead_nodes_lock);
1398 __release(&binder_dead_nodes_lock);
1400 * Call binder_dec_node() to check if all refcounts are 0
1401 * and cleanup is needed. Calling with strong=0 and internal=1
1402 * causes no actual reference to be released in binder_dec_node().
1403 * If that changes, a change is needed here too.
1405 free_node = binder_dec_node_nilocked(node, 0, 1);
1406 binder_node_inner_unlock(node);
1408 binder_free_node(node);
1411 static void binder_put_node(struct binder_node *node)
1413 binder_dec_node_tmpref(node);
1416 static struct binder_ref *binder_get_ref_olocked(struct binder_proc *proc,
1417 u32 desc, bool need_strong_ref)
1419 struct rb_node *n = proc->refs_by_desc.rb_node;
1420 struct binder_ref *ref;
1423 ref = rb_entry(n, struct binder_ref, rb_node_desc);
1425 if (desc < ref->data.desc) {
1427 } else if (desc > ref->data.desc) {
1429 } else if (need_strong_ref && !ref->data.strong) {
1430 binder_user_error("tried to use weak ref as strong ref\n");
1440 * binder_get_ref_for_node_olocked() - get the ref associated with given node
1441 * @proc: binder_proc that owns the ref
1442 * @node: binder_node of target
1443 * @new_ref: newly allocated binder_ref to be initialized or %NULL
1445 * Look up the ref for the given node and return it if it exists
1447 * If it doesn't exist and the caller provides a newly allocated
1448 * ref, initialize the fields of the newly allocated ref and insert
1449 * into the given proc rb_trees and node refs list.
1451 * Return: the ref for node. It is possible that another thread
1452 * allocated/initialized the ref first in which case the
1453 * returned ref would be different than the passed-in
1454 * new_ref. new_ref must be kfree'd by the caller in
1457 static struct binder_ref *binder_get_ref_for_node_olocked(
1458 struct binder_proc *proc,
1459 struct binder_node *node,
1460 struct binder_ref *new_ref)
1462 struct binder_context *context = proc->context;
1463 struct rb_node **p = &proc->refs_by_node.rb_node;
1464 struct rb_node *parent = NULL;
1465 struct binder_ref *ref;
1470 ref = rb_entry(parent, struct binder_ref, rb_node_node);
1472 if (node < ref->node)
1474 else if (node > ref->node)
1475 p = &(*p)->rb_right;
1482 binder_stats_created(BINDER_STAT_REF);
1483 new_ref->data.debug_id = atomic_inc_return(&binder_last_id);
1484 new_ref->proc = proc;
1485 new_ref->node = node;
1486 rb_link_node(&new_ref->rb_node_node, parent, p);
1487 rb_insert_color(&new_ref->rb_node_node, &proc->refs_by_node);
1489 new_ref->data.desc = (node == context->binder_context_mgr_node) ? 0 : 1;
1490 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) {
1491 ref = rb_entry(n, struct binder_ref, rb_node_desc);
1492 if (ref->data.desc > new_ref->data.desc)
1494 new_ref->data.desc = ref->data.desc + 1;
1497 p = &proc->refs_by_desc.rb_node;
1500 ref = rb_entry(parent, struct binder_ref, rb_node_desc);
1502 if (new_ref->data.desc < ref->data.desc)
1504 else if (new_ref->data.desc > ref->data.desc)
1505 p = &(*p)->rb_right;
1509 rb_link_node(&new_ref->rb_node_desc, parent, p);
1510 rb_insert_color(&new_ref->rb_node_desc, &proc->refs_by_desc);
1512 binder_node_lock(node);
1513 hlist_add_head(&new_ref->node_entry, &node->refs);
1515 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1516 "%d new ref %d desc %d for node %d\n",
1517 proc->pid, new_ref->data.debug_id, new_ref->data.desc,
1519 binder_node_unlock(node);
1523 static void binder_cleanup_ref_olocked(struct binder_ref *ref)
1525 bool delete_node = false;
1527 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1528 "%d delete ref %d desc %d for node %d\n",
1529 ref->proc->pid, ref->data.debug_id, ref->data.desc,
1530 ref->node->debug_id);
1532 rb_erase(&ref->rb_node_desc, &ref->proc->refs_by_desc);
1533 rb_erase(&ref->rb_node_node, &ref->proc->refs_by_node);
1535 binder_node_inner_lock(ref->node);
1536 if (ref->data.strong)
1537 binder_dec_node_nilocked(ref->node, 1, 1);
1539 hlist_del(&ref->node_entry);
1540 delete_node = binder_dec_node_nilocked(ref->node, 0, 1);
1541 binder_node_inner_unlock(ref->node);
1543 * Clear ref->node unless we want the caller to free the node
1547 * The caller uses ref->node to determine
1548 * whether the node needs to be freed. Clear
1549 * it since the node is still alive.
1555 binder_debug(BINDER_DEBUG_DEAD_BINDER,
1556 "%d delete ref %d desc %d has death notification\n",
1557 ref->proc->pid, ref->data.debug_id,
1559 binder_dequeue_work(ref->proc, &ref->death->work);
1560 binder_stats_deleted(BINDER_STAT_DEATH);
1562 binder_stats_deleted(BINDER_STAT_REF);
1566 * binder_inc_ref_olocked() - increment the ref for given handle
1567 * @ref: ref to be incremented
1568 * @strong: if true, strong increment, else weak
1569 * @target_list: list to queue node work on
1571 * Increment the ref. @ref->proc->outer_lock must be held on entry
1573 * Return: 0, if successful, else errno
1575 static int binder_inc_ref_olocked(struct binder_ref *ref, int strong,
1576 struct list_head *target_list)
1581 if (ref->data.strong == 0) {
1582 ret = binder_inc_node(ref->node, 1, 1, target_list);
1588 if (ref->data.weak == 0) {
1589 ret = binder_inc_node(ref->node, 0, 1, target_list);
1599 * binder_dec_ref() - dec the ref for given handle
1600 * @ref: ref to be decremented
1601 * @strong: if true, strong decrement, else weak
1603 * Decrement the ref.
1605 * Return: true if ref is cleaned up and ready to be freed
1607 static bool binder_dec_ref_olocked(struct binder_ref *ref, int strong)
1610 if (ref->data.strong == 0) {
1611 binder_user_error("%d invalid dec strong, ref %d desc %d s %d w %d\n",
1612 ref->proc->pid, ref->data.debug_id,
1613 ref->data.desc, ref->data.strong,
1618 if (ref->data.strong == 0)
1619 binder_dec_node(ref->node, strong, 1);
1621 if (ref->data.weak == 0) {
1622 binder_user_error("%d invalid dec weak, ref %d desc %d s %d w %d\n",
1623 ref->proc->pid, ref->data.debug_id,
1624 ref->data.desc, ref->data.strong,
1630 if (ref->data.strong == 0 && ref->data.weak == 0) {
1631 binder_cleanup_ref_olocked(ref);
1638 * binder_get_node_from_ref() - get the node from the given proc/desc
1639 * @proc: proc containing the ref
1640 * @desc: the handle associated with the ref
1641 * @need_strong_ref: if true, only return node if ref is strong
1642 * @rdata: the id/refcount data for the ref
1644 * Given a proc and ref handle, return the associated binder_node
1646 * Return: a binder_node or NULL if not found or not strong when strong required
1648 static struct binder_node *binder_get_node_from_ref(
1649 struct binder_proc *proc,
1650 u32 desc, bool need_strong_ref,
1651 struct binder_ref_data *rdata)
1653 struct binder_node *node;
1654 struct binder_ref *ref;
1656 binder_proc_lock(proc);
1657 ref = binder_get_ref_olocked(proc, desc, need_strong_ref);
1662 * Take an implicit reference on the node to ensure
1663 * it stays alive until the call to binder_put_node()
1665 binder_inc_node_tmpref(node);
1668 binder_proc_unlock(proc);
1673 binder_proc_unlock(proc);
1678 * binder_free_ref() - free the binder_ref
1681 * Free the binder_ref. Free the binder_node indicated by ref->node
1682 * (if non-NULL) and the binder_ref_death indicated by ref->death.
1684 static void binder_free_ref(struct binder_ref *ref)
1687 binder_free_node(ref->node);
1693 * binder_update_ref_for_handle() - inc/dec the ref for given handle
1694 * @proc: proc containing the ref
1695 * @desc: the handle associated with the ref
1696 * @increment: true=inc reference, false=dec reference
1697 * @strong: true=strong reference, false=weak reference
1698 * @rdata: the id/refcount data for the ref
1700 * Given a proc and ref handle, increment or decrement the ref
1701 * according to "increment" arg.
1703 * Return: 0 if successful, else errno
1705 static int binder_update_ref_for_handle(struct binder_proc *proc,
1706 uint32_t desc, bool increment, bool strong,
1707 struct binder_ref_data *rdata)
1710 struct binder_ref *ref;
1711 bool delete_ref = false;
1713 binder_proc_lock(proc);
1714 ref = binder_get_ref_olocked(proc, desc, strong);
1720 ret = binder_inc_ref_olocked(ref, strong, NULL);
1722 delete_ref = binder_dec_ref_olocked(ref, strong);
1726 binder_proc_unlock(proc);
1729 binder_free_ref(ref);
1733 binder_proc_unlock(proc);
1738 * binder_dec_ref_for_handle() - dec the ref for given handle
1739 * @proc: proc containing the ref
1740 * @desc: the handle associated with the ref
1741 * @strong: true=strong reference, false=weak reference
1742 * @rdata: the id/refcount data for the ref
1744 * Just calls binder_update_ref_for_handle() to decrement the ref.
1746 * Return: 0 if successful, else errno
1748 static int binder_dec_ref_for_handle(struct binder_proc *proc,
1749 uint32_t desc, bool strong, struct binder_ref_data *rdata)
1751 return binder_update_ref_for_handle(proc, desc, false, strong, rdata);
1756 * binder_inc_ref_for_node() - increment the ref for given proc/node
1757 * @proc: proc containing the ref
1758 * @node: target node
1759 * @strong: true=strong reference, false=weak reference
1760 * @target_list: worklist to use if node is incremented
1761 * @rdata: the id/refcount data for the ref
1763 * Given a proc and node, increment the ref. Create the ref if it
1764 * doesn't already exist
1766 * Return: 0 if successful, else errno
1768 static int binder_inc_ref_for_node(struct binder_proc *proc,
1769 struct binder_node *node,
1771 struct list_head *target_list,
1772 struct binder_ref_data *rdata)
1774 struct binder_ref *ref;
1775 struct binder_ref *new_ref = NULL;
1778 binder_proc_lock(proc);
1779 ref = binder_get_ref_for_node_olocked(proc, node, NULL);
1781 binder_proc_unlock(proc);
1782 new_ref = kzalloc(sizeof(*ref), GFP_KERNEL);
1785 binder_proc_lock(proc);
1786 ref = binder_get_ref_for_node_olocked(proc, node, new_ref);
1788 ret = binder_inc_ref_olocked(ref, strong, target_list);
1790 binder_proc_unlock(proc);
1791 if (new_ref && ref != new_ref)
1793 * Another thread created the ref first so
1794 * free the one we allocated
1800 static void binder_pop_transaction_ilocked(struct binder_thread *target_thread,
1801 struct binder_transaction *t)
1803 BUG_ON(!target_thread);
1804 assert_spin_locked(&target_thread->proc->inner_lock);
1805 BUG_ON(target_thread->transaction_stack != t);
1806 BUG_ON(target_thread->transaction_stack->from != target_thread);
1807 target_thread->transaction_stack =
1808 target_thread->transaction_stack->from_parent;
1813 * binder_thread_dec_tmpref() - decrement thread->tmp_ref
1814 * @thread: thread to decrement
1816 * A thread needs to be kept alive while being used to create or
1817 * handle a transaction. binder_get_txn_from() is used to safely
1818 * extract t->from from a binder_transaction and keep the thread
1819 * indicated by t->from from being freed. When done with that
1820 * binder_thread, this function is called to decrement the
1821 * tmp_ref and free if appropriate (thread has been released
1822 * and no transaction being processed by the driver)
1824 static void binder_thread_dec_tmpref(struct binder_thread *thread)
1827 * atomic is used to protect the counter value while
1828 * it cannot reach zero or thread->is_dead is false
1830 binder_inner_proc_lock(thread->proc);
1831 atomic_dec(&thread->tmp_ref);
1832 if (thread->is_dead && !atomic_read(&thread->tmp_ref)) {
1833 binder_inner_proc_unlock(thread->proc);
1834 binder_free_thread(thread);
1837 binder_inner_proc_unlock(thread->proc);
1841 * binder_proc_dec_tmpref() - decrement proc->tmp_ref
1842 * @proc: proc to decrement
1844 * A binder_proc needs to be kept alive while being used to create or
1845 * handle a transaction. proc->tmp_ref is incremented when
1846 * creating a new transaction or the binder_proc is currently in-use
1847 * by threads that are being released. When done with the binder_proc,
1848 * this function is called to decrement the counter and free the
1849 * proc if appropriate (proc has been released, all threads have
1850 * been released and not currenly in-use to process a transaction).
1852 static void binder_proc_dec_tmpref(struct binder_proc *proc)
1854 binder_inner_proc_lock(proc);
1856 if (proc->is_dead && RB_EMPTY_ROOT(&proc->threads) &&
1858 binder_inner_proc_unlock(proc);
1859 binder_free_proc(proc);
1862 binder_inner_proc_unlock(proc);
1866 * binder_get_txn_from() - safely extract the "from" thread in transaction
1867 * @t: binder transaction for t->from
1869 * Atomically return the "from" thread and increment the tmp_ref
1870 * count for the thread to ensure it stays alive until
1871 * binder_thread_dec_tmpref() is called.
1873 * Return: the value of t->from
1875 static struct binder_thread *binder_get_txn_from(
1876 struct binder_transaction *t)
1878 struct binder_thread *from;
1880 spin_lock(&t->lock);
1883 atomic_inc(&from->tmp_ref);
1884 spin_unlock(&t->lock);
1889 * binder_get_txn_from_and_acq_inner() - get t->from and acquire inner lock
1890 * @t: binder transaction for t->from
1892 * Same as binder_get_txn_from() except it also acquires the proc->inner_lock
1893 * to guarantee that the thread cannot be released while operating on it.
1894 * The caller must call binder_inner_proc_unlock() to release the inner lock
1895 * as well as call binder_dec_thread_txn() to release the reference.
1897 * Return: the value of t->from
1899 static struct binder_thread *binder_get_txn_from_and_acq_inner(
1900 struct binder_transaction *t)
1901 __acquires(&t->from->proc->inner_lock)
1903 struct binder_thread *from;
1905 from = binder_get_txn_from(t);
1907 __acquire(&from->proc->inner_lock);
1910 binder_inner_proc_lock(from->proc);
1912 BUG_ON(from != t->from);
1915 binder_inner_proc_unlock(from->proc);
1916 __acquire(&from->proc->inner_lock);
1917 binder_thread_dec_tmpref(from);
1922 * binder_free_txn_fixups() - free unprocessed fd fixups
1923 * @t: binder transaction for t->from
1925 * If the transaction is being torn down prior to being
1926 * processed by the target process, free all of the
1927 * fd fixups and fput the file structs. It is safe to
1928 * call this function after the fixups have been
1929 * processed -- in that case, the list will be empty.
1931 static void binder_free_txn_fixups(struct binder_transaction *t)
1933 struct binder_txn_fd_fixup *fixup, *tmp;
1935 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) {
1937 list_del(&fixup->fixup_entry);
1942 static void binder_free_transaction(struct binder_transaction *t)
1944 struct binder_proc *target_proc = t->to_proc;
1947 binder_inner_proc_lock(target_proc);
1949 t->buffer->transaction = NULL;
1950 binder_inner_proc_unlock(target_proc);
1953 * If the transaction has no target_proc, then
1954 * t->buffer->transaction has already been cleared.
1956 binder_free_txn_fixups(t);
1958 binder_stats_deleted(BINDER_STAT_TRANSACTION);
1961 static void binder_send_failed_reply(struct binder_transaction *t,
1962 uint32_t error_code)
1964 struct binder_thread *target_thread;
1965 struct binder_transaction *next;
1967 BUG_ON(t->flags & TF_ONE_WAY);
1969 target_thread = binder_get_txn_from_and_acq_inner(t);
1970 if (target_thread) {
1971 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
1972 "send failed reply for transaction %d to %d:%d\n",
1974 target_thread->proc->pid,
1975 target_thread->pid);
1977 binder_pop_transaction_ilocked(target_thread, t);
1978 if (target_thread->reply_error.cmd == BR_OK) {
1979 target_thread->reply_error.cmd = error_code;
1980 binder_enqueue_thread_work_ilocked(
1982 &target_thread->reply_error.work);
1983 wake_up_interruptible(&target_thread->wait);
1986 * Cannot get here for normal operation, but
1987 * we can if multiple synchronous transactions
1988 * are sent without blocking for responses.
1989 * Just ignore the 2nd error in this case.
1991 pr_warn("Unexpected reply error: %u\n",
1992 target_thread->reply_error.cmd);
1994 binder_inner_proc_unlock(target_thread->proc);
1995 binder_thread_dec_tmpref(target_thread);
1996 binder_free_transaction(t);
1999 __release(&target_thread->proc->inner_lock);
2001 next = t->from_parent;
2003 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
2004 "send failed reply for transaction %d, target dead\n",
2007 binder_free_transaction(t);
2009 binder_debug(BINDER_DEBUG_DEAD_BINDER,
2010 "reply failed, no target thread at root\n");
2014 binder_debug(BINDER_DEBUG_DEAD_BINDER,
2015 "reply failed, no target thread -- retry %d\n",
2021 * binder_cleanup_transaction() - cleans up undelivered transaction
2022 * @t: transaction that needs to be cleaned up
2023 * @reason: reason the transaction wasn't delivered
2024 * @error_code: error to return to caller (if synchronous call)
2026 static void binder_cleanup_transaction(struct binder_transaction *t,
2028 uint32_t error_code)
2030 if (t->buffer->target_node && !(t->flags & TF_ONE_WAY)) {
2031 binder_send_failed_reply(t, error_code);
2033 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
2034 "undelivered transaction %d, %s\n",
2035 t->debug_id, reason);
2036 binder_free_transaction(t);
2041 * binder_get_object() - gets object and checks for valid metadata
2042 * @proc: binder_proc owning the buffer
2043 * @buffer: binder_buffer that we're parsing.
2044 * @offset: offset in the @buffer at which to validate an object.
2045 * @object: struct binder_object to read into
2047 * Return: If there's a valid metadata object at @offset in @buffer, the
2048 * size of that object. Otherwise, it returns zero. The object
2049 * is read into the struct binder_object pointed to by @object.
2051 static size_t binder_get_object(struct binder_proc *proc,
2052 struct binder_buffer *buffer,
2053 unsigned long offset,
2054 struct binder_object *object)
2057 struct binder_object_header *hdr;
2058 size_t object_size = 0;
2060 read_size = min_t(size_t, sizeof(*object), buffer->data_size - offset);
2061 if (offset > buffer->data_size || read_size < sizeof(*hdr) ||
2062 binder_alloc_copy_from_buffer(&proc->alloc, object, buffer,
2066 /* Ok, now see if we read a complete object. */
2068 switch (hdr->type) {
2069 case BINDER_TYPE_BINDER:
2070 case BINDER_TYPE_WEAK_BINDER:
2071 case BINDER_TYPE_HANDLE:
2072 case BINDER_TYPE_WEAK_HANDLE:
2073 object_size = sizeof(struct flat_binder_object);
2075 case BINDER_TYPE_FD:
2076 object_size = sizeof(struct binder_fd_object);
2078 case BINDER_TYPE_PTR:
2079 object_size = sizeof(struct binder_buffer_object);
2081 case BINDER_TYPE_FDA:
2082 object_size = sizeof(struct binder_fd_array_object);
2087 if (offset <= buffer->data_size - object_size &&
2088 buffer->data_size >= object_size)
2095 * binder_validate_ptr() - validates binder_buffer_object in a binder_buffer.
2096 * @proc: binder_proc owning the buffer
2097 * @b: binder_buffer containing the object
2098 * @object: struct binder_object to read into
2099 * @index: index in offset array at which the binder_buffer_object is
2101 * @start_offset: points to the start of the offset array
2102 * @object_offsetp: offset of @object read from @b
2103 * @num_valid: the number of valid offsets in the offset array
2105 * Return: If @index is within the valid range of the offset array
2106 * described by @start and @num_valid, and if there's a valid
2107 * binder_buffer_object at the offset found in index @index
2108 * of the offset array, that object is returned. Otherwise,
2109 * %NULL is returned.
2110 * Note that the offset found in index @index itself is not
2111 * verified; this function assumes that @num_valid elements
2112 * from @start were previously verified to have valid offsets.
2113 * If @object_offsetp is non-NULL, then the offset within
2114 * @b is written to it.
2116 static struct binder_buffer_object *binder_validate_ptr(
2117 struct binder_proc *proc,
2118 struct binder_buffer *b,
2119 struct binder_object *object,
2120 binder_size_t index,
2121 binder_size_t start_offset,
2122 binder_size_t *object_offsetp,
2123 binder_size_t num_valid)
2126 binder_size_t object_offset;
2127 unsigned long buffer_offset;
2129 if (index >= num_valid)
2132 buffer_offset = start_offset + sizeof(binder_size_t) * index;
2133 if (binder_alloc_copy_from_buffer(&proc->alloc, &object_offset,
2135 sizeof(object_offset)))
2137 object_size = binder_get_object(proc, b, object_offset, object);
2138 if (!object_size || object->hdr.type != BINDER_TYPE_PTR)
2141 *object_offsetp = object_offset;
2143 return &object->bbo;
2147 * binder_validate_fixup() - validates pointer/fd fixups happen in order.
2148 * @proc: binder_proc owning the buffer
2149 * @b: transaction buffer
2150 * @objects_start_offset: offset to start of objects buffer
2151 * @buffer_obj_offset: offset to binder_buffer_object in which to fix up
2152 * @fixup_offset: start offset in @buffer to fix up
2153 * @last_obj_offset: offset to last binder_buffer_object that we fixed
2154 * @last_min_offset: minimum fixup offset in object at @last_obj_offset
2156 * Return: %true if a fixup in buffer @buffer at offset @offset is
2159 * For safety reasons, we only allow fixups inside a buffer to happen
2160 * at increasing offsets; additionally, we only allow fixup on the last
2161 * buffer object that was verified, or one of its parents.
2163 * Example of what is allowed:
2166 * B (parent = A, offset = 0)
2167 * C (parent = A, offset = 16)
2168 * D (parent = C, offset = 0)
2169 * E (parent = A, offset = 32) // min_offset is 16 (C.parent_offset)
2171 * Examples of what is not allowed:
2173 * Decreasing offsets within the same parent:
2175 * C (parent = A, offset = 16)
2176 * B (parent = A, offset = 0) // decreasing offset within A
2178 * Referring to a parent that wasn't the last object or any of its parents:
2180 * B (parent = A, offset = 0)
2181 * C (parent = A, offset = 0)
2182 * C (parent = A, offset = 16)
2183 * D (parent = B, offset = 0) // B is not A or any of A's parents
2185 static bool binder_validate_fixup(struct binder_proc *proc,
2186 struct binder_buffer *b,
2187 binder_size_t objects_start_offset,
2188 binder_size_t buffer_obj_offset,
2189 binder_size_t fixup_offset,
2190 binder_size_t last_obj_offset,
2191 binder_size_t last_min_offset)
2193 if (!last_obj_offset) {
2194 /* Nothing to fix up in */
2198 while (last_obj_offset != buffer_obj_offset) {
2199 unsigned long buffer_offset;
2200 struct binder_object last_object;
2201 struct binder_buffer_object *last_bbo;
2202 size_t object_size = binder_get_object(proc, b, last_obj_offset,
2204 if (object_size != sizeof(*last_bbo))
2207 last_bbo = &last_object.bbo;
2209 * Safe to retrieve the parent of last_obj, since it
2210 * was already previously verified by the driver.
2212 if ((last_bbo->flags & BINDER_BUFFER_FLAG_HAS_PARENT) == 0)
2214 last_min_offset = last_bbo->parent_offset + sizeof(uintptr_t);
2215 buffer_offset = objects_start_offset +
2216 sizeof(binder_size_t) * last_bbo->parent;
2217 if (binder_alloc_copy_from_buffer(&proc->alloc,
2220 sizeof(last_obj_offset)))
2223 return (fixup_offset >= last_min_offset);
2227 * struct binder_task_work_cb - for deferred close
2229 * @twork: callback_head for task work
2232 * Structure to pass task work to be handled after
2233 * returning from binder_ioctl() via task_work_add().
2235 struct binder_task_work_cb {
2236 struct callback_head twork;
2241 * binder_do_fd_close() - close list of file descriptors
2242 * @twork: callback head for task work
2244 * It is not safe to call ksys_close() during the binder_ioctl()
2245 * function if there is a chance that binder's own file descriptor
2246 * might be closed. This is to meet the requirements for using
2247 * fdget() (see comments for __fget_light()). Therefore use
2248 * task_work_add() to schedule the close operation once we have
2249 * returned from binder_ioctl(). This function is a callback
2250 * for that mechanism and does the actual ksys_close() on the
2251 * given file descriptor.
2253 static void binder_do_fd_close(struct callback_head *twork)
2255 struct binder_task_work_cb *twcb = container_of(twork,
2256 struct binder_task_work_cb, twork);
2263 * binder_deferred_fd_close() - schedule a close for the given file-descriptor
2264 * @fd: file-descriptor to close
2266 * See comments in binder_do_fd_close(). This function is used to schedule
2267 * a file-descriptor to be closed after returning from binder_ioctl().
2269 static void binder_deferred_fd_close(int fd)
2271 struct binder_task_work_cb *twcb;
2273 twcb = kzalloc(sizeof(*twcb), GFP_KERNEL);
2276 init_task_work(&twcb->twork, binder_do_fd_close);
2277 __close_fd_get_file(fd, &twcb->file);
2279 task_work_add(current, &twcb->twork, true);
2284 static void binder_transaction_buffer_release(struct binder_proc *proc,
2285 struct binder_buffer *buffer,
2286 binder_size_t failed_at,
2289 int debug_id = buffer->debug_id;
2290 binder_size_t off_start_offset, buffer_offset, off_end_offset;
2292 binder_debug(BINDER_DEBUG_TRANSACTION,
2293 "%d buffer release %d, size %zd-%zd, failed at %llx\n",
2294 proc->pid, buffer->debug_id,
2295 buffer->data_size, buffer->offsets_size,
2296 (unsigned long long)failed_at);
2298 if (buffer->target_node)
2299 binder_dec_node(buffer->target_node, 1, 0);
2301 off_start_offset = ALIGN(buffer->data_size, sizeof(void *));
2302 off_end_offset = is_failure ? failed_at :
2303 off_start_offset + buffer->offsets_size;
2304 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset;
2305 buffer_offset += sizeof(binder_size_t)) {
2306 struct binder_object_header *hdr;
2307 size_t object_size = 0;
2308 struct binder_object object;
2309 binder_size_t object_offset;
2311 if (!binder_alloc_copy_from_buffer(&proc->alloc, &object_offset,
2312 buffer, buffer_offset,
2313 sizeof(object_offset)))
2314 object_size = binder_get_object(proc, buffer,
2315 object_offset, &object);
2316 if (object_size == 0) {
2317 pr_err("transaction release %d bad object at offset %lld, size %zd\n",
2318 debug_id, (u64)object_offset, buffer->data_size);
2322 switch (hdr->type) {
2323 case BINDER_TYPE_BINDER:
2324 case BINDER_TYPE_WEAK_BINDER: {
2325 struct flat_binder_object *fp;
2326 struct binder_node *node;
2328 fp = to_flat_binder_object(hdr);
2329 node = binder_get_node(proc, fp->binder);
2331 pr_err("transaction release %d bad node %016llx\n",
2332 debug_id, (u64)fp->binder);
2335 binder_debug(BINDER_DEBUG_TRANSACTION,
2336 " node %d u%016llx\n",
2337 node->debug_id, (u64)node->ptr);
2338 binder_dec_node(node, hdr->type == BINDER_TYPE_BINDER,
2340 binder_put_node(node);
2342 case BINDER_TYPE_HANDLE:
2343 case BINDER_TYPE_WEAK_HANDLE: {
2344 struct flat_binder_object *fp;
2345 struct binder_ref_data rdata;
2348 fp = to_flat_binder_object(hdr);
2349 ret = binder_dec_ref_for_handle(proc, fp->handle,
2350 hdr->type == BINDER_TYPE_HANDLE, &rdata);
2353 pr_err("transaction release %d bad handle %d, ret = %d\n",
2354 debug_id, fp->handle, ret);
2357 binder_debug(BINDER_DEBUG_TRANSACTION,
2358 " ref %d desc %d\n",
2359 rdata.debug_id, rdata.desc);
2362 case BINDER_TYPE_FD: {
2364 * No need to close the file here since user-space
2365 * closes it for for successfully delivered
2366 * transactions. For transactions that weren't
2367 * delivered, the new fd was never allocated so
2368 * there is no need to close and the fput on the
2369 * file is done when the transaction is torn
2372 WARN_ON(failed_at &&
2373 proc->tsk == current->group_leader);
2375 case BINDER_TYPE_PTR:
2377 * Nothing to do here, this will get cleaned up when the
2378 * transaction buffer gets freed
2381 case BINDER_TYPE_FDA: {
2382 struct binder_fd_array_object *fda;
2383 struct binder_buffer_object *parent;
2384 struct binder_object ptr_object;
2385 binder_size_t fda_offset;
2387 binder_size_t fd_buf_size;
2388 binder_size_t num_valid;
2390 if (proc->tsk != current->group_leader) {
2392 * Nothing to do if running in sender context
2393 * The fd fixups have not been applied so no
2394 * fds need to be closed.
2399 num_valid = (buffer_offset - off_start_offset) /
2400 sizeof(binder_size_t);
2401 fda = to_binder_fd_array_object(hdr);
2402 parent = binder_validate_ptr(proc, buffer, &ptr_object,
2408 pr_err("transaction release %d bad parent offset\n",
2412 fd_buf_size = sizeof(u32) * fda->num_fds;
2413 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) {
2414 pr_err("transaction release %d invalid number of fds (%lld)\n",
2415 debug_id, (u64)fda->num_fds);
2418 if (fd_buf_size > parent->length ||
2419 fda->parent_offset > parent->length - fd_buf_size) {
2420 /* No space for all file descriptors here. */
2421 pr_err("transaction release %d not enough space for %lld fds in buffer\n",
2422 debug_id, (u64)fda->num_fds);
2426 * the source data for binder_buffer_object is visible
2427 * to user-space and the @buffer element is the user
2428 * pointer to the buffer_object containing the fd_array.
2429 * Convert the address to an offset relative to
2430 * the base of the transaction buffer.
2433 (parent->buffer - (uintptr_t)buffer->user_data) +
2435 for (fd_index = 0; fd_index < fda->num_fds;
2439 binder_size_t offset = fda_offset +
2440 fd_index * sizeof(fd);
2442 err = binder_alloc_copy_from_buffer(
2443 &proc->alloc, &fd, buffer,
2444 offset, sizeof(fd));
2447 binder_deferred_fd_close(fd);
2451 pr_err("transaction release %d bad object type %x\n",
2452 debug_id, hdr->type);
2458 static int binder_translate_binder(struct flat_binder_object *fp,
2459 struct binder_transaction *t,
2460 struct binder_thread *thread)
2462 struct binder_node *node;
2463 struct binder_proc *proc = thread->proc;
2464 struct binder_proc *target_proc = t->to_proc;
2465 struct binder_ref_data rdata;
2468 node = binder_get_node(proc, fp->binder);
2470 node = binder_new_node(proc, fp);
2474 if (fp->cookie != node->cookie) {
2475 binder_user_error("%d:%d sending u%016llx node %d, cookie mismatch %016llx != %016llx\n",
2476 proc->pid, thread->pid, (u64)fp->binder,
2477 node->debug_id, (u64)fp->cookie,
2482 if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) {
2487 ret = binder_inc_ref_for_node(target_proc, node,
2488 fp->hdr.type == BINDER_TYPE_BINDER,
2489 &thread->todo, &rdata);
2493 if (fp->hdr.type == BINDER_TYPE_BINDER)
2494 fp->hdr.type = BINDER_TYPE_HANDLE;
2496 fp->hdr.type = BINDER_TYPE_WEAK_HANDLE;
2498 fp->handle = rdata.desc;
2501 trace_binder_transaction_node_to_ref(t, node, &rdata);
2502 binder_debug(BINDER_DEBUG_TRANSACTION,
2503 " node %d u%016llx -> ref %d desc %d\n",
2504 node->debug_id, (u64)node->ptr,
2505 rdata.debug_id, rdata.desc);
2507 binder_put_node(node);
2511 static int binder_translate_handle(struct flat_binder_object *fp,
2512 struct binder_transaction *t,
2513 struct binder_thread *thread)
2515 struct binder_proc *proc = thread->proc;
2516 struct binder_proc *target_proc = t->to_proc;
2517 struct binder_node *node;
2518 struct binder_ref_data src_rdata;
2521 node = binder_get_node_from_ref(proc, fp->handle,
2522 fp->hdr.type == BINDER_TYPE_HANDLE, &src_rdata);
2524 binder_user_error("%d:%d got transaction with invalid handle, %d\n",
2525 proc->pid, thread->pid, fp->handle);
2528 if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) {
2533 binder_node_lock(node);
2534 if (node->proc == target_proc) {
2535 if (fp->hdr.type == BINDER_TYPE_HANDLE)
2536 fp->hdr.type = BINDER_TYPE_BINDER;
2538 fp->hdr.type = BINDER_TYPE_WEAK_BINDER;
2539 fp->binder = node->ptr;
2540 fp->cookie = node->cookie;
2542 binder_inner_proc_lock(node->proc);
2544 __acquire(&node->proc->inner_lock);
2545 binder_inc_node_nilocked(node,
2546 fp->hdr.type == BINDER_TYPE_BINDER,
2549 binder_inner_proc_unlock(node->proc);
2551 __release(&node->proc->inner_lock);
2552 trace_binder_transaction_ref_to_node(t, node, &src_rdata);
2553 binder_debug(BINDER_DEBUG_TRANSACTION,
2554 " ref %d desc %d -> node %d u%016llx\n",
2555 src_rdata.debug_id, src_rdata.desc, node->debug_id,
2557 binder_node_unlock(node);
2559 struct binder_ref_data dest_rdata;
2561 binder_node_unlock(node);
2562 ret = binder_inc_ref_for_node(target_proc, node,
2563 fp->hdr.type == BINDER_TYPE_HANDLE,
2569 fp->handle = dest_rdata.desc;
2571 trace_binder_transaction_ref_to_ref(t, node, &src_rdata,
2573 binder_debug(BINDER_DEBUG_TRANSACTION,
2574 " ref %d desc %d -> ref %d desc %d (node %d)\n",
2575 src_rdata.debug_id, src_rdata.desc,
2576 dest_rdata.debug_id, dest_rdata.desc,
2580 binder_put_node(node);
2584 static int binder_translate_fd(u32 fd, binder_size_t fd_offset,
2585 struct binder_transaction *t,
2586 struct binder_thread *thread,
2587 struct binder_transaction *in_reply_to)
2589 struct binder_proc *proc = thread->proc;
2590 struct binder_proc *target_proc = t->to_proc;
2591 struct binder_txn_fd_fixup *fixup;
2594 bool target_allows_fd;
2597 target_allows_fd = !!(in_reply_to->flags & TF_ACCEPT_FDS);
2599 target_allows_fd = t->buffer->target_node->accept_fds;
2600 if (!target_allows_fd) {
2601 binder_user_error("%d:%d got %s with fd, %d, but target does not allow fds\n",
2602 proc->pid, thread->pid,
2603 in_reply_to ? "reply" : "transaction",
2606 goto err_fd_not_accepted;
2611 binder_user_error("%d:%d got transaction with invalid fd, %d\n",
2612 proc->pid, thread->pid, fd);
2616 ret = security_binder_transfer_file(proc->tsk, target_proc->tsk, file);
2623 * Add fixup record for this transaction. The allocation
2624 * of the fd in the target needs to be done from a
2627 fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
2633 fixup->offset = fd_offset;
2634 trace_binder_transaction_fd_send(t, fd, fixup->offset);
2635 list_add_tail(&fixup->fixup_entry, &t->fd_fixups);
2643 err_fd_not_accepted:
2647 static int binder_translate_fd_array(struct binder_fd_array_object *fda,
2648 struct binder_buffer_object *parent,
2649 struct binder_transaction *t,
2650 struct binder_thread *thread,
2651 struct binder_transaction *in_reply_to)
2653 binder_size_t fdi, fd_buf_size;
2654 binder_size_t fda_offset;
2655 struct binder_proc *proc = thread->proc;
2656 struct binder_proc *target_proc = t->to_proc;
2658 fd_buf_size = sizeof(u32) * fda->num_fds;
2659 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) {
2660 binder_user_error("%d:%d got transaction with invalid number of fds (%lld)\n",
2661 proc->pid, thread->pid, (u64)fda->num_fds);
2664 if (fd_buf_size > parent->length ||
2665 fda->parent_offset > parent->length - fd_buf_size) {
2666 /* No space for all file descriptors here. */
2667 binder_user_error("%d:%d not enough space to store %lld fds in buffer\n",
2668 proc->pid, thread->pid, (u64)fda->num_fds);
2672 * the source data for binder_buffer_object is visible
2673 * to user-space and the @buffer element is the user
2674 * pointer to the buffer_object containing the fd_array.
2675 * Convert the address to an offset relative to
2676 * the base of the transaction buffer.
2678 fda_offset = (parent->buffer - (uintptr_t)t->buffer->user_data) +
2680 if (!IS_ALIGNED((unsigned long)fda_offset, sizeof(u32))) {
2681 binder_user_error("%d:%d parent offset not aligned correctly.\n",
2682 proc->pid, thread->pid);
2685 for (fdi = 0; fdi < fda->num_fds; fdi++) {
2688 binder_size_t offset = fda_offset + fdi * sizeof(fd);
2690 ret = binder_alloc_copy_from_buffer(&target_proc->alloc,
2692 offset, sizeof(fd));
2694 ret = binder_translate_fd(fd, offset, t, thread,
2702 static int binder_fixup_parent(struct binder_transaction *t,
2703 struct binder_thread *thread,
2704 struct binder_buffer_object *bp,
2705 binder_size_t off_start_offset,
2706 binder_size_t num_valid,
2707 binder_size_t last_fixup_obj_off,
2708 binder_size_t last_fixup_min_off)
2710 struct binder_buffer_object *parent;
2711 struct binder_buffer *b = t->buffer;
2712 struct binder_proc *proc = thread->proc;
2713 struct binder_proc *target_proc = t->to_proc;
2714 struct binder_object object;
2715 binder_size_t buffer_offset;
2716 binder_size_t parent_offset;
2718 if (!(bp->flags & BINDER_BUFFER_FLAG_HAS_PARENT))
2721 parent = binder_validate_ptr(target_proc, b, &object, bp->parent,
2722 off_start_offset, &parent_offset,
2725 binder_user_error("%d:%d got transaction with invalid parent offset or type\n",
2726 proc->pid, thread->pid);
2730 if (!binder_validate_fixup(target_proc, b, off_start_offset,
2731 parent_offset, bp->parent_offset,
2733 last_fixup_min_off)) {
2734 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n",
2735 proc->pid, thread->pid);
2739 if (parent->length < sizeof(binder_uintptr_t) ||
2740 bp->parent_offset > parent->length - sizeof(binder_uintptr_t)) {
2741 /* No space for a pointer here! */
2742 binder_user_error("%d:%d got transaction with invalid parent offset\n",
2743 proc->pid, thread->pid);
2746 buffer_offset = bp->parent_offset +
2747 (uintptr_t)parent->buffer - (uintptr_t)b->user_data;
2748 if (binder_alloc_copy_to_buffer(&target_proc->alloc, b, buffer_offset,
2749 &bp->buffer, sizeof(bp->buffer))) {
2750 binder_user_error("%d:%d got transaction with invalid parent offset\n",
2751 proc->pid, thread->pid);
2759 * binder_proc_transaction() - sends a transaction to a process and wakes it up
2760 * @t: transaction to send
2761 * @proc: process to send the transaction to
2762 * @thread: thread in @proc to send the transaction to (may be NULL)
2764 * This function queues a transaction to the specified process. It will try
2765 * to find a thread in the target process to handle the transaction and
2766 * wake it up. If no thread is found, the work is queued to the proc
2769 * If the @thread parameter is not NULL, the transaction is always queued
2770 * to the waitlist of that specific thread.
2772 * Return: true if the transactions was successfully queued
2773 * false if the target process or thread is dead
2775 static bool binder_proc_transaction(struct binder_transaction *t,
2776 struct binder_proc *proc,
2777 struct binder_thread *thread)
2779 struct binder_node *node = t->buffer->target_node;
2780 bool oneway = !!(t->flags & TF_ONE_WAY);
2781 bool pending_async = false;
2784 binder_node_lock(node);
2787 if (node->has_async_transaction) {
2788 pending_async = true;
2790 node->has_async_transaction = true;
2794 binder_inner_proc_lock(proc);
2796 if (proc->is_dead || (thread && thread->is_dead)) {
2797 binder_inner_proc_unlock(proc);
2798 binder_node_unlock(node);
2802 if (!thread && !pending_async)
2803 thread = binder_select_thread_ilocked(proc);
2806 binder_enqueue_thread_work_ilocked(thread, &t->work);
2807 else if (!pending_async)
2808 binder_enqueue_work_ilocked(&t->work, &proc->todo);
2810 binder_enqueue_work_ilocked(&t->work, &node->async_todo);
2813 binder_wakeup_thread_ilocked(proc, thread, !oneway /* sync */);
2815 binder_inner_proc_unlock(proc);
2816 binder_node_unlock(node);
2822 * binder_get_node_refs_for_txn() - Get required refs on node for txn
2823 * @node: struct binder_node for which to get refs
2824 * @proc: returns @node->proc if valid
2825 * @error: if no @proc then returns BR_DEAD_REPLY
2827 * User-space normally keeps the node alive when creating a transaction
2828 * since it has a reference to the target. The local strong ref keeps it
2829 * alive if the sending process dies before the target process processes
2830 * the transaction. If the source process is malicious or has a reference
2831 * counting bug, relying on the local strong ref can fail.
2833 * Since user-space can cause the local strong ref to go away, we also take
2834 * a tmpref on the node to ensure it survives while we are constructing
2835 * the transaction. We also need a tmpref on the proc while we are
2836 * constructing the transaction, so we take that here as well.
2838 * Return: The target_node with refs taken or NULL if no @node->proc is NULL.
2839 * Also sets @proc if valid. If the @node->proc is NULL indicating that the
2840 * target proc has died, @error is set to BR_DEAD_REPLY
2842 static struct binder_node *binder_get_node_refs_for_txn(
2843 struct binder_node *node,
2844 struct binder_proc **procp,
2847 struct binder_node *target_node = NULL;
2849 binder_node_inner_lock(node);
2852 binder_inc_node_nilocked(node, 1, 0, NULL);
2853 binder_inc_node_tmpref_ilocked(node);
2854 node->proc->tmp_ref++;
2855 *procp = node->proc;
2857 *error = BR_DEAD_REPLY;
2858 binder_node_inner_unlock(node);
2863 static void binder_transaction(struct binder_proc *proc,
2864 struct binder_thread *thread,
2865 struct binder_transaction_data *tr, int reply,
2866 binder_size_t extra_buffers_size)
2869 struct binder_transaction *t;
2870 struct binder_work *w;
2871 struct binder_work *tcomplete;
2872 binder_size_t buffer_offset = 0;
2873 binder_size_t off_start_offset, off_end_offset;
2874 binder_size_t off_min;
2875 binder_size_t sg_buf_offset, sg_buf_end_offset;
2876 struct binder_proc *target_proc = NULL;
2877 struct binder_thread *target_thread = NULL;
2878 struct binder_node *target_node = NULL;
2879 struct binder_transaction *in_reply_to = NULL;
2880 struct binder_transaction_log_entry *e;
2881 uint32_t return_error = 0;
2882 uint32_t return_error_param = 0;
2883 uint32_t return_error_line = 0;
2884 binder_size_t last_fixup_obj_off = 0;
2885 binder_size_t last_fixup_min_off = 0;
2886 struct binder_context *context = proc->context;
2887 int t_debug_id = atomic_inc_return(&binder_last_id);
2888 char *secctx = NULL;
2891 e = binder_transaction_log_add(&binder_transaction_log);
2892 e->debug_id = t_debug_id;
2893 e->call_type = reply ? 2 : !!(tr->flags & TF_ONE_WAY);
2894 e->from_proc = proc->pid;
2895 e->from_thread = thread->pid;
2896 e->target_handle = tr->target.handle;
2897 e->data_size = tr->data_size;
2898 e->offsets_size = tr->offsets_size;
2899 e->context_name = proc->context->name;
2902 binder_inner_proc_lock(proc);
2903 in_reply_to = thread->transaction_stack;
2904 if (in_reply_to == NULL) {
2905 binder_inner_proc_unlock(proc);
2906 binder_user_error("%d:%d got reply transaction with no transaction stack\n",
2907 proc->pid, thread->pid);
2908 return_error = BR_FAILED_REPLY;
2909 return_error_param = -EPROTO;
2910 return_error_line = __LINE__;
2911 goto err_empty_call_stack;
2913 if (in_reply_to->to_thread != thread) {
2914 spin_lock(&in_reply_to->lock);
2915 binder_user_error("%d:%d got reply transaction with bad transaction stack, transaction %d has target %d:%d\n",
2916 proc->pid, thread->pid, in_reply_to->debug_id,
2917 in_reply_to->to_proc ?
2918 in_reply_to->to_proc->pid : 0,
2919 in_reply_to->to_thread ?
2920 in_reply_to->to_thread->pid : 0);
2921 spin_unlock(&in_reply_to->lock);
2922 binder_inner_proc_unlock(proc);
2923 return_error = BR_FAILED_REPLY;
2924 return_error_param = -EPROTO;
2925 return_error_line = __LINE__;
2927 goto err_bad_call_stack;
2929 thread->transaction_stack = in_reply_to->to_parent;
2930 binder_inner_proc_unlock(proc);
2931 binder_set_nice(in_reply_to->saved_priority);
2932 target_thread = binder_get_txn_from_and_acq_inner(in_reply_to);
2933 if (target_thread == NULL) {
2934 /* annotation for sparse */
2935 __release(&target_thread->proc->inner_lock);
2936 return_error = BR_DEAD_REPLY;
2937 return_error_line = __LINE__;
2938 goto err_dead_binder;
2940 if (target_thread->transaction_stack != in_reply_to) {
2941 binder_user_error("%d:%d got reply transaction with bad target transaction stack %d, expected %d\n",
2942 proc->pid, thread->pid,
2943 target_thread->transaction_stack ?
2944 target_thread->transaction_stack->debug_id : 0,
2945 in_reply_to->debug_id);
2946 binder_inner_proc_unlock(target_thread->proc);
2947 return_error = BR_FAILED_REPLY;
2948 return_error_param = -EPROTO;
2949 return_error_line = __LINE__;
2951 target_thread = NULL;
2952 goto err_dead_binder;
2954 target_proc = target_thread->proc;
2955 target_proc->tmp_ref++;
2956 binder_inner_proc_unlock(target_thread->proc);
2958 if (tr->target.handle) {
2959 struct binder_ref *ref;
2962 * There must already be a strong ref
2963 * on this node. If so, do a strong
2964 * increment on the node to ensure it
2965 * stays alive until the transaction is
2968 binder_proc_lock(proc);
2969 ref = binder_get_ref_olocked(proc, tr->target.handle,
2972 target_node = binder_get_node_refs_for_txn(
2973 ref->node, &target_proc,
2976 binder_user_error("%d:%d got transaction to invalid handle\n",
2977 proc->pid, thread->pid);
2978 return_error = BR_FAILED_REPLY;
2980 binder_proc_unlock(proc);
2982 mutex_lock(&context->context_mgr_node_lock);
2983 target_node = context->binder_context_mgr_node;
2985 target_node = binder_get_node_refs_for_txn(
2986 target_node, &target_proc,
2989 return_error = BR_DEAD_REPLY;
2990 mutex_unlock(&context->context_mgr_node_lock);
2991 if (target_node && target_proc == proc) {
2992 binder_user_error("%d:%d got transaction to context manager from process owning it\n",
2993 proc->pid, thread->pid);
2994 return_error = BR_FAILED_REPLY;
2995 return_error_param = -EINVAL;
2996 return_error_line = __LINE__;
2997 goto err_invalid_target_handle;
3002 * return_error is set above
3004 return_error_param = -EINVAL;
3005 return_error_line = __LINE__;
3006 goto err_dead_binder;
3008 e->to_node = target_node->debug_id;
3009 if (security_binder_transaction(proc->tsk,
3010 target_proc->tsk) < 0) {
3011 return_error = BR_FAILED_REPLY;
3012 return_error_param = -EPERM;
3013 return_error_line = __LINE__;
3014 goto err_invalid_target_handle;
3016 binder_inner_proc_lock(proc);
3018 w = list_first_entry_or_null(&thread->todo,
3019 struct binder_work, entry);
3020 if (!(tr->flags & TF_ONE_WAY) && w &&
3021 w->type == BINDER_WORK_TRANSACTION) {
3023 * Do not allow new outgoing transaction from a
3024 * thread that has a transaction at the head of
3025 * its todo list. Only need to check the head
3026 * because binder_select_thread_ilocked picks a
3027 * thread from proc->waiting_threads to enqueue
3028 * the transaction, and nothing is queued to the
3029 * todo list while the thread is on waiting_threads.
3031 binder_user_error("%d:%d new transaction not allowed when there is a transaction on thread todo\n",
3032 proc->pid, thread->pid);
3033 binder_inner_proc_unlock(proc);
3034 return_error = BR_FAILED_REPLY;
3035 return_error_param = -EPROTO;
3036 return_error_line = __LINE__;
3037 goto err_bad_todo_list;
3040 if (!(tr->flags & TF_ONE_WAY) && thread->transaction_stack) {
3041 struct binder_transaction *tmp;
3043 tmp = thread->transaction_stack;
3044 if (tmp->to_thread != thread) {
3045 spin_lock(&tmp->lock);
3046 binder_user_error("%d:%d got new transaction with bad transaction stack, transaction %d has target %d:%d\n",
3047 proc->pid, thread->pid, tmp->debug_id,
3048 tmp->to_proc ? tmp->to_proc->pid : 0,
3050 tmp->to_thread->pid : 0);
3051 spin_unlock(&tmp->lock);
3052 binder_inner_proc_unlock(proc);
3053 return_error = BR_FAILED_REPLY;
3054 return_error_param = -EPROTO;
3055 return_error_line = __LINE__;
3056 goto err_bad_call_stack;
3059 struct binder_thread *from;
3061 spin_lock(&tmp->lock);
3063 if (from && from->proc == target_proc) {
3064 atomic_inc(&from->tmp_ref);
3065 target_thread = from;
3066 spin_unlock(&tmp->lock);
3069 spin_unlock(&tmp->lock);
3070 tmp = tmp->from_parent;
3073 binder_inner_proc_unlock(proc);
3076 e->to_thread = target_thread->pid;
3077 e->to_proc = target_proc->pid;
3079 /* TODO: reuse incoming transaction for reply */
3080 t = kzalloc(sizeof(*t), GFP_KERNEL);
3082 return_error = BR_FAILED_REPLY;
3083 return_error_param = -ENOMEM;
3084 return_error_line = __LINE__;
3085 goto err_alloc_t_failed;
3087 INIT_LIST_HEAD(&t->fd_fixups);
3088 binder_stats_created(BINDER_STAT_TRANSACTION);
3089 spin_lock_init(&t->lock);
3091 tcomplete = kzalloc(sizeof(*tcomplete), GFP_KERNEL);
3092 if (tcomplete == NULL) {
3093 return_error = BR_FAILED_REPLY;
3094 return_error_param = -ENOMEM;
3095 return_error_line = __LINE__;
3096 goto err_alloc_tcomplete_failed;
3098 binder_stats_created(BINDER_STAT_TRANSACTION_COMPLETE);
3100 t->debug_id = t_debug_id;
3103 binder_debug(BINDER_DEBUG_TRANSACTION,
3104 "%d:%d BC_REPLY %d -> %d:%d, data %016llx-%016llx size %lld-%lld-%lld\n",
3105 proc->pid, thread->pid, t->debug_id,
3106 target_proc->pid, target_thread->pid,
3107 (u64)tr->data.ptr.buffer,
3108 (u64)tr->data.ptr.offsets,
3109 (u64)tr->data_size, (u64)tr->offsets_size,
3110 (u64)extra_buffers_size);
3112 binder_debug(BINDER_DEBUG_TRANSACTION,
3113 "%d:%d BC_TRANSACTION %d -> %d - node %d, data %016llx-%016llx size %lld-%lld-%lld\n",
3114 proc->pid, thread->pid, t->debug_id,
3115 target_proc->pid, target_node->debug_id,
3116 (u64)tr->data.ptr.buffer,
3117 (u64)tr->data.ptr.offsets,
3118 (u64)tr->data_size, (u64)tr->offsets_size,
3119 (u64)extra_buffers_size);
3121 if (!reply && !(tr->flags & TF_ONE_WAY))
3125 t->sender_euid = task_euid(proc->tsk);
3126 t->to_proc = target_proc;
3127 t->to_thread = target_thread;
3129 t->flags = tr->flags;
3130 t->priority = task_nice(current);
3132 if (target_node && target_node->txn_security_ctx) {
3136 security_task_getsecid(proc->tsk, &secid);
3137 ret = security_secid_to_secctx(secid, &secctx, &secctx_sz);
3139 return_error = BR_FAILED_REPLY;
3140 return_error_param = ret;
3141 return_error_line = __LINE__;
3142 goto err_get_secctx_failed;
3144 added_size = ALIGN(secctx_sz, sizeof(u64));
3145 extra_buffers_size += added_size;
3146 if (extra_buffers_size < added_size) {
3147 /* integer overflow of extra_buffers_size */
3148 return_error = BR_FAILED_REPLY;
3149 return_error_param = EINVAL;
3150 return_error_line = __LINE__;
3151 goto err_bad_extra_size;
3155 trace_binder_transaction(reply, t, target_node);
3157 t->buffer = binder_alloc_new_buf(&target_proc->alloc, tr->data_size,
3158 tr->offsets_size, extra_buffers_size,
3159 !reply && (t->flags & TF_ONE_WAY));
3160 if (IS_ERR(t->buffer)) {
3162 * -ESRCH indicates VMA cleared. The target is dying.
3164 return_error_param = PTR_ERR(t->buffer);
3165 return_error = return_error_param == -ESRCH ?
3166 BR_DEAD_REPLY : BR_FAILED_REPLY;
3167 return_error_line = __LINE__;
3169 goto err_binder_alloc_buf_failed;
3173 size_t buf_offset = ALIGN(tr->data_size, sizeof(void *)) +
3174 ALIGN(tr->offsets_size, sizeof(void *)) +
3175 ALIGN(extra_buffers_size, sizeof(void *)) -
3176 ALIGN(secctx_sz, sizeof(u64));
3178 t->security_ctx = (uintptr_t)t->buffer->user_data + buf_offset;
3179 err = binder_alloc_copy_to_buffer(&target_proc->alloc,
3180 t->buffer, buf_offset,
3183 t->security_ctx = 0;
3186 security_release_secctx(secctx, secctx_sz);
3189 t->buffer->debug_id = t->debug_id;
3190 t->buffer->transaction = t;
3191 t->buffer->target_node = target_node;
3192 trace_binder_transaction_alloc_buf(t->buffer);
3194 if (binder_alloc_copy_user_to_buffer(
3195 &target_proc->alloc,
3197 (const void __user *)
3198 (uintptr_t)tr->data.ptr.buffer,
3200 binder_user_error("%d:%d got transaction with invalid data ptr\n",
3201 proc->pid, thread->pid);
3202 return_error = BR_FAILED_REPLY;
3203 return_error_param = -EFAULT;
3204 return_error_line = __LINE__;
3205 goto err_copy_data_failed;
3207 if (binder_alloc_copy_user_to_buffer(
3208 &target_proc->alloc,
3210 ALIGN(tr->data_size, sizeof(void *)),
3211 (const void __user *)
3212 (uintptr_t)tr->data.ptr.offsets,
3213 tr->offsets_size)) {
3214 binder_user_error("%d:%d got transaction with invalid offsets ptr\n",
3215 proc->pid, thread->pid);
3216 return_error = BR_FAILED_REPLY;
3217 return_error_param = -EFAULT;
3218 return_error_line = __LINE__;
3219 goto err_copy_data_failed;
3221 if (!IS_ALIGNED(tr->offsets_size, sizeof(binder_size_t))) {
3222 binder_user_error("%d:%d got transaction with invalid offsets size, %lld\n",
3223 proc->pid, thread->pid, (u64)tr->offsets_size);
3224 return_error = BR_FAILED_REPLY;
3225 return_error_param = -EINVAL;
3226 return_error_line = __LINE__;
3227 goto err_bad_offset;
3229 if (!IS_ALIGNED(extra_buffers_size, sizeof(u64))) {
3230 binder_user_error("%d:%d got transaction with unaligned buffers size, %lld\n",
3231 proc->pid, thread->pid,
3232 (u64)extra_buffers_size);
3233 return_error = BR_FAILED_REPLY;
3234 return_error_param = -EINVAL;
3235 return_error_line = __LINE__;
3236 goto err_bad_offset;
3238 off_start_offset = ALIGN(tr->data_size, sizeof(void *));
3239 buffer_offset = off_start_offset;
3240 off_end_offset = off_start_offset + tr->offsets_size;
3241 sg_buf_offset = ALIGN(off_end_offset, sizeof(void *));
3242 sg_buf_end_offset = sg_buf_offset + extra_buffers_size;
3244 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset;
3245 buffer_offset += sizeof(binder_size_t)) {
3246 struct binder_object_header *hdr;
3248 struct binder_object object;
3249 binder_size_t object_offset;
3251 if (binder_alloc_copy_from_buffer(&target_proc->alloc,
3255 sizeof(object_offset))) {
3256 return_error = BR_FAILED_REPLY;
3257 return_error_param = -EINVAL;
3258 return_error_line = __LINE__;
3259 goto err_bad_offset;
3261 object_size = binder_get_object(target_proc, t->buffer,
3262 object_offset, &object);
3263 if (object_size == 0 || object_offset < off_min) {
3264 binder_user_error("%d:%d got transaction with invalid offset (%lld, min %lld max %lld) or object.\n",
3265 proc->pid, thread->pid,
3268 (u64)t->buffer->data_size);
3269 return_error = BR_FAILED_REPLY;
3270 return_error_param = -EINVAL;
3271 return_error_line = __LINE__;
3272 goto err_bad_offset;
3276 off_min = object_offset + object_size;
3277 switch (hdr->type) {
3278 case BINDER_TYPE_BINDER:
3279 case BINDER_TYPE_WEAK_BINDER: {
3280 struct flat_binder_object *fp;
3282 fp = to_flat_binder_object(hdr);
3283 ret = binder_translate_binder(fp, t, thread);
3286 binder_alloc_copy_to_buffer(&target_proc->alloc,
3290 return_error = BR_FAILED_REPLY;
3291 return_error_param = ret;
3292 return_error_line = __LINE__;
3293 goto err_translate_failed;
3296 case BINDER_TYPE_HANDLE:
3297 case BINDER_TYPE_WEAK_HANDLE: {
3298 struct flat_binder_object *fp;
3300 fp = to_flat_binder_object(hdr);
3301 ret = binder_translate_handle(fp, t, thread);
3303 binder_alloc_copy_to_buffer(&target_proc->alloc,
3307 return_error = BR_FAILED_REPLY;
3308 return_error_param = ret;
3309 return_error_line = __LINE__;
3310 goto err_translate_failed;
3314 case BINDER_TYPE_FD: {
3315 struct binder_fd_object *fp = to_binder_fd_object(hdr);
3316 binder_size_t fd_offset = object_offset +
3317 (uintptr_t)&fp->fd - (uintptr_t)fp;
3318 int ret = binder_translate_fd(fp->fd, fd_offset, t,
3319 thread, in_reply_to);
3323 binder_alloc_copy_to_buffer(&target_proc->alloc,
3327 return_error = BR_FAILED_REPLY;
3328 return_error_param = ret;
3329 return_error_line = __LINE__;
3330 goto err_translate_failed;
3333 case BINDER_TYPE_FDA: {
3334 struct binder_object ptr_object;
3335 binder_size_t parent_offset;
3336 struct binder_fd_array_object *fda =
3337 to_binder_fd_array_object(hdr);
3338 size_t num_valid = (buffer_offset - off_start_offset) *
3339 sizeof(binder_size_t);
3340 struct binder_buffer_object *parent =
3341 binder_validate_ptr(target_proc, t->buffer,
3342 &ptr_object, fda->parent,
3347 binder_user_error("%d:%d got transaction with invalid parent offset or type\n",
3348 proc->pid, thread->pid);
3349 return_error = BR_FAILED_REPLY;
3350 return_error_param = -EINVAL;
3351 return_error_line = __LINE__;
3352 goto err_bad_parent;
3354 if (!binder_validate_fixup(target_proc, t->buffer,
3359 last_fixup_min_off)) {
3360 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n",
3361 proc->pid, thread->pid);
3362 return_error = BR_FAILED_REPLY;
3363 return_error_param = -EINVAL;
3364 return_error_line = __LINE__;
3365 goto err_bad_parent;
3367 ret = binder_translate_fd_array(fda, parent, t, thread,
3370 return_error = BR_FAILED_REPLY;
3371 return_error_param = ret;
3372 return_error_line = __LINE__;
3373 goto err_translate_failed;
3375 last_fixup_obj_off = parent_offset;
3376 last_fixup_min_off =
3377 fda->parent_offset + sizeof(u32) * fda->num_fds;
3379 case BINDER_TYPE_PTR: {
3380 struct binder_buffer_object *bp =
3381 to_binder_buffer_object(hdr);
3382 size_t buf_left = sg_buf_end_offset - sg_buf_offset;
3385 if (bp->length > buf_left) {
3386 binder_user_error("%d:%d got transaction with too large buffer\n",
3387 proc->pid, thread->pid);
3388 return_error = BR_FAILED_REPLY;
3389 return_error_param = -EINVAL;
3390 return_error_line = __LINE__;
3391 goto err_bad_offset;
3393 if (binder_alloc_copy_user_to_buffer(
3394 &target_proc->alloc,
3397 (const void __user *)
3398 (uintptr_t)bp->buffer,
3400 binder_user_error("%d:%d got transaction with invalid offsets ptr\n",
3401 proc->pid, thread->pid);
3402 return_error_param = -EFAULT;
3403 return_error = BR_FAILED_REPLY;
3404 return_error_line = __LINE__;
3405 goto err_copy_data_failed;
3407 /* Fixup buffer pointer to target proc address space */
3408 bp->buffer = (uintptr_t)
3409 t->buffer->user_data + sg_buf_offset;
3410 sg_buf_offset += ALIGN(bp->length, sizeof(u64));
3412 num_valid = (buffer_offset - off_start_offset) *
3413 sizeof(binder_size_t);
3414 ret = binder_fixup_parent(t, thread, bp,
3418 last_fixup_min_off);
3420 binder_alloc_copy_to_buffer(&target_proc->alloc,
3424 return_error = BR_FAILED_REPLY;
3425 return_error_param = ret;
3426 return_error_line = __LINE__;
3427 goto err_translate_failed;
3429 last_fixup_obj_off = object_offset;
3430 last_fixup_min_off = 0;
3433 binder_user_error("%d:%d got transaction with invalid object type, %x\n",
3434 proc->pid, thread->pid, hdr->type);
3435 return_error = BR_FAILED_REPLY;
3436 return_error_param = -EINVAL;
3437 return_error_line = __LINE__;
3438 goto err_bad_object_type;
3441 tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE;
3442 t->work.type = BINDER_WORK_TRANSACTION;
3445 binder_enqueue_thread_work(thread, tcomplete);
3446 binder_inner_proc_lock(target_proc);
3447 if (target_thread->is_dead) {
3448 binder_inner_proc_unlock(target_proc);
3449 goto err_dead_proc_or_thread;
3451 BUG_ON(t->buffer->async_transaction != 0);
3452 binder_pop_transaction_ilocked(target_thread, in_reply_to);
3453 binder_enqueue_thread_work_ilocked(target_thread, &t->work);
3454 binder_inner_proc_unlock(target_proc);
3455 wake_up_interruptible_sync(&target_thread->wait);
3456 binder_free_transaction(in_reply_to);
3457 } else if (!(t->flags & TF_ONE_WAY)) {
3458 BUG_ON(t->buffer->async_transaction != 0);
3459 binder_inner_proc_lock(proc);
3461 * Defer the TRANSACTION_COMPLETE, so we don't return to
3462 * userspace immediately; this allows the target process to
3463 * immediately start processing this transaction, reducing
3464 * latency. We will then return the TRANSACTION_COMPLETE when
3465 * the target replies (or there is an error).
3467 binder_enqueue_deferred_thread_work_ilocked(thread, tcomplete);
3469 t->from_parent = thread->transaction_stack;
3470 thread->transaction_stack = t;
3471 binder_inner_proc_unlock(proc);
3472 if (!binder_proc_transaction(t, target_proc, target_thread)) {
3473 binder_inner_proc_lock(proc);
3474 binder_pop_transaction_ilocked(thread, t);
3475 binder_inner_proc_unlock(proc);
3476 goto err_dead_proc_or_thread;
3479 BUG_ON(target_node == NULL);
3480 BUG_ON(t->buffer->async_transaction != 1);
3481 binder_enqueue_thread_work(thread, tcomplete);
3482 if (!binder_proc_transaction(t, target_proc, NULL))
3483 goto err_dead_proc_or_thread;
3486 binder_thread_dec_tmpref(target_thread);
3487 binder_proc_dec_tmpref(target_proc);
3489 binder_dec_node_tmpref(target_node);
3491 * write barrier to synchronize with initialization
3495 WRITE_ONCE(e->debug_id_done, t_debug_id);
3498 err_dead_proc_or_thread:
3499 return_error = BR_DEAD_REPLY;
3500 return_error_line = __LINE__;
3501 binder_dequeue_work(proc, tcomplete);
3502 err_translate_failed:
3503 err_bad_object_type:
3506 err_copy_data_failed:
3507 binder_free_txn_fixups(t);
3508 trace_binder_transaction_failed_buffer_release(t->buffer);
3509 binder_transaction_buffer_release(target_proc, t->buffer,
3510 buffer_offset, true);
3512 binder_dec_node_tmpref(target_node);
3514 t->buffer->transaction = NULL;
3515 binder_alloc_free_buf(&target_proc->alloc, t->buffer);
3516 err_binder_alloc_buf_failed:
3519 security_release_secctx(secctx, secctx_sz);
3520 err_get_secctx_failed:
3522 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
3523 err_alloc_tcomplete_failed:
3525 binder_stats_deleted(BINDER_STAT_TRANSACTION);
3529 err_empty_call_stack:
3531 err_invalid_target_handle:
3533 binder_thread_dec_tmpref(target_thread);
3535 binder_proc_dec_tmpref(target_proc);
3537 binder_dec_node(target_node, 1, 0);
3538 binder_dec_node_tmpref(target_node);
3541 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
3542 "%d:%d transaction failed %d/%d, size %lld-%lld line %d\n",
3543 proc->pid, thread->pid, return_error, return_error_param,
3544 (u64)tr->data_size, (u64)tr->offsets_size,
3548 struct binder_transaction_log_entry *fe;
3550 e->return_error = return_error;
3551 e->return_error_param = return_error_param;
3552 e->return_error_line = return_error_line;
3553 fe = binder_transaction_log_add(&binder_transaction_log_failed);
3556 * write barrier to synchronize with initialization
3560 WRITE_ONCE(e->debug_id_done, t_debug_id);
3561 WRITE_ONCE(fe->debug_id_done, t_debug_id);
3564 BUG_ON(thread->return_error.cmd != BR_OK);
3566 thread->return_error.cmd = BR_TRANSACTION_COMPLETE;
3567 binder_enqueue_thread_work(thread, &thread->return_error.work);
3568 binder_send_failed_reply(in_reply_to, return_error);
3570 thread->return_error.cmd = return_error;
3571 binder_enqueue_thread_work(thread, &thread->return_error.work);
3576 * binder_free_buf() - free the specified buffer
3577 * @proc: binder proc that owns buffer
3578 * @buffer: buffer to be freed
3580 * If buffer for an async transaction, enqueue the next async
3581 * transaction from the node.
3583 * Cleanup buffer and free it.
3586 binder_free_buf(struct binder_proc *proc, struct binder_buffer *buffer)
3588 binder_inner_proc_lock(proc);
3589 if (buffer->transaction) {
3590 buffer->transaction->buffer = NULL;
3591 buffer->transaction = NULL;
3593 binder_inner_proc_unlock(proc);
3594 if (buffer->async_transaction && buffer->target_node) {
3595 struct binder_node *buf_node;
3596 struct binder_work *w;
3598 buf_node = buffer->target_node;
3599 binder_node_inner_lock(buf_node);
3600 BUG_ON(!buf_node->has_async_transaction);
3601 BUG_ON(buf_node->proc != proc);
3602 w = binder_dequeue_work_head_ilocked(
3603 &buf_node->async_todo);
3605 buf_node->has_async_transaction = false;
3607 binder_enqueue_work_ilocked(
3609 binder_wakeup_proc_ilocked(proc);
3611 binder_node_inner_unlock(buf_node);
3613 trace_binder_transaction_buffer_release(buffer);
3614 binder_transaction_buffer_release(proc, buffer, 0, false);
3615 binder_alloc_free_buf(&proc->alloc, buffer);
3618 static int binder_thread_write(struct binder_proc *proc,
3619 struct binder_thread *thread,
3620 binder_uintptr_t binder_buffer, size_t size,
3621 binder_size_t *consumed)
3624 struct binder_context *context = proc->context;
3625 void __user *buffer = (void __user *)(uintptr_t)binder_buffer;
3626 void __user *ptr = buffer + *consumed;
3627 void __user *end = buffer + size;
3629 while (ptr < end && thread->return_error.cmd == BR_OK) {
3632 if (get_user(cmd, (uint32_t __user *)ptr))
3634 ptr += sizeof(uint32_t);
3635 trace_binder_command(cmd);
3636 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.bc)) {
3637 atomic_inc(&binder_stats.bc[_IOC_NR(cmd)]);
3638 atomic_inc(&proc->stats.bc[_IOC_NR(cmd)]);
3639 atomic_inc(&thread->stats.bc[_IOC_NR(cmd)]);
3647 const char *debug_string;
3648 bool strong = cmd == BC_ACQUIRE || cmd == BC_RELEASE;
3649 bool increment = cmd == BC_INCREFS || cmd == BC_ACQUIRE;
3650 struct binder_ref_data rdata;
3652 if (get_user(target, (uint32_t __user *)ptr))
3655 ptr += sizeof(uint32_t);
3657 if (increment && !target) {
3658 struct binder_node *ctx_mgr_node;
3659 mutex_lock(&context->context_mgr_node_lock);
3660 ctx_mgr_node = context->binder_context_mgr_node;
3662 ret = binder_inc_ref_for_node(
3664 strong, NULL, &rdata);
3665 mutex_unlock(&context->context_mgr_node_lock);
3668 ret = binder_update_ref_for_handle(
3669 proc, target, increment, strong,
3671 if (!ret && rdata.desc != target) {
3672 binder_user_error("%d:%d tried to acquire reference to desc %d, got %d instead\n",
3673 proc->pid, thread->pid,
3674 target, rdata.desc);
3678 debug_string = "IncRefs";
3681 debug_string = "Acquire";
3684 debug_string = "Release";
3688 debug_string = "DecRefs";
3692 binder_user_error("%d:%d %s %d refcount change on invalid ref %d ret %d\n",
3693 proc->pid, thread->pid, debug_string,
3694 strong, target, ret);
3697 binder_debug(BINDER_DEBUG_USER_REFS,
3698 "%d:%d %s ref %d desc %d s %d w %d\n",
3699 proc->pid, thread->pid, debug_string,
3700 rdata.debug_id, rdata.desc, rdata.strong,
3704 case BC_INCREFS_DONE:
3705 case BC_ACQUIRE_DONE: {
3706 binder_uintptr_t node_ptr;
3707 binder_uintptr_t cookie;
3708 struct binder_node *node;
3711 if (get_user(node_ptr, (binder_uintptr_t __user *)ptr))
3713 ptr += sizeof(binder_uintptr_t);
3714 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
3716 ptr += sizeof(binder_uintptr_t);
3717 node = binder_get_node(proc, node_ptr);
3719 binder_user_error("%d:%d %s u%016llx no match\n",
3720 proc->pid, thread->pid,
3721 cmd == BC_INCREFS_DONE ?
3727 if (cookie != node->cookie) {
3728 binder_user_error("%d:%d %s u%016llx node %d cookie mismatch %016llx != %016llx\n",
3729 proc->pid, thread->pid,
3730 cmd == BC_INCREFS_DONE ?
3731 "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE",
3732 (u64)node_ptr, node->debug_id,
3733 (u64)cookie, (u64)node->cookie);
3734 binder_put_node(node);
3737 binder_node_inner_lock(node);
3738 if (cmd == BC_ACQUIRE_DONE) {
3739 if (node->pending_strong_ref == 0) {
3740 binder_user_error("%d:%d BC_ACQUIRE_DONE node %d has no pending acquire request\n",
3741 proc->pid, thread->pid,
3743 binder_node_inner_unlock(node);
3744 binder_put_node(node);
3747 node->pending_strong_ref = 0;
3749 if (node->pending_weak_ref == 0) {
3750 binder_user_error("%d:%d BC_INCREFS_DONE node %d has no pending increfs request\n",
3751 proc->pid, thread->pid,
3753 binder_node_inner_unlock(node);
3754 binder_put_node(node);
3757 node->pending_weak_ref = 0;
3759 free_node = binder_dec_node_nilocked(node,
3760 cmd == BC_ACQUIRE_DONE, 0);
3762 binder_debug(BINDER_DEBUG_USER_REFS,
3763 "%d:%d %s node %d ls %d lw %d tr %d\n",
3764 proc->pid, thread->pid,
3765 cmd == BC_INCREFS_DONE ? "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE",
3766 node->debug_id, node->local_strong_refs,
3767 node->local_weak_refs, node->tmp_refs);
3768 binder_node_inner_unlock(node);
3769 binder_put_node(node);
3772 case BC_ATTEMPT_ACQUIRE:
3773 pr_err("BC_ATTEMPT_ACQUIRE not supported\n");
3775 case BC_ACQUIRE_RESULT:
3776 pr_err("BC_ACQUIRE_RESULT not supported\n");
3779 case BC_FREE_BUFFER: {
3780 binder_uintptr_t data_ptr;
3781 struct binder_buffer *buffer;
3783 if (get_user(data_ptr, (binder_uintptr_t __user *)ptr))
3785 ptr += sizeof(binder_uintptr_t);
3787 buffer = binder_alloc_prepare_to_free(&proc->alloc,
3789 if (IS_ERR_OR_NULL(buffer)) {
3790 if (PTR_ERR(buffer) == -EPERM) {
3792 "%d:%d BC_FREE_BUFFER u%016llx matched unreturned or currently freeing buffer\n",
3793 proc->pid, thread->pid,
3797 "%d:%d BC_FREE_BUFFER u%016llx no match\n",
3798 proc->pid, thread->pid,
3803 binder_debug(BINDER_DEBUG_FREE_BUFFER,
3804 "%d:%d BC_FREE_BUFFER u%016llx found buffer %d for %s transaction\n",
3805 proc->pid, thread->pid, (u64)data_ptr,
3807 buffer->transaction ? "active" : "finished");
3808 binder_free_buf(proc, buffer);
3812 case BC_TRANSACTION_SG:
3814 struct binder_transaction_data_sg tr;
3816 if (copy_from_user(&tr, ptr, sizeof(tr)))
3819 binder_transaction(proc, thread, &tr.transaction_data,
3820 cmd == BC_REPLY_SG, tr.buffers_size);
3823 case BC_TRANSACTION:
3825 struct binder_transaction_data tr;
3827 if (copy_from_user(&tr, ptr, sizeof(tr)))
3830 binder_transaction(proc, thread, &tr,
3831 cmd == BC_REPLY, 0);
3835 case BC_REGISTER_LOOPER:
3836 binder_debug(BINDER_DEBUG_THREADS,
3837 "%d:%d BC_REGISTER_LOOPER\n",
3838 proc->pid, thread->pid);
3839 binder_inner_proc_lock(proc);
3840 if (thread->looper & BINDER_LOOPER_STATE_ENTERED) {
3841 thread->looper |= BINDER_LOOPER_STATE_INVALID;
3842 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called after BC_ENTER_LOOPER\n",
3843 proc->pid, thread->pid);
3844 } else if (proc->requested_threads == 0) {
3845 thread->looper |= BINDER_LOOPER_STATE_INVALID;
3846 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called without request\n",
3847 proc->pid, thread->pid);
3849 proc->requested_threads--;
3850 proc->requested_threads_started++;
3852 thread->looper |= BINDER_LOOPER_STATE_REGISTERED;
3853 binder_inner_proc_unlock(proc);
3855 case BC_ENTER_LOOPER:
3856 binder_debug(BINDER_DEBUG_THREADS,
3857 "%d:%d BC_ENTER_LOOPER\n",
3858 proc->pid, thread->pid);
3859 if (thread->looper & BINDER_LOOPER_STATE_REGISTERED) {
3860 thread->looper |= BINDER_LOOPER_STATE_INVALID;
3861 binder_user_error("%d:%d ERROR: BC_ENTER_LOOPER called after BC_REGISTER_LOOPER\n",
3862 proc->pid, thread->pid);
3864 thread->looper |= BINDER_LOOPER_STATE_ENTERED;
3866 case BC_EXIT_LOOPER:
3867 binder_debug(BINDER_DEBUG_THREADS,
3868 "%d:%d BC_EXIT_LOOPER\n",
3869 proc->pid, thread->pid);
3870 thread->looper |= BINDER_LOOPER_STATE_EXITED;
3873 case BC_REQUEST_DEATH_NOTIFICATION:
3874 case BC_CLEAR_DEATH_NOTIFICATION: {
3876 binder_uintptr_t cookie;
3877 struct binder_ref *ref;
3878 struct binder_ref_death *death = NULL;
3880 if (get_user(target, (uint32_t __user *)ptr))
3882 ptr += sizeof(uint32_t);
3883 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
3885 ptr += sizeof(binder_uintptr_t);
3886 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) {
3888 * Allocate memory for death notification
3889 * before taking lock
3891 death = kzalloc(sizeof(*death), GFP_KERNEL);
3892 if (death == NULL) {
3893 WARN_ON(thread->return_error.cmd !=
3895 thread->return_error.cmd = BR_ERROR;
3896 binder_enqueue_thread_work(
3898 &thread->return_error.work);
3900 BINDER_DEBUG_FAILED_TRANSACTION,
3901 "%d:%d BC_REQUEST_DEATH_NOTIFICATION failed\n",
3902 proc->pid, thread->pid);
3906 binder_proc_lock(proc);
3907 ref = binder_get_ref_olocked(proc, target, false);
3909 binder_user_error("%d:%d %s invalid ref %d\n",
3910 proc->pid, thread->pid,
3911 cmd == BC_REQUEST_DEATH_NOTIFICATION ?
3912 "BC_REQUEST_DEATH_NOTIFICATION" :
3913 "BC_CLEAR_DEATH_NOTIFICATION",
3915 binder_proc_unlock(proc);
3920 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION,
3921 "%d:%d %s %016llx ref %d desc %d s %d w %d for node %d\n",
3922 proc->pid, thread->pid,
3923 cmd == BC_REQUEST_DEATH_NOTIFICATION ?
3924 "BC_REQUEST_DEATH_NOTIFICATION" :
3925 "BC_CLEAR_DEATH_NOTIFICATION",
3926 (u64)cookie, ref->data.debug_id,
3927 ref->data.desc, ref->data.strong,
3928 ref->data.weak, ref->node->debug_id);
3930 binder_node_lock(ref->node);
3931 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) {
3933 binder_user_error("%d:%d BC_REQUEST_DEATH_NOTIFICATION death notification already set\n",
3934 proc->pid, thread->pid);
3935 binder_node_unlock(ref->node);
3936 binder_proc_unlock(proc);
3940 binder_stats_created(BINDER_STAT_DEATH);
3941 INIT_LIST_HEAD(&death->work.entry);
3942 death->cookie = cookie;
3944 if (ref->node->proc == NULL) {
3945 ref->death->work.type = BINDER_WORK_DEAD_BINDER;
3947 binder_inner_proc_lock(proc);
3948 binder_enqueue_work_ilocked(
3949 &ref->death->work, &proc->todo);
3950 binder_wakeup_proc_ilocked(proc);
3951 binder_inner_proc_unlock(proc);
3954 if (ref->death == NULL) {
3955 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification not active\n",
3956 proc->pid, thread->pid);
3957 binder_node_unlock(ref->node);
3958 binder_proc_unlock(proc);
3962 if (death->cookie != cookie) {
3963 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification cookie mismatch %016llx != %016llx\n",
3964 proc->pid, thread->pid,
3967 binder_node_unlock(ref->node);
3968 binder_proc_unlock(proc);
3972 binder_inner_proc_lock(proc);
3973 if (list_empty(&death->work.entry)) {
3974 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION;
3975 if (thread->looper &
3976 (BINDER_LOOPER_STATE_REGISTERED |
3977 BINDER_LOOPER_STATE_ENTERED))
3978 binder_enqueue_thread_work_ilocked(
3982 binder_enqueue_work_ilocked(
3985 binder_wakeup_proc_ilocked(
3989 BUG_ON(death->work.type != BINDER_WORK_DEAD_BINDER);
3990 death->work.type = BINDER_WORK_DEAD_BINDER_AND_CLEAR;
3992 binder_inner_proc_unlock(proc);
3994 binder_node_unlock(ref->node);
3995 binder_proc_unlock(proc);
3997 case BC_DEAD_BINDER_DONE: {
3998 struct binder_work *w;
3999 binder_uintptr_t cookie;
4000 struct binder_ref_death *death = NULL;
4002 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
4005 ptr += sizeof(cookie);
4006 binder_inner_proc_lock(proc);
4007 list_for_each_entry(w, &proc->delivered_death,
4009 struct binder_ref_death *tmp_death =
4011 struct binder_ref_death,
4014 if (tmp_death->cookie == cookie) {
4019 binder_debug(BINDER_DEBUG_DEAD_BINDER,
4020 "%d:%d BC_DEAD_BINDER_DONE %016llx found %pK\n",
4021 proc->pid, thread->pid, (u64)cookie,
4023 if (death == NULL) {
4024 binder_user_error("%d:%d BC_DEAD_BINDER_DONE %016llx not found\n",
4025 proc->pid, thread->pid, (u64)cookie);
4026 binder_inner_proc_unlock(proc);
4029 binder_dequeue_work_ilocked(&death->work);
4030 if (death->work.type == BINDER_WORK_DEAD_BINDER_AND_CLEAR) {
4031 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION;
4032 if (thread->looper &
4033 (BINDER_LOOPER_STATE_REGISTERED |
4034 BINDER_LOOPER_STATE_ENTERED))
4035 binder_enqueue_thread_work_ilocked(
4036 thread, &death->work);
4038 binder_enqueue_work_ilocked(
4041 binder_wakeup_proc_ilocked(proc);
4044 binder_inner_proc_unlock(proc);
4048 pr_err("%d:%d unknown command %d\n",
4049 proc->pid, thread->pid, cmd);
4052 *consumed = ptr - buffer;
4057 static void binder_stat_br(struct binder_proc *proc,
4058 struct binder_thread *thread, uint32_t cmd)
4060 trace_binder_return(cmd);
4061 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.br)) {
4062 atomic_inc(&binder_stats.br[_IOC_NR(cmd)]);
4063 atomic_inc(&proc->stats.br[_IOC_NR(cmd)]);
4064 atomic_inc(&thread->stats.br[_IOC_NR(cmd)]);
4068 static int binder_put_node_cmd(struct binder_proc *proc,
4069 struct binder_thread *thread,
4071 binder_uintptr_t node_ptr,
4072 binder_uintptr_t node_cookie,
4074 uint32_t cmd, const char *cmd_name)
4076 void __user *ptr = *ptrp;
4078 if (put_user(cmd, (uint32_t __user *)ptr))
4080 ptr += sizeof(uint32_t);
4082 if (put_user(node_ptr, (binder_uintptr_t __user *)ptr))
4084 ptr += sizeof(binder_uintptr_t);
4086 if (put_user(node_cookie, (binder_uintptr_t __user *)ptr))
4088 ptr += sizeof(binder_uintptr_t);
4090 binder_stat_br(proc, thread, cmd);
4091 binder_debug(BINDER_DEBUG_USER_REFS, "%d:%d %s %d u%016llx c%016llx\n",
4092 proc->pid, thread->pid, cmd_name, node_debug_id,
4093 (u64)node_ptr, (u64)node_cookie);
4099 static int binder_wait_for_work(struct binder_thread *thread,
4103 struct binder_proc *proc = thread->proc;
4106 freezer_do_not_count();
4107 binder_inner_proc_lock(proc);
4109 prepare_to_wait(&thread->wait, &wait, TASK_INTERRUPTIBLE);
4110 if (binder_has_work_ilocked(thread, do_proc_work))
4113 list_add(&thread->waiting_thread_node,
4114 &proc->waiting_threads);
4115 binder_inner_proc_unlock(proc);
4117 binder_inner_proc_lock(proc);
4118 list_del_init(&thread->waiting_thread_node);
4119 if (signal_pending(current)) {
4124 finish_wait(&thread->wait, &wait);
4125 binder_inner_proc_unlock(proc);
4132 * binder_apply_fd_fixups() - finish fd translation
4133 * @proc: binder_proc associated @t->buffer
4134 * @t: binder transaction with list of fd fixups
4136 * Now that we are in the context of the transaction target
4137 * process, we can allocate and install fds. Process the
4138 * list of fds to translate and fixup the buffer with the
4141 * If we fail to allocate an fd, then free the resources by
4142 * fput'ing files that have not been processed and ksys_close'ing
4143 * any fds that have already been allocated.
4145 static int binder_apply_fd_fixups(struct binder_proc *proc,
4146 struct binder_transaction *t)
4148 struct binder_txn_fd_fixup *fixup, *tmp;
4151 list_for_each_entry(fixup, &t->fd_fixups, fixup_entry) {
4152 int fd = get_unused_fd_flags(O_CLOEXEC);
4155 binder_debug(BINDER_DEBUG_TRANSACTION,
4156 "failed fd fixup txn %d fd %d\n",
4161 binder_debug(BINDER_DEBUG_TRANSACTION,
4162 "fd fixup txn %d fd %d\n",
4164 trace_binder_transaction_fd_recv(t, fd, fixup->offset);
4165 fd_install(fd, fixup->file);
4167 if (binder_alloc_copy_to_buffer(&proc->alloc, t->buffer,
4174 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) {
4181 err = binder_alloc_copy_from_buffer(&proc->alloc, &fd,
4187 binder_deferred_fd_close(fd);
4189 list_del(&fixup->fixup_entry);
4196 static int binder_thread_read(struct binder_proc *proc,
4197 struct binder_thread *thread,
4198 binder_uintptr_t binder_buffer, size_t size,
4199 binder_size_t *consumed, int non_block)
4201 void __user *buffer = (void __user *)(uintptr_t)binder_buffer;
4202 void __user *ptr = buffer + *consumed;
4203 void __user *end = buffer + size;
4206 int wait_for_proc_work;
4208 if (*consumed == 0) {
4209 if (put_user(BR_NOOP, (uint32_t __user *)ptr))
4211 ptr += sizeof(uint32_t);
4215 binder_inner_proc_lock(proc);
4216 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread);
4217 binder_inner_proc_unlock(proc);
4219 thread->looper |= BINDER_LOOPER_STATE_WAITING;
4221 trace_binder_wait_for_work(wait_for_proc_work,
4222 !!thread->transaction_stack,
4223 !binder_worklist_empty(proc, &thread->todo));
4224 if (wait_for_proc_work) {
4225 if (!(thread->looper & (BINDER_LOOPER_STATE_REGISTERED |
4226 BINDER_LOOPER_STATE_ENTERED))) {
4227 binder_user_error("%d:%d ERROR: Thread waiting for process work before calling BC_REGISTER_LOOPER or BC_ENTER_LOOPER (state %x)\n",
4228 proc->pid, thread->pid, thread->looper);
4229 wait_event_interruptible(binder_user_error_wait,
4230 binder_stop_on_user_error < 2);
4232 binder_set_nice(proc->default_priority);
4236 if (!binder_has_work(thread, wait_for_proc_work))
4239 ret = binder_wait_for_work(thread, wait_for_proc_work);
4242 thread->looper &= ~BINDER_LOOPER_STATE_WAITING;
4249 struct binder_transaction_data_secctx tr;
4250 struct binder_transaction_data *trd = &tr.transaction_data;
4251 struct binder_work *w = NULL;
4252 struct list_head *list = NULL;
4253 struct binder_transaction *t = NULL;
4254 struct binder_thread *t_from;
4255 size_t trsize = sizeof(*trd);
4257 binder_inner_proc_lock(proc);
4258 if (!binder_worklist_empty_ilocked(&thread->todo))
4259 list = &thread->todo;
4260 else if (!binder_worklist_empty_ilocked(&proc->todo) &&
4264 binder_inner_proc_unlock(proc);
4267 if (ptr - buffer == 4 && !thread->looper_need_return)
4272 if (end - ptr < sizeof(tr) + 4) {
4273 binder_inner_proc_unlock(proc);
4276 w = binder_dequeue_work_head_ilocked(list);
4277 if (binder_worklist_empty_ilocked(&thread->todo))
4278 thread->process_todo = false;
4281 case BINDER_WORK_TRANSACTION: {
4282 binder_inner_proc_unlock(proc);
4283 t = container_of(w, struct binder_transaction, work);
4285 case BINDER_WORK_RETURN_ERROR: {
4286 struct binder_error *e = container_of(
4287 w, struct binder_error, work);
4289 WARN_ON(e->cmd == BR_OK);
4290 binder_inner_proc_unlock(proc);
4291 if (put_user(e->cmd, (uint32_t __user *)ptr))
4295 ptr += sizeof(uint32_t);
4297 binder_stat_br(proc, thread, cmd);
4299 case BINDER_WORK_TRANSACTION_COMPLETE: {
4300 binder_inner_proc_unlock(proc);
4301 cmd = BR_TRANSACTION_COMPLETE;
4303 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
4304 if (put_user(cmd, (uint32_t __user *)ptr))
4306 ptr += sizeof(uint32_t);
4308 binder_stat_br(proc, thread, cmd);
4309 binder_debug(BINDER_DEBUG_TRANSACTION_COMPLETE,
4310 "%d:%d BR_TRANSACTION_COMPLETE\n",
4311 proc->pid, thread->pid);
4313 case BINDER_WORK_NODE: {
4314 struct binder_node *node = container_of(w, struct binder_node, work);
4316 binder_uintptr_t node_ptr = node->ptr;
4317 binder_uintptr_t node_cookie = node->cookie;
4318 int node_debug_id = node->debug_id;
4321 void __user *orig_ptr = ptr;
4323 BUG_ON(proc != node->proc);
4324 strong = node->internal_strong_refs ||
4325 node->local_strong_refs;
4326 weak = !hlist_empty(&node->refs) ||
4327 node->local_weak_refs ||
4328 node->tmp_refs || strong;
4329 has_strong_ref = node->has_strong_ref;
4330 has_weak_ref = node->has_weak_ref;
4332 if (weak && !has_weak_ref) {
4333 node->has_weak_ref = 1;
4334 node->pending_weak_ref = 1;
4335 node->local_weak_refs++;
4337 if (strong && !has_strong_ref) {
4338 node->has_strong_ref = 1;
4339 node->pending_strong_ref = 1;
4340 node->local_strong_refs++;
4342 if (!strong && has_strong_ref)
4343 node->has_strong_ref = 0;
4344 if (!weak && has_weak_ref)
4345 node->has_weak_ref = 0;
4346 if (!weak && !strong) {
4347 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
4348 "%d:%d node %d u%016llx c%016llx deleted\n",
4349 proc->pid, thread->pid,
4353 rb_erase(&node->rb_node, &proc->nodes);
4354 binder_inner_proc_unlock(proc);
4355 binder_node_lock(node);
4357 * Acquire the node lock before freeing the
4358 * node to serialize with other threads that
4359 * may have been holding the node lock while
4360 * decrementing this node (avoids race where
4361 * this thread frees while the other thread
4362 * is unlocking the node after the final
4365 binder_node_unlock(node);
4366 binder_free_node(node);
4368 binder_inner_proc_unlock(proc);
4370 if (weak && !has_weak_ref)
4371 ret = binder_put_node_cmd(
4372 proc, thread, &ptr, node_ptr,
4373 node_cookie, node_debug_id,
4374 BR_INCREFS, "BR_INCREFS");
4375 if (!ret && strong && !has_strong_ref)
4376 ret = binder_put_node_cmd(
4377 proc, thread, &ptr, node_ptr,
4378 node_cookie, node_debug_id,
4379 BR_ACQUIRE, "BR_ACQUIRE");
4380 if (!ret && !strong && has_strong_ref)
4381 ret = binder_put_node_cmd(
4382 proc, thread, &ptr, node_ptr,
4383 node_cookie, node_debug_id,
4384 BR_RELEASE, "BR_RELEASE");
4385 if (!ret && !weak && has_weak_ref)
4386 ret = binder_put_node_cmd(
4387 proc, thread, &ptr, node_ptr,
4388 node_cookie, node_debug_id,
4389 BR_DECREFS, "BR_DECREFS");
4390 if (orig_ptr == ptr)
4391 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
4392 "%d:%d node %d u%016llx c%016llx state unchanged\n",
4393 proc->pid, thread->pid,
4400 case BINDER_WORK_DEAD_BINDER:
4401 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
4402 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: {
4403 struct binder_ref_death *death;
4405 binder_uintptr_t cookie;
4407 death = container_of(w, struct binder_ref_death, work);
4408 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION)
4409 cmd = BR_CLEAR_DEATH_NOTIFICATION_DONE;
4411 cmd = BR_DEAD_BINDER;
4412 cookie = death->cookie;
4414 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION,
4415 "%d:%d %s %016llx\n",
4416 proc->pid, thread->pid,
4417 cmd == BR_DEAD_BINDER ?
4419 "BR_CLEAR_DEATH_NOTIFICATION_DONE",
4421 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) {
4422 binder_inner_proc_unlock(proc);
4424 binder_stats_deleted(BINDER_STAT_DEATH);
4426 binder_enqueue_work_ilocked(
4427 w, &proc->delivered_death);
4428 binder_inner_proc_unlock(proc);
4430 if (put_user(cmd, (uint32_t __user *)ptr))
4432 ptr += sizeof(uint32_t);
4433 if (put_user(cookie,
4434 (binder_uintptr_t __user *)ptr))
4436 ptr += sizeof(binder_uintptr_t);
4437 binder_stat_br(proc, thread, cmd);
4438 if (cmd == BR_DEAD_BINDER)
4439 goto done; /* DEAD_BINDER notifications can cause transactions */
4442 binder_inner_proc_unlock(proc);
4443 pr_err("%d:%d: bad work type %d\n",
4444 proc->pid, thread->pid, w->type);
4451 BUG_ON(t->buffer == NULL);
4452 if (t->buffer->target_node) {
4453 struct binder_node *target_node = t->buffer->target_node;
4455 trd->target.ptr = target_node->ptr;
4456 trd->cookie = target_node->cookie;
4457 t->saved_priority = task_nice(current);
4458 if (t->priority < target_node->min_priority &&
4459 !(t->flags & TF_ONE_WAY))
4460 binder_set_nice(t->priority);
4461 else if (!(t->flags & TF_ONE_WAY) ||
4462 t->saved_priority > target_node->min_priority)
4463 binder_set_nice(target_node->min_priority);
4464 cmd = BR_TRANSACTION;
4466 trd->target.ptr = 0;
4470 trd->code = t->code;
4471 trd->flags = t->flags;
4472 trd->sender_euid = from_kuid(current_user_ns(), t->sender_euid);
4474 t_from = binder_get_txn_from(t);
4476 struct task_struct *sender = t_from->proc->tsk;
4479 task_tgid_nr_ns(sender,
4480 task_active_pid_ns(current));
4482 trd->sender_pid = 0;
4485 ret = binder_apply_fd_fixups(proc, t);
4487 struct binder_buffer *buffer = t->buffer;
4488 bool oneway = !!(t->flags & TF_ONE_WAY);
4489 int tid = t->debug_id;
4492 binder_thread_dec_tmpref(t_from);
4493 buffer->transaction = NULL;
4494 binder_cleanup_transaction(t, "fd fixups failed",
4496 binder_free_buf(proc, buffer);
4497 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
4498 "%d:%d %stransaction %d fd fixups failed %d/%d, line %d\n",
4499 proc->pid, thread->pid,
4501 (cmd == BR_REPLY ? "reply " : ""),
4502 tid, BR_FAILED_REPLY, ret, __LINE__);
4503 if (cmd == BR_REPLY) {
4504 cmd = BR_FAILED_REPLY;
4505 if (put_user(cmd, (uint32_t __user *)ptr))
4507 ptr += sizeof(uint32_t);
4508 binder_stat_br(proc, thread, cmd);
4513 trd->data_size = t->buffer->data_size;
4514 trd->offsets_size = t->buffer->offsets_size;
4515 trd->data.ptr.buffer = (uintptr_t)t->buffer->user_data;
4516 trd->data.ptr.offsets = trd->data.ptr.buffer +
4517 ALIGN(t->buffer->data_size,
4520 tr.secctx = t->security_ctx;
4521 if (t->security_ctx) {
4522 cmd = BR_TRANSACTION_SEC_CTX;
4523 trsize = sizeof(tr);
4525 if (put_user(cmd, (uint32_t __user *)ptr)) {
4527 binder_thread_dec_tmpref(t_from);
4529 binder_cleanup_transaction(t, "put_user failed",
4534 ptr += sizeof(uint32_t);
4535 if (copy_to_user(ptr, &tr, trsize)) {
4537 binder_thread_dec_tmpref(t_from);
4539 binder_cleanup_transaction(t, "copy_to_user failed",
4546 trace_binder_transaction_received(t);
4547 binder_stat_br(proc, thread, cmd);
4548 binder_debug(BINDER_DEBUG_TRANSACTION,
4549 "%d:%d %s %d %d:%d, cmd %d size %zd-%zd ptr %016llx-%016llx\n",
4550 proc->pid, thread->pid,
4551 (cmd == BR_TRANSACTION) ? "BR_TRANSACTION" :
4552 (cmd == BR_TRANSACTION_SEC_CTX) ?
4553 "BR_TRANSACTION_SEC_CTX" : "BR_REPLY",
4554 t->debug_id, t_from ? t_from->proc->pid : 0,
4555 t_from ? t_from->pid : 0, cmd,
4556 t->buffer->data_size, t->buffer->offsets_size,
4557 (u64)trd->data.ptr.buffer,
4558 (u64)trd->data.ptr.offsets);
4561 binder_thread_dec_tmpref(t_from);
4562 t->buffer->allow_user_free = 1;
4563 if (cmd != BR_REPLY && !(t->flags & TF_ONE_WAY)) {
4564 binder_inner_proc_lock(thread->proc);
4565 t->to_parent = thread->transaction_stack;
4566 t->to_thread = thread;
4567 thread->transaction_stack = t;
4568 binder_inner_proc_unlock(thread->proc);
4570 binder_free_transaction(t);
4577 *consumed = ptr - buffer;
4578 binder_inner_proc_lock(proc);
4579 if (proc->requested_threads == 0 &&
4580 list_empty(&thread->proc->waiting_threads) &&
4581 proc->requested_threads_started < proc->max_threads &&
4582 (thread->looper & (BINDER_LOOPER_STATE_REGISTERED |
4583 BINDER_LOOPER_STATE_ENTERED)) /* the user-space code fails to */
4584 /*spawn a new thread if we leave this out */) {
4585 proc->requested_threads++;
4586 binder_inner_proc_unlock(proc);
4587 binder_debug(BINDER_DEBUG_THREADS,
4588 "%d:%d BR_SPAWN_LOOPER\n",
4589 proc->pid, thread->pid);
4590 if (put_user(BR_SPAWN_LOOPER, (uint32_t __user *)buffer))
4592 binder_stat_br(proc, thread, BR_SPAWN_LOOPER);
4594 binder_inner_proc_unlock(proc);
4598 static void binder_release_work(struct binder_proc *proc,
4599 struct list_head *list)
4601 struct binder_work *w;
4604 w = binder_dequeue_work_head(proc, list);
4609 case BINDER_WORK_TRANSACTION: {
4610 struct binder_transaction *t;
4612 t = container_of(w, struct binder_transaction, work);
4614 binder_cleanup_transaction(t, "process died.",
4617 case BINDER_WORK_RETURN_ERROR: {
4618 struct binder_error *e = container_of(
4619 w, struct binder_error, work);
4621 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
4622 "undelivered TRANSACTION_ERROR: %u\n",
4625 case BINDER_WORK_TRANSACTION_COMPLETE: {
4626 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
4627 "undelivered TRANSACTION_COMPLETE\n");
4629 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
4631 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
4632 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: {
4633 struct binder_ref_death *death;
4635 death = container_of(w, struct binder_ref_death, work);
4636 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
4637 "undelivered death notification, %016llx\n",
4638 (u64)death->cookie);
4640 binder_stats_deleted(BINDER_STAT_DEATH);
4643 pr_err("unexpected work type, %d, not freed\n",
4651 static struct binder_thread *binder_get_thread_ilocked(
4652 struct binder_proc *proc, struct binder_thread *new_thread)
4654 struct binder_thread *thread = NULL;
4655 struct rb_node *parent = NULL;
4656 struct rb_node **p = &proc->threads.rb_node;
4660 thread = rb_entry(parent, struct binder_thread, rb_node);
4662 if (current->pid < thread->pid)
4664 else if (current->pid > thread->pid)
4665 p = &(*p)->rb_right;
4671 thread = new_thread;
4672 binder_stats_created(BINDER_STAT_THREAD);
4673 thread->proc = proc;
4674 thread->pid = current->pid;
4675 atomic_set(&thread->tmp_ref, 0);
4676 init_waitqueue_head(&thread->wait);
4677 INIT_LIST_HEAD(&thread->todo);
4678 rb_link_node(&thread->rb_node, parent, p);
4679 rb_insert_color(&thread->rb_node, &proc->threads);
4680 thread->looper_need_return = true;
4681 thread->return_error.work.type = BINDER_WORK_RETURN_ERROR;
4682 thread->return_error.cmd = BR_OK;
4683 thread->reply_error.work.type = BINDER_WORK_RETURN_ERROR;
4684 thread->reply_error.cmd = BR_OK;
4685 INIT_LIST_HEAD(&new_thread->waiting_thread_node);
4689 static struct binder_thread *binder_get_thread(struct binder_proc *proc)
4691 struct binder_thread *thread;
4692 struct binder_thread *new_thread;
4694 binder_inner_proc_lock(proc);
4695 thread = binder_get_thread_ilocked(proc, NULL);
4696 binder_inner_proc_unlock(proc);
4698 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL);
4699 if (new_thread == NULL)
4701 binder_inner_proc_lock(proc);
4702 thread = binder_get_thread_ilocked(proc, new_thread);
4703 binder_inner_proc_unlock(proc);
4704 if (thread != new_thread)
4710 static void binder_free_proc(struct binder_proc *proc)
4712 BUG_ON(!list_empty(&proc->todo));
4713 BUG_ON(!list_empty(&proc->delivered_death));
4714 binder_alloc_deferred_release(&proc->alloc);
4715 put_task_struct(proc->tsk);
4716 binder_stats_deleted(BINDER_STAT_PROC);
4720 static void binder_free_thread(struct binder_thread *thread)
4722 BUG_ON(!list_empty(&thread->todo));
4723 binder_stats_deleted(BINDER_STAT_THREAD);
4724 binder_proc_dec_tmpref(thread->proc);
4728 static int binder_thread_release(struct binder_proc *proc,
4729 struct binder_thread *thread)
4731 struct binder_transaction *t;
4732 struct binder_transaction *send_reply = NULL;
4733 int active_transactions = 0;
4734 struct binder_transaction *last_t = NULL;
4736 binder_inner_proc_lock(thread->proc);
4738 * take a ref on the proc so it survives
4739 * after we remove this thread from proc->threads.
4740 * The corresponding dec is when we actually
4741 * free the thread in binder_free_thread()
4745 * take a ref on this thread to ensure it
4746 * survives while we are releasing it
4748 atomic_inc(&thread->tmp_ref);
4749 rb_erase(&thread->rb_node, &proc->threads);
4750 t = thread->transaction_stack;
4752 spin_lock(&t->lock);
4753 if (t->to_thread == thread)
4756 __acquire(&t->lock);
4758 thread->is_dead = true;
4762 active_transactions++;
4763 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
4764 "release %d:%d transaction %d %s, still active\n",
4765 proc->pid, thread->pid,
4767 (t->to_thread == thread) ? "in" : "out");
4769 if (t->to_thread == thread) {
4771 t->to_thread = NULL;
4773 t->buffer->transaction = NULL;
4777 } else if (t->from == thread) {
4782 spin_unlock(&last_t->lock);
4784 spin_lock(&t->lock);
4786 __acquire(&t->lock);
4788 /* annotation for sparse, lock not acquired in last iteration above */
4789 __release(&t->lock);
4792 * If this thread used poll, make sure we remove the waitqueue
4793 * from any epoll data structures holding it with POLLFREE.
4794 * waitqueue_active() is safe to use here because we're holding
4797 if ((thread->looper & BINDER_LOOPER_STATE_POLL) &&
4798 waitqueue_active(&thread->wait)) {
4799 wake_up_poll(&thread->wait, EPOLLHUP | POLLFREE);
4802 binder_inner_proc_unlock(thread->proc);
4805 * This is needed to avoid races between wake_up_poll() above and
4806 * and ep_remove_waitqueue() called for other reasons (eg the epoll file
4807 * descriptor being closed); ep_remove_waitqueue() holds an RCU read
4808 * lock, so we can be sure it's done after calling synchronize_rcu().
4810 if (thread->looper & BINDER_LOOPER_STATE_POLL)
4814 binder_send_failed_reply(send_reply, BR_DEAD_REPLY);
4815 binder_release_work(proc, &thread->todo);
4816 binder_thread_dec_tmpref(thread);
4817 return active_transactions;
4820 static __poll_t binder_poll(struct file *filp,
4821 struct poll_table_struct *wait)
4823 struct binder_proc *proc = filp->private_data;
4824 struct binder_thread *thread = NULL;
4825 bool wait_for_proc_work;
4827 thread = binder_get_thread(proc);
4831 binder_inner_proc_lock(thread->proc);
4832 thread->looper |= BINDER_LOOPER_STATE_POLL;
4833 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread);
4835 binder_inner_proc_unlock(thread->proc);
4837 poll_wait(filp, &thread->wait, wait);
4839 if (binder_has_work(thread, wait_for_proc_work))
4845 static int binder_ioctl_write_read(struct file *filp,
4846 unsigned int cmd, unsigned long arg,
4847 struct binder_thread *thread)
4850 struct binder_proc *proc = filp->private_data;
4851 unsigned int size = _IOC_SIZE(cmd);
4852 void __user *ubuf = (void __user *)arg;
4853 struct binder_write_read bwr;
4855 if (size != sizeof(struct binder_write_read)) {
4859 if (copy_from_user(&bwr, ubuf, sizeof(bwr))) {
4863 binder_debug(BINDER_DEBUG_READ_WRITE,
4864 "%d:%d write %lld at %016llx, read %lld at %016llx\n",
4865 proc->pid, thread->pid,
4866 (u64)bwr.write_size, (u64)bwr.write_buffer,
4867 (u64)bwr.read_size, (u64)bwr.read_buffer);
4869 if (bwr.write_size > 0) {
4870 ret = binder_thread_write(proc, thread,
4873 &bwr.write_consumed);
4874 trace_binder_write_done(ret);
4876 bwr.read_consumed = 0;
4877 if (copy_to_user(ubuf, &bwr, sizeof(bwr)))
4882 if (bwr.read_size > 0) {
4883 ret = binder_thread_read(proc, thread, bwr.read_buffer,
4886 filp->f_flags & O_NONBLOCK);
4887 trace_binder_read_done(ret);
4888 binder_inner_proc_lock(proc);
4889 if (!binder_worklist_empty_ilocked(&proc->todo))
4890 binder_wakeup_proc_ilocked(proc);
4891 binder_inner_proc_unlock(proc);
4893 if (copy_to_user(ubuf, &bwr, sizeof(bwr)))
4898 binder_debug(BINDER_DEBUG_READ_WRITE,
4899 "%d:%d wrote %lld of %lld, read return %lld of %lld\n",
4900 proc->pid, thread->pid,
4901 (u64)bwr.write_consumed, (u64)bwr.write_size,
4902 (u64)bwr.read_consumed, (u64)bwr.read_size);
4903 if (copy_to_user(ubuf, &bwr, sizeof(bwr))) {
4911 static int binder_ioctl_set_ctx_mgr(struct file *filp,
4912 struct flat_binder_object *fbo)
4915 struct binder_proc *proc = filp->private_data;
4916 struct binder_context *context = proc->context;
4917 struct binder_node *new_node;
4918 kuid_t curr_euid = current_euid();
4920 mutex_lock(&context->context_mgr_node_lock);
4921 if (context->binder_context_mgr_node) {
4922 pr_err("BINDER_SET_CONTEXT_MGR already set\n");
4926 ret = security_binder_set_context_mgr(proc->tsk);
4929 if (uid_valid(context->binder_context_mgr_uid)) {
4930 if (!uid_eq(context->binder_context_mgr_uid, curr_euid)) {
4931 pr_err("BINDER_SET_CONTEXT_MGR bad uid %d != %d\n",
4932 from_kuid(&init_user_ns, curr_euid),
4933 from_kuid(&init_user_ns,
4934 context->binder_context_mgr_uid));
4939 context->binder_context_mgr_uid = curr_euid;
4941 new_node = binder_new_node(proc, fbo);
4946 binder_node_lock(new_node);
4947 new_node->local_weak_refs++;
4948 new_node->local_strong_refs++;
4949 new_node->has_strong_ref = 1;
4950 new_node->has_weak_ref = 1;
4951 context->binder_context_mgr_node = new_node;
4952 binder_node_unlock(new_node);
4953 binder_put_node(new_node);
4955 mutex_unlock(&context->context_mgr_node_lock);
4959 static int binder_ioctl_get_node_info_for_ref(struct binder_proc *proc,
4960 struct binder_node_info_for_ref *info)
4962 struct binder_node *node;
4963 struct binder_context *context = proc->context;
4964 __u32 handle = info->handle;
4966 if (info->strong_count || info->weak_count || info->reserved1 ||
4967 info->reserved2 || info->reserved3) {
4968 binder_user_error("%d BINDER_GET_NODE_INFO_FOR_REF: only handle may be non-zero.",
4973 /* This ioctl may only be used by the context manager */
4974 mutex_lock(&context->context_mgr_node_lock);
4975 if (!context->binder_context_mgr_node ||
4976 context->binder_context_mgr_node->proc != proc) {
4977 mutex_unlock(&context->context_mgr_node_lock);
4980 mutex_unlock(&context->context_mgr_node_lock);
4982 node = binder_get_node_from_ref(proc, handle, true, NULL);
4986 info->strong_count = node->local_strong_refs +
4987 node->internal_strong_refs;
4988 info->weak_count = node->local_weak_refs;
4990 binder_put_node(node);
4995 static int binder_ioctl_get_node_debug_info(struct binder_proc *proc,
4996 struct binder_node_debug_info *info)
4999 binder_uintptr_t ptr = info->ptr;
5001 memset(info, 0, sizeof(*info));
5003 binder_inner_proc_lock(proc);
5004 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) {
5005 struct binder_node *node = rb_entry(n, struct binder_node,
5007 if (node->ptr > ptr) {
5008 info->ptr = node->ptr;
5009 info->cookie = node->cookie;
5010 info->has_strong_ref = node->has_strong_ref;
5011 info->has_weak_ref = node->has_weak_ref;
5015 binder_inner_proc_unlock(proc);
5020 static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
5023 struct binder_proc *proc = filp->private_data;
5024 struct binder_thread *thread;
5025 unsigned int size = _IOC_SIZE(cmd);
5026 void __user *ubuf = (void __user *)arg;
5028 /*pr_info("binder_ioctl: %d:%d %x %lx\n",
5029 proc->pid, current->pid, cmd, arg);*/
5031 binder_selftest_alloc(&proc->alloc);
5033 trace_binder_ioctl(cmd, arg);
5035 ret = wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2);
5039 thread = binder_get_thread(proc);
5040 if (thread == NULL) {
5046 case BINDER_WRITE_READ:
5047 ret = binder_ioctl_write_read(filp, cmd, arg, thread);
5051 case BINDER_SET_MAX_THREADS: {
5054 if (copy_from_user(&max_threads, ubuf,
5055 sizeof(max_threads))) {
5059 binder_inner_proc_lock(proc);
5060 proc->max_threads = max_threads;
5061 binder_inner_proc_unlock(proc);
5064 case BINDER_SET_CONTEXT_MGR_EXT: {
5065 struct flat_binder_object fbo;
5067 if (copy_from_user(&fbo, ubuf, sizeof(fbo))) {
5071 ret = binder_ioctl_set_ctx_mgr(filp, &fbo);
5076 case BINDER_SET_CONTEXT_MGR:
5077 ret = binder_ioctl_set_ctx_mgr(filp, NULL);
5081 case BINDER_THREAD_EXIT:
5082 binder_debug(BINDER_DEBUG_THREADS, "%d:%d exit\n",
5083 proc->pid, thread->pid);
5084 binder_thread_release(proc, thread);
5087 case BINDER_VERSION: {
5088 struct binder_version __user *ver = ubuf;
5090 if (size != sizeof(struct binder_version)) {
5094 if (put_user(BINDER_CURRENT_PROTOCOL_VERSION,
5095 &ver->protocol_version)) {
5101 case BINDER_GET_NODE_INFO_FOR_REF: {
5102 struct binder_node_info_for_ref info;
5104 if (copy_from_user(&info, ubuf, sizeof(info))) {
5109 ret = binder_ioctl_get_node_info_for_ref(proc, &info);
5113 if (copy_to_user(ubuf, &info, sizeof(info))) {
5120 case BINDER_GET_NODE_DEBUG_INFO: {
5121 struct binder_node_debug_info info;
5123 if (copy_from_user(&info, ubuf, sizeof(info))) {
5128 ret = binder_ioctl_get_node_debug_info(proc, &info);
5132 if (copy_to_user(ubuf, &info, sizeof(info))) {
5145 thread->looper_need_return = false;
5146 wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2);
5147 if (ret && ret != -ERESTARTSYS)
5148 pr_info("%d:%d ioctl %x %lx returned %d\n", proc->pid, current->pid, cmd, arg, ret);
5150 trace_binder_ioctl_done(ret);
5154 static void binder_vma_open(struct vm_area_struct *vma)
5156 struct binder_proc *proc = vma->vm_private_data;
5158 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5159 "%d open vm area %lx-%lx (%ld K) vma %lx pagep %lx\n",
5160 proc->pid, vma->vm_start, vma->vm_end,
5161 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5162 (unsigned long)pgprot_val(vma->vm_page_prot));
5165 static void binder_vma_close(struct vm_area_struct *vma)
5167 struct binder_proc *proc = vma->vm_private_data;
5169 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5170 "%d close vm area %lx-%lx (%ld K) vma %lx pagep %lx\n",
5171 proc->pid, vma->vm_start, vma->vm_end,
5172 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5173 (unsigned long)pgprot_val(vma->vm_page_prot));
5174 binder_alloc_vma_close(&proc->alloc);
5177 static vm_fault_t binder_vm_fault(struct vm_fault *vmf)
5179 return VM_FAULT_SIGBUS;
5182 static const struct vm_operations_struct binder_vm_ops = {
5183 .open = binder_vma_open,
5184 .close = binder_vma_close,
5185 .fault = binder_vm_fault,
5188 static int binder_mmap(struct file *filp, struct vm_area_struct *vma)
5191 struct binder_proc *proc = filp->private_data;
5192 const char *failure_string;
5194 if (proc->tsk != current->group_leader)
5197 if ((vma->vm_end - vma->vm_start) > SZ_4M)
5198 vma->vm_end = vma->vm_start + SZ_4M;
5200 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5201 "%s: %d %lx-%lx (%ld K) vma %lx pagep %lx\n",
5202 __func__, proc->pid, vma->vm_start, vma->vm_end,
5203 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5204 (unsigned long)pgprot_val(vma->vm_page_prot));
5206 if (vma->vm_flags & FORBIDDEN_MMAP_FLAGS) {
5208 failure_string = "bad vm_flags";
5211 vma->vm_flags |= VM_DONTCOPY | VM_MIXEDMAP;
5212 vma->vm_flags &= ~VM_MAYWRITE;
5214 vma->vm_ops = &binder_vm_ops;
5215 vma->vm_private_data = proc;
5217 ret = binder_alloc_mmap_handler(&proc->alloc, vma);
5223 pr_err("%s: %d %lx-%lx %s failed %d\n", __func__,
5224 proc->pid, vma->vm_start, vma->vm_end, failure_string, ret);
5228 static int binder_open(struct inode *nodp, struct file *filp)
5230 struct binder_proc *proc;
5231 struct binder_device *binder_dev;
5233 binder_debug(BINDER_DEBUG_OPEN_CLOSE, "%s: %d:%d\n", __func__,
5234 current->group_leader->pid, current->pid);
5236 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
5239 spin_lock_init(&proc->inner_lock);
5240 spin_lock_init(&proc->outer_lock);
5241 get_task_struct(current->group_leader);
5242 proc->tsk = current->group_leader;
5243 INIT_LIST_HEAD(&proc->todo);
5244 proc->default_priority = task_nice(current);
5245 /* binderfs stashes devices in i_private */
5246 if (is_binderfs_device(nodp))
5247 binder_dev = nodp->i_private;
5249 binder_dev = container_of(filp->private_data,
5250 struct binder_device, miscdev);
5251 proc->context = &binder_dev->context;
5252 binder_alloc_init(&proc->alloc);
5254 binder_stats_created(BINDER_STAT_PROC);
5255 proc->pid = current->group_leader->pid;
5256 INIT_LIST_HEAD(&proc->delivered_death);
5257 INIT_LIST_HEAD(&proc->waiting_threads);
5258 filp->private_data = proc;
5260 mutex_lock(&binder_procs_lock);
5261 hlist_add_head(&proc->proc_node, &binder_procs);
5262 mutex_unlock(&binder_procs_lock);
5264 if (binder_debugfs_dir_entry_proc) {
5267 snprintf(strbuf, sizeof(strbuf), "%u", proc->pid);
5269 * proc debug entries are shared between contexts, so
5270 * this will fail if the process tries to open the driver
5271 * again with a different context. The priting code will
5272 * anyway print all contexts that a given PID has, so this
5275 proc->debugfs_entry = debugfs_create_file(strbuf, 0444,
5276 binder_debugfs_dir_entry_proc,
5277 (void *)(unsigned long)proc->pid,
5284 static int binder_flush(struct file *filp, fl_owner_t id)
5286 struct binder_proc *proc = filp->private_data;
5288 binder_defer_work(proc, BINDER_DEFERRED_FLUSH);
5293 static void binder_deferred_flush(struct binder_proc *proc)
5298 binder_inner_proc_lock(proc);
5299 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) {
5300 struct binder_thread *thread = rb_entry(n, struct binder_thread, rb_node);
5302 thread->looper_need_return = true;
5303 if (thread->looper & BINDER_LOOPER_STATE_WAITING) {
5304 wake_up_interruptible(&thread->wait);
5308 binder_inner_proc_unlock(proc);
5310 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5311 "binder_flush: %d woke %d threads\n", proc->pid,
5315 static int binder_release(struct inode *nodp, struct file *filp)
5317 struct binder_proc *proc = filp->private_data;
5319 debugfs_remove(proc->debugfs_entry);
5320 binder_defer_work(proc, BINDER_DEFERRED_RELEASE);
5325 static int binder_node_release(struct binder_node *node, int refs)
5327 struct binder_ref *ref;
5329 struct binder_proc *proc = node->proc;
5331 binder_release_work(proc, &node->async_todo);
5333 binder_node_lock(node);
5334 binder_inner_proc_lock(proc);
5335 binder_dequeue_work_ilocked(&node->work);
5337 * The caller must have taken a temporary ref on the node,
5339 BUG_ON(!node->tmp_refs);
5340 if (hlist_empty(&node->refs) && node->tmp_refs == 1) {
5341 binder_inner_proc_unlock(proc);
5342 binder_node_unlock(node);
5343 binder_free_node(node);
5349 node->local_strong_refs = 0;
5350 node->local_weak_refs = 0;
5351 binder_inner_proc_unlock(proc);
5353 spin_lock(&binder_dead_nodes_lock);
5354 hlist_add_head(&node->dead_node, &binder_dead_nodes);
5355 spin_unlock(&binder_dead_nodes_lock);
5357 hlist_for_each_entry(ref, &node->refs, node_entry) {
5360 * Need the node lock to synchronize
5361 * with new notification requests and the
5362 * inner lock to synchronize with queued
5363 * death notifications.
5365 binder_inner_proc_lock(ref->proc);
5367 binder_inner_proc_unlock(ref->proc);
5373 BUG_ON(!list_empty(&ref->death->work.entry));
5374 ref->death->work.type = BINDER_WORK_DEAD_BINDER;
5375 binder_enqueue_work_ilocked(&ref->death->work,
5377 binder_wakeup_proc_ilocked(ref->proc);
5378 binder_inner_proc_unlock(ref->proc);
5381 binder_debug(BINDER_DEBUG_DEAD_BINDER,
5382 "node %d now dead, refs %d, death %d\n",
5383 node->debug_id, refs, death);
5384 binder_node_unlock(node);
5385 binder_put_node(node);
5390 static void binder_deferred_release(struct binder_proc *proc)
5392 struct binder_context *context = proc->context;
5394 int threads, nodes, incoming_refs, outgoing_refs, active_transactions;
5396 mutex_lock(&binder_procs_lock);
5397 hlist_del(&proc->proc_node);
5398 mutex_unlock(&binder_procs_lock);
5400 mutex_lock(&context->context_mgr_node_lock);
5401 if (context->binder_context_mgr_node &&
5402 context->binder_context_mgr_node->proc == proc) {
5403 binder_debug(BINDER_DEBUG_DEAD_BINDER,
5404 "%s: %d context_mgr_node gone\n",
5405 __func__, proc->pid);
5406 context->binder_context_mgr_node = NULL;
5408 mutex_unlock(&context->context_mgr_node_lock);
5409 binder_inner_proc_lock(proc);
5411 * Make sure proc stays alive after we
5412 * remove all the threads
5416 proc->is_dead = true;
5418 active_transactions = 0;
5419 while ((n = rb_first(&proc->threads))) {
5420 struct binder_thread *thread;
5422 thread = rb_entry(n, struct binder_thread, rb_node);
5423 binder_inner_proc_unlock(proc);
5425 active_transactions += binder_thread_release(proc, thread);
5426 binder_inner_proc_lock(proc);
5431 while ((n = rb_first(&proc->nodes))) {
5432 struct binder_node *node;
5434 node = rb_entry(n, struct binder_node, rb_node);
5437 * take a temporary ref on the node before
5438 * calling binder_node_release() which will either
5439 * kfree() the node or call binder_put_node()
5441 binder_inc_node_tmpref_ilocked(node);
5442 rb_erase(&node->rb_node, &proc->nodes);
5443 binder_inner_proc_unlock(proc);
5444 incoming_refs = binder_node_release(node, incoming_refs);
5445 binder_inner_proc_lock(proc);
5447 binder_inner_proc_unlock(proc);
5450 binder_proc_lock(proc);
5451 while ((n = rb_first(&proc->refs_by_desc))) {
5452 struct binder_ref *ref;
5454 ref = rb_entry(n, struct binder_ref, rb_node_desc);
5456 binder_cleanup_ref_olocked(ref);
5457 binder_proc_unlock(proc);
5458 binder_free_ref(ref);
5459 binder_proc_lock(proc);
5461 binder_proc_unlock(proc);
5463 binder_release_work(proc, &proc->todo);
5464 binder_release_work(proc, &proc->delivered_death);
5466 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5467 "%s: %d threads %d, nodes %d (ref %d), refs %d, active transactions %d\n",
5468 __func__, proc->pid, threads, nodes, incoming_refs,
5469 outgoing_refs, active_transactions);
5471 binder_proc_dec_tmpref(proc);
5474 static void binder_deferred_func(struct work_struct *work)
5476 struct binder_proc *proc;
5481 mutex_lock(&binder_deferred_lock);
5482 if (!hlist_empty(&binder_deferred_list)) {
5483 proc = hlist_entry(binder_deferred_list.first,
5484 struct binder_proc, deferred_work_node);
5485 hlist_del_init(&proc->deferred_work_node);
5486 defer = proc->deferred_work;
5487 proc->deferred_work = 0;
5492 mutex_unlock(&binder_deferred_lock);
5494 if (defer & BINDER_DEFERRED_FLUSH)
5495 binder_deferred_flush(proc);
5497 if (defer & BINDER_DEFERRED_RELEASE)
5498 binder_deferred_release(proc); /* frees proc */
5501 static DECLARE_WORK(binder_deferred_work, binder_deferred_func);
5504 binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer)
5506 mutex_lock(&binder_deferred_lock);
5507 proc->deferred_work |= defer;
5508 if (hlist_unhashed(&proc->deferred_work_node)) {
5509 hlist_add_head(&proc->deferred_work_node,
5510 &binder_deferred_list);
5511 schedule_work(&binder_deferred_work);
5513 mutex_unlock(&binder_deferred_lock);
5516 static void print_binder_transaction_ilocked(struct seq_file *m,
5517 struct binder_proc *proc,
5519 struct binder_transaction *t)
5521 struct binder_proc *to_proc;
5522 struct binder_buffer *buffer = t->buffer;
5524 spin_lock(&t->lock);
5525 to_proc = t->to_proc;
5527 "%s %d: %pK from %d:%d to %d:%d code %x flags %x pri %ld r%d",
5528 prefix, t->debug_id, t,
5529 t->from ? t->from->proc->pid : 0,
5530 t->from ? t->from->pid : 0,
5531 to_proc ? to_proc->pid : 0,
5532 t->to_thread ? t->to_thread->pid : 0,
5533 t->code, t->flags, t->priority, t->need_reply);
5534 spin_unlock(&t->lock);
5536 if (proc != to_proc) {
5538 * Can only safely deref buffer if we are holding the
5539 * correct proc inner lock for this node
5545 if (buffer == NULL) {
5546 seq_puts(m, " buffer free\n");
5549 if (buffer->target_node)
5550 seq_printf(m, " node %d", buffer->target_node->debug_id);
5551 seq_printf(m, " size %zd:%zd data %pK\n",
5552 buffer->data_size, buffer->offsets_size,
5556 static void print_binder_work_ilocked(struct seq_file *m,
5557 struct binder_proc *proc,
5559 const char *transaction_prefix,
5560 struct binder_work *w)
5562 struct binder_node *node;
5563 struct binder_transaction *t;
5566 case BINDER_WORK_TRANSACTION:
5567 t = container_of(w, struct binder_transaction, work);
5568 print_binder_transaction_ilocked(
5569 m, proc, transaction_prefix, t);
5571 case BINDER_WORK_RETURN_ERROR: {
5572 struct binder_error *e = container_of(
5573 w, struct binder_error, work);
5575 seq_printf(m, "%stransaction error: %u\n",
5578 case BINDER_WORK_TRANSACTION_COMPLETE:
5579 seq_printf(m, "%stransaction complete\n", prefix);
5581 case BINDER_WORK_NODE:
5582 node = container_of(w, struct binder_node, work);
5583 seq_printf(m, "%snode work %d: u%016llx c%016llx\n",
5584 prefix, node->debug_id,
5585 (u64)node->ptr, (u64)node->cookie);
5587 case BINDER_WORK_DEAD_BINDER:
5588 seq_printf(m, "%shas dead binder\n", prefix);
5590 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
5591 seq_printf(m, "%shas cleared dead binder\n", prefix);
5593 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION:
5594 seq_printf(m, "%shas cleared death notification\n", prefix);
5597 seq_printf(m, "%sunknown work: type %d\n", prefix, w->type);
5602 static void print_binder_thread_ilocked(struct seq_file *m,
5603 struct binder_thread *thread,
5606 struct binder_transaction *t;
5607 struct binder_work *w;
5608 size_t start_pos = m->count;
5611 seq_printf(m, " thread %d: l %02x need_return %d tr %d\n",
5612 thread->pid, thread->looper,
5613 thread->looper_need_return,
5614 atomic_read(&thread->tmp_ref));
5615 header_pos = m->count;
5616 t = thread->transaction_stack;
5618 if (t->from == thread) {
5619 print_binder_transaction_ilocked(m, thread->proc,
5620 " outgoing transaction", t);
5622 } else if (t->to_thread == thread) {
5623 print_binder_transaction_ilocked(m, thread->proc,
5624 " incoming transaction", t);
5627 print_binder_transaction_ilocked(m, thread->proc,
5628 " bad transaction", t);
5632 list_for_each_entry(w, &thread->todo, entry) {
5633 print_binder_work_ilocked(m, thread->proc, " ",
5634 " pending transaction", w);
5636 if (!print_always && m->count == header_pos)
5637 m->count = start_pos;
5640 static void print_binder_node_nilocked(struct seq_file *m,
5641 struct binder_node *node)
5643 struct binder_ref *ref;
5644 struct binder_work *w;
5648 hlist_for_each_entry(ref, &node->refs, node_entry)
5651 seq_printf(m, " node %d: u%016llx c%016llx hs %d hw %d ls %d lw %d is %d iw %d tr %d",
5652 node->debug_id, (u64)node->ptr, (u64)node->cookie,
5653 node->has_strong_ref, node->has_weak_ref,
5654 node->local_strong_refs, node->local_weak_refs,
5655 node->internal_strong_refs, count, node->tmp_refs);
5657 seq_puts(m, " proc");
5658 hlist_for_each_entry(ref, &node->refs, node_entry)
5659 seq_printf(m, " %d", ref->proc->pid);
5663 list_for_each_entry(w, &node->async_todo, entry)
5664 print_binder_work_ilocked(m, node->proc, " ",
5665 " pending async transaction", w);
5669 static void print_binder_ref_olocked(struct seq_file *m,
5670 struct binder_ref *ref)
5672 binder_node_lock(ref->node);
5673 seq_printf(m, " ref %d: desc %d %snode %d s %d w %d d %pK\n",
5674 ref->data.debug_id, ref->data.desc,
5675 ref->node->proc ? "" : "dead ",
5676 ref->node->debug_id, ref->data.strong,
5677 ref->data.weak, ref->death);
5678 binder_node_unlock(ref->node);
5681 static void print_binder_proc(struct seq_file *m,
5682 struct binder_proc *proc, int print_all)
5684 struct binder_work *w;
5686 size_t start_pos = m->count;
5688 struct binder_node *last_node = NULL;
5690 seq_printf(m, "proc %d\n", proc->pid);
5691 seq_printf(m, "context %s\n", proc->context->name);
5692 header_pos = m->count;
5694 binder_inner_proc_lock(proc);
5695 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n))
5696 print_binder_thread_ilocked(m, rb_entry(n, struct binder_thread,
5697 rb_node), print_all);
5699 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) {
5700 struct binder_node *node = rb_entry(n, struct binder_node,
5702 if (!print_all && !node->has_async_transaction)
5706 * take a temporary reference on the node so it
5707 * survives and isn't removed from the tree
5708 * while we print it.
5710 binder_inc_node_tmpref_ilocked(node);
5711 /* Need to drop inner lock to take node lock */
5712 binder_inner_proc_unlock(proc);
5714 binder_put_node(last_node);
5715 binder_node_inner_lock(node);
5716 print_binder_node_nilocked(m, node);
5717 binder_node_inner_unlock(node);
5719 binder_inner_proc_lock(proc);
5721 binder_inner_proc_unlock(proc);
5723 binder_put_node(last_node);
5726 binder_proc_lock(proc);
5727 for (n = rb_first(&proc->refs_by_desc);
5730 print_binder_ref_olocked(m, rb_entry(n,
5733 binder_proc_unlock(proc);
5735 binder_alloc_print_allocated(m, &proc->alloc);
5736 binder_inner_proc_lock(proc);
5737 list_for_each_entry(w, &proc->todo, entry)
5738 print_binder_work_ilocked(m, proc, " ",
5739 " pending transaction", w);
5740 list_for_each_entry(w, &proc->delivered_death, entry) {
5741 seq_puts(m, " has delivered dead binder\n");
5744 binder_inner_proc_unlock(proc);
5745 if (!print_all && m->count == header_pos)
5746 m->count = start_pos;
5749 static const char * const binder_return_strings[] = {
5754 "BR_ACQUIRE_RESULT",
5756 "BR_TRANSACTION_COMPLETE",
5761 "BR_ATTEMPT_ACQUIRE",
5766 "BR_CLEAR_DEATH_NOTIFICATION_DONE",
5770 static const char * const binder_command_strings[] = {
5773 "BC_ACQUIRE_RESULT",
5781 "BC_ATTEMPT_ACQUIRE",
5782 "BC_REGISTER_LOOPER",
5785 "BC_REQUEST_DEATH_NOTIFICATION",
5786 "BC_CLEAR_DEATH_NOTIFICATION",
5787 "BC_DEAD_BINDER_DONE",
5788 "BC_TRANSACTION_SG",
5792 static const char * const binder_objstat_strings[] = {
5799 "transaction_complete"
5802 static void print_binder_stats(struct seq_file *m, const char *prefix,
5803 struct binder_stats *stats)
5807 BUILD_BUG_ON(ARRAY_SIZE(stats->bc) !=
5808 ARRAY_SIZE(binder_command_strings));
5809 for (i = 0; i < ARRAY_SIZE(stats->bc); i++) {
5810 int temp = atomic_read(&stats->bc[i]);
5813 seq_printf(m, "%s%s: %d\n", prefix,
5814 binder_command_strings[i], temp);
5817 BUILD_BUG_ON(ARRAY_SIZE(stats->br) !=
5818 ARRAY_SIZE(binder_return_strings));
5819 for (i = 0; i < ARRAY_SIZE(stats->br); i++) {
5820 int temp = atomic_read(&stats->br[i]);
5823 seq_printf(m, "%s%s: %d\n", prefix,
5824 binder_return_strings[i], temp);
5827 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) !=
5828 ARRAY_SIZE(binder_objstat_strings));
5829 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) !=
5830 ARRAY_SIZE(stats->obj_deleted));
5831 for (i = 0; i < ARRAY_SIZE(stats->obj_created); i++) {
5832 int created = atomic_read(&stats->obj_created[i]);
5833 int deleted = atomic_read(&stats->obj_deleted[i]);
5835 if (created || deleted)
5836 seq_printf(m, "%s%s: active %d total %d\n",
5838 binder_objstat_strings[i],
5844 static void print_binder_proc_stats(struct seq_file *m,
5845 struct binder_proc *proc)
5847 struct binder_work *w;
5848 struct binder_thread *thread;
5850 int count, strong, weak, ready_threads;
5851 size_t free_async_space =
5852 binder_alloc_get_free_async_space(&proc->alloc);
5854 seq_printf(m, "proc %d\n", proc->pid);
5855 seq_printf(m, "context %s\n", proc->context->name);
5858 binder_inner_proc_lock(proc);
5859 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n))
5862 list_for_each_entry(thread, &proc->waiting_threads, waiting_thread_node)
5865 seq_printf(m, " threads: %d\n", count);
5866 seq_printf(m, " requested threads: %d+%d/%d\n"
5867 " ready threads %d\n"
5868 " free async space %zd\n", proc->requested_threads,
5869 proc->requested_threads_started, proc->max_threads,
5873 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n))
5875 binder_inner_proc_unlock(proc);
5876 seq_printf(m, " nodes: %d\n", count);
5880 binder_proc_lock(proc);
5881 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) {
5882 struct binder_ref *ref = rb_entry(n, struct binder_ref,
5885 strong += ref->data.strong;
5886 weak += ref->data.weak;
5888 binder_proc_unlock(proc);
5889 seq_printf(m, " refs: %d s %d w %d\n", count, strong, weak);
5891 count = binder_alloc_get_allocated_count(&proc->alloc);
5892 seq_printf(m, " buffers: %d\n", count);
5894 binder_alloc_print_pages(m, &proc->alloc);
5897 binder_inner_proc_lock(proc);
5898 list_for_each_entry(w, &proc->todo, entry) {
5899 if (w->type == BINDER_WORK_TRANSACTION)
5902 binder_inner_proc_unlock(proc);
5903 seq_printf(m, " pending transactions: %d\n", count);
5905 print_binder_stats(m, " ", &proc->stats);
5909 static int state_show(struct seq_file *m, void *unused)
5911 struct binder_proc *proc;
5912 struct binder_node *node;
5913 struct binder_node *last_node = NULL;
5915 seq_puts(m, "binder state:\n");
5917 spin_lock(&binder_dead_nodes_lock);
5918 if (!hlist_empty(&binder_dead_nodes))
5919 seq_puts(m, "dead nodes:\n");
5920 hlist_for_each_entry(node, &binder_dead_nodes, dead_node) {
5922 * take a temporary reference on the node so it
5923 * survives and isn't removed from the list
5924 * while we print it.
5927 spin_unlock(&binder_dead_nodes_lock);
5929 binder_put_node(last_node);
5930 binder_node_lock(node);
5931 print_binder_node_nilocked(m, node);
5932 binder_node_unlock(node);
5934 spin_lock(&binder_dead_nodes_lock);
5936 spin_unlock(&binder_dead_nodes_lock);
5938 binder_put_node(last_node);
5940 mutex_lock(&binder_procs_lock);
5941 hlist_for_each_entry(proc, &binder_procs, proc_node)
5942 print_binder_proc(m, proc, 1);
5943 mutex_unlock(&binder_procs_lock);
5948 static int stats_show(struct seq_file *m, void *unused)
5950 struct binder_proc *proc;
5952 seq_puts(m, "binder stats:\n");
5954 print_binder_stats(m, "", &binder_stats);
5956 mutex_lock(&binder_procs_lock);
5957 hlist_for_each_entry(proc, &binder_procs, proc_node)
5958 print_binder_proc_stats(m, proc);
5959 mutex_unlock(&binder_procs_lock);
5964 static int transactions_show(struct seq_file *m, void *unused)
5966 struct binder_proc *proc;
5968 seq_puts(m, "binder transactions:\n");
5969 mutex_lock(&binder_procs_lock);
5970 hlist_for_each_entry(proc, &binder_procs, proc_node)
5971 print_binder_proc(m, proc, 0);
5972 mutex_unlock(&binder_procs_lock);
5977 static int proc_show(struct seq_file *m, void *unused)
5979 struct binder_proc *itr;
5980 int pid = (unsigned long)m->private;
5982 mutex_lock(&binder_procs_lock);
5983 hlist_for_each_entry(itr, &binder_procs, proc_node) {
5984 if (itr->pid == pid) {
5985 seq_puts(m, "binder proc state:\n");
5986 print_binder_proc(m, itr, 1);
5989 mutex_unlock(&binder_procs_lock);
5994 static void print_binder_transaction_log_entry(struct seq_file *m,
5995 struct binder_transaction_log_entry *e)
5997 int debug_id = READ_ONCE(e->debug_id_done);
5999 * read barrier to guarantee debug_id_done read before
6000 * we print the log values
6004 "%d: %s from %d:%d to %d:%d context %s node %d handle %d size %d:%d ret %d/%d l=%d",
6005 e->debug_id, (e->call_type == 2) ? "reply" :
6006 ((e->call_type == 1) ? "async" : "call "), e->from_proc,
6007 e->from_thread, e->to_proc, e->to_thread, e->context_name,
6008 e->to_node, e->target_handle, e->data_size, e->offsets_size,
6009 e->return_error, e->return_error_param,
6010 e->return_error_line);
6012 * read-barrier to guarantee read of debug_id_done after
6013 * done printing the fields of the entry
6016 seq_printf(m, debug_id && debug_id == READ_ONCE(e->debug_id_done) ?
6017 "\n" : " (incomplete)\n");
6020 static int transaction_log_show(struct seq_file *m, void *unused)
6022 struct binder_transaction_log *log = m->private;
6023 unsigned int log_cur = atomic_read(&log->cur);
6028 count = log_cur + 1;
6029 cur = count < ARRAY_SIZE(log->entry) && !log->full ?
6030 0 : count % ARRAY_SIZE(log->entry);
6031 if (count > ARRAY_SIZE(log->entry) || log->full)
6032 count = ARRAY_SIZE(log->entry);
6033 for (i = 0; i < count; i++) {
6034 unsigned int index = cur++ % ARRAY_SIZE(log->entry);
6036 print_binder_transaction_log_entry(m, &log->entry[index]);
6041 const struct file_operations binder_fops = {
6042 .owner = THIS_MODULE,
6043 .poll = binder_poll,
6044 .unlocked_ioctl = binder_ioctl,
6045 .compat_ioctl = binder_ioctl,
6046 .mmap = binder_mmap,
6047 .open = binder_open,
6048 .flush = binder_flush,
6049 .release = binder_release,
6052 DEFINE_SHOW_ATTRIBUTE(state);
6053 DEFINE_SHOW_ATTRIBUTE(stats);
6054 DEFINE_SHOW_ATTRIBUTE(transactions);
6055 DEFINE_SHOW_ATTRIBUTE(transaction_log);
6057 static int __init init_binder_device(const char *name)
6060 struct binder_device *binder_device;
6062 binder_device = kzalloc(sizeof(*binder_device), GFP_KERNEL);
6066 binder_device->miscdev.fops = &binder_fops;
6067 binder_device->miscdev.minor = MISC_DYNAMIC_MINOR;
6068 binder_device->miscdev.name = name;
6070 binder_device->context.binder_context_mgr_uid = INVALID_UID;
6071 binder_device->context.name = name;
6072 mutex_init(&binder_device->context.context_mgr_node_lock);
6074 ret = misc_register(&binder_device->miscdev);
6076 kfree(binder_device);
6080 hlist_add_head(&binder_device->hlist, &binder_devices);
6085 static int __init binder_init(void)
6088 char *device_name, *device_tmp;
6089 struct binder_device *device;
6090 struct hlist_node *tmp;
6091 char *device_names = NULL;
6093 ret = binder_alloc_shrinker_init();
6097 atomic_set(&binder_transaction_log.cur, ~0U);
6098 atomic_set(&binder_transaction_log_failed.cur, ~0U);
6100 binder_debugfs_dir_entry_root = debugfs_create_dir("binder", NULL);
6101 if (binder_debugfs_dir_entry_root)
6102 binder_debugfs_dir_entry_proc = debugfs_create_dir("proc",
6103 binder_debugfs_dir_entry_root);
6105 if (binder_debugfs_dir_entry_root) {
6106 debugfs_create_file("state",
6108 binder_debugfs_dir_entry_root,
6111 debugfs_create_file("stats",
6113 binder_debugfs_dir_entry_root,
6116 debugfs_create_file("transactions",
6118 binder_debugfs_dir_entry_root,
6120 &transactions_fops);
6121 debugfs_create_file("transaction_log",
6123 binder_debugfs_dir_entry_root,
6124 &binder_transaction_log,
6125 &transaction_log_fops);
6126 debugfs_create_file("failed_transaction_log",
6128 binder_debugfs_dir_entry_root,
6129 &binder_transaction_log_failed,
6130 &transaction_log_fops);
6133 if (strcmp(binder_devices_param, "") != 0) {
6135 * Copy the module_parameter string, because we don't want to
6136 * tokenize it in-place.
6138 device_names = kstrdup(binder_devices_param, GFP_KERNEL);
6139 if (!device_names) {
6141 goto err_alloc_device_names_failed;
6144 device_tmp = device_names;
6145 while ((device_name = strsep(&device_tmp, ","))) {
6146 ret = init_binder_device(device_name);
6148 goto err_init_binder_device_failed;
6152 ret = init_binderfs();
6154 goto err_init_binder_device_failed;
6158 err_init_binder_device_failed:
6159 hlist_for_each_entry_safe(device, tmp, &binder_devices, hlist) {
6160 misc_deregister(&device->miscdev);
6161 hlist_del(&device->hlist);
6165 kfree(device_names);
6167 err_alloc_device_names_failed:
6168 debugfs_remove_recursive(binder_debugfs_dir_entry_root);
6173 device_initcall(binder_init);
6175 #define CREATE_TRACE_POINTS
6176 #include "binder_trace.h"
6178 MODULE_LICENSE("GPL v2");