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