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