blob: 4b9c7ca492e6db85dad979a67c7baed7cedd972d [file] [log] [blame]
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001/* binder.c
2 *
3 * Android IPC Subsystem
4 *
5 * Copyright (C) 2007-2008 Google, Inc.
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
Todd Kjos9630fe82017-06-29 12:02:00 -070018/*
19 * Locking overview
20 *
21 * There are 3 main spinlocks which must be acquired in the
22 * order shown:
23 *
24 * 1) proc->outer_lock : protects binder_ref
25 * binder_proc_lock() and binder_proc_unlock() are
26 * used to acq/rel.
27 * 2) node->lock : protects most fields of binder_node.
28 * binder_node_lock() and binder_node_unlock() are
29 * used to acq/rel
30 * 3) proc->inner_lock : protects the thread and node lists
Martijn Coenen1b77e9d2017-08-31 10:04:18 +020031 * (proc->threads, proc->waiting_threads, proc->nodes)
32 * and all todo lists associated with the binder_proc
33 * (proc->todo, thread->todo, proc->delivered_death and
34 * node->async_todo), as well as thread->transaction_stack
Todd Kjos9630fe82017-06-29 12:02:00 -070035 * binder_inner_proc_lock() and binder_inner_proc_unlock()
36 * are used to acq/rel
37 *
38 * Any lock under procA must never be nested under any lock at the same
39 * level or below on procB.
40 *
41 * Functions that require a lock held on entry indicate which lock
42 * in the suffix of the function name:
43 *
44 * foo_olocked() : requires node->outer_lock
45 * foo_nlocked() : requires node->lock
46 * foo_ilocked() : requires proc->inner_lock
47 * foo_oilocked(): requires proc->outer_lock and proc->inner_lock
48 * foo_nilocked(): requires node->lock and proc->inner_lock
49 * ...
50 */
51
Anmol Sarma56b468f2012-10-30 22:35:43 +053052#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
53
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090054#include <linux/fdtable.h>
55#include <linux/file.h>
Colin Crosse2610b22013-05-06 23:50:15 +000056#include <linux/freezer.h>
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090057#include <linux/fs.h>
58#include <linux/list.h>
59#include <linux/miscdevice.h>
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090060#include <linux/module.h>
61#include <linux/mutex.h>
62#include <linux/nsproxy.h>
63#include <linux/poll.h>
Arve Hjønnevåg16b66552009-04-28 20:57:50 -070064#include <linux/debugfs.h>
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090065#include <linux/rbtree.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010066#include <linux/sched/signal.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010067#include <linux/sched/mm.h>
Arve Hjønnevåg5249f482009-04-28 20:57:50 -070068#include <linux/seq_file.h>
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090069#include <linux/uaccess.h>
Eric W. Biederman17cf22c2010-03-02 14:51:53 -080070#include <linux/pid_namespace.h>
Stephen Smalley79af7302015-01-21 10:54:10 -050071#include <linux/security.h>
Todd Kjos9630fe82017-06-29 12:02:00 -070072#include <linux/spinlock.h>
Sherry Yang128f3802018-08-07 12:57:13 -070073#include <linux/ratelimit.h>
Todd Kjos44d80472018-08-28 13:46:25 -070074#include <linux/syscalls.h>
Todd Kjos80cd7952018-12-14 15:58:21 -080075#include <linux/task_work.h>
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090076
Greg Kroah-Hartman9246a4a2014-10-16 15:26:51 +020077#include <uapi/linux/android/binder.h>
Guenter Roeckf371a7c2018-07-23 14:41:38 -070078
79#include <asm/cacheflush.h>
80
Todd Kjos0c972a02017-06-29 12:01:41 -070081#include "binder_alloc.h"
Christian Brauner3ad20fe2018-12-14 13:11:14 +010082#include "binder_internal.h"
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -070083#include "binder_trace.h"
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090084
Todd Kjosc44b1232017-06-29 12:01:43 -070085static HLIST_HEAD(binder_deferred_list);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090086static DEFINE_MUTEX(binder_deferred_lock);
87
Martijn Coenenac4812c2017-02-03 14:40:48 -080088static HLIST_HEAD(binder_devices);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090089static HLIST_HEAD(binder_procs);
Todd Kjosc44b1232017-06-29 12:01:43 -070090static DEFINE_MUTEX(binder_procs_lock);
91
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090092static HLIST_HEAD(binder_dead_nodes);
Todd Kjosc44b1232017-06-29 12:01:43 -070093static DEFINE_SPINLOCK(binder_dead_nodes_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090094
Arve Hjønnevåg16b66552009-04-28 20:57:50 -070095static struct dentry *binder_debugfs_dir_entry_root;
96static struct dentry *binder_debugfs_dir_entry_proc;
Todd Kjos656a8002017-06-29 12:01:45 -070097static atomic_t binder_last_id;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +090098
Yangtao Lic13e0a52018-11-30 20:26:30 -050099static int proc_show(struct seq_file *m, void *unused);
100DEFINE_SHOW_ATTRIBUTE(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900101
102/* This is only defined in include/asm-arm/sizes.h */
103#ifndef SZ_1K
104#define SZ_1K 0x400
105#endif
106
107#ifndef SZ_4M
108#define SZ_4M 0x400000
109#endif
110
111#define FORBIDDEN_MMAP_FLAGS (VM_WRITE)
112
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900113enum {
114 BINDER_DEBUG_USER_ERROR = 1U << 0,
115 BINDER_DEBUG_FAILED_TRANSACTION = 1U << 1,
116 BINDER_DEBUG_DEAD_TRANSACTION = 1U << 2,
117 BINDER_DEBUG_OPEN_CLOSE = 1U << 3,
118 BINDER_DEBUG_DEAD_BINDER = 1U << 4,
119 BINDER_DEBUG_DEATH_NOTIFICATION = 1U << 5,
120 BINDER_DEBUG_READ_WRITE = 1U << 6,
121 BINDER_DEBUG_USER_REFS = 1U << 7,
122 BINDER_DEBUG_THREADS = 1U << 8,
123 BINDER_DEBUG_TRANSACTION = 1U << 9,
124 BINDER_DEBUG_TRANSACTION_COMPLETE = 1U << 10,
125 BINDER_DEBUG_FREE_BUFFER = 1U << 11,
126 BINDER_DEBUG_INTERNAL_REFS = 1U << 12,
Todd Kjos19c98722017-06-29 12:01:40 -0700127 BINDER_DEBUG_PRIORITY_CAP = 1U << 13,
Todd Kjos9630fe82017-06-29 12:02:00 -0700128 BINDER_DEBUG_SPINLOCKS = 1U << 14,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900129};
130static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR |
131 BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION;
Harsh Shandilya21d02dd2017-12-22 19:37:02 +0530132module_param_named(debug_mask, binder_debug_mask, uint, 0644);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900133
Martijn Coenenac4812c2017-02-03 14:40:48 -0800134static char *binder_devices_param = CONFIG_ANDROID_BINDER_DEVICES;
135module_param_named(devices, binder_devices_param, charp, 0444);
136
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900137static DECLARE_WAIT_QUEUE_HEAD(binder_user_error_wait);
138static int binder_stop_on_user_error;
139
140static int binder_set_stop_on_user_error(const char *val,
Kees Cooke4dca7b2017-10-17 19:04:42 -0700141 const struct kernel_param *kp)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900142{
143 int ret;
Seunghun Lee10f62862014-05-01 01:30:23 +0900144
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900145 ret = param_set_int(val, kp);
146 if (binder_stop_on_user_error < 2)
147 wake_up(&binder_user_error_wait);
148 return ret;
149}
150module_param_call(stop_on_user_error, binder_set_stop_on_user_error,
Harsh Shandilya21d02dd2017-12-22 19:37:02 +0530151 param_get_int, &binder_stop_on_user_error, 0644);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900152
153#define binder_debug(mask, x...) \
154 do { \
155 if (binder_debug_mask & mask) \
Sherry Yang128f3802018-08-07 12:57:13 -0700156 pr_info_ratelimited(x); \
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900157 } while (0)
158
159#define binder_user_error(x...) \
160 do { \
161 if (binder_debug_mask & BINDER_DEBUG_USER_ERROR) \
Sherry Yang128f3802018-08-07 12:57:13 -0700162 pr_info_ratelimited(x); \
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900163 if (binder_stop_on_user_error) \
164 binder_stop_on_user_error = 2; \
165 } while (0)
166
Martijn Coenenfeba3902017-02-03 14:40:45 -0800167#define to_flat_binder_object(hdr) \
168 container_of(hdr, struct flat_binder_object, hdr)
169
170#define to_binder_fd_object(hdr) container_of(hdr, struct binder_fd_object, hdr)
171
Martijn Coenen79802402017-02-03 14:40:51 -0800172#define to_binder_buffer_object(hdr) \
173 container_of(hdr, struct binder_buffer_object, hdr)
174
Martijn Coenendef95c72017-02-03 14:40:52 -0800175#define to_binder_fd_array_object(hdr) \
176 container_of(hdr, struct binder_fd_array_object, hdr)
177
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900178enum binder_stat_types {
179 BINDER_STAT_PROC,
180 BINDER_STAT_THREAD,
181 BINDER_STAT_NODE,
182 BINDER_STAT_REF,
183 BINDER_STAT_DEATH,
184 BINDER_STAT_TRANSACTION,
185 BINDER_STAT_TRANSACTION_COMPLETE,
186 BINDER_STAT_COUNT
187};
188
189struct binder_stats {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -0700190 atomic_t br[_IOC_NR(BR_FAILED_REPLY) + 1];
191 atomic_t bc[_IOC_NR(BC_REPLY_SG) + 1];
192 atomic_t obj_created[BINDER_STAT_COUNT];
193 atomic_t obj_deleted[BINDER_STAT_COUNT];
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900194};
195
196static struct binder_stats binder_stats;
197
198static inline void binder_stats_deleted(enum binder_stat_types type)
199{
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -0700200 atomic_inc(&binder_stats.obj_deleted[type]);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900201}
202
203static inline void binder_stats_created(enum binder_stat_types type)
204{
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -0700205 atomic_inc(&binder_stats.obj_created[type]);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900206}
207
208struct binder_transaction_log_entry {
209 int debug_id;
Todd Kjosd99c7332017-06-29 12:01:53 -0700210 int debug_id_done;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900211 int call_type;
212 int from_proc;
213 int from_thread;
214 int target_handle;
215 int to_proc;
216 int to_thread;
217 int to_node;
218 int data_size;
219 int offsets_size;
Todd Kjos57ada2f2017-06-29 12:01:46 -0700220 int return_error_line;
221 uint32_t return_error;
222 uint32_t return_error_param;
Martijn Coenen14db3182017-02-03 14:40:47 -0800223 const char *context_name;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900224};
225struct binder_transaction_log {
Todd Kjosd99c7332017-06-29 12:01:53 -0700226 atomic_t cur;
227 bool full;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900228 struct binder_transaction_log_entry entry[32];
229};
230static struct binder_transaction_log binder_transaction_log;
231static struct binder_transaction_log binder_transaction_log_failed;
232
233static struct binder_transaction_log_entry *binder_transaction_log_add(
234 struct binder_transaction_log *log)
235{
236 struct binder_transaction_log_entry *e;
Todd Kjosd99c7332017-06-29 12:01:53 -0700237 unsigned int cur = atomic_inc_return(&log->cur);
Seunghun Lee10f62862014-05-01 01:30:23 +0900238
Todd Kjosd99c7332017-06-29 12:01:53 -0700239 if (cur >= ARRAY_SIZE(log->entry))
Gustavo A. R. Silva197410a2018-01-23 12:04:27 -0600240 log->full = true;
Todd Kjosd99c7332017-06-29 12:01:53 -0700241 e = &log->entry[cur % ARRAY_SIZE(log->entry)];
242 WRITE_ONCE(e->debug_id_done, 0);
243 /*
244 * write-barrier to synchronize access to e->debug_id_done.
245 * We make sure the initialized 0 value is seen before
246 * memset() other fields are zeroed by memset.
247 */
248 smp_wmb();
249 memset(e, 0, sizeof(*e));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900250 return e;
251}
252
Todd Kjos72196392017-06-29 12:02:02 -0700253/**
254 * struct binder_work - work enqueued on a worklist
255 * @entry: node enqueued on list
256 * @type: type of work to be performed
257 *
258 * There are separate work lists for proc, thread, and node (async).
259 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900260struct binder_work {
261 struct list_head entry;
Todd Kjos72196392017-06-29 12:02:02 -0700262
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900263 enum {
264 BINDER_WORK_TRANSACTION = 1,
265 BINDER_WORK_TRANSACTION_COMPLETE,
Todd Kjos26549d12017-06-29 12:01:55 -0700266 BINDER_WORK_RETURN_ERROR,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900267 BINDER_WORK_NODE,
268 BINDER_WORK_DEAD_BINDER,
269 BINDER_WORK_DEAD_BINDER_AND_CLEAR,
270 BINDER_WORK_CLEAR_DEATH_NOTIFICATION,
271 } type;
272};
273
Todd Kjos26549d12017-06-29 12:01:55 -0700274struct binder_error {
275 struct binder_work work;
276 uint32_t cmd;
277};
278
Todd Kjos9630fe82017-06-29 12:02:00 -0700279/**
280 * struct binder_node - binder node bookkeeping
281 * @debug_id: unique ID for debugging
282 * (invariant after initialized)
283 * @lock: lock for node fields
284 * @work: worklist element for node work
Todd Kjos72196392017-06-29 12:02:02 -0700285 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700286 * @rb_node: element for proc->nodes tree
Todd Kjosda0fa9e2017-06-29 12:02:04 -0700287 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700288 * @dead_node: element for binder_dead_nodes list
289 * (protected by binder_dead_nodes_lock)
290 * @proc: binder_proc that owns this node
291 * (invariant after initialized)
292 * @refs: list of references on this node
Todd Kjos673068e2017-06-29 12:02:03 -0700293 * (protected by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700294 * @internal_strong_refs: used to take strong references when
295 * initiating a transaction
Todd Kjosed297212017-06-29 12:02:01 -0700296 * (protected by @proc->inner_lock if @proc
297 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700298 * @local_weak_refs: weak user refs from local process
Todd Kjosed297212017-06-29 12:02:01 -0700299 * (protected by @proc->inner_lock if @proc
300 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700301 * @local_strong_refs: strong user refs from local process
Todd Kjosed297212017-06-29 12:02:01 -0700302 * (protected by @proc->inner_lock if @proc
303 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700304 * @tmp_refs: temporary kernel refs
Todd Kjosed297212017-06-29 12:02:01 -0700305 * (protected by @proc->inner_lock while @proc
306 * is valid, and by binder_dead_nodes_lock
307 * if @proc is NULL. During inc/dec and node release
308 * it is also protected by @lock to provide safety
309 * as the node dies and @proc becomes NULL)
Todd Kjos9630fe82017-06-29 12:02:00 -0700310 * @ptr: userspace pointer for node
311 * (invariant, no lock needed)
312 * @cookie: userspace cookie for node
313 * (invariant, no lock needed)
314 * @has_strong_ref: userspace notified of strong ref
Todd Kjosed297212017-06-29 12:02:01 -0700315 * (protected by @proc->inner_lock if @proc
316 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700317 * @pending_strong_ref: userspace has acked notification of strong ref
Todd Kjosed297212017-06-29 12:02:01 -0700318 * (protected by @proc->inner_lock if @proc
319 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700320 * @has_weak_ref: userspace notified of weak ref
Todd Kjosed297212017-06-29 12:02:01 -0700321 * (protected by @proc->inner_lock if @proc
322 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700323 * @pending_weak_ref: userspace has acked notification of weak ref
Todd Kjosed297212017-06-29 12:02:01 -0700324 * (protected by @proc->inner_lock if @proc
325 * and by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700326 * @has_async_transaction: async transaction to node in progress
Todd Kjos673068e2017-06-29 12:02:03 -0700327 * (protected by @lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700328 * @accept_fds: file descriptor operations supported for node
329 * (invariant after initialized)
330 * @min_priority: minimum scheduling priority
331 * (invariant after initialized)
Todd Kjosec741362019-01-14 09:10:21 -0800332 * @txn_security_ctx: require sender's security context
333 * (invariant after initialized)
Todd Kjos9630fe82017-06-29 12:02:00 -0700334 * @async_todo: list of async work items
Todd Kjos72196392017-06-29 12:02:02 -0700335 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700336 *
337 * Bookkeeping structure for binder nodes.
338 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900339struct binder_node {
340 int debug_id;
Todd Kjos9630fe82017-06-29 12:02:00 -0700341 spinlock_t lock;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900342 struct binder_work work;
343 union {
344 struct rb_node rb_node;
345 struct hlist_node dead_node;
346 };
347 struct binder_proc *proc;
348 struct hlist_head refs;
349 int internal_strong_refs;
350 int local_weak_refs;
351 int local_strong_refs;
Todd Kjosadc18842017-06-29 12:01:59 -0700352 int tmp_refs;
Arve Hjønnevågda498892014-02-21 14:40:26 -0800353 binder_uintptr_t ptr;
354 binder_uintptr_t cookie;
Todd Kjosed297212017-06-29 12:02:01 -0700355 struct {
356 /*
357 * bitfield elements protected by
358 * proc inner_lock
359 */
360 u8 has_strong_ref:1;
361 u8 pending_strong_ref:1;
362 u8 has_weak_ref:1;
363 u8 pending_weak_ref:1;
364 };
365 struct {
366 /*
367 * invariant after initialization
368 */
369 u8 accept_fds:1;
Todd Kjosec741362019-01-14 09:10:21 -0800370 u8 txn_security_ctx:1;
Todd Kjosed297212017-06-29 12:02:01 -0700371 u8 min_priority;
372 };
373 bool has_async_transaction;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900374 struct list_head async_todo;
375};
376
377struct binder_ref_death {
Todd Kjos72196392017-06-29 12:02:02 -0700378 /**
379 * @work: worklist element for death notifications
380 * (protected by inner_lock of the proc that
381 * this ref belongs to)
382 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900383 struct binder_work work;
Arve Hjønnevågda498892014-02-21 14:40:26 -0800384 binder_uintptr_t cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900385};
386
Todd Kjos372e3142017-06-29 12:01:58 -0700387/**
388 * struct binder_ref_data - binder_ref counts and id
389 * @debug_id: unique ID for the ref
390 * @desc: unique userspace handle for ref
391 * @strong: strong ref count (debugging only if not locked)
392 * @weak: weak ref count (debugging only if not locked)
393 *
394 * Structure to hold ref count and ref id information. Since
395 * the actual ref can only be accessed with a lock, this structure
396 * is used to return information about the ref to callers of
397 * ref inc/dec functions.
398 */
399struct binder_ref_data {
400 int debug_id;
401 uint32_t desc;
402 int strong;
403 int weak;
404};
405
406/**
407 * struct binder_ref - struct to track references on nodes
408 * @data: binder_ref_data containing id, handle, and current refcounts
409 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
410 * @rb_node_node: node for lookup by @node in proc's rb_tree
411 * @node_entry: list entry for node->refs list in target node
Todd Kjos673068e2017-06-29 12:02:03 -0700412 * (protected by @node->lock)
Todd Kjos372e3142017-06-29 12:01:58 -0700413 * @proc: binder_proc containing ref
414 * @node: binder_node of target node. When cleaning up a
415 * ref for deletion in binder_cleanup_ref, a non-NULL
416 * @node indicates the node must be freed
417 * @death: pointer to death notification (ref_death) if requested
Martijn Coenenab51ec62017-06-29 12:02:10 -0700418 * (protected by @node->lock)
Todd Kjos372e3142017-06-29 12:01:58 -0700419 *
420 * Structure to track references from procA to target node (on procB). This
421 * structure is unsafe to access without holding @proc->outer_lock.
422 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900423struct binder_ref {
424 /* Lookups needed: */
425 /* node + proc => ref (transaction) */
426 /* desc + proc => ref (transaction, inc/dec ref) */
427 /* node => refs + procs (proc exit) */
Todd Kjos372e3142017-06-29 12:01:58 -0700428 struct binder_ref_data data;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900429 struct rb_node rb_node_desc;
430 struct rb_node rb_node_node;
431 struct hlist_node node_entry;
432 struct binder_proc *proc;
433 struct binder_node *node;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900434 struct binder_ref_death *death;
435};
436
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900437enum binder_deferred_state {
Todd Kjos44d80472018-08-28 13:46:25 -0700438 BINDER_DEFERRED_FLUSH = 0x01,
439 BINDER_DEFERRED_RELEASE = 0x02,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900440};
441
Todd Kjos9630fe82017-06-29 12:02:00 -0700442/**
443 * struct binder_proc - binder process bookkeeping
444 * @proc_node: element for binder_procs list
445 * @threads: rbtree of binder_threads in this proc
Todd Kjos7bd7b0e2017-06-29 12:02:05 -0700446 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700447 * @nodes: rbtree of binder nodes associated with
448 * this proc ordered by node->ptr
Todd Kjosda0fa9e2017-06-29 12:02:04 -0700449 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700450 * @refs_by_desc: rbtree of refs ordered by ref->desc
Todd Kjos2c1838d2017-06-29 12:02:08 -0700451 * (protected by @outer_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700452 * @refs_by_node: rbtree of refs ordered by ref->node
Todd Kjos2c1838d2017-06-29 12:02:08 -0700453 * (protected by @outer_lock)
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200454 * @waiting_threads: threads currently waiting for proc work
455 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700456 * @pid PID of group_leader of process
457 * (invariant after initialized)
458 * @tsk task_struct for group_leader of process
459 * (invariant after initialized)
Todd Kjos9630fe82017-06-29 12:02:00 -0700460 * @deferred_work_node: element for binder_deferred_list
461 * (protected by binder_deferred_lock)
462 * @deferred_work: bitmap of deferred work to perform
463 * (protected by binder_deferred_lock)
464 * @is_dead: process is dead and awaiting free
465 * when outstanding transactions are cleaned up
Todd Kjos7bd7b0e2017-06-29 12:02:05 -0700466 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700467 * @todo: list of work for this process
Todd Kjos72196392017-06-29 12:02:02 -0700468 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700469 * @stats: per-process binder statistics
470 * (atomics, no lock needed)
471 * @delivered_death: list of delivered death notification
Todd Kjos72196392017-06-29 12:02:02 -0700472 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700473 * @max_threads: cap on number of binder threads
Todd Kjosb3e68612017-06-29 12:02:07 -0700474 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700475 * @requested_threads: number of binder threads requested but not
476 * yet started. In current implementation, can
477 * only be 0 or 1.
Todd Kjosb3e68612017-06-29 12:02:07 -0700478 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700479 * @requested_threads_started: number binder threads started
Todd Kjosb3e68612017-06-29 12:02:07 -0700480 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700481 * @tmp_ref: temporary reference to indicate proc is in use
Todd Kjos7bd7b0e2017-06-29 12:02:05 -0700482 * (protected by @inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700483 * @default_priority: default scheduler priority
484 * (invariant after initialized)
485 * @debugfs_entry: debugfs node
486 * @alloc: binder allocator bookkeeping
487 * @context: binder_context for this proc
488 * (invariant after initialized)
489 * @inner_lock: can nest under outer_lock and/or node lock
490 * @outer_lock: no nesting under innor or node lock
491 * Lock order: 1) outer, 2) node, 3) inner
492 *
493 * Bookkeeping structure for binder processes
494 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900495struct binder_proc {
496 struct hlist_node proc_node;
497 struct rb_root threads;
498 struct rb_root nodes;
499 struct rb_root refs_by_desc;
500 struct rb_root refs_by_node;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200501 struct list_head waiting_threads;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900502 int pid;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900503 struct task_struct *tsk;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900504 struct hlist_node deferred_work_node;
505 int deferred_work;
Todd Kjos7a4408c2017-06-29 12:01:57 -0700506 bool is_dead;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900507
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900508 struct list_head todo;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900509 struct binder_stats stats;
510 struct list_head delivered_death;
511 int max_threads;
512 int requested_threads;
513 int requested_threads_started;
Todd Kjos7a4408c2017-06-29 12:01:57 -0700514 int tmp_ref;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900515 long default_priority;
Arve Hjønnevåg16b66552009-04-28 20:57:50 -0700516 struct dentry *debugfs_entry;
Todd Kjosfdfb4a92017-06-29 12:01:38 -0700517 struct binder_alloc alloc;
Martijn Coenen342e5c92017-02-03 14:40:46 -0800518 struct binder_context *context;
Todd Kjos9630fe82017-06-29 12:02:00 -0700519 spinlock_t inner_lock;
520 spinlock_t outer_lock;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900521};
522
523enum {
524 BINDER_LOOPER_STATE_REGISTERED = 0x01,
525 BINDER_LOOPER_STATE_ENTERED = 0x02,
526 BINDER_LOOPER_STATE_EXITED = 0x04,
527 BINDER_LOOPER_STATE_INVALID = 0x08,
528 BINDER_LOOPER_STATE_WAITING = 0x10,
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200529 BINDER_LOOPER_STATE_POLL = 0x20,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900530};
531
Todd Kjos9630fe82017-06-29 12:02:00 -0700532/**
533 * struct binder_thread - binder thread bookkeeping
534 * @proc: binder process for this thread
535 * (invariant after initialization)
536 * @rb_node: element for proc->threads rbtree
Todd Kjos7bd7b0e2017-06-29 12:02:05 -0700537 * (protected by @proc->inner_lock)
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200538 * @waiting_thread_node: element for @proc->waiting_threads list
539 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700540 * @pid: PID for this thread
541 * (invariant after initialization)
542 * @looper: bitmap of looping state
543 * (only accessed by this thread)
544 * @looper_needs_return: looping thread needs to exit driver
545 * (no lock needed)
546 * @transaction_stack: stack of in-progress transactions for this thread
Martijn Coenen0b89d692017-06-29 12:02:06 -0700547 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700548 * @todo: list of work to do for this thread
Todd Kjos72196392017-06-29 12:02:02 -0700549 * (protected by @proc->inner_lock)
Martijn Coenen148ade22017-11-15 09:21:35 +0100550 * @process_todo: whether work in @todo should be processed
551 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700552 * @return_error: transaction errors reported by this thread
553 * (only accessed by this thread)
554 * @reply_error: transaction errors reported by target thread
Martijn Coenen0b89d692017-06-29 12:02:06 -0700555 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700556 * @wait: wait queue for thread work
557 * @stats: per-thread statistics
558 * (atomics, no lock needed)
559 * @tmp_ref: temporary reference to indicate thread is in use
560 * (atomic since @proc->inner_lock cannot
561 * always be acquired)
562 * @is_dead: thread is dead and awaiting free
563 * when outstanding transactions are cleaned up
Todd Kjos7bd7b0e2017-06-29 12:02:05 -0700564 * (protected by @proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700565 *
566 * Bookkeeping structure for binder threads.
567 */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900568struct binder_thread {
569 struct binder_proc *proc;
570 struct rb_node rb_node;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200571 struct list_head waiting_thread_node;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900572 int pid;
Todd Kjos08dabce2017-06-29 12:01:49 -0700573 int looper; /* only modified by this thread */
574 bool looper_need_return; /* can be written by other thread */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900575 struct binder_transaction *transaction_stack;
576 struct list_head todo;
Martijn Coenen148ade22017-11-15 09:21:35 +0100577 bool process_todo;
Todd Kjos26549d12017-06-29 12:01:55 -0700578 struct binder_error return_error;
579 struct binder_error reply_error;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900580 wait_queue_head_t wait;
581 struct binder_stats stats;
Todd Kjos7a4408c2017-06-29 12:01:57 -0700582 atomic_t tmp_ref;
583 bool is_dead;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900584};
585
Todd Kjos44d80472018-08-28 13:46:25 -0700586/**
587 * struct binder_txn_fd_fixup - transaction fd fixup list element
588 * @fixup_entry: list entry
589 * @file: struct file to be associated with new fd
590 * @offset: offset in buffer data to this fixup
591 *
592 * List element for fd fixups in a transaction. Since file
593 * descriptors need to be allocated in the context of the
594 * target process, we pass each fd to be processed in this
595 * struct.
596 */
597struct binder_txn_fd_fixup {
598 struct list_head fixup_entry;
599 struct file *file;
600 size_t offset;
601};
602
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900603struct binder_transaction {
604 int debug_id;
605 struct binder_work work;
606 struct binder_thread *from;
607 struct binder_transaction *from_parent;
608 struct binder_proc *to_proc;
609 struct binder_thread *to_thread;
610 struct binder_transaction *to_parent;
611 unsigned need_reply:1;
612 /* unsigned is_dead:1; */ /* not used at the moment */
613
614 struct binder_buffer *buffer;
615 unsigned int code;
616 unsigned int flags;
617 long priority;
618 long saved_priority;
Eric W. Biederman4a2ebb92012-05-25 18:34:53 -0600619 kuid_t sender_euid;
Todd Kjos44d80472018-08-28 13:46:25 -0700620 struct list_head fd_fixups;
Todd Kjosec741362019-01-14 09:10:21 -0800621 binder_uintptr_t security_ctx;
Todd Kjos7a4408c2017-06-29 12:01:57 -0700622 /**
623 * @lock: protects @from, @to_proc, and @to_thread
624 *
625 * @from, @to_proc, and @to_thread can be set to NULL
626 * during thread teardown
627 */
628 spinlock_t lock;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900629};
630
Todd Kjos9630fe82017-06-29 12:02:00 -0700631/**
Todd Kjos7a67a392019-02-08 10:35:16 -0800632 * struct binder_object - union of flat binder object types
633 * @hdr: generic object header
634 * @fbo: binder object (nodes and refs)
635 * @fdo: file descriptor object
636 * @bbo: binder buffer pointer
637 * @fdao: file descriptor array
638 *
639 * Used for type-independent object copies
640 */
641struct binder_object {
642 union {
643 struct binder_object_header hdr;
644 struct flat_binder_object fbo;
645 struct binder_fd_object fdo;
646 struct binder_buffer_object bbo;
647 struct binder_fd_array_object fdao;
648 };
649};
650
651/**
Todd Kjos9630fe82017-06-29 12:02:00 -0700652 * binder_proc_lock() - Acquire outer lock for given binder_proc
653 * @proc: struct binder_proc to acquire
654 *
655 * Acquires proc->outer_lock. Used to protect binder_ref
656 * structures associated with the given proc.
657 */
658#define binder_proc_lock(proc) _binder_proc_lock(proc, __LINE__)
659static void
660_binder_proc_lock(struct binder_proc *proc, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800661 __acquires(&proc->outer_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700662{
663 binder_debug(BINDER_DEBUG_SPINLOCKS,
664 "%s: line=%d\n", __func__, line);
665 spin_lock(&proc->outer_lock);
666}
667
668/**
669 * binder_proc_unlock() - Release spinlock for given binder_proc
670 * @proc: struct binder_proc to acquire
671 *
672 * Release lock acquired via binder_proc_lock()
673 */
674#define binder_proc_unlock(_proc) _binder_proc_unlock(_proc, __LINE__)
675static void
676_binder_proc_unlock(struct binder_proc *proc, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800677 __releases(&proc->outer_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700678{
679 binder_debug(BINDER_DEBUG_SPINLOCKS,
680 "%s: line=%d\n", __func__, line);
681 spin_unlock(&proc->outer_lock);
682}
683
684/**
685 * binder_inner_proc_lock() - Acquire inner lock for given binder_proc
686 * @proc: struct binder_proc to acquire
687 *
688 * Acquires proc->inner_lock. Used to protect todo lists
689 */
690#define binder_inner_proc_lock(proc) _binder_inner_proc_lock(proc, __LINE__)
691static void
692_binder_inner_proc_lock(struct binder_proc *proc, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800693 __acquires(&proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700694{
695 binder_debug(BINDER_DEBUG_SPINLOCKS,
696 "%s: line=%d\n", __func__, line);
697 spin_lock(&proc->inner_lock);
698}
699
700/**
701 * binder_inner_proc_unlock() - Release inner lock for given binder_proc
702 * @proc: struct binder_proc to acquire
703 *
704 * Release lock acquired via binder_inner_proc_lock()
705 */
706#define binder_inner_proc_unlock(proc) _binder_inner_proc_unlock(proc, __LINE__)
707static void
708_binder_inner_proc_unlock(struct binder_proc *proc, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800709 __releases(&proc->inner_lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700710{
711 binder_debug(BINDER_DEBUG_SPINLOCKS,
712 "%s: line=%d\n", __func__, line);
713 spin_unlock(&proc->inner_lock);
714}
715
716/**
717 * binder_node_lock() - Acquire spinlock for given binder_node
718 * @node: struct binder_node to acquire
719 *
720 * Acquires node->lock. Used to protect binder_node fields
721 */
722#define binder_node_lock(node) _binder_node_lock(node, __LINE__)
723static void
724_binder_node_lock(struct binder_node *node, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800725 __acquires(&node->lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700726{
727 binder_debug(BINDER_DEBUG_SPINLOCKS,
728 "%s: line=%d\n", __func__, line);
729 spin_lock(&node->lock);
730}
731
732/**
733 * binder_node_unlock() - Release spinlock for given binder_proc
734 * @node: struct binder_node to acquire
735 *
736 * Release lock acquired via binder_node_lock()
737 */
738#define binder_node_unlock(node) _binder_node_unlock(node, __LINE__)
739static void
740_binder_node_unlock(struct binder_node *node, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800741 __releases(&node->lock)
Todd Kjos9630fe82017-06-29 12:02:00 -0700742{
743 binder_debug(BINDER_DEBUG_SPINLOCKS,
744 "%s: line=%d\n", __func__, line);
745 spin_unlock(&node->lock);
746}
747
Todd Kjos673068e2017-06-29 12:02:03 -0700748/**
749 * binder_node_inner_lock() - Acquire node and inner locks
750 * @node: struct binder_node to acquire
751 *
752 * Acquires node->lock. If node->proc also acquires
753 * proc->inner_lock. Used to protect binder_node fields
754 */
755#define binder_node_inner_lock(node) _binder_node_inner_lock(node, __LINE__)
756static void
757_binder_node_inner_lock(struct binder_node *node, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800758 __acquires(&node->lock) __acquires(&node->proc->inner_lock)
Todd Kjos673068e2017-06-29 12:02:03 -0700759{
760 binder_debug(BINDER_DEBUG_SPINLOCKS,
761 "%s: line=%d\n", __func__, line);
762 spin_lock(&node->lock);
763 if (node->proc)
764 binder_inner_proc_lock(node->proc);
Todd Kjos324fa642018-11-06 15:56:31 -0800765 else
766 /* annotation for sparse */
767 __acquire(&node->proc->inner_lock);
Todd Kjos673068e2017-06-29 12:02:03 -0700768}
769
770/**
771 * binder_node_unlock() - Release node and inner locks
772 * @node: struct binder_node to acquire
773 *
774 * Release lock acquired via binder_node_lock()
775 */
776#define binder_node_inner_unlock(node) _binder_node_inner_unlock(node, __LINE__)
777static void
778_binder_node_inner_unlock(struct binder_node *node, int line)
Todd Kjos324fa642018-11-06 15:56:31 -0800779 __releases(&node->lock) __releases(&node->proc->inner_lock)
Todd Kjos673068e2017-06-29 12:02:03 -0700780{
781 struct binder_proc *proc = node->proc;
782
783 binder_debug(BINDER_DEBUG_SPINLOCKS,
784 "%s: line=%d\n", __func__, line);
785 if (proc)
786 binder_inner_proc_unlock(proc);
Todd Kjos324fa642018-11-06 15:56:31 -0800787 else
788 /* annotation for sparse */
789 __release(&node->proc->inner_lock);
Todd Kjos673068e2017-06-29 12:02:03 -0700790 spin_unlock(&node->lock);
791}
792
Todd Kjos72196392017-06-29 12:02:02 -0700793static bool binder_worklist_empty_ilocked(struct list_head *list)
794{
795 return list_empty(list);
796}
797
798/**
799 * binder_worklist_empty() - Check if no items on the work list
800 * @proc: binder_proc associated with list
801 * @list: list to check
802 *
803 * Return: true if there are no items on list, else false
804 */
805static bool binder_worklist_empty(struct binder_proc *proc,
806 struct list_head *list)
807{
808 bool ret;
809
810 binder_inner_proc_lock(proc);
811 ret = binder_worklist_empty_ilocked(list);
812 binder_inner_proc_unlock(proc);
813 return ret;
814}
815
Martijn Coenen148ade22017-11-15 09:21:35 +0100816/**
817 * binder_enqueue_work_ilocked() - Add an item to the work list
818 * @work: struct binder_work to add to list
819 * @target_list: list to add work to
820 *
821 * Adds the work to the specified list. Asserts that work
822 * is not already on a list.
823 *
824 * Requires the proc->inner_lock to be held.
825 */
Todd Kjos72196392017-06-29 12:02:02 -0700826static void
827binder_enqueue_work_ilocked(struct binder_work *work,
828 struct list_head *target_list)
829{
830 BUG_ON(target_list == NULL);
831 BUG_ON(work->entry.next && !list_empty(&work->entry));
832 list_add_tail(&work->entry, target_list);
833}
834
835/**
Martijn Coenen148ade22017-11-15 09:21:35 +0100836 * binder_enqueue_deferred_thread_work_ilocked() - Add deferred thread work
837 * @thread: thread to queue work to
Todd Kjos72196392017-06-29 12:02:02 -0700838 * @work: struct binder_work to add to list
Todd Kjos72196392017-06-29 12:02:02 -0700839 *
Martijn Coenen148ade22017-11-15 09:21:35 +0100840 * Adds the work to the todo list of the thread. Doesn't set the process_todo
841 * flag, which means that (if it wasn't already set) the thread will go to
842 * sleep without handling this work when it calls read.
843 *
844 * Requires the proc->inner_lock to be held.
Todd Kjos72196392017-06-29 12:02:02 -0700845 */
846static void
Martijn Coenen148ade22017-11-15 09:21:35 +0100847binder_enqueue_deferred_thread_work_ilocked(struct binder_thread *thread,
848 struct binder_work *work)
Todd Kjos72196392017-06-29 12:02:02 -0700849{
Sherry Yang44b73962018-08-13 17:28:53 -0700850 WARN_ON(!list_empty(&thread->waiting_thread_node));
Martijn Coenen148ade22017-11-15 09:21:35 +0100851 binder_enqueue_work_ilocked(work, &thread->todo);
852}
853
854/**
855 * binder_enqueue_thread_work_ilocked() - Add an item to the thread work list
856 * @thread: thread to queue work to
857 * @work: struct binder_work to add to list
858 *
859 * Adds the work to the todo list of the thread, and enables processing
860 * of the todo queue.
861 *
862 * Requires the proc->inner_lock to be held.
863 */
864static void
865binder_enqueue_thread_work_ilocked(struct binder_thread *thread,
866 struct binder_work *work)
867{
Sherry Yang44b73962018-08-13 17:28:53 -0700868 WARN_ON(!list_empty(&thread->waiting_thread_node));
Martijn Coenen148ade22017-11-15 09:21:35 +0100869 binder_enqueue_work_ilocked(work, &thread->todo);
870 thread->process_todo = true;
871}
872
873/**
874 * binder_enqueue_thread_work() - Add an item to the thread work list
875 * @thread: thread to queue work to
876 * @work: struct binder_work to add to list
877 *
878 * Adds the work to the todo list of the thread, and enables processing
879 * of the todo queue.
880 */
881static void
882binder_enqueue_thread_work(struct binder_thread *thread,
883 struct binder_work *work)
884{
885 binder_inner_proc_lock(thread->proc);
886 binder_enqueue_thread_work_ilocked(thread, work);
887 binder_inner_proc_unlock(thread->proc);
Todd Kjos72196392017-06-29 12:02:02 -0700888}
889
890static void
891binder_dequeue_work_ilocked(struct binder_work *work)
892{
893 list_del_init(&work->entry);
894}
895
896/**
897 * binder_dequeue_work() - Removes an item from the work list
898 * @proc: binder_proc associated with list
899 * @work: struct binder_work to remove from list
900 *
901 * Removes the specified work item from whatever list it is on.
902 * Can safely be called if work is not on any list.
903 */
904static void
905binder_dequeue_work(struct binder_proc *proc, struct binder_work *work)
906{
907 binder_inner_proc_lock(proc);
908 binder_dequeue_work_ilocked(work);
909 binder_inner_proc_unlock(proc);
910}
911
912static struct binder_work *binder_dequeue_work_head_ilocked(
913 struct list_head *list)
914{
915 struct binder_work *w;
916
917 w = list_first_entry_or_null(list, struct binder_work, entry);
918 if (w)
919 list_del_init(&w->entry);
920 return w;
921}
922
923/**
924 * binder_dequeue_work_head() - Dequeues the item at head of list
925 * @proc: binder_proc associated with list
926 * @list: list to dequeue head
927 *
928 * Removes the head of the list if there are items on the list
929 *
930 * Return: pointer dequeued binder_work, NULL if list was empty
931 */
932static struct binder_work *binder_dequeue_work_head(
933 struct binder_proc *proc,
934 struct list_head *list)
935{
936 struct binder_work *w;
937
938 binder_inner_proc_lock(proc);
939 w = binder_dequeue_work_head_ilocked(list);
940 binder_inner_proc_unlock(proc);
941 return w;
942}
943
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900944static void
945binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer);
Todd Kjos7a4408c2017-06-29 12:01:57 -0700946static void binder_free_thread(struct binder_thread *thread);
947static void binder_free_proc(struct binder_proc *proc);
Todd Kjosda0fa9e2017-06-29 12:02:04 -0700948static void binder_inc_node_tmpref_ilocked(struct binder_node *node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +0900949
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200950static bool binder_has_work_ilocked(struct binder_thread *thread,
951 bool do_proc_work)
952{
Martijn Coenen148ade22017-11-15 09:21:35 +0100953 return thread->process_todo ||
Martijn Coenen1b77e9d2017-08-31 10:04:18 +0200954 thread->looper_need_return ||
955 (do_proc_work &&
956 !binder_worklist_empty_ilocked(&thread->proc->todo));
957}
958
959static bool binder_has_work(struct binder_thread *thread, bool do_proc_work)
960{
961 bool has_work;
962
963 binder_inner_proc_lock(thread->proc);
964 has_work = binder_has_work_ilocked(thread, do_proc_work);
965 binder_inner_proc_unlock(thread->proc);
966
967 return has_work;
968}
969
970static bool binder_available_for_proc_work_ilocked(struct binder_thread *thread)
971{
972 return !thread->transaction_stack &&
973 binder_worklist_empty_ilocked(&thread->todo) &&
974 (thread->looper & (BINDER_LOOPER_STATE_ENTERED |
975 BINDER_LOOPER_STATE_REGISTERED));
976}
977
978static void binder_wakeup_poll_threads_ilocked(struct binder_proc *proc,
979 bool sync)
980{
981 struct rb_node *n;
982 struct binder_thread *thread;
983
984 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) {
985 thread = rb_entry(n, struct binder_thread, rb_node);
986 if (thread->looper & BINDER_LOOPER_STATE_POLL &&
987 binder_available_for_proc_work_ilocked(thread)) {
988 if (sync)
989 wake_up_interruptible_sync(&thread->wait);
990 else
991 wake_up_interruptible(&thread->wait);
992 }
993 }
994}
995
Martijn Coenen408c68b2017-08-31 10:04:19 +0200996/**
997 * binder_select_thread_ilocked() - selects a thread for doing proc work.
998 * @proc: process to select a thread from
999 *
1000 * Note that calling this function moves the thread off the waiting_threads
1001 * list, so it can only be woken up by the caller of this function, or a
1002 * signal. Therefore, callers *should* always wake up the thread this function
1003 * returns.
1004 *
1005 * Return: If there's a thread currently waiting for process work,
1006 * returns that thread. Otherwise returns NULL.
1007 */
1008static struct binder_thread *
1009binder_select_thread_ilocked(struct binder_proc *proc)
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02001010{
1011 struct binder_thread *thread;
1012
Martijn Coenen858b2712017-08-31 10:04:26 +02001013 assert_spin_locked(&proc->inner_lock);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02001014 thread = list_first_entry_or_null(&proc->waiting_threads,
1015 struct binder_thread,
1016 waiting_thread_node);
1017
Martijn Coenen408c68b2017-08-31 10:04:19 +02001018 if (thread)
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02001019 list_del_init(&thread->waiting_thread_node);
Martijn Coenen408c68b2017-08-31 10:04:19 +02001020
1021 return thread;
1022}
1023
1024/**
1025 * binder_wakeup_thread_ilocked() - wakes up a thread for doing proc work.
1026 * @proc: process to wake up a thread in
1027 * @thread: specific thread to wake-up (may be NULL)
1028 * @sync: whether to do a synchronous wake-up
1029 *
1030 * This function wakes up a thread in the @proc process.
1031 * The caller may provide a specific thread to wake-up in
1032 * the @thread parameter. If @thread is NULL, this function
1033 * will wake up threads that have called poll().
1034 *
1035 * Note that for this function to work as expected, callers
1036 * should first call binder_select_thread() to find a thread
1037 * to handle the work (if they don't have a thread already),
1038 * and pass the result into the @thread parameter.
1039 */
1040static void binder_wakeup_thread_ilocked(struct binder_proc *proc,
1041 struct binder_thread *thread,
1042 bool sync)
1043{
Martijn Coenen858b2712017-08-31 10:04:26 +02001044 assert_spin_locked(&proc->inner_lock);
Martijn Coenen408c68b2017-08-31 10:04:19 +02001045
1046 if (thread) {
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02001047 if (sync)
1048 wake_up_interruptible_sync(&thread->wait);
1049 else
1050 wake_up_interruptible(&thread->wait);
1051 return;
1052 }
1053
1054 /* Didn't find a thread waiting for proc work; this can happen
1055 * in two scenarios:
1056 * 1. All threads are busy handling transactions
1057 * In that case, one of those threads should call back into
1058 * the kernel driver soon and pick up this work.
1059 * 2. Threads are using the (e)poll interface, in which case
1060 * they may be blocked on the waitqueue without having been
1061 * added to waiting_threads. For this case, we just iterate
1062 * over all threads not handling transaction work, and
1063 * wake them all up. We wake all because we don't know whether
1064 * a thread that called into (e)poll is handling non-binder
1065 * work currently.
1066 */
1067 binder_wakeup_poll_threads_ilocked(proc, sync);
1068}
1069
Martijn Coenen408c68b2017-08-31 10:04:19 +02001070static void binder_wakeup_proc_ilocked(struct binder_proc *proc)
1071{
1072 struct binder_thread *thread = binder_select_thread_ilocked(proc);
1073
1074 binder_wakeup_thread_ilocked(proc, thread, /* sync = */false);
1075}
1076
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001077static void binder_set_nice(long nice)
1078{
1079 long min_nice;
Seunghun Lee10f62862014-05-01 01:30:23 +09001080
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001081 if (can_nice(current, nice)) {
1082 set_user_nice(current, nice);
1083 return;
1084 }
Krzysztof Opasiakc3643b62017-07-05 19:24:44 +02001085 min_nice = rlimit_to_nice(rlimit(RLIMIT_NICE));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001086 binder_debug(BINDER_DEBUG_PRIORITY_CAP,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301087 "%d: nice value %ld not allowed use %ld instead\n",
1088 current->pid, nice, min_nice);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001089 set_user_nice(current, min_nice);
Dongsheng Yang8698a742014-03-11 18:09:12 +08001090 if (min_nice <= MAX_NICE)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001091 return;
Anmol Sarma56b468f2012-10-30 22:35:43 +05301092 binder_user_error("%d RLIMIT_NICE not set\n", current->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001093}
1094
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001095static struct binder_node *binder_get_node_ilocked(struct binder_proc *proc,
1096 binder_uintptr_t ptr)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001097{
1098 struct rb_node *n = proc->nodes.rb_node;
1099 struct binder_node *node;
1100
Martijn Coenen858b2712017-08-31 10:04:26 +02001101 assert_spin_locked(&proc->inner_lock);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001102
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001103 while (n) {
1104 node = rb_entry(n, struct binder_node, rb_node);
1105
1106 if (ptr < node->ptr)
1107 n = n->rb_left;
1108 else if (ptr > node->ptr)
1109 n = n->rb_right;
Todd Kjosadc18842017-06-29 12:01:59 -07001110 else {
1111 /*
1112 * take an implicit weak reference
1113 * to ensure node stays alive until
1114 * call to binder_put_node()
1115 */
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001116 binder_inc_node_tmpref_ilocked(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001117 return node;
Todd Kjosadc18842017-06-29 12:01:59 -07001118 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001119 }
1120 return NULL;
1121}
1122
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001123static struct binder_node *binder_get_node(struct binder_proc *proc,
1124 binder_uintptr_t ptr)
1125{
1126 struct binder_node *node;
1127
1128 binder_inner_proc_lock(proc);
1129 node = binder_get_node_ilocked(proc, ptr);
1130 binder_inner_proc_unlock(proc);
1131 return node;
1132}
1133
1134static struct binder_node *binder_init_node_ilocked(
1135 struct binder_proc *proc,
1136 struct binder_node *new_node,
1137 struct flat_binder_object *fp)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001138{
1139 struct rb_node **p = &proc->nodes.rb_node;
1140 struct rb_node *parent = NULL;
1141 struct binder_node *node;
Todd Kjos673068e2017-06-29 12:02:03 -07001142 binder_uintptr_t ptr = fp ? fp->binder : 0;
1143 binder_uintptr_t cookie = fp ? fp->cookie : 0;
1144 __u32 flags = fp ? fp->flags : 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001145
Martijn Coenen858b2712017-08-31 10:04:26 +02001146 assert_spin_locked(&proc->inner_lock);
1147
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001148 while (*p) {
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001149
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001150 parent = *p;
1151 node = rb_entry(parent, struct binder_node, rb_node);
1152
1153 if (ptr < node->ptr)
1154 p = &(*p)->rb_left;
1155 else if (ptr > node->ptr)
1156 p = &(*p)->rb_right;
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001157 else {
1158 /*
1159 * A matching node is already in
1160 * the rb tree. Abandon the init
1161 * and return it.
1162 */
1163 binder_inc_node_tmpref_ilocked(node);
1164 return node;
1165 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001166 }
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001167 node = new_node;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001168 binder_stats_created(BINDER_STAT_NODE);
Todd Kjosadc18842017-06-29 12:01:59 -07001169 node->tmp_refs++;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001170 rb_link_node(&node->rb_node, parent, p);
1171 rb_insert_color(&node->rb_node, &proc->nodes);
Todd Kjos656a8002017-06-29 12:01:45 -07001172 node->debug_id = atomic_inc_return(&binder_last_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001173 node->proc = proc;
1174 node->ptr = ptr;
1175 node->cookie = cookie;
1176 node->work.type = BINDER_WORK_NODE;
Todd Kjos673068e2017-06-29 12:02:03 -07001177 node->min_priority = flags & FLAT_BINDER_FLAG_PRIORITY_MASK;
1178 node->accept_fds = !!(flags & FLAT_BINDER_FLAG_ACCEPTS_FDS);
Todd Kjosec741362019-01-14 09:10:21 -08001179 node->txn_security_ctx = !!(flags & FLAT_BINDER_FLAG_TXN_SECURITY_CTX);
Todd Kjos9630fe82017-06-29 12:02:00 -07001180 spin_lock_init(&node->lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001181 INIT_LIST_HEAD(&node->work.entry);
1182 INIT_LIST_HEAD(&node->async_todo);
1183 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
Arve Hjønnevågda498892014-02-21 14:40:26 -08001184 "%d:%d node %d u%016llx c%016llx created\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001185 proc->pid, current->pid, node->debug_id,
Arve Hjønnevågda498892014-02-21 14:40:26 -08001186 (u64)node->ptr, (u64)node->cookie);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07001187
1188 return node;
1189}
1190
1191static struct binder_node *binder_new_node(struct binder_proc *proc,
1192 struct flat_binder_object *fp)
1193{
1194 struct binder_node *node;
1195 struct binder_node *new_node = kzalloc(sizeof(*node), GFP_KERNEL);
1196
1197 if (!new_node)
1198 return NULL;
1199 binder_inner_proc_lock(proc);
1200 node = binder_init_node_ilocked(proc, new_node, fp);
1201 binder_inner_proc_unlock(proc);
1202 if (node != new_node)
1203 /*
1204 * The node was already added by another thread
1205 */
1206 kfree(new_node);
1207
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001208 return node;
1209}
1210
Todd Kjosed297212017-06-29 12:02:01 -07001211static void binder_free_node(struct binder_node *node)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001212{
Todd Kjosed297212017-06-29 12:02:01 -07001213 kfree(node);
1214 binder_stats_deleted(BINDER_STAT_NODE);
1215}
1216
Todd Kjos673068e2017-06-29 12:02:03 -07001217static int binder_inc_node_nilocked(struct binder_node *node, int strong,
1218 int internal,
1219 struct list_head *target_list)
Todd Kjosed297212017-06-29 12:02:01 -07001220{
Todd Kjos673068e2017-06-29 12:02:03 -07001221 struct binder_proc *proc = node->proc;
1222
Martijn Coenen858b2712017-08-31 10:04:26 +02001223 assert_spin_locked(&node->lock);
Todd Kjos673068e2017-06-29 12:02:03 -07001224 if (proc)
Martijn Coenen858b2712017-08-31 10:04:26 +02001225 assert_spin_locked(&proc->inner_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001226 if (strong) {
1227 if (internal) {
1228 if (target_list == NULL &&
1229 node->internal_strong_refs == 0 &&
Martijn Coenen342e5c92017-02-03 14:40:46 -08001230 !(node->proc &&
1231 node == node->proc->context->binder_context_mgr_node &&
1232 node->has_strong_ref)) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05301233 pr_err("invalid inc strong node for %d\n",
1234 node->debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001235 return -EINVAL;
1236 }
1237 node->internal_strong_refs++;
1238 } else
1239 node->local_strong_refs++;
1240 if (!node->has_strong_ref && target_list) {
Sherry Yang44b73962018-08-13 17:28:53 -07001241 struct binder_thread *thread = container_of(target_list,
1242 struct binder_thread, todo);
Todd Kjos72196392017-06-29 12:02:02 -07001243 binder_dequeue_work_ilocked(&node->work);
Sherry Yang44b73962018-08-13 17:28:53 -07001244 BUG_ON(&thread->todo != target_list);
1245 binder_enqueue_deferred_thread_work_ilocked(thread,
1246 &node->work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001247 }
1248 } else {
1249 if (!internal)
1250 node->local_weak_refs++;
1251 if (!node->has_weak_ref && list_empty(&node->work.entry)) {
1252 if (target_list == NULL) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05301253 pr_err("invalid inc weak node for %d\n",
1254 node->debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001255 return -EINVAL;
1256 }
Martijn Coenen148ade22017-11-15 09:21:35 +01001257 /*
1258 * See comment above
1259 */
Todd Kjos72196392017-06-29 12:02:02 -07001260 binder_enqueue_work_ilocked(&node->work, target_list);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001261 }
1262 }
1263 return 0;
1264}
1265
Todd Kjosed297212017-06-29 12:02:01 -07001266static int binder_inc_node(struct binder_node *node, int strong, int internal,
1267 struct list_head *target_list)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001268{
Todd Kjosed297212017-06-29 12:02:01 -07001269 int ret;
1270
Todd Kjos673068e2017-06-29 12:02:03 -07001271 binder_node_inner_lock(node);
1272 ret = binder_inc_node_nilocked(node, strong, internal, target_list);
1273 binder_node_inner_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07001274
1275 return ret;
1276}
1277
Todd Kjos673068e2017-06-29 12:02:03 -07001278static bool binder_dec_node_nilocked(struct binder_node *node,
1279 int strong, int internal)
Todd Kjosed297212017-06-29 12:02:01 -07001280{
1281 struct binder_proc *proc = node->proc;
1282
Martijn Coenen858b2712017-08-31 10:04:26 +02001283 assert_spin_locked(&node->lock);
Todd Kjosed297212017-06-29 12:02:01 -07001284 if (proc)
Martijn Coenen858b2712017-08-31 10:04:26 +02001285 assert_spin_locked(&proc->inner_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001286 if (strong) {
1287 if (internal)
1288 node->internal_strong_refs--;
1289 else
1290 node->local_strong_refs--;
1291 if (node->local_strong_refs || node->internal_strong_refs)
Todd Kjosed297212017-06-29 12:02:01 -07001292 return false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001293 } else {
1294 if (!internal)
1295 node->local_weak_refs--;
Todd Kjosadc18842017-06-29 12:01:59 -07001296 if (node->local_weak_refs || node->tmp_refs ||
1297 !hlist_empty(&node->refs))
Todd Kjosed297212017-06-29 12:02:01 -07001298 return false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001299 }
Todd Kjosed297212017-06-29 12:02:01 -07001300
1301 if (proc && (node->has_strong_ref || node->has_weak_ref)) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001302 if (list_empty(&node->work.entry)) {
Todd Kjos72196392017-06-29 12:02:02 -07001303 binder_enqueue_work_ilocked(&node->work, &proc->todo);
Martijn Coenen408c68b2017-08-31 10:04:19 +02001304 binder_wakeup_proc_ilocked(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001305 }
1306 } else {
1307 if (hlist_empty(&node->refs) && !node->local_strong_refs &&
Todd Kjosadc18842017-06-29 12:01:59 -07001308 !node->local_weak_refs && !node->tmp_refs) {
Todd Kjosed297212017-06-29 12:02:01 -07001309 if (proc) {
Todd Kjos72196392017-06-29 12:02:02 -07001310 binder_dequeue_work_ilocked(&node->work);
1311 rb_erase(&node->rb_node, &proc->nodes);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001312 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301313 "refless node %d deleted\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001314 node->debug_id);
1315 } else {
Todd Kjos72196392017-06-29 12:02:02 -07001316 BUG_ON(!list_empty(&node->work.entry));
Todd Kjosc44b1232017-06-29 12:01:43 -07001317 spin_lock(&binder_dead_nodes_lock);
Todd Kjosed297212017-06-29 12:02:01 -07001318 /*
1319 * tmp_refs could have changed so
1320 * check it again
1321 */
1322 if (node->tmp_refs) {
1323 spin_unlock(&binder_dead_nodes_lock);
1324 return false;
1325 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001326 hlist_del(&node->dead_node);
Todd Kjosc44b1232017-06-29 12:01:43 -07001327 spin_unlock(&binder_dead_nodes_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001328 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301329 "dead node %d deleted\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001330 node->debug_id);
1331 }
Todd Kjosed297212017-06-29 12:02:01 -07001332 return true;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001333 }
1334 }
Todd Kjosed297212017-06-29 12:02:01 -07001335 return false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001336}
1337
Todd Kjosed297212017-06-29 12:02:01 -07001338static void binder_dec_node(struct binder_node *node, int strong, int internal)
1339{
1340 bool free_node;
1341
Todd Kjos673068e2017-06-29 12:02:03 -07001342 binder_node_inner_lock(node);
1343 free_node = binder_dec_node_nilocked(node, strong, internal);
1344 binder_node_inner_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07001345 if (free_node)
1346 binder_free_node(node);
1347}
1348
1349static void binder_inc_node_tmpref_ilocked(struct binder_node *node)
Todd Kjosadc18842017-06-29 12:01:59 -07001350{
1351 /*
1352 * No call to binder_inc_node() is needed since we
1353 * don't need to inform userspace of any changes to
1354 * tmp_refs
1355 */
1356 node->tmp_refs++;
1357}
1358
1359/**
Todd Kjosed297212017-06-29 12:02:01 -07001360 * binder_inc_node_tmpref() - take a temporary reference on node
1361 * @node: node to reference
1362 *
1363 * Take reference on node to prevent the node from being freed
1364 * while referenced only by a local variable. The inner lock is
1365 * needed to serialize with the node work on the queue (which
1366 * isn't needed after the node is dead). If the node is dead
1367 * (node->proc is NULL), use binder_dead_nodes_lock to protect
1368 * node->tmp_refs against dead-node-only cases where the node
1369 * lock cannot be acquired (eg traversing the dead node list to
1370 * print nodes)
1371 */
1372static void binder_inc_node_tmpref(struct binder_node *node)
1373{
Todd Kjos673068e2017-06-29 12:02:03 -07001374 binder_node_lock(node);
Todd Kjosed297212017-06-29 12:02:01 -07001375 if (node->proc)
1376 binder_inner_proc_lock(node->proc);
1377 else
1378 spin_lock(&binder_dead_nodes_lock);
1379 binder_inc_node_tmpref_ilocked(node);
1380 if (node->proc)
1381 binder_inner_proc_unlock(node->proc);
1382 else
1383 spin_unlock(&binder_dead_nodes_lock);
Todd Kjos673068e2017-06-29 12:02:03 -07001384 binder_node_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07001385}
1386
1387/**
Todd Kjosadc18842017-06-29 12:01:59 -07001388 * binder_dec_node_tmpref() - remove a temporary reference on node
1389 * @node: node to reference
1390 *
1391 * Release temporary reference on node taken via binder_inc_node_tmpref()
1392 */
1393static void binder_dec_node_tmpref(struct binder_node *node)
1394{
Todd Kjosed297212017-06-29 12:02:01 -07001395 bool free_node;
1396
Todd Kjos673068e2017-06-29 12:02:03 -07001397 binder_node_inner_lock(node);
1398 if (!node->proc)
Todd Kjosed297212017-06-29 12:02:01 -07001399 spin_lock(&binder_dead_nodes_lock);
Todd Kjos324fa642018-11-06 15:56:31 -08001400 else
1401 __acquire(&binder_dead_nodes_lock);
Todd Kjosadc18842017-06-29 12:01:59 -07001402 node->tmp_refs--;
1403 BUG_ON(node->tmp_refs < 0);
Todd Kjosed297212017-06-29 12:02:01 -07001404 if (!node->proc)
1405 spin_unlock(&binder_dead_nodes_lock);
Todd Kjos324fa642018-11-06 15:56:31 -08001406 else
1407 __release(&binder_dead_nodes_lock);
Todd Kjosadc18842017-06-29 12:01:59 -07001408 /*
1409 * Call binder_dec_node() to check if all refcounts are 0
1410 * and cleanup is needed. Calling with strong=0 and internal=1
1411 * causes no actual reference to be released in binder_dec_node().
1412 * If that changes, a change is needed here too.
1413 */
Todd Kjos673068e2017-06-29 12:02:03 -07001414 free_node = binder_dec_node_nilocked(node, 0, 1);
1415 binder_node_inner_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07001416 if (free_node)
1417 binder_free_node(node);
Todd Kjosadc18842017-06-29 12:01:59 -07001418}
1419
1420static void binder_put_node(struct binder_node *node)
1421{
1422 binder_dec_node_tmpref(node);
1423}
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001424
Todd Kjos2c1838d2017-06-29 12:02:08 -07001425static struct binder_ref *binder_get_ref_olocked(struct binder_proc *proc,
1426 u32 desc, bool need_strong_ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001427{
1428 struct rb_node *n = proc->refs_by_desc.rb_node;
1429 struct binder_ref *ref;
1430
1431 while (n) {
1432 ref = rb_entry(n, struct binder_ref, rb_node_desc);
1433
Todd Kjos372e3142017-06-29 12:01:58 -07001434 if (desc < ref->data.desc) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001435 n = n->rb_left;
Todd Kjos372e3142017-06-29 12:01:58 -07001436 } else if (desc > ref->data.desc) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001437 n = n->rb_right;
Todd Kjos372e3142017-06-29 12:01:58 -07001438 } else if (need_strong_ref && !ref->data.strong) {
Arve Hjønnevåg0a3ffab2016-10-24 15:20:29 +02001439 binder_user_error("tried to use weak ref as strong ref\n");
1440 return NULL;
1441 } else {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001442 return ref;
Arve Hjønnevåg0a3ffab2016-10-24 15:20:29 +02001443 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001444 }
1445 return NULL;
1446}
1447
Todd Kjos372e3142017-06-29 12:01:58 -07001448/**
Todd Kjos2c1838d2017-06-29 12:02:08 -07001449 * binder_get_ref_for_node_olocked() - get the ref associated with given node
Todd Kjos372e3142017-06-29 12:01:58 -07001450 * @proc: binder_proc that owns the ref
1451 * @node: binder_node of target
1452 * @new_ref: newly allocated binder_ref to be initialized or %NULL
1453 *
1454 * Look up the ref for the given node and return it if it exists
1455 *
1456 * If it doesn't exist and the caller provides a newly allocated
1457 * ref, initialize the fields of the newly allocated ref and insert
1458 * into the given proc rb_trees and node refs list.
1459 *
1460 * Return: the ref for node. It is possible that another thread
1461 * allocated/initialized the ref first in which case the
1462 * returned ref would be different than the passed-in
1463 * new_ref. new_ref must be kfree'd by the caller in
1464 * this case.
1465 */
Todd Kjos2c1838d2017-06-29 12:02:08 -07001466static struct binder_ref *binder_get_ref_for_node_olocked(
1467 struct binder_proc *proc,
1468 struct binder_node *node,
1469 struct binder_ref *new_ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001470{
Todd Kjos372e3142017-06-29 12:01:58 -07001471 struct binder_context *context = proc->context;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001472 struct rb_node **p = &proc->refs_by_node.rb_node;
1473 struct rb_node *parent = NULL;
Todd Kjos372e3142017-06-29 12:01:58 -07001474 struct binder_ref *ref;
1475 struct rb_node *n;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001476
1477 while (*p) {
1478 parent = *p;
1479 ref = rb_entry(parent, struct binder_ref, rb_node_node);
1480
1481 if (node < ref->node)
1482 p = &(*p)->rb_left;
1483 else if (node > ref->node)
1484 p = &(*p)->rb_right;
1485 else
1486 return ref;
1487 }
Todd Kjos372e3142017-06-29 12:01:58 -07001488 if (!new_ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001489 return NULL;
Todd Kjos372e3142017-06-29 12:01:58 -07001490
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001491 binder_stats_created(BINDER_STAT_REF);
Todd Kjos372e3142017-06-29 12:01:58 -07001492 new_ref->data.debug_id = atomic_inc_return(&binder_last_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001493 new_ref->proc = proc;
1494 new_ref->node = node;
1495 rb_link_node(&new_ref->rb_node_node, parent, p);
1496 rb_insert_color(&new_ref->rb_node_node, &proc->refs_by_node);
1497
Todd Kjos372e3142017-06-29 12:01:58 -07001498 new_ref->data.desc = (node == context->binder_context_mgr_node) ? 0 : 1;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001499 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) {
1500 ref = rb_entry(n, struct binder_ref, rb_node_desc);
Todd Kjos372e3142017-06-29 12:01:58 -07001501 if (ref->data.desc > new_ref->data.desc)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001502 break;
Todd Kjos372e3142017-06-29 12:01:58 -07001503 new_ref->data.desc = ref->data.desc + 1;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001504 }
1505
1506 p = &proc->refs_by_desc.rb_node;
1507 while (*p) {
1508 parent = *p;
1509 ref = rb_entry(parent, struct binder_ref, rb_node_desc);
1510
Todd Kjos372e3142017-06-29 12:01:58 -07001511 if (new_ref->data.desc < ref->data.desc)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001512 p = &(*p)->rb_left;
Todd Kjos372e3142017-06-29 12:01:58 -07001513 else if (new_ref->data.desc > ref->data.desc)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001514 p = &(*p)->rb_right;
1515 else
1516 BUG();
1517 }
1518 rb_link_node(&new_ref->rb_node_desc, parent, p);
1519 rb_insert_color(&new_ref->rb_node_desc, &proc->refs_by_desc);
Todd Kjos673068e2017-06-29 12:02:03 -07001520
1521 binder_node_lock(node);
Todd Kjose4cffcf2017-06-29 12:01:50 -07001522 hlist_add_head(&new_ref->node_entry, &node->refs);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001523
Todd Kjose4cffcf2017-06-29 12:01:50 -07001524 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
1525 "%d new ref %d desc %d for node %d\n",
Todd Kjos372e3142017-06-29 12:01:58 -07001526 proc->pid, new_ref->data.debug_id, new_ref->data.desc,
Todd Kjose4cffcf2017-06-29 12:01:50 -07001527 node->debug_id);
Todd Kjos673068e2017-06-29 12:02:03 -07001528 binder_node_unlock(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001529 return new_ref;
1530}
1531
Todd Kjos2c1838d2017-06-29 12:02:08 -07001532static void binder_cleanup_ref_olocked(struct binder_ref *ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001533{
Todd Kjosed297212017-06-29 12:02:01 -07001534 bool delete_node = false;
Todd Kjosed297212017-06-29 12:02:01 -07001535
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001536 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301537 "%d delete ref %d desc %d for node %d\n",
Todd Kjos372e3142017-06-29 12:01:58 -07001538 ref->proc->pid, ref->data.debug_id, ref->data.desc,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301539 ref->node->debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001540
1541 rb_erase(&ref->rb_node_desc, &ref->proc->refs_by_desc);
1542 rb_erase(&ref->rb_node_node, &ref->proc->refs_by_node);
Todd Kjos372e3142017-06-29 12:01:58 -07001543
Todd Kjos673068e2017-06-29 12:02:03 -07001544 binder_node_inner_lock(ref->node);
Todd Kjos372e3142017-06-29 12:01:58 -07001545 if (ref->data.strong)
Todd Kjos673068e2017-06-29 12:02:03 -07001546 binder_dec_node_nilocked(ref->node, 1, 1);
Todd Kjos372e3142017-06-29 12:01:58 -07001547
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001548 hlist_del(&ref->node_entry);
Todd Kjos673068e2017-06-29 12:02:03 -07001549 delete_node = binder_dec_node_nilocked(ref->node, 0, 1);
1550 binder_node_inner_unlock(ref->node);
Todd Kjosed297212017-06-29 12:02:01 -07001551 /*
1552 * Clear ref->node unless we want the caller to free the node
1553 */
1554 if (!delete_node) {
1555 /*
1556 * The caller uses ref->node to determine
1557 * whether the node needs to be freed. Clear
1558 * it since the node is still alive.
1559 */
1560 ref->node = NULL;
1561 }
Todd Kjos372e3142017-06-29 12:01:58 -07001562
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001563 if (ref->death) {
1564 binder_debug(BINDER_DEBUG_DEAD_BINDER,
Anmol Sarma56b468f2012-10-30 22:35:43 +05301565 "%d delete ref %d desc %d has death notification\n",
Todd Kjos372e3142017-06-29 12:01:58 -07001566 ref->proc->pid, ref->data.debug_id,
1567 ref->data.desc);
Todd Kjos72196392017-06-29 12:02:02 -07001568 binder_dequeue_work(ref->proc, &ref->death->work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001569 binder_stats_deleted(BINDER_STAT_DEATH);
1570 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001571 binder_stats_deleted(BINDER_STAT_REF);
1572}
1573
Todd Kjos372e3142017-06-29 12:01:58 -07001574/**
Todd Kjos2c1838d2017-06-29 12:02:08 -07001575 * binder_inc_ref_olocked() - increment the ref for given handle
Todd Kjos372e3142017-06-29 12:01:58 -07001576 * @ref: ref to be incremented
1577 * @strong: if true, strong increment, else weak
1578 * @target_list: list to queue node work on
1579 *
Todd Kjos2c1838d2017-06-29 12:02:08 -07001580 * Increment the ref. @ref->proc->outer_lock must be held on entry
Todd Kjos372e3142017-06-29 12:01:58 -07001581 *
1582 * Return: 0, if successful, else errno
1583 */
Todd Kjos2c1838d2017-06-29 12:02:08 -07001584static int binder_inc_ref_olocked(struct binder_ref *ref, int strong,
1585 struct list_head *target_list)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001586{
1587 int ret;
Seunghun Lee10f62862014-05-01 01:30:23 +09001588
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001589 if (strong) {
Todd Kjos372e3142017-06-29 12:01:58 -07001590 if (ref->data.strong == 0) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001591 ret = binder_inc_node(ref->node, 1, 1, target_list);
1592 if (ret)
1593 return ret;
1594 }
Todd Kjos372e3142017-06-29 12:01:58 -07001595 ref->data.strong++;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001596 } else {
Todd Kjos372e3142017-06-29 12:01:58 -07001597 if (ref->data.weak == 0) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001598 ret = binder_inc_node(ref->node, 0, 1, target_list);
1599 if (ret)
1600 return ret;
1601 }
Todd Kjos372e3142017-06-29 12:01:58 -07001602 ref->data.weak++;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001603 }
1604 return 0;
1605}
1606
Todd Kjos372e3142017-06-29 12:01:58 -07001607/**
1608 * binder_dec_ref() - dec the ref for given handle
1609 * @ref: ref to be decremented
1610 * @strong: if true, strong decrement, else weak
1611 *
1612 * Decrement the ref.
1613 *
Todd Kjos372e3142017-06-29 12:01:58 -07001614 * Return: true if ref is cleaned up and ready to be freed
1615 */
Todd Kjos2c1838d2017-06-29 12:02:08 -07001616static bool binder_dec_ref_olocked(struct binder_ref *ref, int strong)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001617{
1618 if (strong) {
Todd Kjos372e3142017-06-29 12:01:58 -07001619 if (ref->data.strong == 0) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05301620 binder_user_error("%d invalid dec strong, ref %d desc %d s %d w %d\n",
Todd Kjos372e3142017-06-29 12:01:58 -07001621 ref->proc->pid, ref->data.debug_id,
1622 ref->data.desc, ref->data.strong,
1623 ref->data.weak);
1624 return false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001625 }
Todd Kjos372e3142017-06-29 12:01:58 -07001626 ref->data.strong--;
Todd Kjosed297212017-06-29 12:02:01 -07001627 if (ref->data.strong == 0)
1628 binder_dec_node(ref->node, strong, 1);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001629 } else {
Todd Kjos372e3142017-06-29 12:01:58 -07001630 if (ref->data.weak == 0) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05301631 binder_user_error("%d invalid dec weak, ref %d desc %d s %d w %d\n",
Todd Kjos372e3142017-06-29 12:01:58 -07001632 ref->proc->pid, ref->data.debug_id,
1633 ref->data.desc, ref->data.strong,
1634 ref->data.weak);
1635 return false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001636 }
Todd Kjos372e3142017-06-29 12:01:58 -07001637 ref->data.weak--;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001638 }
Todd Kjos372e3142017-06-29 12:01:58 -07001639 if (ref->data.strong == 0 && ref->data.weak == 0) {
Todd Kjos2c1838d2017-06-29 12:02:08 -07001640 binder_cleanup_ref_olocked(ref);
Todd Kjos372e3142017-06-29 12:01:58 -07001641 return true;
1642 }
1643 return false;
1644}
1645
1646/**
1647 * binder_get_node_from_ref() - get the node from the given proc/desc
1648 * @proc: proc containing the ref
1649 * @desc: the handle associated with the ref
1650 * @need_strong_ref: if true, only return node if ref is strong
1651 * @rdata: the id/refcount data for the ref
1652 *
1653 * Given a proc and ref handle, return the associated binder_node
1654 *
1655 * Return: a binder_node or NULL if not found or not strong when strong required
1656 */
1657static struct binder_node *binder_get_node_from_ref(
1658 struct binder_proc *proc,
1659 u32 desc, bool need_strong_ref,
1660 struct binder_ref_data *rdata)
1661{
1662 struct binder_node *node;
1663 struct binder_ref *ref;
1664
Todd Kjos2c1838d2017-06-29 12:02:08 -07001665 binder_proc_lock(proc);
1666 ref = binder_get_ref_olocked(proc, desc, need_strong_ref);
Todd Kjos372e3142017-06-29 12:01:58 -07001667 if (!ref)
1668 goto err_no_ref;
1669 node = ref->node;
Todd Kjosadc18842017-06-29 12:01:59 -07001670 /*
1671 * Take an implicit reference on the node to ensure
1672 * it stays alive until the call to binder_put_node()
1673 */
1674 binder_inc_node_tmpref(node);
Todd Kjos372e3142017-06-29 12:01:58 -07001675 if (rdata)
1676 *rdata = ref->data;
Todd Kjos2c1838d2017-06-29 12:02:08 -07001677 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001678
1679 return node;
1680
1681err_no_ref:
Todd Kjos2c1838d2017-06-29 12:02:08 -07001682 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001683 return NULL;
1684}
1685
1686/**
1687 * binder_free_ref() - free the binder_ref
1688 * @ref: ref to free
1689 *
Todd Kjosed297212017-06-29 12:02:01 -07001690 * Free the binder_ref. Free the binder_node indicated by ref->node
1691 * (if non-NULL) and the binder_ref_death indicated by ref->death.
Todd Kjos372e3142017-06-29 12:01:58 -07001692 */
1693static void binder_free_ref(struct binder_ref *ref)
1694{
Todd Kjosed297212017-06-29 12:02:01 -07001695 if (ref->node)
1696 binder_free_node(ref->node);
Todd Kjos372e3142017-06-29 12:01:58 -07001697 kfree(ref->death);
1698 kfree(ref);
1699}
1700
1701/**
1702 * binder_update_ref_for_handle() - inc/dec the ref for given handle
1703 * @proc: proc containing the ref
1704 * @desc: the handle associated with the ref
1705 * @increment: true=inc reference, false=dec reference
1706 * @strong: true=strong reference, false=weak reference
1707 * @rdata: the id/refcount data for the ref
1708 *
1709 * Given a proc and ref handle, increment or decrement the ref
1710 * according to "increment" arg.
1711 *
1712 * Return: 0 if successful, else errno
1713 */
1714static int binder_update_ref_for_handle(struct binder_proc *proc,
1715 uint32_t desc, bool increment, bool strong,
1716 struct binder_ref_data *rdata)
1717{
1718 int ret = 0;
1719 struct binder_ref *ref;
1720 bool delete_ref = false;
1721
Todd Kjos2c1838d2017-06-29 12:02:08 -07001722 binder_proc_lock(proc);
1723 ref = binder_get_ref_olocked(proc, desc, strong);
Todd Kjos372e3142017-06-29 12:01:58 -07001724 if (!ref) {
1725 ret = -EINVAL;
1726 goto err_no_ref;
1727 }
1728 if (increment)
Todd Kjos2c1838d2017-06-29 12:02:08 -07001729 ret = binder_inc_ref_olocked(ref, strong, NULL);
Todd Kjos372e3142017-06-29 12:01:58 -07001730 else
Todd Kjos2c1838d2017-06-29 12:02:08 -07001731 delete_ref = binder_dec_ref_olocked(ref, strong);
Todd Kjos372e3142017-06-29 12:01:58 -07001732
1733 if (rdata)
1734 *rdata = ref->data;
Todd Kjos2c1838d2017-06-29 12:02:08 -07001735 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001736
1737 if (delete_ref)
1738 binder_free_ref(ref);
1739 return ret;
1740
1741err_no_ref:
Todd Kjos2c1838d2017-06-29 12:02:08 -07001742 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001743 return ret;
1744}
1745
1746/**
1747 * binder_dec_ref_for_handle() - dec the ref for given handle
1748 * @proc: proc containing the ref
1749 * @desc: the handle associated with the ref
1750 * @strong: true=strong reference, false=weak reference
1751 * @rdata: the id/refcount data for the ref
1752 *
1753 * Just calls binder_update_ref_for_handle() to decrement the ref.
1754 *
1755 * Return: 0 if successful, else errno
1756 */
1757static int binder_dec_ref_for_handle(struct binder_proc *proc,
1758 uint32_t desc, bool strong, struct binder_ref_data *rdata)
1759{
1760 return binder_update_ref_for_handle(proc, desc, false, strong, rdata);
1761}
1762
1763
1764/**
1765 * binder_inc_ref_for_node() - increment the ref for given proc/node
1766 * @proc: proc containing the ref
1767 * @node: target node
1768 * @strong: true=strong reference, false=weak reference
1769 * @target_list: worklist to use if node is incremented
1770 * @rdata: the id/refcount data for the ref
1771 *
1772 * Given a proc and node, increment the ref. Create the ref if it
1773 * doesn't already exist
1774 *
1775 * Return: 0 if successful, else errno
1776 */
1777static int binder_inc_ref_for_node(struct binder_proc *proc,
1778 struct binder_node *node,
1779 bool strong,
1780 struct list_head *target_list,
1781 struct binder_ref_data *rdata)
1782{
1783 struct binder_ref *ref;
1784 struct binder_ref *new_ref = NULL;
1785 int ret = 0;
1786
Todd Kjos2c1838d2017-06-29 12:02:08 -07001787 binder_proc_lock(proc);
1788 ref = binder_get_ref_for_node_olocked(proc, node, NULL);
Todd Kjos372e3142017-06-29 12:01:58 -07001789 if (!ref) {
Todd Kjos2c1838d2017-06-29 12:02:08 -07001790 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001791 new_ref = kzalloc(sizeof(*ref), GFP_KERNEL);
1792 if (!new_ref)
1793 return -ENOMEM;
Todd Kjos2c1838d2017-06-29 12:02:08 -07001794 binder_proc_lock(proc);
1795 ref = binder_get_ref_for_node_olocked(proc, node, new_ref);
Todd Kjos372e3142017-06-29 12:01:58 -07001796 }
Todd Kjos2c1838d2017-06-29 12:02:08 -07001797 ret = binder_inc_ref_olocked(ref, strong, target_list);
Todd Kjos372e3142017-06-29 12:01:58 -07001798 *rdata = ref->data;
Todd Kjos2c1838d2017-06-29 12:02:08 -07001799 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07001800 if (new_ref && ref != new_ref)
1801 /*
1802 * Another thread created the ref first so
1803 * free the one we allocated
1804 */
1805 kfree(new_ref);
1806 return ret;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001807}
1808
Martijn Coenen0b89d692017-06-29 12:02:06 -07001809static void binder_pop_transaction_ilocked(struct binder_thread *target_thread,
1810 struct binder_transaction *t)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001811{
Todd Kjosb6d282c2017-06-29 12:01:54 -07001812 BUG_ON(!target_thread);
Martijn Coenen858b2712017-08-31 10:04:26 +02001813 assert_spin_locked(&target_thread->proc->inner_lock);
Todd Kjosb6d282c2017-06-29 12:01:54 -07001814 BUG_ON(target_thread->transaction_stack != t);
1815 BUG_ON(target_thread->transaction_stack->from != target_thread);
1816 target_thread->transaction_stack =
1817 target_thread->transaction_stack->from_parent;
1818 t->from = NULL;
1819}
1820
Todd Kjos7a4408c2017-06-29 12:01:57 -07001821/**
1822 * binder_thread_dec_tmpref() - decrement thread->tmp_ref
1823 * @thread: thread to decrement
1824 *
1825 * A thread needs to be kept alive while being used to create or
1826 * handle a transaction. binder_get_txn_from() is used to safely
1827 * extract t->from from a binder_transaction and keep the thread
1828 * indicated by t->from from being freed. When done with that
1829 * binder_thread, this function is called to decrement the
1830 * tmp_ref and free if appropriate (thread has been released
1831 * and no transaction being processed by the driver)
1832 */
1833static void binder_thread_dec_tmpref(struct binder_thread *thread)
1834{
1835 /*
1836 * atomic is used to protect the counter value while
1837 * it cannot reach zero or thread->is_dead is false
Todd Kjos7a4408c2017-06-29 12:01:57 -07001838 */
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001839 binder_inner_proc_lock(thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001840 atomic_dec(&thread->tmp_ref);
1841 if (thread->is_dead && !atomic_read(&thread->tmp_ref)) {
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001842 binder_inner_proc_unlock(thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001843 binder_free_thread(thread);
1844 return;
1845 }
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001846 binder_inner_proc_unlock(thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001847}
1848
1849/**
1850 * binder_proc_dec_tmpref() - decrement proc->tmp_ref
1851 * @proc: proc to decrement
1852 *
1853 * A binder_proc needs to be kept alive while being used to create or
1854 * handle a transaction. proc->tmp_ref is incremented when
1855 * creating a new transaction or the binder_proc is currently in-use
1856 * by threads that are being released. When done with the binder_proc,
1857 * this function is called to decrement the counter and free the
1858 * proc if appropriate (proc has been released, all threads have
1859 * been released and not currenly in-use to process a transaction).
1860 */
1861static void binder_proc_dec_tmpref(struct binder_proc *proc)
1862{
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001863 binder_inner_proc_lock(proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001864 proc->tmp_ref--;
1865 if (proc->is_dead && RB_EMPTY_ROOT(&proc->threads) &&
1866 !proc->tmp_ref) {
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001867 binder_inner_proc_unlock(proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001868 binder_free_proc(proc);
1869 return;
1870 }
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07001871 binder_inner_proc_unlock(proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001872}
1873
1874/**
1875 * binder_get_txn_from() - safely extract the "from" thread in transaction
1876 * @t: binder transaction for t->from
1877 *
1878 * Atomically return the "from" thread and increment the tmp_ref
1879 * count for the thread to ensure it stays alive until
1880 * binder_thread_dec_tmpref() is called.
1881 *
1882 * Return: the value of t->from
1883 */
1884static struct binder_thread *binder_get_txn_from(
1885 struct binder_transaction *t)
1886{
1887 struct binder_thread *from;
1888
1889 spin_lock(&t->lock);
1890 from = t->from;
1891 if (from)
1892 atomic_inc(&from->tmp_ref);
1893 spin_unlock(&t->lock);
1894 return from;
1895}
1896
Martijn Coenen0b89d692017-06-29 12:02:06 -07001897/**
1898 * binder_get_txn_from_and_acq_inner() - get t->from and acquire inner lock
1899 * @t: binder transaction for t->from
1900 *
1901 * Same as binder_get_txn_from() except it also acquires the proc->inner_lock
1902 * to guarantee that the thread cannot be released while operating on it.
1903 * The caller must call binder_inner_proc_unlock() to release the inner lock
1904 * as well as call binder_dec_thread_txn() to release the reference.
1905 *
1906 * Return: the value of t->from
1907 */
1908static struct binder_thread *binder_get_txn_from_and_acq_inner(
1909 struct binder_transaction *t)
Todd Kjos324fa642018-11-06 15:56:31 -08001910 __acquires(&t->from->proc->inner_lock)
Martijn Coenen0b89d692017-06-29 12:02:06 -07001911{
1912 struct binder_thread *from;
1913
1914 from = binder_get_txn_from(t);
Todd Kjos324fa642018-11-06 15:56:31 -08001915 if (!from) {
1916 __acquire(&from->proc->inner_lock);
Martijn Coenen0b89d692017-06-29 12:02:06 -07001917 return NULL;
Todd Kjos324fa642018-11-06 15:56:31 -08001918 }
Martijn Coenen0b89d692017-06-29 12:02:06 -07001919 binder_inner_proc_lock(from->proc);
1920 if (t->from) {
1921 BUG_ON(from != t->from);
1922 return from;
1923 }
1924 binder_inner_proc_unlock(from->proc);
Todd Kjos324fa642018-11-06 15:56:31 -08001925 __acquire(&from->proc->inner_lock);
Martijn Coenen0b89d692017-06-29 12:02:06 -07001926 binder_thread_dec_tmpref(from);
1927 return NULL;
1928}
1929
Todd Kjos44d80472018-08-28 13:46:25 -07001930/**
1931 * binder_free_txn_fixups() - free unprocessed fd fixups
1932 * @t: binder transaction for t->from
1933 *
1934 * If the transaction is being torn down prior to being
1935 * processed by the target process, free all of the
1936 * fd fixups and fput the file structs. It is safe to
1937 * call this function after the fixups have been
1938 * processed -- in that case, the list will be empty.
1939 */
1940static void binder_free_txn_fixups(struct binder_transaction *t)
1941{
1942 struct binder_txn_fd_fixup *fixup, *tmp;
1943
1944 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) {
1945 fput(fixup->file);
1946 list_del(&fixup->fixup_entry);
1947 kfree(fixup);
1948 }
1949}
1950
Todd Kjosb6d282c2017-06-29 12:01:54 -07001951static void binder_free_transaction(struct binder_transaction *t)
1952{
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001953 if (t->buffer)
1954 t->buffer->transaction = NULL;
Todd Kjos44d80472018-08-28 13:46:25 -07001955 binder_free_txn_fixups(t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001956 kfree(t);
1957 binder_stats_deleted(BINDER_STAT_TRANSACTION);
1958}
1959
1960static void binder_send_failed_reply(struct binder_transaction *t,
1961 uint32_t error_code)
1962{
1963 struct binder_thread *target_thread;
Lucas Tanured4ec15e2014-07-13 21:31:05 -03001964 struct binder_transaction *next;
Seunghun Lee10f62862014-05-01 01:30:23 +09001965
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001966 BUG_ON(t->flags & TF_ONE_WAY);
1967 while (1) {
Martijn Coenen0b89d692017-06-29 12:02:06 -07001968 target_thread = binder_get_txn_from_and_acq_inner(t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001969 if (target_thread) {
Todd Kjos26549d12017-06-29 12:01:55 -07001970 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
1971 "send failed reply for transaction %d to %d:%d\n",
1972 t->debug_id,
1973 target_thread->proc->pid,
1974 target_thread->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001975
Martijn Coenen0b89d692017-06-29 12:02:06 -07001976 binder_pop_transaction_ilocked(target_thread, t);
Todd Kjos26549d12017-06-29 12:01:55 -07001977 if (target_thread->reply_error.cmd == BR_OK) {
1978 target_thread->reply_error.cmd = error_code;
Martijn Coenen148ade22017-11-15 09:21:35 +01001979 binder_enqueue_thread_work_ilocked(
1980 target_thread,
1981 &target_thread->reply_error.work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001982 wake_up_interruptible(&target_thread->wait);
1983 } else {
Todd Kjose46a3b32018-02-07 12:38:47 -08001984 /*
1985 * Cannot get here for normal operation, but
1986 * we can if multiple synchronous transactions
1987 * are sent without blocking for responses.
1988 * Just ignore the 2nd error in this case.
1989 */
1990 pr_warn("Unexpected reply error: %u\n",
1991 target_thread->reply_error.cmd);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001992 }
Martijn Coenen0b89d692017-06-29 12:02:06 -07001993 binder_inner_proc_unlock(target_thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07001994 binder_thread_dec_tmpref(target_thread);
Todd Kjos26549d12017-06-29 12:01:55 -07001995 binder_free_transaction(t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001996 return;
Todd Kjos324fa642018-11-06 15:56:31 -08001997 } else {
1998 __release(&target_thread->proc->inner_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09001999 }
Lucas Tanured4ec15e2014-07-13 21:31:05 -03002000 next = t->from_parent;
2001
2002 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
2003 "send failed reply for transaction %d, target dead\n",
2004 t->debug_id);
2005
Todd Kjosb6d282c2017-06-29 12:01:54 -07002006 binder_free_transaction(t);
Lucas Tanured4ec15e2014-07-13 21:31:05 -03002007 if (next == NULL) {
2008 binder_debug(BINDER_DEBUG_DEAD_BINDER,
2009 "reply failed, no target thread at root\n");
2010 return;
2011 }
2012 t = next;
2013 binder_debug(BINDER_DEBUG_DEAD_BINDER,
2014 "reply failed, no target thread -- retry %d\n",
2015 t->debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002016 }
2017}
2018
Martijn Coenenfeba3902017-02-03 14:40:45 -08002019/**
Martijn Coenenfb2c4452017-11-13 10:06:08 +01002020 * binder_cleanup_transaction() - cleans up undelivered transaction
2021 * @t: transaction that needs to be cleaned up
2022 * @reason: reason the transaction wasn't delivered
2023 * @error_code: error to return to caller (if synchronous call)
2024 */
2025static void binder_cleanup_transaction(struct binder_transaction *t,
2026 const char *reason,
2027 uint32_t error_code)
2028{
2029 if (t->buffer->target_node && !(t->flags & TF_ONE_WAY)) {
2030 binder_send_failed_reply(t, error_code);
2031 } else {
2032 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
2033 "undelivered transaction %d, %s\n",
2034 t->debug_id, reason);
2035 binder_free_transaction(t);
2036 }
2037}
2038
2039/**
Todd Kjos7a67a392019-02-08 10:35:16 -08002040 * binder_get_object() - gets object and checks for valid metadata
2041 * @proc: binder_proc owning the buffer
Martijn Coenenfeba3902017-02-03 14:40:45 -08002042 * @buffer: binder_buffer that we're parsing.
Todd Kjos7a67a392019-02-08 10:35:16 -08002043 * @offset: offset in the @buffer at which to validate an object.
2044 * @object: struct binder_object to read into
Martijn Coenenfeba3902017-02-03 14:40:45 -08002045 *
2046 * Return: If there's a valid metadata object at @offset in @buffer, the
Todd Kjos7a67a392019-02-08 10:35:16 -08002047 * size of that object. Otherwise, it returns zero. The object
2048 * is read into the struct binder_object pointed to by @object.
Martijn Coenenfeba3902017-02-03 14:40:45 -08002049 */
Todd Kjos7a67a392019-02-08 10:35:16 -08002050static size_t binder_get_object(struct binder_proc *proc,
2051 struct binder_buffer *buffer,
2052 unsigned long offset,
2053 struct binder_object *object)
Martijn Coenenfeba3902017-02-03 14:40:45 -08002054{
Todd Kjos7a67a392019-02-08 10:35:16 -08002055 size_t read_size;
Martijn Coenenfeba3902017-02-03 14:40:45 -08002056 struct binder_object_header *hdr;
2057 size_t object_size = 0;
2058
Todd Kjos7a67a392019-02-08 10:35:16 -08002059 read_size = min_t(size_t, sizeof(*object), buffer->data_size - offset);
Todd Kjos5997da82019-03-20 15:35:45 -07002060 if (offset > buffer->data_size || read_size < sizeof(*hdr) ||
2061 !IS_ALIGNED(offset, sizeof(u32)))
Martijn Coenenfeba3902017-02-03 14:40:45 -08002062 return 0;
Todd Kjos7a67a392019-02-08 10:35:16 -08002063 binder_alloc_copy_from_buffer(&proc->alloc, object, buffer,
2064 offset, read_size);
Martijn Coenenfeba3902017-02-03 14:40:45 -08002065
Todd Kjos7a67a392019-02-08 10:35:16 -08002066 /* Ok, now see if we read a complete object. */
2067 hdr = &object->hdr;
Martijn Coenenfeba3902017-02-03 14:40:45 -08002068 switch (hdr->type) {
2069 case BINDER_TYPE_BINDER:
2070 case BINDER_TYPE_WEAK_BINDER:
2071 case BINDER_TYPE_HANDLE:
2072 case BINDER_TYPE_WEAK_HANDLE:
2073 object_size = sizeof(struct flat_binder_object);
2074 break;
2075 case BINDER_TYPE_FD:
2076 object_size = sizeof(struct binder_fd_object);
2077 break;
Martijn Coenen79802402017-02-03 14:40:51 -08002078 case BINDER_TYPE_PTR:
2079 object_size = sizeof(struct binder_buffer_object);
2080 break;
Martijn Coenendef95c72017-02-03 14:40:52 -08002081 case BINDER_TYPE_FDA:
2082 object_size = sizeof(struct binder_fd_array_object);
2083 break;
Martijn Coenenfeba3902017-02-03 14:40:45 -08002084 default:
2085 return 0;
2086 }
2087 if (offset <= buffer->data_size - object_size &&
2088 buffer->data_size >= object_size)
2089 return object_size;
2090 else
2091 return 0;
2092}
2093
Martijn Coenen79802402017-02-03 14:40:51 -08002094/**
2095 * binder_validate_ptr() - validates binder_buffer_object in a binder_buffer.
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002096 * @proc: binder_proc owning the buffer
Martijn Coenen79802402017-02-03 14:40:51 -08002097 * @b: binder_buffer containing the object
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002098 * @object: struct binder_object to read into
Martijn Coenen79802402017-02-03 14:40:51 -08002099 * @index: index in offset array at which the binder_buffer_object is
2100 * located
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002101 * @start_offset: points to the start of the offset array
2102 * @object_offsetp: offset of @object read from @b
Martijn Coenen79802402017-02-03 14:40:51 -08002103 * @num_valid: the number of valid offsets in the offset array
2104 *
2105 * Return: If @index is within the valid range of the offset array
2106 * described by @start and @num_valid, and if there's a valid
2107 * binder_buffer_object at the offset found in index @index
2108 * of the offset array, that object is returned. Otherwise,
2109 * %NULL is returned.
2110 * Note that the offset found in index @index itself is not
2111 * verified; this function assumes that @num_valid elements
2112 * from @start were previously verified to have valid offsets.
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002113 * If @object_offsetp is non-NULL, then the offset within
2114 * @b is written to it.
Martijn Coenen79802402017-02-03 14:40:51 -08002115 */
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002116static struct binder_buffer_object *binder_validate_ptr(
2117 struct binder_proc *proc,
2118 struct binder_buffer *b,
2119 struct binder_object *object,
2120 binder_size_t index,
2121 binder_size_t start_offset,
2122 binder_size_t *object_offsetp,
2123 binder_size_t num_valid)
Martijn Coenen79802402017-02-03 14:40:51 -08002124{
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002125 size_t object_size;
2126 binder_size_t object_offset;
2127 unsigned long buffer_offset;
Martijn Coenen79802402017-02-03 14:40:51 -08002128
2129 if (index >= num_valid)
2130 return NULL;
2131
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002132 buffer_offset = start_offset + sizeof(binder_size_t) * index;
2133 binder_alloc_copy_from_buffer(&proc->alloc, &object_offset,
2134 b, buffer_offset, sizeof(object_offset));
2135 object_size = binder_get_object(proc, b, object_offset, object);
2136 if (!object_size || object->hdr.type != BINDER_TYPE_PTR)
Martijn Coenen79802402017-02-03 14:40:51 -08002137 return NULL;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002138 if (object_offsetp)
2139 *object_offsetp = object_offset;
Martijn Coenen79802402017-02-03 14:40:51 -08002140
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002141 return &object->bbo;
Martijn Coenen79802402017-02-03 14:40:51 -08002142}
2143
2144/**
2145 * binder_validate_fixup() - validates pointer/fd fixups happen in order.
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002146 * @proc: binder_proc owning the buffer
Martijn Coenen79802402017-02-03 14:40:51 -08002147 * @b: transaction buffer
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002148 * @objects_start_offset: offset to start of objects buffer
2149 * @buffer_obj_offset: offset to binder_buffer_object in which to fix up
2150 * @fixup_offset: start offset in @buffer to fix up
2151 * @last_obj_offset: offset to last binder_buffer_object that we fixed
2152 * @last_min_offset: minimum fixup offset in object at @last_obj_offset
Martijn Coenen79802402017-02-03 14:40:51 -08002153 *
2154 * Return: %true if a fixup in buffer @buffer at offset @offset is
2155 * allowed.
2156 *
2157 * For safety reasons, we only allow fixups inside a buffer to happen
2158 * at increasing offsets; additionally, we only allow fixup on the last
2159 * buffer object that was verified, or one of its parents.
2160 *
2161 * Example of what is allowed:
2162 *
2163 * A
2164 * B (parent = A, offset = 0)
2165 * C (parent = A, offset = 16)
2166 * D (parent = C, offset = 0)
2167 * E (parent = A, offset = 32) // min_offset is 16 (C.parent_offset)
2168 *
2169 * Examples of what is not allowed:
2170 *
2171 * Decreasing offsets within the same parent:
2172 * A
2173 * C (parent = A, offset = 16)
2174 * B (parent = A, offset = 0) // decreasing offset within A
2175 *
2176 * Referring to a parent that wasn't the last object or any of its parents:
2177 * A
2178 * B (parent = A, offset = 0)
2179 * C (parent = A, offset = 0)
2180 * C (parent = A, offset = 16)
2181 * D (parent = B, offset = 0) // B is not A or any of A's parents
2182 */
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002183static bool binder_validate_fixup(struct binder_proc *proc,
2184 struct binder_buffer *b,
2185 binder_size_t objects_start_offset,
2186 binder_size_t buffer_obj_offset,
Martijn Coenen79802402017-02-03 14:40:51 -08002187 binder_size_t fixup_offset,
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002188 binder_size_t last_obj_offset,
Martijn Coenen79802402017-02-03 14:40:51 -08002189 binder_size_t last_min_offset)
2190{
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002191 if (!last_obj_offset) {
Martijn Coenen79802402017-02-03 14:40:51 -08002192 /* Nothing to fix up in */
2193 return false;
2194 }
2195
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002196 while (last_obj_offset != buffer_obj_offset) {
2197 unsigned long buffer_offset;
2198 struct binder_object last_object;
2199 struct binder_buffer_object *last_bbo;
2200 size_t object_size = binder_get_object(proc, b, last_obj_offset,
2201 &last_object);
2202 if (object_size != sizeof(*last_bbo))
2203 return false;
2204
2205 last_bbo = &last_object.bbo;
Martijn Coenen79802402017-02-03 14:40:51 -08002206 /*
2207 * Safe to retrieve the parent of last_obj, since it
2208 * was already previously verified by the driver.
2209 */
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002210 if ((last_bbo->flags & BINDER_BUFFER_FLAG_HAS_PARENT) == 0)
Martijn Coenen79802402017-02-03 14:40:51 -08002211 return false;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002212 last_min_offset = last_bbo->parent_offset + sizeof(uintptr_t);
2213 buffer_offset = objects_start_offset +
2214 sizeof(binder_size_t) * last_bbo->parent,
2215 binder_alloc_copy_from_buffer(&proc->alloc, &last_obj_offset,
2216 b, buffer_offset,
2217 sizeof(last_obj_offset));
Martijn Coenen79802402017-02-03 14:40:51 -08002218 }
2219 return (fixup_offset >= last_min_offset);
2220}
2221
Todd Kjos80cd7952018-12-14 15:58:21 -08002222/**
2223 * struct binder_task_work_cb - for deferred close
2224 *
2225 * @twork: callback_head for task work
2226 * @fd: fd to close
2227 *
2228 * Structure to pass task work to be handled after
2229 * returning from binder_ioctl() via task_work_add().
2230 */
2231struct binder_task_work_cb {
2232 struct callback_head twork;
2233 struct file *file;
2234};
2235
2236/**
2237 * binder_do_fd_close() - close list of file descriptors
2238 * @twork: callback head for task work
2239 *
2240 * It is not safe to call ksys_close() during the binder_ioctl()
2241 * function if there is a chance that binder's own file descriptor
2242 * might be closed. This is to meet the requirements for using
2243 * fdget() (see comments for __fget_light()). Therefore use
2244 * task_work_add() to schedule the close operation once we have
2245 * returned from binder_ioctl(). This function is a callback
2246 * for that mechanism and does the actual ksys_close() on the
2247 * given file descriptor.
2248 */
2249static void binder_do_fd_close(struct callback_head *twork)
2250{
2251 struct binder_task_work_cb *twcb = container_of(twork,
2252 struct binder_task_work_cb, twork);
2253
2254 fput(twcb->file);
2255 kfree(twcb);
2256}
2257
2258/**
2259 * binder_deferred_fd_close() - schedule a close for the given file-descriptor
2260 * @fd: file-descriptor to close
2261 *
2262 * See comments in binder_do_fd_close(). This function is used to schedule
2263 * a file-descriptor to be closed after returning from binder_ioctl().
2264 */
2265static void binder_deferred_fd_close(int fd)
2266{
2267 struct binder_task_work_cb *twcb;
2268
2269 twcb = kzalloc(sizeof(*twcb), GFP_KERNEL);
2270 if (!twcb)
2271 return;
2272 init_task_work(&twcb->twork, binder_do_fd_close);
2273 __close_fd_get_file(fd, &twcb->file);
2274 if (twcb->file)
2275 task_work_add(current, &twcb->twork, true);
2276 else
2277 kfree(twcb);
2278}
2279
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002280static void binder_transaction_buffer_release(struct binder_proc *proc,
2281 struct binder_buffer *buffer,
Todd Kjosbde4a192019-02-08 10:35:20 -08002282 binder_size_t failed_at,
2283 bool is_failure)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002284{
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002285 int debug_id = buffer->debug_id;
Todd Kjosbde4a192019-02-08 10:35:20 -08002286 binder_size_t off_start_offset, buffer_offset, off_end_offset;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002287
2288 binder_debug(BINDER_DEBUG_TRANSACTION,
Todd Kjosbde4a192019-02-08 10:35:20 -08002289 "%d buffer release %d, size %zd-%zd, failed at %llx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002290 proc->pid, buffer->debug_id,
Todd Kjosbde4a192019-02-08 10:35:20 -08002291 buffer->data_size, buffer->offsets_size,
2292 (unsigned long long)failed_at);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002293
2294 if (buffer->target_node)
2295 binder_dec_node(buffer->target_node, 1, 0);
2296
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002297 off_start_offset = ALIGN(buffer->data_size, sizeof(void *));
Todd Kjosbde4a192019-02-08 10:35:20 -08002298 off_end_offset = is_failure ? failed_at :
2299 off_start_offset + buffer->offsets_size;
2300 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset;
2301 buffer_offset += sizeof(binder_size_t)) {
Martijn Coenenfeba3902017-02-03 14:40:45 -08002302 struct binder_object_header *hdr;
Todd Kjos8ced0c62019-02-08 10:35:15 -08002303 size_t object_size;
Todd Kjos7a67a392019-02-08 10:35:16 -08002304 struct binder_object object;
Todd Kjos8ced0c62019-02-08 10:35:15 -08002305 binder_size_t object_offset;
Seunghun Lee10f62862014-05-01 01:30:23 +09002306
Todd Kjos8ced0c62019-02-08 10:35:15 -08002307 binder_alloc_copy_from_buffer(&proc->alloc, &object_offset,
2308 buffer, buffer_offset,
2309 sizeof(object_offset));
Todd Kjos7a67a392019-02-08 10:35:16 -08002310 object_size = binder_get_object(proc, buffer,
2311 object_offset, &object);
Martijn Coenenfeba3902017-02-03 14:40:45 -08002312 if (object_size == 0) {
2313 pr_err("transaction release %d bad object at offset %lld, size %zd\n",
Todd Kjos8ced0c62019-02-08 10:35:15 -08002314 debug_id, (u64)object_offset, buffer->data_size);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002315 continue;
2316 }
Todd Kjos7a67a392019-02-08 10:35:16 -08002317 hdr = &object.hdr;
Martijn Coenenfeba3902017-02-03 14:40:45 -08002318 switch (hdr->type) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002319 case BINDER_TYPE_BINDER:
2320 case BINDER_TYPE_WEAK_BINDER: {
Martijn Coenenfeba3902017-02-03 14:40:45 -08002321 struct flat_binder_object *fp;
2322 struct binder_node *node;
Seunghun Lee10f62862014-05-01 01:30:23 +09002323
Martijn Coenenfeba3902017-02-03 14:40:45 -08002324 fp = to_flat_binder_object(hdr);
2325 node = binder_get_node(proc, fp->binder);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002326 if (node == NULL) {
Arve Hjønnevågda498892014-02-21 14:40:26 -08002327 pr_err("transaction release %d bad node %016llx\n",
2328 debug_id, (u64)fp->binder);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002329 break;
2330 }
2331 binder_debug(BINDER_DEBUG_TRANSACTION,
Arve Hjønnevågda498892014-02-21 14:40:26 -08002332 " node %d u%016llx\n",
2333 node->debug_id, (u64)node->ptr);
Martijn Coenenfeba3902017-02-03 14:40:45 -08002334 binder_dec_node(node, hdr->type == BINDER_TYPE_BINDER,
2335 0);
Todd Kjosadc18842017-06-29 12:01:59 -07002336 binder_put_node(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002337 } break;
2338 case BINDER_TYPE_HANDLE:
2339 case BINDER_TYPE_WEAK_HANDLE: {
Martijn Coenenfeba3902017-02-03 14:40:45 -08002340 struct flat_binder_object *fp;
Todd Kjos372e3142017-06-29 12:01:58 -07002341 struct binder_ref_data rdata;
2342 int ret;
Arve Hjønnevåg0a3ffab2016-10-24 15:20:29 +02002343
Martijn Coenenfeba3902017-02-03 14:40:45 -08002344 fp = to_flat_binder_object(hdr);
Todd Kjos372e3142017-06-29 12:01:58 -07002345 ret = binder_dec_ref_for_handle(proc, fp->handle,
2346 hdr->type == BINDER_TYPE_HANDLE, &rdata);
2347
2348 if (ret) {
2349 pr_err("transaction release %d bad handle %d, ret = %d\n",
2350 debug_id, fp->handle, ret);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002351 break;
2352 }
2353 binder_debug(BINDER_DEBUG_TRANSACTION,
Todd Kjos372e3142017-06-29 12:01:58 -07002354 " ref %d desc %d\n",
2355 rdata.debug_id, rdata.desc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002356 } break;
2357
Martijn Coenenfeba3902017-02-03 14:40:45 -08002358 case BINDER_TYPE_FD: {
Todd Kjos44d80472018-08-28 13:46:25 -07002359 /*
2360 * No need to close the file here since user-space
2361 * closes it for for successfully delivered
2362 * transactions. For transactions that weren't
2363 * delivered, the new fd was never allocated so
2364 * there is no need to close and the fput on the
2365 * file is done when the transaction is torn
2366 * down.
2367 */
2368 WARN_ON(failed_at &&
2369 proc->tsk == current->group_leader);
Martijn Coenenfeba3902017-02-03 14:40:45 -08002370 } break;
Martijn Coenen79802402017-02-03 14:40:51 -08002371 case BINDER_TYPE_PTR:
2372 /*
2373 * Nothing to do here, this will get cleaned up when the
2374 * transaction buffer gets freed
2375 */
2376 break;
Martijn Coenendef95c72017-02-03 14:40:52 -08002377 case BINDER_TYPE_FDA: {
2378 struct binder_fd_array_object *fda;
2379 struct binder_buffer_object *parent;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002380 struct binder_object ptr_object;
Todd Kjosbde4a192019-02-08 10:35:20 -08002381 binder_size_t fda_offset;
Martijn Coenendef95c72017-02-03 14:40:52 -08002382 size_t fd_index;
2383 binder_size_t fd_buf_size;
Todd Kjosbde4a192019-02-08 10:35:20 -08002384 binder_size_t num_valid;
Martijn Coenendef95c72017-02-03 14:40:52 -08002385
Todd Kjos44d80472018-08-28 13:46:25 -07002386 if (proc->tsk != current->group_leader) {
2387 /*
2388 * Nothing to do if running in sender context
2389 * The fd fixups have not been applied so no
2390 * fds need to be closed.
2391 */
2392 continue;
2393 }
2394
Todd Kjosbde4a192019-02-08 10:35:20 -08002395 num_valid = (buffer_offset - off_start_offset) /
2396 sizeof(binder_size_t);
Martijn Coenendef95c72017-02-03 14:40:52 -08002397 fda = to_binder_fd_array_object(hdr);
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002398 parent = binder_validate_ptr(proc, buffer, &ptr_object,
2399 fda->parent,
2400 off_start_offset,
2401 NULL,
Todd Kjosbde4a192019-02-08 10:35:20 -08002402 num_valid);
Martijn Coenendef95c72017-02-03 14:40:52 -08002403 if (!parent) {
Arvind Yadavf7f84fd2017-09-25 12:52:11 +05302404 pr_err("transaction release %d bad parent offset\n",
Martijn Coenendef95c72017-02-03 14:40:52 -08002405 debug_id);
2406 continue;
2407 }
Martijn Coenendef95c72017-02-03 14:40:52 -08002408 fd_buf_size = sizeof(u32) * fda->num_fds;
2409 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) {
2410 pr_err("transaction release %d invalid number of fds (%lld)\n",
2411 debug_id, (u64)fda->num_fds);
2412 continue;
2413 }
2414 if (fd_buf_size > parent->length ||
2415 fda->parent_offset > parent->length - fd_buf_size) {
2416 /* No space for all file descriptors here. */
2417 pr_err("transaction release %d not enough space for %lld fds in buffer\n",
2418 debug_id, (u64)fda->num_fds);
2419 continue;
2420 }
Todd Kjosbde4a192019-02-08 10:35:20 -08002421 /*
2422 * the source data for binder_buffer_object is visible
2423 * to user-space and the @buffer element is the user
2424 * pointer to the buffer_object containing the fd_array.
2425 * Convert the address to an offset relative to
2426 * the base of the transaction buffer.
2427 */
2428 fda_offset =
2429 (parent->buffer - (uintptr_t)buffer->user_data) +
2430 fda->parent_offset;
Todd Kjos8ced0c62019-02-08 10:35:15 -08002431 for (fd_index = 0; fd_index < fda->num_fds;
2432 fd_index++) {
2433 u32 fd;
Todd Kjosbde4a192019-02-08 10:35:20 -08002434 binder_size_t offset = fda_offset +
2435 fd_index * sizeof(fd);
Todd Kjos8ced0c62019-02-08 10:35:15 -08002436
2437 binder_alloc_copy_from_buffer(&proc->alloc,
2438 &fd,
2439 buffer,
2440 offset,
2441 sizeof(fd));
2442 binder_deferred_fd_close(fd);
2443 }
Martijn Coenendef95c72017-02-03 14:40:52 -08002444 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002445 default:
Serban Constantinescu64dcfe62013-07-04 10:54:48 +01002446 pr_err("transaction release %d bad object type %x\n",
Martijn Coenenfeba3902017-02-03 14:40:45 -08002447 debug_id, hdr->type);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002448 break;
2449 }
2450 }
2451}
2452
Martijn Coenena056af42017-02-03 14:40:49 -08002453static int binder_translate_binder(struct flat_binder_object *fp,
2454 struct binder_transaction *t,
2455 struct binder_thread *thread)
2456{
2457 struct binder_node *node;
Martijn Coenena056af42017-02-03 14:40:49 -08002458 struct binder_proc *proc = thread->proc;
2459 struct binder_proc *target_proc = t->to_proc;
Todd Kjos372e3142017-06-29 12:01:58 -07002460 struct binder_ref_data rdata;
Todd Kjosadc18842017-06-29 12:01:59 -07002461 int ret = 0;
Martijn Coenena056af42017-02-03 14:40:49 -08002462
2463 node = binder_get_node(proc, fp->binder);
2464 if (!node) {
Todd Kjos673068e2017-06-29 12:02:03 -07002465 node = binder_new_node(proc, fp);
Martijn Coenena056af42017-02-03 14:40:49 -08002466 if (!node)
2467 return -ENOMEM;
Martijn Coenena056af42017-02-03 14:40:49 -08002468 }
2469 if (fp->cookie != node->cookie) {
2470 binder_user_error("%d:%d sending u%016llx node %d, cookie mismatch %016llx != %016llx\n",
2471 proc->pid, thread->pid, (u64)fp->binder,
2472 node->debug_id, (u64)fp->cookie,
2473 (u64)node->cookie);
Todd Kjosadc18842017-06-29 12:01:59 -07002474 ret = -EINVAL;
2475 goto done;
Martijn Coenena056af42017-02-03 14:40:49 -08002476 }
Todd Kjosadc18842017-06-29 12:01:59 -07002477 if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) {
2478 ret = -EPERM;
2479 goto done;
2480 }
Martijn Coenena056af42017-02-03 14:40:49 -08002481
Todd Kjos372e3142017-06-29 12:01:58 -07002482 ret = binder_inc_ref_for_node(target_proc, node,
2483 fp->hdr.type == BINDER_TYPE_BINDER,
2484 &thread->todo, &rdata);
2485 if (ret)
Todd Kjosadc18842017-06-29 12:01:59 -07002486 goto done;
Martijn Coenena056af42017-02-03 14:40:49 -08002487
2488 if (fp->hdr.type == BINDER_TYPE_BINDER)
2489 fp->hdr.type = BINDER_TYPE_HANDLE;
2490 else
2491 fp->hdr.type = BINDER_TYPE_WEAK_HANDLE;
2492 fp->binder = 0;
Todd Kjos372e3142017-06-29 12:01:58 -07002493 fp->handle = rdata.desc;
Martijn Coenena056af42017-02-03 14:40:49 -08002494 fp->cookie = 0;
Martijn Coenena056af42017-02-03 14:40:49 -08002495
Todd Kjos372e3142017-06-29 12:01:58 -07002496 trace_binder_transaction_node_to_ref(t, node, &rdata);
Martijn Coenena056af42017-02-03 14:40:49 -08002497 binder_debug(BINDER_DEBUG_TRANSACTION,
2498 " node %d u%016llx -> ref %d desc %d\n",
2499 node->debug_id, (u64)node->ptr,
Todd Kjos372e3142017-06-29 12:01:58 -07002500 rdata.debug_id, rdata.desc);
Todd Kjosadc18842017-06-29 12:01:59 -07002501done:
2502 binder_put_node(node);
2503 return ret;
Martijn Coenena056af42017-02-03 14:40:49 -08002504}
2505
2506static int binder_translate_handle(struct flat_binder_object *fp,
2507 struct binder_transaction *t,
2508 struct binder_thread *thread)
2509{
Martijn Coenena056af42017-02-03 14:40:49 -08002510 struct binder_proc *proc = thread->proc;
2511 struct binder_proc *target_proc = t->to_proc;
Todd Kjos372e3142017-06-29 12:01:58 -07002512 struct binder_node *node;
2513 struct binder_ref_data src_rdata;
Todd Kjosadc18842017-06-29 12:01:59 -07002514 int ret = 0;
Martijn Coenena056af42017-02-03 14:40:49 -08002515
Todd Kjos372e3142017-06-29 12:01:58 -07002516 node = binder_get_node_from_ref(proc, fp->handle,
2517 fp->hdr.type == BINDER_TYPE_HANDLE, &src_rdata);
2518 if (!node) {
Martijn Coenena056af42017-02-03 14:40:49 -08002519 binder_user_error("%d:%d got transaction with invalid handle, %d\n",
2520 proc->pid, thread->pid, fp->handle);
2521 return -EINVAL;
2522 }
Todd Kjosadc18842017-06-29 12:01:59 -07002523 if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) {
2524 ret = -EPERM;
2525 goto done;
2526 }
Martijn Coenena056af42017-02-03 14:40:49 -08002527
Todd Kjos673068e2017-06-29 12:02:03 -07002528 binder_node_lock(node);
Todd Kjos372e3142017-06-29 12:01:58 -07002529 if (node->proc == target_proc) {
Martijn Coenena056af42017-02-03 14:40:49 -08002530 if (fp->hdr.type == BINDER_TYPE_HANDLE)
2531 fp->hdr.type = BINDER_TYPE_BINDER;
2532 else
2533 fp->hdr.type = BINDER_TYPE_WEAK_BINDER;
Todd Kjos372e3142017-06-29 12:01:58 -07002534 fp->binder = node->ptr;
2535 fp->cookie = node->cookie;
Todd Kjos673068e2017-06-29 12:02:03 -07002536 if (node->proc)
2537 binder_inner_proc_lock(node->proc);
Todd Kjos324fa642018-11-06 15:56:31 -08002538 else
2539 __acquire(&node->proc->inner_lock);
Todd Kjos673068e2017-06-29 12:02:03 -07002540 binder_inc_node_nilocked(node,
2541 fp->hdr.type == BINDER_TYPE_BINDER,
2542 0, NULL);
2543 if (node->proc)
2544 binder_inner_proc_unlock(node->proc);
Todd Kjos324fa642018-11-06 15:56:31 -08002545 else
2546 __release(&node->proc->inner_lock);
Todd Kjos372e3142017-06-29 12:01:58 -07002547 trace_binder_transaction_ref_to_node(t, node, &src_rdata);
Martijn Coenena056af42017-02-03 14:40:49 -08002548 binder_debug(BINDER_DEBUG_TRANSACTION,
2549 " ref %d desc %d -> node %d u%016llx\n",
Todd Kjos372e3142017-06-29 12:01:58 -07002550 src_rdata.debug_id, src_rdata.desc, node->debug_id,
2551 (u64)node->ptr);
Todd Kjos673068e2017-06-29 12:02:03 -07002552 binder_node_unlock(node);
Martijn Coenena056af42017-02-03 14:40:49 -08002553 } else {
Todd Kjos372e3142017-06-29 12:01:58 -07002554 struct binder_ref_data dest_rdata;
Martijn Coenena056af42017-02-03 14:40:49 -08002555
Todd Kjos673068e2017-06-29 12:02:03 -07002556 binder_node_unlock(node);
Todd Kjos372e3142017-06-29 12:01:58 -07002557 ret = binder_inc_ref_for_node(target_proc, node,
2558 fp->hdr.type == BINDER_TYPE_HANDLE,
2559 NULL, &dest_rdata);
2560 if (ret)
Todd Kjosadc18842017-06-29 12:01:59 -07002561 goto done;
Martijn Coenena056af42017-02-03 14:40:49 -08002562
2563 fp->binder = 0;
Todd Kjos372e3142017-06-29 12:01:58 -07002564 fp->handle = dest_rdata.desc;
Martijn Coenena056af42017-02-03 14:40:49 -08002565 fp->cookie = 0;
Todd Kjos372e3142017-06-29 12:01:58 -07002566 trace_binder_transaction_ref_to_ref(t, node, &src_rdata,
2567 &dest_rdata);
Martijn Coenena056af42017-02-03 14:40:49 -08002568 binder_debug(BINDER_DEBUG_TRANSACTION,
2569 " ref %d desc %d -> ref %d desc %d (node %d)\n",
Todd Kjos372e3142017-06-29 12:01:58 -07002570 src_rdata.debug_id, src_rdata.desc,
2571 dest_rdata.debug_id, dest_rdata.desc,
2572 node->debug_id);
Martijn Coenena056af42017-02-03 14:40:49 -08002573 }
Todd Kjosadc18842017-06-29 12:01:59 -07002574done:
2575 binder_put_node(node);
2576 return ret;
Martijn Coenena056af42017-02-03 14:40:49 -08002577}
2578
Todd Kjos8ced0c62019-02-08 10:35:15 -08002579static int binder_translate_fd(u32 fd, binder_size_t fd_offset,
Martijn Coenena056af42017-02-03 14:40:49 -08002580 struct binder_transaction *t,
2581 struct binder_thread *thread,
2582 struct binder_transaction *in_reply_to)
2583{
2584 struct binder_proc *proc = thread->proc;
2585 struct binder_proc *target_proc = t->to_proc;
Todd Kjos44d80472018-08-28 13:46:25 -07002586 struct binder_txn_fd_fixup *fixup;
Martijn Coenena056af42017-02-03 14:40:49 -08002587 struct file *file;
Todd Kjos44d80472018-08-28 13:46:25 -07002588 int ret = 0;
Martijn Coenena056af42017-02-03 14:40:49 -08002589 bool target_allows_fd;
2590
2591 if (in_reply_to)
2592 target_allows_fd = !!(in_reply_to->flags & TF_ACCEPT_FDS);
2593 else
2594 target_allows_fd = t->buffer->target_node->accept_fds;
2595 if (!target_allows_fd) {
2596 binder_user_error("%d:%d got %s with fd, %d, but target does not allow fds\n",
2597 proc->pid, thread->pid,
2598 in_reply_to ? "reply" : "transaction",
2599 fd);
2600 ret = -EPERM;
2601 goto err_fd_not_accepted;
2602 }
2603
2604 file = fget(fd);
2605 if (!file) {
2606 binder_user_error("%d:%d got transaction with invalid fd, %d\n",
2607 proc->pid, thread->pid, fd);
2608 ret = -EBADF;
2609 goto err_fget;
2610 }
2611 ret = security_binder_transfer_file(proc->tsk, target_proc->tsk, file);
2612 if (ret < 0) {
2613 ret = -EPERM;
2614 goto err_security;
2615 }
2616
Todd Kjos44d80472018-08-28 13:46:25 -07002617 /*
2618 * Add fixup record for this transaction. The allocation
2619 * of the fd in the target needs to be done from a
2620 * target thread.
2621 */
2622 fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
2623 if (!fixup) {
Martijn Coenena056af42017-02-03 14:40:49 -08002624 ret = -ENOMEM;
Todd Kjos44d80472018-08-28 13:46:25 -07002625 goto err_alloc;
Martijn Coenena056af42017-02-03 14:40:49 -08002626 }
Todd Kjos44d80472018-08-28 13:46:25 -07002627 fixup->file = file;
Todd Kjos8ced0c62019-02-08 10:35:15 -08002628 fixup->offset = fd_offset;
Todd Kjos44d80472018-08-28 13:46:25 -07002629 trace_binder_transaction_fd_send(t, fd, fixup->offset);
2630 list_add_tail(&fixup->fixup_entry, &t->fd_fixups);
Martijn Coenena056af42017-02-03 14:40:49 -08002631
Todd Kjos44d80472018-08-28 13:46:25 -07002632 return ret;
Martijn Coenena056af42017-02-03 14:40:49 -08002633
Todd Kjos44d80472018-08-28 13:46:25 -07002634err_alloc:
Martijn Coenena056af42017-02-03 14:40:49 -08002635err_security:
2636 fput(file);
2637err_fget:
2638err_fd_not_accepted:
2639 return ret;
2640}
2641
Martijn Coenendef95c72017-02-03 14:40:52 -08002642static int binder_translate_fd_array(struct binder_fd_array_object *fda,
2643 struct binder_buffer_object *parent,
2644 struct binder_transaction *t,
2645 struct binder_thread *thread,
2646 struct binder_transaction *in_reply_to)
2647{
Todd Kjos44d80472018-08-28 13:46:25 -07002648 binder_size_t fdi, fd_buf_size;
Todd Kjosbde4a192019-02-08 10:35:20 -08002649 binder_size_t fda_offset;
Martijn Coenendef95c72017-02-03 14:40:52 -08002650 struct binder_proc *proc = thread->proc;
2651 struct binder_proc *target_proc = t->to_proc;
2652
2653 fd_buf_size = sizeof(u32) * fda->num_fds;
2654 if (fda->num_fds >= SIZE_MAX / sizeof(u32)) {
2655 binder_user_error("%d:%d got transaction with invalid number of fds (%lld)\n",
2656 proc->pid, thread->pid, (u64)fda->num_fds);
2657 return -EINVAL;
2658 }
2659 if (fd_buf_size > parent->length ||
2660 fda->parent_offset > parent->length - fd_buf_size) {
2661 /* No space for all file descriptors here. */
2662 binder_user_error("%d:%d not enough space to store %lld fds in buffer\n",
2663 proc->pid, thread->pid, (u64)fda->num_fds);
2664 return -EINVAL;
2665 }
Todd Kjosbde4a192019-02-08 10:35:20 -08002666 /*
2667 * the source data for binder_buffer_object is visible
2668 * to user-space and the @buffer element is the user
2669 * pointer to the buffer_object containing the fd_array.
2670 * Convert the address to an offset relative to
2671 * the base of the transaction buffer.
2672 */
2673 fda_offset = (parent->buffer - (uintptr_t)t->buffer->user_data) +
2674 fda->parent_offset;
2675 if (!IS_ALIGNED((unsigned long)fda_offset, sizeof(u32))) {
Martijn Coenendef95c72017-02-03 14:40:52 -08002676 binder_user_error("%d:%d parent offset not aligned correctly.\n",
2677 proc->pid, thread->pid);
2678 return -EINVAL;
2679 }
2680 for (fdi = 0; fdi < fda->num_fds; fdi++) {
Todd Kjos8ced0c62019-02-08 10:35:15 -08002681 u32 fd;
2682 int ret;
Todd Kjosbde4a192019-02-08 10:35:20 -08002683 binder_size_t offset = fda_offset + fdi * sizeof(fd);
Todd Kjos8ced0c62019-02-08 10:35:15 -08002684
2685 binder_alloc_copy_from_buffer(&target_proc->alloc,
2686 &fd, t->buffer,
2687 offset, sizeof(fd));
2688 ret = binder_translate_fd(fd, offset, t, thread,
2689 in_reply_to);
Todd Kjos44d80472018-08-28 13:46:25 -07002690 if (ret < 0)
2691 return ret;
Martijn Coenendef95c72017-02-03 14:40:52 -08002692 }
2693 return 0;
Martijn Coenendef95c72017-02-03 14:40:52 -08002694}
2695
Martijn Coenen79802402017-02-03 14:40:51 -08002696static int binder_fixup_parent(struct binder_transaction *t,
2697 struct binder_thread *thread,
2698 struct binder_buffer_object *bp,
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002699 binder_size_t off_start_offset,
Martijn Coenen79802402017-02-03 14:40:51 -08002700 binder_size_t num_valid,
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002701 binder_size_t last_fixup_obj_off,
Martijn Coenen79802402017-02-03 14:40:51 -08002702 binder_size_t last_fixup_min_off)
2703{
2704 struct binder_buffer_object *parent;
Martijn Coenen79802402017-02-03 14:40:51 -08002705 struct binder_buffer *b = t->buffer;
2706 struct binder_proc *proc = thread->proc;
2707 struct binder_proc *target_proc = t->to_proc;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002708 struct binder_object object;
2709 binder_size_t buffer_offset;
2710 binder_size_t parent_offset;
Martijn Coenen79802402017-02-03 14:40:51 -08002711
2712 if (!(bp->flags & BINDER_BUFFER_FLAG_HAS_PARENT))
2713 return 0;
2714
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002715 parent = binder_validate_ptr(target_proc, b, &object, bp->parent,
2716 off_start_offset, &parent_offset,
2717 num_valid);
Martijn Coenen79802402017-02-03 14:40:51 -08002718 if (!parent) {
2719 binder_user_error("%d:%d got transaction with invalid parent offset or type\n",
2720 proc->pid, thread->pid);
2721 return -EINVAL;
2722 }
2723
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002724 if (!binder_validate_fixup(target_proc, b, off_start_offset,
2725 parent_offset, bp->parent_offset,
2726 last_fixup_obj_off,
Martijn Coenen79802402017-02-03 14:40:51 -08002727 last_fixup_min_off)) {
2728 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n",
2729 proc->pid, thread->pid);
2730 return -EINVAL;
2731 }
2732
2733 if (parent->length < sizeof(binder_uintptr_t) ||
2734 bp->parent_offset > parent->length - sizeof(binder_uintptr_t)) {
2735 /* No space for a pointer here! */
2736 binder_user_error("%d:%d got transaction with invalid parent offset\n",
2737 proc->pid, thread->pid);
2738 return -EINVAL;
2739 }
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002740 buffer_offset = bp->parent_offset +
Todd Kjosbde4a192019-02-08 10:35:20 -08002741 (uintptr_t)parent->buffer - (uintptr_t)b->user_data;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002742 binder_alloc_copy_to_buffer(&target_proc->alloc, b, buffer_offset,
2743 &bp->buffer, sizeof(bp->buffer));
Martijn Coenen79802402017-02-03 14:40:51 -08002744
2745 return 0;
2746}
2747
Martijn Coenen408c68b2017-08-31 10:04:19 +02002748/**
2749 * binder_proc_transaction() - sends a transaction to a process and wakes it up
2750 * @t: transaction to send
2751 * @proc: process to send the transaction to
2752 * @thread: thread in @proc to send the transaction to (may be NULL)
2753 *
2754 * This function queues a transaction to the specified process. It will try
2755 * to find a thread in the target process to handle the transaction and
2756 * wake it up. If no thread is found, the work is queued to the proc
2757 * waitqueue.
2758 *
2759 * If the @thread parameter is not NULL, the transaction is always queued
2760 * to the waitlist of that specific thread.
2761 *
2762 * Return: true if the transactions was successfully queued
2763 * false if the target process or thread is dead
2764 */
2765static bool binder_proc_transaction(struct binder_transaction *t,
2766 struct binder_proc *proc,
2767 struct binder_thread *thread)
2768{
Martijn Coenen408c68b2017-08-31 10:04:19 +02002769 struct binder_node *node = t->buffer->target_node;
2770 bool oneway = !!(t->flags & TF_ONE_WAY);
Martijn Coenen148ade22017-11-15 09:21:35 +01002771 bool pending_async = false;
Martijn Coenen408c68b2017-08-31 10:04:19 +02002772
2773 BUG_ON(!node);
2774 binder_node_lock(node);
2775 if (oneway) {
2776 BUG_ON(thread);
2777 if (node->has_async_transaction) {
Martijn Coenen148ade22017-11-15 09:21:35 +01002778 pending_async = true;
Martijn Coenen408c68b2017-08-31 10:04:19 +02002779 } else {
Gustavo A. R. Silva197410a2018-01-23 12:04:27 -06002780 node->has_async_transaction = true;
Martijn Coenen408c68b2017-08-31 10:04:19 +02002781 }
2782 }
2783
2784 binder_inner_proc_lock(proc);
2785
2786 if (proc->is_dead || (thread && thread->is_dead)) {
2787 binder_inner_proc_unlock(proc);
2788 binder_node_unlock(node);
2789 return false;
2790 }
2791
Martijn Coenen148ade22017-11-15 09:21:35 +01002792 if (!thread && !pending_async)
Martijn Coenen408c68b2017-08-31 10:04:19 +02002793 thread = binder_select_thread_ilocked(proc);
2794
2795 if (thread)
Martijn Coenen148ade22017-11-15 09:21:35 +01002796 binder_enqueue_thread_work_ilocked(thread, &t->work);
2797 else if (!pending_async)
2798 binder_enqueue_work_ilocked(&t->work, &proc->todo);
Martijn Coenen408c68b2017-08-31 10:04:19 +02002799 else
Martijn Coenen148ade22017-11-15 09:21:35 +01002800 binder_enqueue_work_ilocked(&t->work, &node->async_todo);
Martijn Coenen408c68b2017-08-31 10:04:19 +02002801
Martijn Coenen148ade22017-11-15 09:21:35 +01002802 if (!pending_async)
Martijn Coenen408c68b2017-08-31 10:04:19 +02002803 binder_wakeup_thread_ilocked(proc, thread, !oneway /* sync */);
2804
2805 binder_inner_proc_unlock(proc);
2806 binder_node_unlock(node);
2807
2808 return true;
2809}
2810
Todd Kjos512cf462017-09-29 15:39:49 -07002811/**
2812 * binder_get_node_refs_for_txn() - Get required refs on node for txn
2813 * @node: struct binder_node for which to get refs
2814 * @proc: returns @node->proc if valid
2815 * @error: if no @proc then returns BR_DEAD_REPLY
2816 *
2817 * User-space normally keeps the node alive when creating a transaction
2818 * since it has a reference to the target. The local strong ref keeps it
2819 * alive if the sending process dies before the target process processes
2820 * the transaction. If the source process is malicious or has a reference
2821 * counting bug, relying on the local strong ref can fail.
2822 *
2823 * Since user-space can cause the local strong ref to go away, we also take
2824 * a tmpref on the node to ensure it survives while we are constructing
2825 * the transaction. We also need a tmpref on the proc while we are
2826 * constructing the transaction, so we take that here as well.
2827 *
2828 * Return: The target_node with refs taken or NULL if no @node->proc is NULL.
2829 * Also sets @proc if valid. If the @node->proc is NULL indicating that the
2830 * target proc has died, @error is set to BR_DEAD_REPLY
2831 */
2832static struct binder_node *binder_get_node_refs_for_txn(
2833 struct binder_node *node,
2834 struct binder_proc **procp,
2835 uint32_t *error)
2836{
2837 struct binder_node *target_node = NULL;
2838
2839 binder_node_inner_lock(node);
2840 if (node->proc) {
2841 target_node = node;
2842 binder_inc_node_nilocked(node, 1, 0, NULL);
2843 binder_inc_node_tmpref_ilocked(node);
2844 node->proc->tmp_ref++;
2845 *procp = node->proc;
2846 } else
2847 *error = BR_DEAD_REPLY;
2848 binder_node_inner_unlock(node);
2849
2850 return target_node;
2851}
2852
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002853static void binder_transaction(struct binder_proc *proc,
2854 struct binder_thread *thread,
Martijn Coenen4bfac802017-02-03 14:40:50 -08002855 struct binder_transaction_data *tr, int reply,
2856 binder_size_t extra_buffers_size)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002857{
Martijn Coenena056af42017-02-03 14:40:49 -08002858 int ret;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002859 struct binder_transaction *t;
Sherry Yang44b73962018-08-13 17:28:53 -07002860 struct binder_work *w;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002861 struct binder_work *tcomplete;
Todd Kjosbde4a192019-02-08 10:35:20 -08002862 binder_size_t buffer_offset = 0;
2863 binder_size_t off_start_offset, off_end_offset;
Arve Hjønnevåg212265e2016-02-09 21:05:32 -08002864 binder_size_t off_min;
Todd Kjosbde4a192019-02-08 10:35:20 -08002865 binder_size_t sg_buf_offset, sg_buf_end_offset;
Todd Kjos7a4408c2017-06-29 12:01:57 -07002866 struct binder_proc *target_proc = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002867 struct binder_thread *target_thread = NULL;
2868 struct binder_node *target_node = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002869 struct binder_transaction *in_reply_to = NULL;
2870 struct binder_transaction_log_entry *e;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002871 uint32_t return_error = 0;
2872 uint32_t return_error_param = 0;
2873 uint32_t return_error_line = 0;
Todd Kjosdb6b0b82019-02-08 10:35:17 -08002874 binder_size_t last_fixup_obj_off = 0;
Martijn Coenen79802402017-02-03 14:40:51 -08002875 binder_size_t last_fixup_min_off = 0;
Martijn Coenen342e5c92017-02-03 14:40:46 -08002876 struct binder_context *context = proc->context;
Todd Kjosd99c7332017-06-29 12:01:53 -07002877 int t_debug_id = atomic_inc_return(&binder_last_id);
Todd Kjosec741362019-01-14 09:10:21 -08002878 char *secctx = NULL;
2879 u32 secctx_sz = 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002880
2881 e = binder_transaction_log_add(&binder_transaction_log);
Todd Kjosd99c7332017-06-29 12:01:53 -07002882 e->debug_id = t_debug_id;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002883 e->call_type = reply ? 2 : !!(tr->flags & TF_ONE_WAY);
2884 e->from_proc = proc->pid;
2885 e->from_thread = thread->pid;
2886 e->target_handle = tr->target.handle;
2887 e->data_size = tr->data_size;
2888 e->offsets_size = tr->offsets_size;
Martijn Coenen14db3182017-02-03 14:40:47 -08002889 e->context_name = proc->context->name;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002890
2891 if (reply) {
Martijn Coenen0b89d692017-06-29 12:02:06 -07002892 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002893 in_reply_to = thread->transaction_stack;
2894 if (in_reply_to == NULL) {
Martijn Coenen0b89d692017-06-29 12:02:06 -07002895 binder_inner_proc_unlock(proc);
Anmol Sarma56b468f2012-10-30 22:35:43 +05302896 binder_user_error("%d:%d got reply transaction with no transaction stack\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002897 proc->pid, thread->pid);
2898 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002899 return_error_param = -EPROTO;
2900 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002901 goto err_empty_call_stack;
2902 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002903 if (in_reply_to->to_thread != thread) {
Todd Kjos7a4408c2017-06-29 12:01:57 -07002904 spin_lock(&in_reply_to->lock);
Anmol Sarma56b468f2012-10-30 22:35:43 +05302905 binder_user_error("%d:%d got reply transaction with bad transaction stack, transaction %d has target %d:%d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002906 proc->pid, thread->pid, in_reply_to->debug_id,
2907 in_reply_to->to_proc ?
2908 in_reply_to->to_proc->pid : 0,
2909 in_reply_to->to_thread ?
2910 in_reply_to->to_thread->pid : 0);
Todd Kjos7a4408c2017-06-29 12:01:57 -07002911 spin_unlock(&in_reply_to->lock);
Martijn Coenen0b89d692017-06-29 12:02:06 -07002912 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002913 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002914 return_error_param = -EPROTO;
2915 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002916 in_reply_to = NULL;
2917 goto err_bad_call_stack;
2918 }
2919 thread->transaction_stack = in_reply_to->to_parent;
Martijn Coenen0b89d692017-06-29 12:02:06 -07002920 binder_inner_proc_unlock(proc);
2921 binder_set_nice(in_reply_to->saved_priority);
2922 target_thread = binder_get_txn_from_and_acq_inner(in_reply_to);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002923 if (target_thread == NULL) {
Todd Kjos324fa642018-11-06 15:56:31 -08002924 /* annotation for sparse */
2925 __release(&target_thread->proc->inner_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002926 return_error = BR_DEAD_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002927 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002928 goto err_dead_binder;
2929 }
2930 if (target_thread->transaction_stack != in_reply_to) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05302931 binder_user_error("%d:%d got reply transaction with bad target transaction stack %d, expected %d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002932 proc->pid, thread->pid,
2933 target_thread->transaction_stack ?
2934 target_thread->transaction_stack->debug_id : 0,
2935 in_reply_to->debug_id);
Martijn Coenen0b89d692017-06-29 12:02:06 -07002936 binder_inner_proc_unlock(target_thread->proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002937 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002938 return_error_param = -EPROTO;
2939 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002940 in_reply_to = NULL;
2941 target_thread = NULL;
2942 goto err_dead_binder;
2943 }
2944 target_proc = target_thread->proc;
Todd Kjos7a4408c2017-06-29 12:01:57 -07002945 target_proc->tmp_ref++;
Martijn Coenen0b89d692017-06-29 12:02:06 -07002946 binder_inner_proc_unlock(target_thread->proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002947 } else {
2948 if (tr->target.handle) {
2949 struct binder_ref *ref;
Seunghun Lee10f62862014-05-01 01:30:23 +09002950
Todd Kjoseb349832017-06-29 12:01:56 -07002951 /*
2952 * There must already be a strong ref
2953 * on this node. If so, do a strong
2954 * increment on the node to ensure it
2955 * stays alive until the transaction is
2956 * done.
2957 */
Todd Kjos2c1838d2017-06-29 12:02:08 -07002958 binder_proc_lock(proc);
2959 ref = binder_get_ref_olocked(proc, tr->target.handle,
2960 true);
Todd Kjoseb349832017-06-29 12:01:56 -07002961 if (ref) {
Todd Kjos512cf462017-09-29 15:39:49 -07002962 target_node = binder_get_node_refs_for_txn(
2963 ref->node, &target_proc,
2964 &return_error);
2965 } else {
2966 binder_user_error("%d:%d got transaction to invalid handle\n",
2967 proc->pid, thread->pid);
2968 return_error = BR_FAILED_REPLY;
Todd Kjoseb349832017-06-29 12:01:56 -07002969 }
Todd Kjos2c1838d2017-06-29 12:02:08 -07002970 binder_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002971 } else {
Todd Kjosc44b1232017-06-29 12:01:43 -07002972 mutex_lock(&context->context_mgr_node_lock);
Martijn Coenen342e5c92017-02-03 14:40:46 -08002973 target_node = context->binder_context_mgr_node;
Todd Kjos512cf462017-09-29 15:39:49 -07002974 if (target_node)
2975 target_node = binder_get_node_refs_for_txn(
2976 target_node, &target_proc,
2977 &return_error);
2978 else
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002979 return_error = BR_DEAD_REPLY;
Todd Kjosc44b1232017-06-29 12:01:43 -07002980 mutex_unlock(&context->context_mgr_node_lock);
Martijn Coenen7aa135f2018-03-28 11:14:50 +02002981 if (target_node && target_proc == proc) {
2982 binder_user_error("%d:%d got transaction to context manager from process owning it\n",
2983 proc->pid, thread->pid);
2984 return_error = BR_FAILED_REPLY;
2985 return_error_param = -EINVAL;
2986 return_error_line = __LINE__;
2987 goto err_invalid_target_handle;
2988 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002989 }
Todd Kjos512cf462017-09-29 15:39:49 -07002990 if (!target_node) {
2991 /*
2992 * return_error is set above
2993 */
2994 return_error_param = -EINVAL;
Todd Kjos57ada2f2017-06-29 12:01:46 -07002995 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09002996 goto err_dead_binder;
2997 }
Todd Kjos512cf462017-09-29 15:39:49 -07002998 e->to_node = target_node->debug_id;
Stephen Smalley79af7302015-01-21 10:54:10 -05002999 if (security_binder_transaction(proc->tsk,
3000 target_proc->tsk) < 0) {
3001 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003002 return_error_param = -EPERM;
3003 return_error_line = __LINE__;
Stephen Smalley79af7302015-01-21 10:54:10 -05003004 goto err_invalid_target_handle;
3005 }
Martijn Coenen0b89d692017-06-29 12:02:06 -07003006 binder_inner_proc_lock(proc);
Sherry Yang44b73962018-08-13 17:28:53 -07003007
3008 w = list_first_entry_or_null(&thread->todo,
3009 struct binder_work, entry);
3010 if (!(tr->flags & TF_ONE_WAY) && w &&
3011 w->type == BINDER_WORK_TRANSACTION) {
3012 /*
3013 * Do not allow new outgoing transaction from a
3014 * thread that has a transaction at the head of
3015 * its todo list. Only need to check the head
3016 * because binder_select_thread_ilocked picks a
3017 * thread from proc->waiting_threads to enqueue
3018 * the transaction, and nothing is queued to the
3019 * todo list while the thread is on waiting_threads.
3020 */
3021 binder_user_error("%d:%d new transaction not allowed when there is a transaction on thread todo\n",
3022 proc->pid, thread->pid);
3023 binder_inner_proc_unlock(proc);
3024 return_error = BR_FAILED_REPLY;
3025 return_error_param = -EPROTO;
3026 return_error_line = __LINE__;
3027 goto err_bad_todo_list;
3028 }
3029
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003030 if (!(tr->flags & TF_ONE_WAY) && thread->transaction_stack) {
3031 struct binder_transaction *tmp;
Seunghun Lee10f62862014-05-01 01:30:23 +09003032
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003033 tmp = thread->transaction_stack;
3034 if (tmp->to_thread != thread) {
Todd Kjos7a4408c2017-06-29 12:01:57 -07003035 spin_lock(&tmp->lock);
Anmol Sarma56b468f2012-10-30 22:35:43 +05303036 binder_user_error("%d:%d got new transaction with bad transaction stack, transaction %d has target %d:%d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003037 proc->pid, thread->pid, tmp->debug_id,
3038 tmp->to_proc ? tmp->to_proc->pid : 0,
3039 tmp->to_thread ?
3040 tmp->to_thread->pid : 0);
Todd Kjos7a4408c2017-06-29 12:01:57 -07003041 spin_unlock(&tmp->lock);
Martijn Coenen0b89d692017-06-29 12:02:06 -07003042 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003043 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003044 return_error_param = -EPROTO;
3045 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003046 goto err_bad_call_stack;
3047 }
3048 while (tmp) {
Todd Kjos7a4408c2017-06-29 12:01:57 -07003049 struct binder_thread *from;
3050
3051 spin_lock(&tmp->lock);
3052 from = tmp->from;
3053 if (from && from->proc == target_proc) {
3054 atomic_inc(&from->tmp_ref);
3055 target_thread = from;
3056 spin_unlock(&tmp->lock);
3057 break;
3058 }
3059 spin_unlock(&tmp->lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003060 tmp = tmp->from_parent;
3061 }
3062 }
Martijn Coenen0b89d692017-06-29 12:02:06 -07003063 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003064 }
Martijn Coenen408c68b2017-08-31 10:04:19 +02003065 if (target_thread)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003066 e->to_thread = target_thread->pid;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003067 e->to_proc = target_proc->pid;
3068
3069 /* TODO: reuse incoming transaction for reply */
3070 t = kzalloc(sizeof(*t), GFP_KERNEL);
3071 if (t == NULL) {
3072 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003073 return_error_param = -ENOMEM;
3074 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003075 goto err_alloc_t_failed;
3076 }
Todd Kjos44d80472018-08-28 13:46:25 -07003077 INIT_LIST_HEAD(&t->fd_fixups);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003078 binder_stats_created(BINDER_STAT_TRANSACTION);
Todd Kjos7a4408c2017-06-29 12:01:57 -07003079 spin_lock_init(&t->lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003080
3081 tcomplete = kzalloc(sizeof(*tcomplete), GFP_KERNEL);
3082 if (tcomplete == NULL) {
3083 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003084 return_error_param = -ENOMEM;
3085 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003086 goto err_alloc_tcomplete_failed;
3087 }
3088 binder_stats_created(BINDER_STAT_TRANSACTION_COMPLETE);
3089
Todd Kjosd99c7332017-06-29 12:01:53 -07003090 t->debug_id = t_debug_id;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003091
3092 if (reply)
3093 binder_debug(BINDER_DEBUG_TRANSACTION,
Martijn Coenen4bfac802017-02-03 14:40:50 -08003094 "%d:%d BC_REPLY %d -> %d:%d, data %016llx-%016llx size %lld-%lld-%lld\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003095 proc->pid, thread->pid, t->debug_id,
3096 target_proc->pid, target_thread->pid,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003097 (u64)tr->data.ptr.buffer,
3098 (u64)tr->data.ptr.offsets,
Martijn Coenen4bfac802017-02-03 14:40:50 -08003099 (u64)tr->data_size, (u64)tr->offsets_size,
3100 (u64)extra_buffers_size);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003101 else
3102 binder_debug(BINDER_DEBUG_TRANSACTION,
Martijn Coenen4bfac802017-02-03 14:40:50 -08003103 "%d:%d BC_TRANSACTION %d -> %d - node %d, data %016llx-%016llx size %lld-%lld-%lld\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003104 proc->pid, thread->pid, t->debug_id,
3105 target_proc->pid, target_node->debug_id,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003106 (u64)tr->data.ptr.buffer,
3107 (u64)tr->data.ptr.offsets,
Martijn Coenen4bfac802017-02-03 14:40:50 -08003108 (u64)tr->data_size, (u64)tr->offsets_size,
3109 (u64)extra_buffers_size);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003110
3111 if (!reply && !(tr->flags & TF_ONE_WAY))
3112 t->from = thread;
3113 else
3114 t->from = NULL;
Tair Rzayev57bab7c2014-05-31 22:43:34 +03003115 t->sender_euid = task_euid(proc->tsk);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003116 t->to_proc = target_proc;
3117 t->to_thread = target_thread;
3118 t->code = tr->code;
3119 t->flags = tr->flags;
3120 t->priority = task_nice(current);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07003121
Todd Kjosec741362019-01-14 09:10:21 -08003122 if (target_node && target_node->txn_security_ctx) {
3123 u32 secid;
3124
3125 security_task_getsecid(proc->tsk, &secid);
3126 ret = security_secid_to_secctx(secid, &secctx, &secctx_sz);
3127 if (ret) {
3128 return_error = BR_FAILED_REPLY;
3129 return_error_param = ret;
3130 return_error_line = __LINE__;
3131 goto err_get_secctx_failed;
3132 }
3133 extra_buffers_size += ALIGN(secctx_sz, sizeof(u64));
3134 }
3135
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07003136 trace_binder_transaction(reply, t, target_node);
3137
Todd Kjos19c98722017-06-29 12:01:40 -07003138 t->buffer = binder_alloc_new_buf(&target_proc->alloc, tr->data_size,
Martijn Coenen4bfac802017-02-03 14:40:50 -08003139 tr->offsets_size, extra_buffers_size,
3140 !reply && (t->flags & TF_ONE_WAY));
Todd Kjos57ada2f2017-06-29 12:01:46 -07003141 if (IS_ERR(t->buffer)) {
3142 /*
3143 * -ESRCH indicates VMA cleared. The target is dying.
3144 */
3145 return_error_param = PTR_ERR(t->buffer);
3146 return_error = return_error_param == -ESRCH ?
3147 BR_DEAD_REPLY : BR_FAILED_REPLY;
3148 return_error_line = __LINE__;
3149 t->buffer = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003150 goto err_binder_alloc_buf_failed;
3151 }
Todd Kjosec741362019-01-14 09:10:21 -08003152 if (secctx) {
3153 size_t buf_offset = ALIGN(tr->data_size, sizeof(void *)) +
3154 ALIGN(tr->offsets_size, sizeof(void *)) +
3155 ALIGN(extra_buffers_size, sizeof(void *)) -
3156 ALIGN(secctx_sz, sizeof(u64));
Todd Kjosec741362019-01-14 09:10:21 -08003157
Todd Kjosbde4a192019-02-08 10:35:20 -08003158 t->security_ctx = (uintptr_t)t->buffer->user_data + buf_offset;
Todd Kjos8ced0c62019-02-08 10:35:15 -08003159 binder_alloc_copy_to_buffer(&target_proc->alloc,
3160 t->buffer, buf_offset,
3161 secctx, secctx_sz);
Todd Kjosec741362019-01-14 09:10:21 -08003162 security_release_secctx(secctx, secctx_sz);
3163 secctx = NULL;
3164 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003165 t->buffer->debug_id = t->debug_id;
3166 t->buffer->transaction = t;
3167 t->buffer->target_node = target_node;
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07003168 trace_binder_transaction_alloc_buf(t->buffer);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003169
Todd Kjos1a7c3d92019-02-08 10:35:14 -08003170 if (binder_alloc_copy_user_to_buffer(
3171 &target_proc->alloc,
3172 t->buffer, 0,
3173 (const void __user *)
3174 (uintptr_t)tr->data.ptr.buffer,
3175 tr->data_size)) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303176 binder_user_error("%d:%d got transaction with invalid data ptr\n",
3177 proc->pid, thread->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003178 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003179 return_error_param = -EFAULT;
3180 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003181 goto err_copy_data_failed;
3182 }
Todd Kjos1a7c3d92019-02-08 10:35:14 -08003183 if (binder_alloc_copy_user_to_buffer(
3184 &target_proc->alloc,
3185 t->buffer,
3186 ALIGN(tr->data_size, sizeof(void *)),
3187 (const void __user *)
3188 (uintptr_t)tr->data.ptr.offsets,
3189 tr->offsets_size)) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303190 binder_user_error("%d:%d got transaction with invalid offsets ptr\n",
3191 proc->pid, thread->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003192 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003193 return_error_param = -EFAULT;
3194 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003195 goto err_copy_data_failed;
3196 }
Arve Hjønnevågda498892014-02-21 14:40:26 -08003197 if (!IS_ALIGNED(tr->offsets_size, sizeof(binder_size_t))) {
3198 binder_user_error("%d:%d got transaction with invalid offsets size, %lld\n",
3199 proc->pid, thread->pid, (u64)tr->offsets_size);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003200 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003201 return_error_param = -EINVAL;
3202 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003203 goto err_bad_offset;
3204 }
Martijn Coenen79802402017-02-03 14:40:51 -08003205 if (!IS_ALIGNED(extra_buffers_size, sizeof(u64))) {
3206 binder_user_error("%d:%d got transaction with unaligned buffers size, %lld\n",
3207 proc->pid, thread->pid,
3208 (u64)extra_buffers_size);
3209 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003210 return_error_param = -EINVAL;
3211 return_error_line = __LINE__;
Martijn Coenen79802402017-02-03 14:40:51 -08003212 goto err_bad_offset;
3213 }
Todd Kjosbde4a192019-02-08 10:35:20 -08003214 off_start_offset = ALIGN(tr->data_size, sizeof(void *));
3215 buffer_offset = off_start_offset;
3216 off_end_offset = off_start_offset + tr->offsets_size;
3217 sg_buf_offset = ALIGN(off_end_offset, sizeof(void *));
3218 sg_buf_end_offset = sg_buf_offset + extra_buffers_size;
Arve Hjønnevåg212265e2016-02-09 21:05:32 -08003219 off_min = 0;
Todd Kjosbde4a192019-02-08 10:35:20 -08003220 for (buffer_offset = off_start_offset; buffer_offset < off_end_offset;
3221 buffer_offset += sizeof(binder_size_t)) {
Martijn Coenenfeba3902017-02-03 14:40:45 -08003222 struct binder_object_header *hdr;
Todd Kjos8ced0c62019-02-08 10:35:15 -08003223 size_t object_size;
Todd Kjos7a67a392019-02-08 10:35:16 -08003224 struct binder_object object;
Todd Kjos8ced0c62019-02-08 10:35:15 -08003225 binder_size_t object_offset;
Seunghun Lee10f62862014-05-01 01:30:23 +09003226
Todd Kjos8ced0c62019-02-08 10:35:15 -08003227 binder_alloc_copy_from_buffer(&target_proc->alloc,
3228 &object_offset,
3229 t->buffer,
3230 buffer_offset,
3231 sizeof(object_offset));
Todd Kjos7a67a392019-02-08 10:35:16 -08003232 object_size = binder_get_object(target_proc, t->buffer,
3233 object_offset, &object);
Todd Kjos8ced0c62019-02-08 10:35:15 -08003234 if (object_size == 0 || object_offset < off_min) {
Martijn Coenenfeba3902017-02-03 14:40:45 -08003235 binder_user_error("%d:%d got transaction with invalid offset (%lld, min %lld max %lld) or object.\n",
Todd Kjos8ced0c62019-02-08 10:35:15 -08003236 proc->pid, thread->pid,
3237 (u64)object_offset,
Arve Hjønnevåg212265e2016-02-09 21:05:32 -08003238 (u64)off_min,
Martijn Coenenfeba3902017-02-03 14:40:45 -08003239 (u64)t->buffer->data_size);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003240 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003241 return_error_param = -EINVAL;
3242 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003243 goto err_bad_offset;
3244 }
Martijn Coenenfeba3902017-02-03 14:40:45 -08003245
Todd Kjos7a67a392019-02-08 10:35:16 -08003246 hdr = &object.hdr;
Todd Kjos8ced0c62019-02-08 10:35:15 -08003247 off_min = object_offset + object_size;
Martijn Coenenfeba3902017-02-03 14:40:45 -08003248 switch (hdr->type) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003249 case BINDER_TYPE_BINDER:
3250 case BINDER_TYPE_WEAK_BINDER: {
Martijn Coenenfeba3902017-02-03 14:40:45 -08003251 struct flat_binder_object *fp;
Seunghun Lee10f62862014-05-01 01:30:23 +09003252
Martijn Coenenfeba3902017-02-03 14:40:45 -08003253 fp = to_flat_binder_object(hdr);
Martijn Coenena056af42017-02-03 14:40:49 -08003254 ret = binder_translate_binder(fp, t, thread);
3255 if (ret < 0) {
Christian Engelmayer7d420432014-05-07 21:44:53 +02003256 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003257 return_error_param = ret;
3258 return_error_line = __LINE__;
Martijn Coenena056af42017-02-03 14:40:49 -08003259 goto err_translate_failed;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003260 }
Todd Kjos7a67a392019-02-08 10:35:16 -08003261 binder_alloc_copy_to_buffer(&target_proc->alloc,
3262 t->buffer, object_offset,
3263 fp, sizeof(*fp));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003264 } break;
3265 case BINDER_TYPE_HANDLE:
3266 case BINDER_TYPE_WEAK_HANDLE: {
Martijn Coenenfeba3902017-02-03 14:40:45 -08003267 struct flat_binder_object *fp;
Arve Hjønnevåg0a3ffab2016-10-24 15:20:29 +02003268
Martijn Coenenfeba3902017-02-03 14:40:45 -08003269 fp = to_flat_binder_object(hdr);
Martijn Coenena056af42017-02-03 14:40:49 -08003270 ret = binder_translate_handle(fp, t, thread);
3271 if (ret < 0) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003272 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003273 return_error_param = ret;
3274 return_error_line = __LINE__;
Martijn Coenena056af42017-02-03 14:40:49 -08003275 goto err_translate_failed;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003276 }
Todd Kjos7a67a392019-02-08 10:35:16 -08003277 binder_alloc_copy_to_buffer(&target_proc->alloc,
3278 t->buffer, object_offset,
3279 fp, sizeof(*fp));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003280 } break;
3281
3282 case BINDER_TYPE_FD: {
Martijn Coenenfeba3902017-02-03 14:40:45 -08003283 struct binder_fd_object *fp = to_binder_fd_object(hdr);
Todd Kjos8ced0c62019-02-08 10:35:15 -08003284 binder_size_t fd_offset = object_offset +
3285 (uintptr_t)&fp->fd - (uintptr_t)fp;
3286 int ret = binder_translate_fd(fp->fd, fd_offset, t,
3287 thread, in_reply_to);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003288
Todd Kjos44d80472018-08-28 13:46:25 -07003289 if (ret < 0) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003290 return_error = BR_FAILED_REPLY;
Todd Kjos44d80472018-08-28 13:46:25 -07003291 return_error_param = ret;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003292 return_error_line = __LINE__;
Martijn Coenena056af42017-02-03 14:40:49 -08003293 goto err_translate_failed;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003294 }
Martijn Coenenfeba3902017-02-03 14:40:45 -08003295 fp->pad_binder = 0;
Todd Kjos7a67a392019-02-08 10:35:16 -08003296 binder_alloc_copy_to_buffer(&target_proc->alloc,
3297 t->buffer, object_offset,
3298 fp, sizeof(*fp));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003299 } break;
Martijn Coenendef95c72017-02-03 14:40:52 -08003300 case BINDER_TYPE_FDA: {
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003301 struct binder_object ptr_object;
3302 binder_size_t parent_offset;
Martijn Coenendef95c72017-02-03 14:40:52 -08003303 struct binder_fd_array_object *fda =
3304 to_binder_fd_array_object(hdr);
Todd Kjosbde4a192019-02-08 10:35:20 -08003305 size_t num_valid = (buffer_offset - off_start_offset) *
3306 sizeof(binder_size_t);
Martijn Coenendef95c72017-02-03 14:40:52 -08003307 struct binder_buffer_object *parent =
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003308 binder_validate_ptr(target_proc, t->buffer,
3309 &ptr_object, fda->parent,
3310 off_start_offset,
3311 &parent_offset,
Todd Kjosbde4a192019-02-08 10:35:20 -08003312 num_valid);
Martijn Coenendef95c72017-02-03 14:40:52 -08003313 if (!parent) {
3314 binder_user_error("%d:%d got transaction with invalid parent offset or type\n",
3315 proc->pid, thread->pid);
3316 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003317 return_error_param = -EINVAL;
3318 return_error_line = __LINE__;
Martijn Coenendef95c72017-02-03 14:40:52 -08003319 goto err_bad_parent;
3320 }
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003321 if (!binder_validate_fixup(target_proc, t->buffer,
3322 off_start_offset,
3323 parent_offset,
3324 fda->parent_offset,
3325 last_fixup_obj_off,
Martijn Coenendef95c72017-02-03 14:40:52 -08003326 last_fixup_min_off)) {
3327 binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n",
3328 proc->pid, thread->pid);
3329 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003330 return_error_param = -EINVAL;
3331 return_error_line = __LINE__;
Martijn Coenendef95c72017-02-03 14:40:52 -08003332 goto err_bad_parent;
3333 }
3334 ret = binder_translate_fd_array(fda, parent, t, thread,
3335 in_reply_to);
3336 if (ret < 0) {
3337 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003338 return_error_param = ret;
3339 return_error_line = __LINE__;
Martijn Coenendef95c72017-02-03 14:40:52 -08003340 goto err_translate_failed;
3341 }
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003342 last_fixup_obj_off = parent_offset;
Martijn Coenendef95c72017-02-03 14:40:52 -08003343 last_fixup_min_off =
3344 fda->parent_offset + sizeof(u32) * fda->num_fds;
3345 } break;
Martijn Coenen79802402017-02-03 14:40:51 -08003346 case BINDER_TYPE_PTR: {
3347 struct binder_buffer_object *bp =
3348 to_binder_buffer_object(hdr);
Todd Kjosbde4a192019-02-08 10:35:20 -08003349 size_t buf_left = sg_buf_end_offset - sg_buf_offset;
3350 size_t num_valid;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003351
Martijn Coenen79802402017-02-03 14:40:51 -08003352 if (bp->length > buf_left) {
3353 binder_user_error("%d:%d got transaction with too large buffer\n",
3354 proc->pid, thread->pid);
3355 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003356 return_error_param = -EINVAL;
3357 return_error_line = __LINE__;
Martijn Coenen79802402017-02-03 14:40:51 -08003358 goto err_bad_offset;
3359 }
Todd Kjos1a7c3d92019-02-08 10:35:14 -08003360 if (binder_alloc_copy_user_to_buffer(
3361 &target_proc->alloc,
3362 t->buffer,
3363 sg_buf_offset,
3364 (const void __user *)
3365 (uintptr_t)bp->buffer,
3366 bp->length)) {
Martijn Coenen79802402017-02-03 14:40:51 -08003367 binder_user_error("%d:%d got transaction with invalid offsets ptr\n",
3368 proc->pid, thread->pid);
Todd Kjos57ada2f2017-06-29 12:01:46 -07003369 return_error_param = -EFAULT;
Martijn Coenen79802402017-02-03 14:40:51 -08003370 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003371 return_error_line = __LINE__;
Martijn Coenen79802402017-02-03 14:40:51 -08003372 goto err_copy_data_failed;
3373 }
3374 /* Fixup buffer pointer to target proc address space */
Todd Kjosbde4a192019-02-08 10:35:20 -08003375 bp->buffer = (uintptr_t)
3376 t->buffer->user_data + sg_buf_offset;
3377 sg_buf_offset += ALIGN(bp->length, sizeof(u64));
Martijn Coenen79802402017-02-03 14:40:51 -08003378
Todd Kjosbde4a192019-02-08 10:35:20 -08003379 num_valid = (buffer_offset - off_start_offset) *
3380 sizeof(binder_size_t);
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003381 ret = binder_fixup_parent(t, thread, bp,
3382 off_start_offset,
Todd Kjosbde4a192019-02-08 10:35:20 -08003383 num_valid,
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003384 last_fixup_obj_off,
Martijn Coenen79802402017-02-03 14:40:51 -08003385 last_fixup_min_off);
3386 if (ret < 0) {
3387 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003388 return_error_param = ret;
3389 return_error_line = __LINE__;
Martijn Coenen79802402017-02-03 14:40:51 -08003390 goto err_translate_failed;
3391 }
Todd Kjos7a67a392019-02-08 10:35:16 -08003392 binder_alloc_copy_to_buffer(&target_proc->alloc,
3393 t->buffer, object_offset,
3394 bp, sizeof(*bp));
Todd Kjosdb6b0b82019-02-08 10:35:17 -08003395 last_fixup_obj_off = object_offset;
Martijn Coenen79802402017-02-03 14:40:51 -08003396 last_fixup_min_off = 0;
3397 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003398 default:
Serban Constantinescu64dcfe62013-07-04 10:54:48 +01003399 binder_user_error("%d:%d got transaction with invalid object type, %x\n",
Martijn Coenenfeba3902017-02-03 14:40:45 -08003400 proc->pid, thread->pid, hdr->type);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003401 return_error = BR_FAILED_REPLY;
Todd Kjos57ada2f2017-06-29 12:01:46 -07003402 return_error_param = -EINVAL;
3403 return_error_line = __LINE__;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003404 goto err_bad_object_type;
3405 }
3406 }
Todd Kjosccae6f62017-06-29 12:01:48 -07003407 tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE;
Todd Kjos673068e2017-06-29 12:02:03 -07003408 t->work.type = BINDER_WORK_TRANSACTION;
Todd Kjosccae6f62017-06-29 12:01:48 -07003409
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003410 if (reply) {
Martijn Coenen148ade22017-11-15 09:21:35 +01003411 binder_enqueue_thread_work(thread, tcomplete);
Martijn Coenen0b89d692017-06-29 12:02:06 -07003412 binder_inner_proc_lock(target_proc);
3413 if (target_thread->is_dead) {
3414 binder_inner_proc_unlock(target_proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07003415 goto err_dead_proc_or_thread;
Martijn Coenen0b89d692017-06-29 12:02:06 -07003416 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003417 BUG_ON(t->buffer->async_transaction != 0);
Martijn Coenen0b89d692017-06-29 12:02:06 -07003418 binder_pop_transaction_ilocked(target_thread, in_reply_to);
Martijn Coenen148ade22017-11-15 09:21:35 +01003419 binder_enqueue_thread_work_ilocked(target_thread, &t->work);
Martijn Coenen0b89d692017-06-29 12:02:06 -07003420 binder_inner_proc_unlock(target_proc);
Martijn Coenen408c68b2017-08-31 10:04:19 +02003421 wake_up_interruptible_sync(&target_thread->wait);
Todd Kjosb6d282c2017-06-29 12:01:54 -07003422 binder_free_transaction(in_reply_to);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003423 } else if (!(t->flags & TF_ONE_WAY)) {
3424 BUG_ON(t->buffer->async_transaction != 0);
Martijn Coenen0b89d692017-06-29 12:02:06 -07003425 binder_inner_proc_lock(proc);
Martijn Coenen148ade22017-11-15 09:21:35 +01003426 /*
3427 * Defer the TRANSACTION_COMPLETE, so we don't return to
3428 * userspace immediately; this allows the target process to
3429 * immediately start processing this transaction, reducing
3430 * latency. We will then return the TRANSACTION_COMPLETE when
3431 * the target replies (or there is an error).
3432 */
3433 binder_enqueue_deferred_thread_work_ilocked(thread, tcomplete);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003434 t->need_reply = 1;
3435 t->from_parent = thread->transaction_stack;
3436 thread->transaction_stack = t;
Martijn Coenen0b89d692017-06-29 12:02:06 -07003437 binder_inner_proc_unlock(proc);
Martijn Coenen408c68b2017-08-31 10:04:19 +02003438 if (!binder_proc_transaction(t, target_proc, target_thread)) {
Martijn Coenen0b89d692017-06-29 12:02:06 -07003439 binder_inner_proc_lock(proc);
3440 binder_pop_transaction_ilocked(thread, t);
3441 binder_inner_proc_unlock(proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07003442 goto err_dead_proc_or_thread;
3443 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003444 } else {
3445 BUG_ON(target_node == NULL);
3446 BUG_ON(t->buffer->async_transaction != 1);
Martijn Coenen148ade22017-11-15 09:21:35 +01003447 binder_enqueue_thread_work(thread, tcomplete);
Martijn Coenen408c68b2017-08-31 10:04:19 +02003448 if (!binder_proc_transaction(t, target_proc, NULL))
Todd Kjos7a4408c2017-06-29 12:01:57 -07003449 goto err_dead_proc_or_thread;
Riley Andrews00b40d62017-06-29 12:01:37 -07003450 }
Todd Kjos7a4408c2017-06-29 12:01:57 -07003451 if (target_thread)
3452 binder_thread_dec_tmpref(target_thread);
3453 binder_proc_dec_tmpref(target_proc);
Todd Kjos512cf462017-09-29 15:39:49 -07003454 if (target_node)
3455 binder_dec_node_tmpref(target_node);
Todd Kjosd99c7332017-06-29 12:01:53 -07003456 /*
3457 * write barrier to synchronize with initialization
3458 * of log entry
3459 */
3460 smp_wmb();
3461 WRITE_ONCE(e->debug_id_done, t_debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003462 return;
3463
Todd Kjos7a4408c2017-06-29 12:01:57 -07003464err_dead_proc_or_thread:
3465 return_error = BR_DEAD_REPLY;
3466 return_error_line = __LINE__;
Xu YiPingd53bebd2017-09-05 10:21:52 -07003467 binder_dequeue_work(proc, tcomplete);
Martijn Coenena056af42017-02-03 14:40:49 -08003468err_translate_failed:
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003469err_bad_object_type:
3470err_bad_offset:
Martijn Coenendef95c72017-02-03 14:40:52 -08003471err_bad_parent:
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003472err_copy_data_failed:
Todd Kjos44d80472018-08-28 13:46:25 -07003473 binder_free_txn_fixups(t);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07003474 trace_binder_transaction_failed_buffer_release(t->buffer);
Todd Kjosbde4a192019-02-08 10:35:20 -08003475 binder_transaction_buffer_release(target_proc, t->buffer,
3476 buffer_offset, true);
Todd Kjos512cf462017-09-29 15:39:49 -07003477 if (target_node)
3478 binder_dec_node_tmpref(target_node);
Todd Kjoseb349832017-06-29 12:01:56 -07003479 target_node = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003480 t->buffer->transaction = NULL;
Todd Kjos19c98722017-06-29 12:01:40 -07003481 binder_alloc_free_buf(&target_proc->alloc, t->buffer);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003482err_binder_alloc_buf_failed:
Todd Kjosec741362019-01-14 09:10:21 -08003483 if (secctx)
3484 security_release_secctx(secctx, secctx_sz);
3485err_get_secctx_failed:
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003486 kfree(tcomplete);
3487 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
3488err_alloc_tcomplete_failed:
3489 kfree(t);
3490 binder_stats_deleted(BINDER_STAT_TRANSACTION);
3491err_alloc_t_failed:
Sherry Yang44b73962018-08-13 17:28:53 -07003492err_bad_todo_list:
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003493err_bad_call_stack:
3494err_empty_call_stack:
3495err_dead_binder:
3496err_invalid_target_handle:
Todd Kjos7a4408c2017-06-29 12:01:57 -07003497 if (target_thread)
3498 binder_thread_dec_tmpref(target_thread);
3499 if (target_proc)
3500 binder_proc_dec_tmpref(target_proc);
Todd Kjos512cf462017-09-29 15:39:49 -07003501 if (target_node) {
Todd Kjoseb349832017-06-29 12:01:56 -07003502 binder_dec_node(target_node, 1, 0);
Todd Kjos512cf462017-09-29 15:39:49 -07003503 binder_dec_node_tmpref(target_node);
3504 }
Todd Kjoseb349832017-06-29 12:01:56 -07003505
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003506 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
Todd Kjos57ada2f2017-06-29 12:01:46 -07003507 "%d:%d transaction failed %d/%d, size %lld-%lld line %d\n",
3508 proc->pid, thread->pid, return_error, return_error_param,
3509 (u64)tr->data_size, (u64)tr->offsets_size,
3510 return_error_line);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003511
3512 {
3513 struct binder_transaction_log_entry *fe;
Seunghun Lee10f62862014-05-01 01:30:23 +09003514
Todd Kjos57ada2f2017-06-29 12:01:46 -07003515 e->return_error = return_error;
3516 e->return_error_param = return_error_param;
3517 e->return_error_line = return_error_line;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003518 fe = binder_transaction_log_add(&binder_transaction_log_failed);
3519 *fe = *e;
Todd Kjosd99c7332017-06-29 12:01:53 -07003520 /*
3521 * write barrier to synchronize with initialization
3522 * of log entry
3523 */
3524 smp_wmb();
3525 WRITE_ONCE(e->debug_id_done, t_debug_id);
3526 WRITE_ONCE(fe->debug_id_done, t_debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003527 }
3528
Todd Kjos26549d12017-06-29 12:01:55 -07003529 BUG_ON(thread->return_error.cmd != BR_OK);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003530 if (in_reply_to) {
Todd Kjos26549d12017-06-29 12:01:55 -07003531 thread->return_error.cmd = BR_TRANSACTION_COMPLETE;
Martijn Coenen148ade22017-11-15 09:21:35 +01003532 binder_enqueue_thread_work(thread, &thread->return_error.work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003533 binder_send_failed_reply(in_reply_to, return_error);
Todd Kjos26549d12017-06-29 12:01:55 -07003534 } else {
3535 thread->return_error.cmd = return_error;
Martijn Coenen148ade22017-11-15 09:21:35 +01003536 binder_enqueue_thread_work(thread, &thread->return_error.work);
Todd Kjos26549d12017-06-29 12:01:55 -07003537 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003538}
3539
Todd Kjos44d80472018-08-28 13:46:25 -07003540/**
3541 * binder_free_buf() - free the specified buffer
3542 * @proc: binder proc that owns buffer
3543 * @buffer: buffer to be freed
3544 *
3545 * If buffer for an async transaction, enqueue the next async
3546 * transaction from the node.
3547 *
3548 * Cleanup buffer and free it.
3549 */
Wei Yongjunf4608ce2018-09-25 14:30:36 +00003550static void
Todd Kjos44d80472018-08-28 13:46:25 -07003551binder_free_buf(struct binder_proc *proc, struct binder_buffer *buffer)
3552{
3553 if (buffer->transaction) {
3554 buffer->transaction->buffer = NULL;
3555 buffer->transaction = NULL;
3556 }
3557 if (buffer->async_transaction && buffer->target_node) {
3558 struct binder_node *buf_node;
3559 struct binder_work *w;
3560
3561 buf_node = buffer->target_node;
3562 binder_node_inner_lock(buf_node);
3563 BUG_ON(!buf_node->has_async_transaction);
3564 BUG_ON(buf_node->proc != proc);
3565 w = binder_dequeue_work_head_ilocked(
3566 &buf_node->async_todo);
3567 if (!w) {
3568 buf_node->has_async_transaction = false;
3569 } else {
3570 binder_enqueue_work_ilocked(
3571 w, &proc->todo);
3572 binder_wakeup_proc_ilocked(proc);
3573 }
3574 binder_node_inner_unlock(buf_node);
3575 }
3576 trace_binder_transaction_buffer_release(buffer);
Todd Kjosbde4a192019-02-08 10:35:20 -08003577 binder_transaction_buffer_release(proc, buffer, 0, false);
Todd Kjos44d80472018-08-28 13:46:25 -07003578 binder_alloc_free_buf(&proc->alloc, buffer);
3579}
3580
Bojan Prtvarfb07ebc2013-09-02 08:18:40 +02003581static int binder_thread_write(struct binder_proc *proc,
3582 struct binder_thread *thread,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003583 binder_uintptr_t binder_buffer, size_t size,
3584 binder_size_t *consumed)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003585{
3586 uint32_t cmd;
Martijn Coenen342e5c92017-02-03 14:40:46 -08003587 struct binder_context *context = proc->context;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003588 void __user *buffer = (void __user *)(uintptr_t)binder_buffer;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003589 void __user *ptr = buffer + *consumed;
3590 void __user *end = buffer + size;
3591
Todd Kjos26549d12017-06-29 12:01:55 -07003592 while (ptr < end && thread->return_error.cmd == BR_OK) {
Todd Kjos372e3142017-06-29 12:01:58 -07003593 int ret;
3594
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003595 if (get_user(cmd, (uint32_t __user *)ptr))
3596 return -EFAULT;
3597 ptr += sizeof(uint32_t);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07003598 trace_binder_command(cmd);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003599 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.bc)) {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07003600 atomic_inc(&binder_stats.bc[_IOC_NR(cmd)]);
3601 atomic_inc(&proc->stats.bc[_IOC_NR(cmd)]);
3602 atomic_inc(&thread->stats.bc[_IOC_NR(cmd)]);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003603 }
3604 switch (cmd) {
3605 case BC_INCREFS:
3606 case BC_ACQUIRE:
3607 case BC_RELEASE:
3608 case BC_DECREFS: {
3609 uint32_t target;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003610 const char *debug_string;
Todd Kjos372e3142017-06-29 12:01:58 -07003611 bool strong = cmd == BC_ACQUIRE || cmd == BC_RELEASE;
3612 bool increment = cmd == BC_INCREFS || cmd == BC_ACQUIRE;
3613 struct binder_ref_data rdata;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003614
3615 if (get_user(target, (uint32_t __user *)ptr))
3616 return -EFAULT;
Todd Kjosc44b1232017-06-29 12:01:43 -07003617
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003618 ptr += sizeof(uint32_t);
Todd Kjos372e3142017-06-29 12:01:58 -07003619 ret = -1;
3620 if (increment && !target) {
Todd Kjosc44b1232017-06-29 12:01:43 -07003621 struct binder_node *ctx_mgr_node;
Todd Kjosc44b1232017-06-29 12:01:43 -07003622 mutex_lock(&context->context_mgr_node_lock);
3623 ctx_mgr_node = context->binder_context_mgr_node;
Todd Kjos372e3142017-06-29 12:01:58 -07003624 if (ctx_mgr_node)
3625 ret = binder_inc_ref_for_node(
3626 proc, ctx_mgr_node,
3627 strong, NULL, &rdata);
Todd Kjosc44b1232017-06-29 12:01:43 -07003628 mutex_unlock(&context->context_mgr_node_lock);
3629 }
Todd Kjos372e3142017-06-29 12:01:58 -07003630 if (ret)
3631 ret = binder_update_ref_for_handle(
3632 proc, target, increment, strong,
3633 &rdata);
3634 if (!ret && rdata.desc != target) {
3635 binder_user_error("%d:%d tried to acquire reference to desc %d, got %d instead\n",
3636 proc->pid, thread->pid,
3637 target, rdata.desc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003638 }
3639 switch (cmd) {
3640 case BC_INCREFS:
3641 debug_string = "IncRefs";
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003642 break;
3643 case BC_ACQUIRE:
3644 debug_string = "Acquire";
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003645 break;
3646 case BC_RELEASE:
3647 debug_string = "Release";
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003648 break;
3649 case BC_DECREFS:
3650 default:
3651 debug_string = "DecRefs";
Todd Kjos372e3142017-06-29 12:01:58 -07003652 break;
3653 }
3654 if (ret) {
3655 binder_user_error("%d:%d %s %d refcount change on invalid ref %d ret %d\n",
3656 proc->pid, thread->pid, debug_string,
3657 strong, target, ret);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003658 break;
3659 }
3660 binder_debug(BINDER_DEBUG_USER_REFS,
Todd Kjos372e3142017-06-29 12:01:58 -07003661 "%d:%d %s ref %d desc %d s %d w %d\n",
3662 proc->pid, thread->pid, debug_string,
3663 rdata.debug_id, rdata.desc, rdata.strong,
3664 rdata.weak);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003665 break;
3666 }
3667 case BC_INCREFS_DONE:
3668 case BC_ACQUIRE_DONE: {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003669 binder_uintptr_t node_ptr;
3670 binder_uintptr_t cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003671 struct binder_node *node;
Todd Kjos673068e2017-06-29 12:02:03 -07003672 bool free_node;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003673
Arve Hjønnevågda498892014-02-21 14:40:26 -08003674 if (get_user(node_ptr, (binder_uintptr_t __user *)ptr))
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003675 return -EFAULT;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003676 ptr += sizeof(binder_uintptr_t);
3677 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003678 return -EFAULT;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003679 ptr += sizeof(binder_uintptr_t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003680 node = binder_get_node(proc, node_ptr);
3681 if (node == NULL) {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003682 binder_user_error("%d:%d %s u%016llx no match\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003683 proc->pid, thread->pid,
3684 cmd == BC_INCREFS_DONE ?
3685 "BC_INCREFS_DONE" :
3686 "BC_ACQUIRE_DONE",
Arve Hjønnevågda498892014-02-21 14:40:26 -08003687 (u64)node_ptr);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003688 break;
3689 }
3690 if (cookie != node->cookie) {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003691 binder_user_error("%d:%d %s u%016llx node %d cookie mismatch %016llx != %016llx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003692 proc->pid, thread->pid,
3693 cmd == BC_INCREFS_DONE ?
3694 "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE",
Arve Hjønnevågda498892014-02-21 14:40:26 -08003695 (u64)node_ptr, node->debug_id,
3696 (u64)cookie, (u64)node->cookie);
Todd Kjosadc18842017-06-29 12:01:59 -07003697 binder_put_node(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003698 break;
3699 }
Todd Kjos673068e2017-06-29 12:02:03 -07003700 binder_node_inner_lock(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003701 if (cmd == BC_ACQUIRE_DONE) {
3702 if (node->pending_strong_ref == 0) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303703 binder_user_error("%d:%d BC_ACQUIRE_DONE node %d has no pending acquire request\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003704 proc->pid, thread->pid,
3705 node->debug_id);
Todd Kjos673068e2017-06-29 12:02:03 -07003706 binder_node_inner_unlock(node);
Todd Kjosadc18842017-06-29 12:01:59 -07003707 binder_put_node(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003708 break;
3709 }
3710 node->pending_strong_ref = 0;
3711 } else {
3712 if (node->pending_weak_ref == 0) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303713 binder_user_error("%d:%d BC_INCREFS_DONE node %d has no pending increfs request\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003714 proc->pid, thread->pid,
3715 node->debug_id);
Todd Kjos673068e2017-06-29 12:02:03 -07003716 binder_node_inner_unlock(node);
Todd Kjosadc18842017-06-29 12:01:59 -07003717 binder_put_node(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003718 break;
3719 }
3720 node->pending_weak_ref = 0;
3721 }
Todd Kjos673068e2017-06-29 12:02:03 -07003722 free_node = binder_dec_node_nilocked(node,
3723 cmd == BC_ACQUIRE_DONE, 0);
3724 WARN_ON(free_node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003725 binder_debug(BINDER_DEBUG_USER_REFS,
Todd Kjosadc18842017-06-29 12:01:59 -07003726 "%d:%d %s node %d ls %d lw %d tr %d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003727 proc->pid, thread->pid,
3728 cmd == BC_INCREFS_DONE ? "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE",
Todd Kjosadc18842017-06-29 12:01:59 -07003729 node->debug_id, node->local_strong_refs,
3730 node->local_weak_refs, node->tmp_refs);
Todd Kjos673068e2017-06-29 12:02:03 -07003731 binder_node_inner_unlock(node);
Todd Kjosadc18842017-06-29 12:01:59 -07003732 binder_put_node(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003733 break;
3734 }
3735 case BC_ATTEMPT_ACQUIRE:
Anmol Sarma56b468f2012-10-30 22:35:43 +05303736 pr_err("BC_ATTEMPT_ACQUIRE not supported\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003737 return -EINVAL;
3738 case BC_ACQUIRE_RESULT:
Anmol Sarma56b468f2012-10-30 22:35:43 +05303739 pr_err("BC_ACQUIRE_RESULT not supported\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003740 return -EINVAL;
3741
3742 case BC_FREE_BUFFER: {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003743 binder_uintptr_t data_ptr;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003744 struct binder_buffer *buffer;
3745
Arve Hjønnevågda498892014-02-21 14:40:26 -08003746 if (get_user(data_ptr, (binder_uintptr_t __user *)ptr))
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003747 return -EFAULT;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003748 ptr += sizeof(binder_uintptr_t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003749
Todd Kjos53d311cf2017-06-29 12:01:51 -07003750 buffer = binder_alloc_prepare_to_free(&proc->alloc,
3751 data_ptr);
Todd Kjos7bada552018-11-06 15:55:32 -08003752 if (IS_ERR_OR_NULL(buffer)) {
3753 if (PTR_ERR(buffer) == -EPERM) {
3754 binder_user_error(
3755 "%d:%d BC_FREE_BUFFER u%016llx matched unreturned or currently freeing buffer\n",
3756 proc->pid, thread->pid,
3757 (u64)data_ptr);
3758 } else {
3759 binder_user_error(
3760 "%d:%d BC_FREE_BUFFER u%016llx no match\n",
3761 proc->pid, thread->pid,
3762 (u64)data_ptr);
3763 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003764 break;
3765 }
3766 binder_debug(BINDER_DEBUG_FREE_BUFFER,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003767 "%d:%d BC_FREE_BUFFER u%016llx found buffer %d for %s transaction\n",
3768 proc->pid, thread->pid, (u64)data_ptr,
3769 buffer->debug_id,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003770 buffer->transaction ? "active" : "finished");
Todd Kjos44d80472018-08-28 13:46:25 -07003771 binder_free_buf(proc, buffer);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003772 break;
3773 }
3774
Martijn Coenen79802402017-02-03 14:40:51 -08003775 case BC_TRANSACTION_SG:
3776 case BC_REPLY_SG: {
3777 struct binder_transaction_data_sg tr;
3778
3779 if (copy_from_user(&tr, ptr, sizeof(tr)))
3780 return -EFAULT;
3781 ptr += sizeof(tr);
3782 binder_transaction(proc, thread, &tr.transaction_data,
3783 cmd == BC_REPLY_SG, tr.buffers_size);
3784 break;
3785 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003786 case BC_TRANSACTION:
3787 case BC_REPLY: {
3788 struct binder_transaction_data tr;
3789
3790 if (copy_from_user(&tr, ptr, sizeof(tr)))
3791 return -EFAULT;
3792 ptr += sizeof(tr);
Martijn Coenen4bfac802017-02-03 14:40:50 -08003793 binder_transaction(proc, thread, &tr,
3794 cmd == BC_REPLY, 0);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003795 break;
3796 }
3797
3798 case BC_REGISTER_LOOPER:
3799 binder_debug(BINDER_DEBUG_THREADS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05303800 "%d:%d BC_REGISTER_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003801 proc->pid, thread->pid);
Todd Kjosb3e68612017-06-29 12:02:07 -07003802 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003803 if (thread->looper & BINDER_LOOPER_STATE_ENTERED) {
3804 thread->looper |= BINDER_LOOPER_STATE_INVALID;
Anmol Sarma56b468f2012-10-30 22:35:43 +05303805 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called after BC_ENTER_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003806 proc->pid, thread->pid);
3807 } else if (proc->requested_threads == 0) {
3808 thread->looper |= BINDER_LOOPER_STATE_INVALID;
Anmol Sarma56b468f2012-10-30 22:35:43 +05303809 binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called without request\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003810 proc->pid, thread->pid);
3811 } else {
3812 proc->requested_threads--;
3813 proc->requested_threads_started++;
3814 }
3815 thread->looper |= BINDER_LOOPER_STATE_REGISTERED;
Todd Kjosb3e68612017-06-29 12:02:07 -07003816 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003817 break;
3818 case BC_ENTER_LOOPER:
3819 binder_debug(BINDER_DEBUG_THREADS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05303820 "%d:%d BC_ENTER_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003821 proc->pid, thread->pid);
3822 if (thread->looper & BINDER_LOOPER_STATE_REGISTERED) {
3823 thread->looper |= BINDER_LOOPER_STATE_INVALID;
Anmol Sarma56b468f2012-10-30 22:35:43 +05303824 binder_user_error("%d:%d ERROR: BC_ENTER_LOOPER called after BC_REGISTER_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003825 proc->pid, thread->pid);
3826 }
3827 thread->looper |= BINDER_LOOPER_STATE_ENTERED;
3828 break;
3829 case BC_EXIT_LOOPER:
3830 binder_debug(BINDER_DEBUG_THREADS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05303831 "%d:%d BC_EXIT_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003832 proc->pid, thread->pid);
3833 thread->looper |= BINDER_LOOPER_STATE_EXITED;
3834 break;
3835
3836 case BC_REQUEST_DEATH_NOTIFICATION:
3837 case BC_CLEAR_DEATH_NOTIFICATION: {
3838 uint32_t target;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003839 binder_uintptr_t cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003840 struct binder_ref *ref;
Todd Kjos2c1838d2017-06-29 12:02:08 -07003841 struct binder_ref_death *death = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003842
3843 if (get_user(target, (uint32_t __user *)ptr))
3844 return -EFAULT;
3845 ptr += sizeof(uint32_t);
Arve Hjønnevågda498892014-02-21 14:40:26 -08003846 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003847 return -EFAULT;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003848 ptr += sizeof(binder_uintptr_t);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003849 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) {
3850 /*
3851 * Allocate memory for death notification
3852 * before taking lock
3853 */
3854 death = kzalloc(sizeof(*death), GFP_KERNEL);
3855 if (death == NULL) {
3856 WARN_ON(thread->return_error.cmd !=
3857 BR_OK);
3858 thread->return_error.cmd = BR_ERROR;
Martijn Coenen148ade22017-11-15 09:21:35 +01003859 binder_enqueue_thread_work(
3860 thread,
3861 &thread->return_error.work);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003862 binder_debug(
3863 BINDER_DEBUG_FAILED_TRANSACTION,
3864 "%d:%d BC_REQUEST_DEATH_NOTIFICATION failed\n",
3865 proc->pid, thread->pid);
3866 break;
3867 }
3868 }
3869 binder_proc_lock(proc);
3870 ref = binder_get_ref_olocked(proc, target, false);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003871 if (ref == NULL) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303872 binder_user_error("%d:%d %s invalid ref %d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003873 proc->pid, thread->pid,
3874 cmd == BC_REQUEST_DEATH_NOTIFICATION ?
3875 "BC_REQUEST_DEATH_NOTIFICATION" :
3876 "BC_CLEAR_DEATH_NOTIFICATION",
3877 target);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003878 binder_proc_unlock(proc);
3879 kfree(death);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003880 break;
3881 }
3882
3883 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003884 "%d:%d %s %016llx ref %d desc %d s %d w %d for node %d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003885 proc->pid, thread->pid,
3886 cmd == BC_REQUEST_DEATH_NOTIFICATION ?
3887 "BC_REQUEST_DEATH_NOTIFICATION" :
3888 "BC_CLEAR_DEATH_NOTIFICATION",
Todd Kjos372e3142017-06-29 12:01:58 -07003889 (u64)cookie, ref->data.debug_id,
3890 ref->data.desc, ref->data.strong,
3891 ref->data.weak, ref->node->debug_id);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003892
Martijn Coenenab51ec62017-06-29 12:02:10 -07003893 binder_node_lock(ref->node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003894 if (cmd == BC_REQUEST_DEATH_NOTIFICATION) {
3895 if (ref->death) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303896 binder_user_error("%d:%d BC_REQUEST_DEATH_NOTIFICATION death notification already set\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003897 proc->pid, thread->pid);
Martijn Coenenab51ec62017-06-29 12:02:10 -07003898 binder_node_unlock(ref->node);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003899 binder_proc_unlock(proc);
3900 kfree(death);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003901 break;
3902 }
3903 binder_stats_created(BINDER_STAT_DEATH);
3904 INIT_LIST_HEAD(&death->work.entry);
3905 death->cookie = cookie;
3906 ref->death = death;
3907 if (ref->node->proc == NULL) {
3908 ref->death->work.type = BINDER_WORK_DEAD_BINDER;
Martijn Coenenbb745622017-08-31 10:04:28 +02003909
3910 binder_inner_proc_lock(proc);
3911 binder_enqueue_work_ilocked(
3912 &ref->death->work, &proc->todo);
3913 binder_wakeup_proc_ilocked(proc);
3914 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003915 }
3916 } else {
3917 if (ref->death == NULL) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05303918 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification not active\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003919 proc->pid, thread->pid);
Todd Kjos673068e2017-06-29 12:02:03 -07003920 binder_node_unlock(ref->node);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003921 binder_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003922 break;
3923 }
3924 death = ref->death;
3925 if (death->cookie != cookie) {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003926 binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification cookie mismatch %016llx != %016llx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003927 proc->pid, thread->pid,
Arve Hjønnevågda498892014-02-21 14:40:26 -08003928 (u64)death->cookie,
3929 (u64)cookie);
Todd Kjos673068e2017-06-29 12:02:03 -07003930 binder_node_unlock(ref->node);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003931 binder_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003932 break;
3933 }
3934 ref->death = NULL;
Todd Kjos72196392017-06-29 12:02:02 -07003935 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003936 if (list_empty(&death->work.entry)) {
3937 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION;
Todd Kjos72196392017-06-29 12:02:02 -07003938 if (thread->looper &
3939 (BINDER_LOOPER_STATE_REGISTERED |
3940 BINDER_LOOPER_STATE_ENTERED))
Martijn Coenen148ade22017-11-15 09:21:35 +01003941 binder_enqueue_thread_work_ilocked(
3942 thread,
3943 &death->work);
Todd Kjos72196392017-06-29 12:02:02 -07003944 else {
3945 binder_enqueue_work_ilocked(
3946 &death->work,
3947 &proc->todo);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02003948 binder_wakeup_proc_ilocked(
Martijn Coenen408c68b2017-08-31 10:04:19 +02003949 proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003950 }
3951 } else {
3952 BUG_ON(death->work.type != BINDER_WORK_DEAD_BINDER);
3953 death->work.type = BINDER_WORK_DEAD_BINDER_AND_CLEAR;
3954 }
Todd Kjos72196392017-06-29 12:02:02 -07003955 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003956 }
Martijn Coenenab51ec62017-06-29 12:02:10 -07003957 binder_node_unlock(ref->node);
Todd Kjos2c1838d2017-06-29 12:02:08 -07003958 binder_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003959 } break;
3960 case BC_DEAD_BINDER_DONE: {
3961 struct binder_work *w;
Arve Hjønnevågda498892014-02-21 14:40:26 -08003962 binder_uintptr_t cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003963 struct binder_ref_death *death = NULL;
Seunghun Lee10f62862014-05-01 01:30:23 +09003964
Arve Hjønnevågda498892014-02-21 14:40:26 -08003965 if (get_user(cookie, (binder_uintptr_t __user *)ptr))
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003966 return -EFAULT;
3967
Lisa Du7a64cd82016-02-17 09:32:52 +08003968 ptr += sizeof(cookie);
Todd Kjos72196392017-06-29 12:02:02 -07003969 binder_inner_proc_lock(proc);
3970 list_for_each_entry(w, &proc->delivered_death,
3971 entry) {
3972 struct binder_ref_death *tmp_death =
3973 container_of(w,
3974 struct binder_ref_death,
3975 work);
Seunghun Lee10f62862014-05-01 01:30:23 +09003976
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003977 if (tmp_death->cookie == cookie) {
3978 death = tmp_death;
3979 break;
3980 }
3981 }
3982 binder_debug(BINDER_DEBUG_DEAD_BINDER,
Todd Kjos8ca86f12018-02-07 13:57:37 -08003983 "%d:%d BC_DEAD_BINDER_DONE %016llx found %pK\n",
Arve Hjønnevågda498892014-02-21 14:40:26 -08003984 proc->pid, thread->pid, (u64)cookie,
3985 death);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003986 if (death == NULL) {
Arve Hjønnevågda498892014-02-21 14:40:26 -08003987 binder_user_error("%d:%d BC_DEAD_BINDER_DONE %016llx not found\n",
3988 proc->pid, thread->pid, (u64)cookie);
Todd Kjos72196392017-06-29 12:02:02 -07003989 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003990 break;
3991 }
Todd Kjos72196392017-06-29 12:02:02 -07003992 binder_dequeue_work_ilocked(&death->work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09003993 if (death->work.type == BINDER_WORK_DEAD_BINDER_AND_CLEAR) {
3994 death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION;
Todd Kjos72196392017-06-29 12:02:02 -07003995 if (thread->looper &
3996 (BINDER_LOOPER_STATE_REGISTERED |
3997 BINDER_LOOPER_STATE_ENTERED))
Martijn Coenen148ade22017-11-15 09:21:35 +01003998 binder_enqueue_thread_work_ilocked(
3999 thread, &death->work);
Todd Kjos72196392017-06-29 12:02:02 -07004000 else {
4001 binder_enqueue_work_ilocked(
4002 &death->work,
4003 &proc->todo);
Martijn Coenen408c68b2017-08-31 10:04:19 +02004004 binder_wakeup_proc_ilocked(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004005 }
4006 }
Todd Kjos72196392017-06-29 12:02:02 -07004007 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004008 } break;
4009
4010 default:
Anmol Sarma56b468f2012-10-30 22:35:43 +05304011 pr_err("%d:%d unknown command %d\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004012 proc->pid, thread->pid, cmd);
4013 return -EINVAL;
4014 }
4015 *consumed = ptr - buffer;
4016 }
4017 return 0;
4018}
4019
Bojan Prtvarfb07ebc2013-09-02 08:18:40 +02004020static void binder_stat_br(struct binder_proc *proc,
4021 struct binder_thread *thread, uint32_t cmd)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004022{
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004023 trace_binder_return(cmd);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004024 if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.br)) {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07004025 atomic_inc(&binder_stats.br[_IOC_NR(cmd)]);
4026 atomic_inc(&proc->stats.br[_IOC_NR(cmd)]);
4027 atomic_inc(&thread->stats.br[_IOC_NR(cmd)]);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004028 }
4029}
4030
Todd Kjos26b47d82017-06-29 12:01:47 -07004031static int binder_put_node_cmd(struct binder_proc *proc,
4032 struct binder_thread *thread,
4033 void __user **ptrp,
4034 binder_uintptr_t node_ptr,
4035 binder_uintptr_t node_cookie,
4036 int node_debug_id,
4037 uint32_t cmd, const char *cmd_name)
4038{
4039 void __user *ptr = *ptrp;
4040
4041 if (put_user(cmd, (uint32_t __user *)ptr))
4042 return -EFAULT;
4043 ptr += sizeof(uint32_t);
4044
4045 if (put_user(node_ptr, (binder_uintptr_t __user *)ptr))
4046 return -EFAULT;
4047 ptr += sizeof(binder_uintptr_t);
4048
4049 if (put_user(node_cookie, (binder_uintptr_t __user *)ptr))
4050 return -EFAULT;
4051 ptr += sizeof(binder_uintptr_t);
4052
4053 binder_stat_br(proc, thread, cmd);
4054 binder_debug(BINDER_DEBUG_USER_REFS, "%d:%d %s %d u%016llx c%016llx\n",
4055 proc->pid, thread->pid, cmd_name, node_debug_id,
4056 (u64)node_ptr, (u64)node_cookie);
4057
4058 *ptrp = ptr;
4059 return 0;
4060}
4061
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004062static int binder_wait_for_work(struct binder_thread *thread,
4063 bool do_proc_work)
4064{
4065 DEFINE_WAIT(wait);
4066 struct binder_proc *proc = thread->proc;
4067 int ret = 0;
4068
4069 freezer_do_not_count();
4070 binder_inner_proc_lock(proc);
4071 for (;;) {
4072 prepare_to_wait(&thread->wait, &wait, TASK_INTERRUPTIBLE);
4073 if (binder_has_work_ilocked(thread, do_proc_work))
4074 break;
4075 if (do_proc_work)
4076 list_add(&thread->waiting_thread_node,
4077 &proc->waiting_threads);
4078 binder_inner_proc_unlock(proc);
4079 schedule();
4080 binder_inner_proc_lock(proc);
4081 list_del_init(&thread->waiting_thread_node);
4082 if (signal_pending(current)) {
4083 ret = -ERESTARTSYS;
4084 break;
4085 }
4086 }
4087 finish_wait(&thread->wait, &wait);
4088 binder_inner_proc_unlock(proc);
4089 freezer_count();
4090
4091 return ret;
4092}
4093
Todd Kjos44d80472018-08-28 13:46:25 -07004094/**
4095 * binder_apply_fd_fixups() - finish fd translation
Todd Kjos8ced0c62019-02-08 10:35:15 -08004096 * @proc: binder_proc associated @t->buffer
Todd Kjos44d80472018-08-28 13:46:25 -07004097 * @t: binder transaction with list of fd fixups
4098 *
4099 * Now that we are in the context of the transaction target
4100 * process, we can allocate and install fds. Process the
4101 * list of fds to translate and fixup the buffer with the
4102 * new fds.
4103 *
4104 * If we fail to allocate an fd, then free the resources by
4105 * fput'ing files that have not been processed and ksys_close'ing
4106 * any fds that have already been allocated.
4107 */
Todd Kjos8ced0c62019-02-08 10:35:15 -08004108static int binder_apply_fd_fixups(struct binder_proc *proc,
4109 struct binder_transaction *t)
Todd Kjos44d80472018-08-28 13:46:25 -07004110{
4111 struct binder_txn_fd_fixup *fixup, *tmp;
4112 int ret = 0;
4113
4114 list_for_each_entry(fixup, &t->fd_fixups, fixup_entry) {
4115 int fd = get_unused_fd_flags(O_CLOEXEC);
Todd Kjos44d80472018-08-28 13:46:25 -07004116
4117 if (fd < 0) {
4118 binder_debug(BINDER_DEBUG_TRANSACTION,
4119 "failed fd fixup txn %d fd %d\n",
4120 t->debug_id, fd);
4121 ret = -ENOMEM;
4122 break;
4123 }
4124 binder_debug(BINDER_DEBUG_TRANSACTION,
4125 "fd fixup txn %d fd %d\n",
4126 t->debug_id, fd);
4127 trace_binder_transaction_fd_recv(t, fd, fixup->offset);
4128 fd_install(fd, fixup->file);
4129 fixup->file = NULL;
Todd Kjos8ced0c62019-02-08 10:35:15 -08004130 binder_alloc_copy_to_buffer(&proc->alloc, t->buffer,
4131 fixup->offset, &fd,
4132 sizeof(u32));
Todd Kjos44d80472018-08-28 13:46:25 -07004133 }
4134 list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) {
4135 if (fixup->file) {
4136 fput(fixup->file);
4137 } else if (ret) {
Todd Kjos8ced0c62019-02-08 10:35:15 -08004138 u32 fd;
Todd Kjos44d80472018-08-28 13:46:25 -07004139
Todd Kjos8ced0c62019-02-08 10:35:15 -08004140 binder_alloc_copy_from_buffer(&proc->alloc, &fd,
4141 t->buffer, fixup->offset,
4142 sizeof(fd));
4143 binder_deferred_fd_close(fd);
Todd Kjos44d80472018-08-28 13:46:25 -07004144 }
4145 list_del(&fixup->fixup_entry);
4146 kfree(fixup);
4147 }
4148
4149 return ret;
4150}
4151
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004152static int binder_thread_read(struct binder_proc *proc,
4153 struct binder_thread *thread,
Arve Hjønnevågda498892014-02-21 14:40:26 -08004154 binder_uintptr_t binder_buffer, size_t size,
4155 binder_size_t *consumed, int non_block)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004156{
Arve Hjønnevågda498892014-02-21 14:40:26 -08004157 void __user *buffer = (void __user *)(uintptr_t)binder_buffer;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004158 void __user *ptr = buffer + *consumed;
4159 void __user *end = buffer + size;
4160
4161 int ret = 0;
4162 int wait_for_proc_work;
4163
4164 if (*consumed == 0) {
4165 if (put_user(BR_NOOP, (uint32_t __user *)ptr))
4166 return -EFAULT;
4167 ptr += sizeof(uint32_t);
4168 }
4169
4170retry:
Martijn Coenen0b89d692017-06-29 12:02:06 -07004171 binder_inner_proc_lock(proc);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004172 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread);
Martijn Coenen0b89d692017-06-29 12:02:06 -07004173 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004174
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004175 thread->looper |= BINDER_LOOPER_STATE_WAITING;
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004176
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004177 trace_binder_wait_for_work(wait_for_proc_work,
4178 !!thread->transaction_stack,
Todd Kjos72196392017-06-29 12:02:02 -07004179 !binder_worklist_empty(proc, &thread->todo));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004180 if (wait_for_proc_work) {
4181 if (!(thread->looper & (BINDER_LOOPER_STATE_REGISTERED |
4182 BINDER_LOOPER_STATE_ENTERED))) {
Anmol Sarma56b468f2012-10-30 22:35:43 +05304183 binder_user_error("%d:%d ERROR: Thread waiting for process work before calling BC_REGISTER_LOOPER or BC_ENTER_LOOPER (state %x)\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004184 proc->pid, thread->pid, thread->looper);
4185 wait_event_interruptible(binder_user_error_wait,
4186 binder_stop_on_user_error < 2);
4187 }
4188 binder_set_nice(proc->default_priority);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004189 }
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004190
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004191 if (non_block) {
4192 if (!binder_has_work(thread, wait_for_proc_work))
4193 ret = -EAGAIN;
4194 } else {
4195 ret = binder_wait_for_work(thread, wait_for_proc_work);
4196 }
4197
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004198 thread->looper &= ~BINDER_LOOPER_STATE_WAITING;
4199
4200 if (ret)
4201 return ret;
4202
4203 while (1) {
4204 uint32_t cmd;
Todd Kjosec741362019-01-14 09:10:21 -08004205 struct binder_transaction_data_secctx tr;
4206 struct binder_transaction_data *trd = &tr.transaction_data;
Todd Kjos72196392017-06-29 12:02:02 -07004207 struct binder_work *w = NULL;
4208 struct list_head *list = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004209 struct binder_transaction *t = NULL;
Todd Kjos7a4408c2017-06-29 12:01:57 -07004210 struct binder_thread *t_from;
Todd Kjosec741362019-01-14 09:10:21 -08004211 size_t trsize = sizeof(*trd);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004212
Todd Kjosed297212017-06-29 12:02:01 -07004213 binder_inner_proc_lock(proc);
Todd Kjos72196392017-06-29 12:02:02 -07004214 if (!binder_worklist_empty_ilocked(&thread->todo))
4215 list = &thread->todo;
4216 else if (!binder_worklist_empty_ilocked(&proc->todo) &&
4217 wait_for_proc_work)
4218 list = &proc->todo;
4219 else {
4220 binder_inner_proc_unlock(proc);
4221
Dmitry Voytik395262a2014-09-08 18:16:34 +04004222 /* no data added */
Todd Kjos08dabce2017-06-29 12:01:49 -07004223 if (ptr - buffer == 4 && !thread->looper_need_return)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004224 goto retry;
4225 break;
4226 }
4227
Todd Kjosed297212017-06-29 12:02:01 -07004228 if (end - ptr < sizeof(tr) + 4) {
4229 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004230 break;
Todd Kjosed297212017-06-29 12:02:01 -07004231 }
Todd Kjos72196392017-06-29 12:02:02 -07004232 w = binder_dequeue_work_head_ilocked(list);
Martijn Coenen148ade22017-11-15 09:21:35 +01004233 if (binder_worklist_empty_ilocked(&thread->todo))
4234 thread->process_todo = false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004235
4236 switch (w->type) {
4237 case BINDER_WORK_TRANSACTION: {
Todd Kjosed297212017-06-29 12:02:01 -07004238 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004239 t = container_of(w, struct binder_transaction, work);
4240 } break;
Todd Kjos26549d12017-06-29 12:01:55 -07004241 case BINDER_WORK_RETURN_ERROR: {
4242 struct binder_error *e = container_of(
4243 w, struct binder_error, work);
4244
4245 WARN_ON(e->cmd == BR_OK);
Todd Kjosed297212017-06-29 12:02:01 -07004246 binder_inner_proc_unlock(proc);
Todd Kjos26549d12017-06-29 12:01:55 -07004247 if (put_user(e->cmd, (uint32_t __user *)ptr))
4248 return -EFAULT;
宋金时838d5562018-05-10 02:05:03 +00004249 cmd = e->cmd;
Todd Kjos26549d12017-06-29 12:01:55 -07004250 e->cmd = BR_OK;
4251 ptr += sizeof(uint32_t);
4252
宋金时838d5562018-05-10 02:05:03 +00004253 binder_stat_br(proc, thread, cmd);
Todd Kjos26549d12017-06-29 12:01:55 -07004254 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004255 case BINDER_WORK_TRANSACTION_COMPLETE: {
Todd Kjosed297212017-06-29 12:02:01 -07004256 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004257 cmd = BR_TRANSACTION_COMPLETE;
4258 if (put_user(cmd, (uint32_t __user *)ptr))
4259 return -EFAULT;
4260 ptr += sizeof(uint32_t);
4261
4262 binder_stat_br(proc, thread, cmd);
4263 binder_debug(BINDER_DEBUG_TRANSACTION_COMPLETE,
Anmol Sarma56b468f2012-10-30 22:35:43 +05304264 "%d:%d BR_TRANSACTION_COMPLETE\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004265 proc->pid, thread->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004266 kfree(w);
4267 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
4268 } break;
4269 case BINDER_WORK_NODE: {
4270 struct binder_node *node = container_of(w, struct binder_node, work);
Todd Kjos26b47d82017-06-29 12:01:47 -07004271 int strong, weak;
4272 binder_uintptr_t node_ptr = node->ptr;
4273 binder_uintptr_t node_cookie = node->cookie;
4274 int node_debug_id = node->debug_id;
4275 int has_weak_ref;
4276 int has_strong_ref;
4277 void __user *orig_ptr = ptr;
Seunghun Lee10f62862014-05-01 01:30:23 +09004278
Todd Kjos26b47d82017-06-29 12:01:47 -07004279 BUG_ON(proc != node->proc);
4280 strong = node->internal_strong_refs ||
4281 node->local_strong_refs;
4282 weak = !hlist_empty(&node->refs) ||
Todd Kjosadc18842017-06-29 12:01:59 -07004283 node->local_weak_refs ||
4284 node->tmp_refs || strong;
Todd Kjos26b47d82017-06-29 12:01:47 -07004285 has_strong_ref = node->has_strong_ref;
4286 has_weak_ref = node->has_weak_ref;
4287
4288 if (weak && !has_weak_ref) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004289 node->has_weak_ref = 1;
4290 node->pending_weak_ref = 1;
4291 node->local_weak_refs++;
Todd Kjos26b47d82017-06-29 12:01:47 -07004292 }
4293 if (strong && !has_strong_ref) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004294 node->has_strong_ref = 1;
4295 node->pending_strong_ref = 1;
4296 node->local_strong_refs++;
Todd Kjos26b47d82017-06-29 12:01:47 -07004297 }
4298 if (!strong && has_strong_ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004299 node->has_strong_ref = 0;
Todd Kjos26b47d82017-06-29 12:01:47 -07004300 if (!weak && has_weak_ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004301 node->has_weak_ref = 0;
Todd Kjos26b47d82017-06-29 12:01:47 -07004302 if (!weak && !strong) {
4303 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
4304 "%d:%d node %d u%016llx c%016llx deleted\n",
4305 proc->pid, thread->pid,
4306 node_debug_id,
4307 (u64)node_ptr,
4308 (u64)node_cookie);
4309 rb_erase(&node->rb_node, &proc->nodes);
Todd Kjosed297212017-06-29 12:02:01 -07004310 binder_inner_proc_unlock(proc);
Todd Kjos673068e2017-06-29 12:02:03 -07004311 binder_node_lock(node);
4312 /*
4313 * Acquire the node lock before freeing the
4314 * node to serialize with other threads that
4315 * may have been holding the node lock while
4316 * decrementing this node (avoids race where
4317 * this thread frees while the other thread
4318 * is unlocking the node after the final
4319 * decrement)
4320 */
4321 binder_node_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07004322 binder_free_node(node);
4323 } else
4324 binder_inner_proc_unlock(proc);
4325
Todd Kjos26b47d82017-06-29 12:01:47 -07004326 if (weak && !has_weak_ref)
4327 ret = binder_put_node_cmd(
4328 proc, thread, &ptr, node_ptr,
4329 node_cookie, node_debug_id,
4330 BR_INCREFS, "BR_INCREFS");
4331 if (!ret && strong && !has_strong_ref)
4332 ret = binder_put_node_cmd(
4333 proc, thread, &ptr, node_ptr,
4334 node_cookie, node_debug_id,
4335 BR_ACQUIRE, "BR_ACQUIRE");
4336 if (!ret && !strong && has_strong_ref)
4337 ret = binder_put_node_cmd(
4338 proc, thread, &ptr, node_ptr,
4339 node_cookie, node_debug_id,
4340 BR_RELEASE, "BR_RELEASE");
4341 if (!ret && !weak && has_weak_ref)
4342 ret = binder_put_node_cmd(
4343 proc, thread, &ptr, node_ptr,
4344 node_cookie, node_debug_id,
4345 BR_DECREFS, "BR_DECREFS");
4346 if (orig_ptr == ptr)
4347 binder_debug(BINDER_DEBUG_INTERNAL_REFS,
4348 "%d:%d node %d u%016llx c%016llx state unchanged\n",
4349 proc->pid, thread->pid,
4350 node_debug_id,
4351 (u64)node_ptr,
4352 (u64)node_cookie);
4353 if (ret)
4354 return ret;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004355 } break;
4356 case BINDER_WORK_DEAD_BINDER:
4357 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
4358 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: {
4359 struct binder_ref_death *death;
4360 uint32_t cmd;
Martijn Coenenab51ec62017-06-29 12:02:10 -07004361 binder_uintptr_t cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004362
4363 death = container_of(w, struct binder_ref_death, work);
4364 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION)
4365 cmd = BR_CLEAR_DEATH_NOTIFICATION_DONE;
4366 else
4367 cmd = BR_DEAD_BINDER;
Martijn Coenenab51ec62017-06-29 12:02:10 -07004368 cookie = death->cookie;
4369
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004370 binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION,
Arve Hjønnevågda498892014-02-21 14:40:26 -08004371 "%d:%d %s %016llx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004372 proc->pid, thread->pid,
4373 cmd == BR_DEAD_BINDER ?
4374 "BR_DEAD_BINDER" :
4375 "BR_CLEAR_DEATH_NOTIFICATION_DONE",
Martijn Coenenab51ec62017-06-29 12:02:10 -07004376 (u64)cookie);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004377 if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) {
Martijn Coenenab51ec62017-06-29 12:02:10 -07004378 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004379 kfree(death);
4380 binder_stats_deleted(BINDER_STAT_DEATH);
Todd Kjosed297212017-06-29 12:02:01 -07004381 } else {
Todd Kjos72196392017-06-29 12:02:02 -07004382 binder_enqueue_work_ilocked(
4383 w, &proc->delivered_death);
Todd Kjosed297212017-06-29 12:02:01 -07004384 binder_inner_proc_unlock(proc);
4385 }
Martijn Coenenab51ec62017-06-29 12:02:10 -07004386 if (put_user(cmd, (uint32_t __user *)ptr))
4387 return -EFAULT;
4388 ptr += sizeof(uint32_t);
4389 if (put_user(cookie,
4390 (binder_uintptr_t __user *)ptr))
4391 return -EFAULT;
4392 ptr += sizeof(binder_uintptr_t);
4393 binder_stat_br(proc, thread, cmd);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004394 if (cmd == BR_DEAD_BINDER)
4395 goto done; /* DEAD_BINDER notifications can cause transactions */
4396 } break;
Todd Kjos324fa642018-11-06 15:56:31 -08004397 default:
4398 binder_inner_proc_unlock(proc);
4399 pr_err("%d:%d: bad work type %d\n",
4400 proc->pid, thread->pid, w->type);
4401 break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004402 }
4403
4404 if (!t)
4405 continue;
4406
4407 BUG_ON(t->buffer == NULL);
4408 if (t->buffer->target_node) {
4409 struct binder_node *target_node = t->buffer->target_node;
Seunghun Lee10f62862014-05-01 01:30:23 +09004410
Todd Kjosec741362019-01-14 09:10:21 -08004411 trd->target.ptr = target_node->ptr;
4412 trd->cookie = target_node->cookie;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004413 t->saved_priority = task_nice(current);
4414 if (t->priority < target_node->min_priority &&
4415 !(t->flags & TF_ONE_WAY))
4416 binder_set_nice(t->priority);
4417 else if (!(t->flags & TF_ONE_WAY) ||
4418 t->saved_priority > target_node->min_priority)
4419 binder_set_nice(target_node->min_priority);
4420 cmd = BR_TRANSACTION;
4421 } else {
Todd Kjosec741362019-01-14 09:10:21 -08004422 trd->target.ptr = 0;
4423 trd->cookie = 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004424 cmd = BR_REPLY;
4425 }
Todd Kjosec741362019-01-14 09:10:21 -08004426 trd->code = t->code;
4427 trd->flags = t->flags;
4428 trd->sender_euid = from_kuid(current_user_ns(), t->sender_euid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004429
Todd Kjos7a4408c2017-06-29 12:01:57 -07004430 t_from = binder_get_txn_from(t);
4431 if (t_from) {
4432 struct task_struct *sender = t_from->proc->tsk;
Seunghun Lee10f62862014-05-01 01:30:23 +09004433
Todd Kjosec741362019-01-14 09:10:21 -08004434 trd->sender_pid =
4435 task_tgid_nr_ns(sender,
4436 task_active_pid_ns(current));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004437 } else {
Todd Kjosec741362019-01-14 09:10:21 -08004438 trd->sender_pid = 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004439 }
4440
Todd Kjos8ced0c62019-02-08 10:35:15 -08004441 ret = binder_apply_fd_fixups(proc, t);
Todd Kjos44d80472018-08-28 13:46:25 -07004442 if (ret) {
4443 struct binder_buffer *buffer = t->buffer;
4444 bool oneway = !!(t->flags & TF_ONE_WAY);
4445 int tid = t->debug_id;
4446
4447 if (t_from)
4448 binder_thread_dec_tmpref(t_from);
4449 buffer->transaction = NULL;
4450 binder_cleanup_transaction(t, "fd fixups failed",
4451 BR_FAILED_REPLY);
4452 binder_free_buf(proc, buffer);
4453 binder_debug(BINDER_DEBUG_FAILED_TRANSACTION,
4454 "%d:%d %stransaction %d fd fixups failed %d/%d, line %d\n",
4455 proc->pid, thread->pid,
4456 oneway ? "async " :
4457 (cmd == BR_REPLY ? "reply " : ""),
4458 tid, BR_FAILED_REPLY, ret, __LINE__);
4459 if (cmd == BR_REPLY) {
4460 cmd = BR_FAILED_REPLY;
4461 if (put_user(cmd, (uint32_t __user *)ptr))
4462 return -EFAULT;
4463 ptr += sizeof(uint32_t);
4464 binder_stat_br(proc, thread, cmd);
4465 break;
4466 }
4467 continue;
4468 }
Todd Kjosec741362019-01-14 09:10:21 -08004469 trd->data_size = t->buffer->data_size;
4470 trd->offsets_size = t->buffer->offsets_size;
Todd Kjosbde4a192019-02-08 10:35:20 -08004471 trd->data.ptr.buffer = (uintptr_t)t->buffer->user_data;
Todd Kjosec741362019-01-14 09:10:21 -08004472 trd->data.ptr.offsets = trd->data.ptr.buffer +
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004473 ALIGN(t->buffer->data_size,
4474 sizeof(void *));
4475
Todd Kjosec741362019-01-14 09:10:21 -08004476 tr.secctx = t->security_ctx;
4477 if (t->security_ctx) {
4478 cmd = BR_TRANSACTION_SEC_CTX;
4479 trsize = sizeof(tr);
4480 }
Todd Kjos7a4408c2017-06-29 12:01:57 -07004481 if (put_user(cmd, (uint32_t __user *)ptr)) {
4482 if (t_from)
4483 binder_thread_dec_tmpref(t_from);
Martijn Coenenfb2c4452017-11-13 10:06:08 +01004484
4485 binder_cleanup_transaction(t, "put_user failed",
4486 BR_FAILED_REPLY);
4487
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004488 return -EFAULT;
Todd Kjos7a4408c2017-06-29 12:01:57 -07004489 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004490 ptr += sizeof(uint32_t);
Todd Kjosec741362019-01-14 09:10:21 -08004491 if (copy_to_user(ptr, &tr, trsize)) {
Todd Kjos7a4408c2017-06-29 12:01:57 -07004492 if (t_from)
4493 binder_thread_dec_tmpref(t_from);
Martijn Coenenfb2c4452017-11-13 10:06:08 +01004494
4495 binder_cleanup_transaction(t, "copy_to_user failed",
4496 BR_FAILED_REPLY);
4497
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004498 return -EFAULT;
Todd Kjos7a4408c2017-06-29 12:01:57 -07004499 }
Todd Kjosec741362019-01-14 09:10:21 -08004500 ptr += trsize;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004501
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004502 trace_binder_transaction_received(t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004503 binder_stat_br(proc, thread, cmd);
4504 binder_debug(BINDER_DEBUG_TRANSACTION,
Arve Hjønnevågda498892014-02-21 14:40:26 -08004505 "%d:%d %s %d %d:%d, cmd %d size %zd-%zd ptr %016llx-%016llx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004506 proc->pid, thread->pid,
4507 (cmd == BR_TRANSACTION) ? "BR_TRANSACTION" :
Todd Kjosec741362019-01-14 09:10:21 -08004508 (cmd == BR_TRANSACTION_SEC_CTX) ?
4509 "BR_TRANSACTION_SEC_CTX" : "BR_REPLY",
Todd Kjos7a4408c2017-06-29 12:01:57 -07004510 t->debug_id, t_from ? t_from->proc->pid : 0,
4511 t_from ? t_from->pid : 0, cmd,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004512 t->buffer->data_size, t->buffer->offsets_size,
Todd Kjosec741362019-01-14 09:10:21 -08004513 (u64)trd->data.ptr.buffer,
4514 (u64)trd->data.ptr.offsets);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004515
Todd Kjos7a4408c2017-06-29 12:01:57 -07004516 if (t_from)
4517 binder_thread_dec_tmpref(t_from);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004518 t->buffer->allow_user_free = 1;
Todd Kjosec741362019-01-14 09:10:21 -08004519 if (cmd != BR_REPLY && !(t->flags & TF_ONE_WAY)) {
Martijn Coenen0b89d692017-06-29 12:02:06 -07004520 binder_inner_proc_lock(thread->proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004521 t->to_parent = thread->transaction_stack;
4522 t->to_thread = thread;
4523 thread->transaction_stack = t;
Martijn Coenen0b89d692017-06-29 12:02:06 -07004524 binder_inner_proc_unlock(thread->proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004525 } else {
Todd Kjosb6d282c2017-06-29 12:01:54 -07004526 binder_free_transaction(t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004527 }
4528 break;
4529 }
4530
4531done:
4532
4533 *consumed = ptr - buffer;
Todd Kjosb3e68612017-06-29 12:02:07 -07004534 binder_inner_proc_lock(proc);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004535 if (proc->requested_threads == 0 &&
4536 list_empty(&thread->proc->waiting_threads) &&
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004537 proc->requested_threads_started < proc->max_threads &&
4538 (thread->looper & (BINDER_LOOPER_STATE_REGISTERED |
4539 BINDER_LOOPER_STATE_ENTERED)) /* the user-space code fails to */
4540 /*spawn a new thread if we leave this out */) {
4541 proc->requested_threads++;
Todd Kjosb3e68612017-06-29 12:02:07 -07004542 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004543 binder_debug(BINDER_DEBUG_THREADS,
Anmol Sarma56b468f2012-10-30 22:35:43 +05304544 "%d:%d BR_SPAWN_LOOPER\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004545 proc->pid, thread->pid);
4546 if (put_user(BR_SPAWN_LOOPER, (uint32_t __user *)buffer))
4547 return -EFAULT;
Arve Hjønnevåg89334ab2012-10-16 15:29:52 -07004548 binder_stat_br(proc, thread, BR_SPAWN_LOOPER);
Todd Kjosb3e68612017-06-29 12:02:07 -07004549 } else
4550 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004551 return 0;
4552}
4553
Todd Kjos72196392017-06-29 12:02:02 -07004554static void binder_release_work(struct binder_proc *proc,
4555 struct list_head *list)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004556{
4557 struct binder_work *w;
Seunghun Lee10f62862014-05-01 01:30:23 +09004558
Todd Kjos72196392017-06-29 12:02:02 -07004559 while (1) {
4560 w = binder_dequeue_work_head(proc, list);
4561 if (!w)
4562 return;
4563
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004564 switch (w->type) {
4565 case BINDER_WORK_TRANSACTION: {
4566 struct binder_transaction *t;
4567
4568 t = container_of(w, struct binder_transaction, work);
Martijn Coenenfb2c4452017-11-13 10:06:08 +01004569
4570 binder_cleanup_transaction(t, "process died.",
4571 BR_DEAD_REPLY);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004572 } break;
Todd Kjos26549d12017-06-29 12:01:55 -07004573 case BINDER_WORK_RETURN_ERROR: {
4574 struct binder_error *e = container_of(
4575 w, struct binder_error, work);
4576
4577 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
4578 "undelivered TRANSACTION_ERROR: %u\n",
4579 e->cmd);
4580 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004581 case BINDER_WORK_TRANSACTION_COMPLETE: {
Arve Hjønnevåg675d66b2012-10-16 15:29:54 -07004582 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
Anmol Sarma56b468f2012-10-30 22:35:43 +05304583 "undelivered TRANSACTION_COMPLETE\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004584 kfree(w);
4585 binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE);
4586 } break;
Arve Hjønnevåg675d66b2012-10-16 15:29:54 -07004587 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
4588 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: {
4589 struct binder_ref_death *death;
4590
4591 death = container_of(w, struct binder_ref_death, work);
4592 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
Arve Hjønnevågda498892014-02-21 14:40:26 -08004593 "undelivered death notification, %016llx\n",
4594 (u64)death->cookie);
Arve Hjønnevåg675d66b2012-10-16 15:29:54 -07004595 kfree(death);
4596 binder_stats_deleted(BINDER_STAT_DEATH);
4597 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004598 default:
Anmol Sarma56b468f2012-10-30 22:35:43 +05304599 pr_err("unexpected work type, %d, not freed\n",
Arve Hjønnevåg675d66b2012-10-16 15:29:54 -07004600 w->type);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004601 break;
4602 }
4603 }
4604
4605}
4606
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004607static struct binder_thread *binder_get_thread_ilocked(
4608 struct binder_proc *proc, struct binder_thread *new_thread)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004609{
4610 struct binder_thread *thread = NULL;
4611 struct rb_node *parent = NULL;
4612 struct rb_node **p = &proc->threads.rb_node;
4613
4614 while (*p) {
4615 parent = *p;
4616 thread = rb_entry(parent, struct binder_thread, rb_node);
4617
4618 if (current->pid < thread->pid)
4619 p = &(*p)->rb_left;
4620 else if (current->pid > thread->pid)
4621 p = &(*p)->rb_right;
4622 else
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004623 return thread;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004624 }
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004625 if (!new_thread)
4626 return NULL;
4627 thread = new_thread;
4628 binder_stats_created(BINDER_STAT_THREAD);
4629 thread->proc = proc;
4630 thread->pid = current->pid;
4631 atomic_set(&thread->tmp_ref, 0);
4632 init_waitqueue_head(&thread->wait);
4633 INIT_LIST_HEAD(&thread->todo);
4634 rb_link_node(&thread->rb_node, parent, p);
4635 rb_insert_color(&thread->rb_node, &proc->threads);
4636 thread->looper_need_return = true;
4637 thread->return_error.work.type = BINDER_WORK_RETURN_ERROR;
4638 thread->return_error.cmd = BR_OK;
4639 thread->reply_error.work.type = BINDER_WORK_RETURN_ERROR;
4640 thread->reply_error.cmd = BR_OK;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004641 INIT_LIST_HEAD(&new_thread->waiting_thread_node);
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004642 return thread;
4643}
4644
4645static struct binder_thread *binder_get_thread(struct binder_proc *proc)
4646{
4647 struct binder_thread *thread;
4648 struct binder_thread *new_thread;
4649
4650 binder_inner_proc_lock(proc);
4651 thread = binder_get_thread_ilocked(proc, NULL);
4652 binder_inner_proc_unlock(proc);
4653 if (!thread) {
4654 new_thread = kzalloc(sizeof(*thread), GFP_KERNEL);
4655 if (new_thread == NULL)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004656 return NULL;
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004657 binder_inner_proc_lock(proc);
4658 thread = binder_get_thread_ilocked(proc, new_thread);
4659 binder_inner_proc_unlock(proc);
4660 if (thread != new_thread)
4661 kfree(new_thread);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004662 }
4663 return thread;
4664}
4665
Todd Kjos7a4408c2017-06-29 12:01:57 -07004666static void binder_free_proc(struct binder_proc *proc)
4667{
4668 BUG_ON(!list_empty(&proc->todo));
4669 BUG_ON(!list_empty(&proc->delivered_death));
4670 binder_alloc_deferred_release(&proc->alloc);
4671 put_task_struct(proc->tsk);
4672 binder_stats_deleted(BINDER_STAT_PROC);
4673 kfree(proc);
4674}
4675
4676static void binder_free_thread(struct binder_thread *thread)
4677{
4678 BUG_ON(!list_empty(&thread->todo));
4679 binder_stats_deleted(BINDER_STAT_THREAD);
4680 binder_proc_dec_tmpref(thread->proc);
4681 kfree(thread);
4682}
4683
4684static int binder_thread_release(struct binder_proc *proc,
4685 struct binder_thread *thread)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004686{
4687 struct binder_transaction *t;
4688 struct binder_transaction *send_reply = NULL;
4689 int active_transactions = 0;
Todd Kjos7a4408c2017-06-29 12:01:57 -07004690 struct binder_transaction *last_t = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004691
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004692 binder_inner_proc_lock(thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07004693 /*
4694 * take a ref on the proc so it survives
4695 * after we remove this thread from proc->threads.
4696 * The corresponding dec is when we actually
4697 * free the thread in binder_free_thread()
4698 */
4699 proc->tmp_ref++;
4700 /*
4701 * take a ref on this thread to ensure it
4702 * survives while we are releasing it
4703 */
4704 atomic_inc(&thread->tmp_ref);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004705 rb_erase(&thread->rb_node, &proc->threads);
4706 t = thread->transaction_stack;
Todd Kjos7a4408c2017-06-29 12:01:57 -07004707 if (t) {
4708 spin_lock(&t->lock);
4709 if (t->to_thread == thread)
4710 send_reply = t;
Todd Kjos324fa642018-11-06 15:56:31 -08004711 } else {
4712 __acquire(&t->lock);
Todd Kjos7a4408c2017-06-29 12:01:57 -07004713 }
4714 thread->is_dead = true;
4715
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004716 while (t) {
Todd Kjos7a4408c2017-06-29 12:01:57 -07004717 last_t = t;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004718 active_transactions++;
4719 binder_debug(BINDER_DEBUG_DEAD_TRANSACTION,
Anmol Sarma56b468f2012-10-30 22:35:43 +05304720 "release %d:%d transaction %d %s, still active\n",
4721 proc->pid, thread->pid,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004722 t->debug_id,
4723 (t->to_thread == thread) ? "in" : "out");
4724
4725 if (t->to_thread == thread) {
4726 t->to_proc = NULL;
4727 t->to_thread = NULL;
4728 if (t->buffer) {
4729 t->buffer->transaction = NULL;
4730 t->buffer = NULL;
4731 }
4732 t = t->to_parent;
4733 } else if (t->from == thread) {
4734 t->from = NULL;
4735 t = t->from_parent;
4736 } else
4737 BUG();
Todd Kjos7a4408c2017-06-29 12:01:57 -07004738 spin_unlock(&last_t->lock);
4739 if (t)
4740 spin_lock(&t->lock);
Todd Kjos324fa642018-11-06 15:56:31 -08004741 else
4742 __acquire(&t->lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004743 }
Todd Kjos324fa642018-11-06 15:56:31 -08004744 /* annotation for sparse, lock not acquired in last iteration above */
4745 __release(&t->lock);
Martijn Coenenf5cb7792018-01-05 11:27:07 +01004746
4747 /*
4748 * If this thread used poll, make sure we remove the waitqueue
4749 * from any epoll data structures holding it with POLLFREE.
4750 * waitqueue_active() is safe to use here because we're holding
4751 * the inner lock.
4752 */
4753 if ((thread->looper & BINDER_LOOPER_STATE_POLL) &&
4754 waitqueue_active(&thread->wait)) {
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004755 wake_up_poll(&thread->wait, EPOLLHUP | POLLFREE);
Martijn Coenenf5cb7792018-01-05 11:27:07 +01004756 }
4757
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07004758 binder_inner_proc_unlock(thread->proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07004759
Martijn Coenen5eeb2ca2018-02-16 09:47:15 +01004760 /*
4761 * This is needed to avoid races between wake_up_poll() above and
4762 * and ep_remove_waitqueue() called for other reasons (eg the epoll file
4763 * descriptor being closed); ep_remove_waitqueue() holds an RCU read
4764 * lock, so we can be sure it's done after calling synchronize_rcu().
4765 */
4766 if (thread->looper & BINDER_LOOPER_STATE_POLL)
4767 synchronize_rcu();
4768
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004769 if (send_reply)
4770 binder_send_failed_reply(send_reply, BR_DEAD_REPLY);
Todd Kjos72196392017-06-29 12:02:02 -07004771 binder_release_work(proc, &thread->todo);
Todd Kjos7a4408c2017-06-29 12:01:57 -07004772 binder_thread_dec_tmpref(thread);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004773 return active_transactions;
4774}
4775
Al Viroafc9a422017-07-03 06:39:46 -04004776static __poll_t binder_poll(struct file *filp,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004777 struct poll_table_struct *wait)
4778{
4779 struct binder_proc *proc = filp->private_data;
4780 struct binder_thread *thread = NULL;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004781 bool wait_for_proc_work;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004782
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004783 thread = binder_get_thread(proc);
Eric Biggersf8898262018-01-30 23:11:24 -08004784 if (!thread)
4785 return POLLERR;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004786
Martijn Coenen0b89d692017-06-29 12:02:06 -07004787 binder_inner_proc_lock(thread->proc);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004788 thread->looper |= BINDER_LOOPER_STATE_POLL;
4789 wait_for_proc_work = binder_available_for_proc_work_ilocked(thread);
4790
Martijn Coenen0b89d692017-06-29 12:02:06 -07004791 binder_inner_proc_unlock(thread->proc);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004792
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004793 poll_wait(filp, &thread->wait, wait);
4794
Martijn Coenen66b83a42017-10-09 14:26:56 +02004795 if (binder_has_work(thread, wait_for_proc_work))
Linus Torvaldsa9a08842018-02-11 14:34:03 -08004796 return EPOLLIN;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004797
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004798 return 0;
4799}
4800
Tair Rzayev78260ac2014-06-03 22:27:21 +03004801static int binder_ioctl_write_read(struct file *filp,
4802 unsigned int cmd, unsigned long arg,
4803 struct binder_thread *thread)
4804{
4805 int ret = 0;
4806 struct binder_proc *proc = filp->private_data;
4807 unsigned int size = _IOC_SIZE(cmd);
4808 void __user *ubuf = (void __user *)arg;
4809 struct binder_write_read bwr;
4810
4811 if (size != sizeof(struct binder_write_read)) {
4812 ret = -EINVAL;
4813 goto out;
4814 }
4815 if (copy_from_user(&bwr, ubuf, sizeof(bwr))) {
4816 ret = -EFAULT;
4817 goto out;
4818 }
4819 binder_debug(BINDER_DEBUG_READ_WRITE,
4820 "%d:%d write %lld at %016llx, read %lld at %016llx\n",
4821 proc->pid, thread->pid,
4822 (u64)bwr.write_size, (u64)bwr.write_buffer,
4823 (u64)bwr.read_size, (u64)bwr.read_buffer);
4824
4825 if (bwr.write_size > 0) {
4826 ret = binder_thread_write(proc, thread,
4827 bwr.write_buffer,
4828 bwr.write_size,
4829 &bwr.write_consumed);
4830 trace_binder_write_done(ret);
4831 if (ret < 0) {
4832 bwr.read_consumed = 0;
4833 if (copy_to_user(ubuf, &bwr, sizeof(bwr)))
4834 ret = -EFAULT;
4835 goto out;
4836 }
4837 }
4838 if (bwr.read_size > 0) {
4839 ret = binder_thread_read(proc, thread, bwr.read_buffer,
4840 bwr.read_size,
4841 &bwr.read_consumed,
4842 filp->f_flags & O_NONBLOCK);
4843 trace_binder_read_done(ret);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004844 binder_inner_proc_lock(proc);
4845 if (!binder_worklist_empty_ilocked(&proc->todo))
Martijn Coenen408c68b2017-08-31 10:04:19 +02004846 binder_wakeup_proc_ilocked(proc);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02004847 binder_inner_proc_unlock(proc);
Tair Rzayev78260ac2014-06-03 22:27:21 +03004848 if (ret < 0) {
4849 if (copy_to_user(ubuf, &bwr, sizeof(bwr)))
4850 ret = -EFAULT;
4851 goto out;
4852 }
4853 }
4854 binder_debug(BINDER_DEBUG_READ_WRITE,
4855 "%d:%d wrote %lld of %lld, read return %lld of %lld\n",
4856 proc->pid, thread->pid,
4857 (u64)bwr.write_consumed, (u64)bwr.write_size,
4858 (u64)bwr.read_consumed, (u64)bwr.read_size);
4859 if (copy_to_user(ubuf, &bwr, sizeof(bwr))) {
4860 ret = -EFAULT;
4861 goto out;
4862 }
4863out:
4864 return ret;
4865}
4866
Todd Kjosec741362019-01-14 09:10:21 -08004867static int binder_ioctl_set_ctx_mgr(struct file *filp,
4868 struct flat_binder_object *fbo)
Tair Rzayev78260ac2014-06-03 22:27:21 +03004869{
4870 int ret = 0;
4871 struct binder_proc *proc = filp->private_data;
Martijn Coenen342e5c92017-02-03 14:40:46 -08004872 struct binder_context *context = proc->context;
Todd Kjosc44b1232017-06-29 12:01:43 -07004873 struct binder_node *new_node;
Tair Rzayev78260ac2014-06-03 22:27:21 +03004874 kuid_t curr_euid = current_euid();
4875
Todd Kjosc44b1232017-06-29 12:01:43 -07004876 mutex_lock(&context->context_mgr_node_lock);
Martijn Coenen342e5c92017-02-03 14:40:46 -08004877 if (context->binder_context_mgr_node) {
Tair Rzayev78260ac2014-06-03 22:27:21 +03004878 pr_err("BINDER_SET_CONTEXT_MGR already set\n");
4879 ret = -EBUSY;
4880 goto out;
4881 }
Stephen Smalley79af7302015-01-21 10:54:10 -05004882 ret = security_binder_set_context_mgr(proc->tsk);
4883 if (ret < 0)
4884 goto out;
Martijn Coenen342e5c92017-02-03 14:40:46 -08004885 if (uid_valid(context->binder_context_mgr_uid)) {
4886 if (!uid_eq(context->binder_context_mgr_uid, curr_euid)) {
Tair Rzayev78260ac2014-06-03 22:27:21 +03004887 pr_err("BINDER_SET_CONTEXT_MGR bad uid %d != %d\n",
4888 from_kuid(&init_user_ns, curr_euid),
4889 from_kuid(&init_user_ns,
Martijn Coenen342e5c92017-02-03 14:40:46 -08004890 context->binder_context_mgr_uid));
Tair Rzayev78260ac2014-06-03 22:27:21 +03004891 ret = -EPERM;
4892 goto out;
4893 }
4894 } else {
Martijn Coenen342e5c92017-02-03 14:40:46 -08004895 context->binder_context_mgr_uid = curr_euid;
Tair Rzayev78260ac2014-06-03 22:27:21 +03004896 }
Todd Kjosec741362019-01-14 09:10:21 -08004897 new_node = binder_new_node(proc, fbo);
Todd Kjosc44b1232017-06-29 12:01:43 -07004898 if (!new_node) {
Tair Rzayev78260ac2014-06-03 22:27:21 +03004899 ret = -ENOMEM;
4900 goto out;
4901 }
Todd Kjos673068e2017-06-29 12:02:03 -07004902 binder_node_lock(new_node);
Todd Kjosc44b1232017-06-29 12:01:43 -07004903 new_node->local_weak_refs++;
4904 new_node->local_strong_refs++;
4905 new_node->has_strong_ref = 1;
4906 new_node->has_weak_ref = 1;
4907 context->binder_context_mgr_node = new_node;
Todd Kjos673068e2017-06-29 12:02:03 -07004908 binder_node_unlock(new_node);
Todd Kjosadc18842017-06-29 12:01:59 -07004909 binder_put_node(new_node);
Tair Rzayev78260ac2014-06-03 22:27:21 +03004910out:
Todd Kjosc44b1232017-06-29 12:01:43 -07004911 mutex_unlock(&context->context_mgr_node_lock);
Tair Rzayev78260ac2014-06-03 22:27:21 +03004912 return ret;
4913}
4914
Martijn Coenenb7e6a892018-09-07 15:38:37 +02004915static int binder_ioctl_get_node_info_for_ref(struct binder_proc *proc,
4916 struct binder_node_info_for_ref *info)
4917{
4918 struct binder_node *node;
4919 struct binder_context *context = proc->context;
4920 __u32 handle = info->handle;
4921
4922 if (info->strong_count || info->weak_count || info->reserved1 ||
4923 info->reserved2 || info->reserved3) {
4924 binder_user_error("%d BINDER_GET_NODE_INFO_FOR_REF: only handle may be non-zero.",
4925 proc->pid);
4926 return -EINVAL;
4927 }
4928
4929 /* This ioctl may only be used by the context manager */
4930 mutex_lock(&context->context_mgr_node_lock);
4931 if (!context->binder_context_mgr_node ||
4932 context->binder_context_mgr_node->proc != proc) {
4933 mutex_unlock(&context->context_mgr_node_lock);
4934 return -EPERM;
4935 }
4936 mutex_unlock(&context->context_mgr_node_lock);
4937
4938 node = binder_get_node_from_ref(proc, handle, true, NULL);
4939 if (!node)
4940 return -EINVAL;
4941
4942 info->strong_count = node->local_strong_refs +
4943 node->internal_strong_refs;
4944 info->weak_count = node->local_weak_refs;
4945
4946 binder_put_node(node);
4947
4948 return 0;
4949}
4950
Colin Crossabcc6152017-08-31 10:04:24 +02004951static int binder_ioctl_get_node_debug_info(struct binder_proc *proc,
4952 struct binder_node_debug_info *info)
4953{
4954 struct rb_node *n;
4955 binder_uintptr_t ptr = info->ptr;
4956
4957 memset(info, 0, sizeof(*info));
4958
4959 binder_inner_proc_lock(proc);
4960 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) {
4961 struct binder_node *node = rb_entry(n, struct binder_node,
4962 rb_node);
4963 if (node->ptr > ptr) {
4964 info->ptr = node->ptr;
4965 info->cookie = node->cookie;
4966 info->has_strong_ref = node->has_strong_ref;
4967 info->has_weak_ref = node->has_weak_ref;
4968 break;
4969 }
4970 }
4971 binder_inner_proc_unlock(proc);
4972
4973 return 0;
4974}
4975
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004976static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
4977{
4978 int ret;
4979 struct binder_proc *proc = filp->private_data;
4980 struct binder_thread *thread;
4981 unsigned int size = _IOC_SIZE(cmd);
4982 void __user *ubuf = (void __user *)arg;
4983
Tair Rzayev78260ac2014-06-03 22:27:21 +03004984 /*pr_info("binder_ioctl: %d:%d %x %lx\n",
4985 proc->pid, current->pid, cmd, arg);*/
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004986
Sherry Yang4175e2b2017-08-23 08:46:40 -07004987 binder_selftest_alloc(&proc->alloc);
4988
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004989 trace_binder_ioctl(cmd, arg);
4990
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004991 ret = wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2);
4992 if (ret)
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07004993 goto err_unlocked;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004994
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09004995 thread = binder_get_thread(proc);
4996 if (thread == NULL) {
4997 ret = -ENOMEM;
4998 goto err;
4999 }
5000
5001 switch (cmd) {
Tair Rzayev78260ac2014-06-03 22:27:21 +03005002 case BINDER_WRITE_READ:
5003 ret = binder_ioctl_write_read(filp, cmd, arg, thread);
5004 if (ret)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005005 goto err;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005006 break;
Todd Kjosb3e68612017-06-29 12:02:07 -07005007 case BINDER_SET_MAX_THREADS: {
5008 int max_threads;
5009
5010 if (copy_from_user(&max_threads, ubuf,
5011 sizeof(max_threads))) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005012 ret = -EINVAL;
5013 goto err;
5014 }
Todd Kjosb3e68612017-06-29 12:02:07 -07005015 binder_inner_proc_lock(proc);
5016 proc->max_threads = max_threads;
5017 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005018 break;
Todd Kjosb3e68612017-06-29 12:02:07 -07005019 }
Todd Kjosec741362019-01-14 09:10:21 -08005020 case BINDER_SET_CONTEXT_MGR_EXT: {
5021 struct flat_binder_object fbo;
5022
5023 if (copy_from_user(&fbo, ubuf, sizeof(fbo))) {
5024 ret = -EINVAL;
5025 goto err;
5026 }
5027 ret = binder_ioctl_set_ctx_mgr(filp, &fbo);
5028 if (ret)
5029 goto err;
5030 break;
5031 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005032 case BINDER_SET_CONTEXT_MGR:
Todd Kjosec741362019-01-14 09:10:21 -08005033 ret = binder_ioctl_set_ctx_mgr(filp, NULL);
Tair Rzayev78260ac2014-06-03 22:27:21 +03005034 if (ret)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005035 goto err;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005036 break;
5037 case BINDER_THREAD_EXIT:
Anmol Sarma56b468f2012-10-30 22:35:43 +05305038 binder_debug(BINDER_DEBUG_THREADS, "%d:%d exit\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005039 proc->pid, thread->pid);
Todd Kjos7a4408c2017-06-29 12:01:57 -07005040 binder_thread_release(proc, thread);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005041 thread = NULL;
5042 break;
Mathieu Maret36c89c02014-04-15 12:03:05 +02005043 case BINDER_VERSION: {
5044 struct binder_version __user *ver = ubuf;
5045
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005046 if (size != sizeof(struct binder_version)) {
5047 ret = -EINVAL;
5048 goto err;
5049 }
Mathieu Maret36c89c02014-04-15 12:03:05 +02005050 if (put_user(BINDER_CURRENT_PROTOCOL_VERSION,
5051 &ver->protocol_version)) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005052 ret = -EINVAL;
5053 goto err;
5054 }
5055 break;
Mathieu Maret36c89c02014-04-15 12:03:05 +02005056 }
Martijn Coenenb7e6a892018-09-07 15:38:37 +02005057 case BINDER_GET_NODE_INFO_FOR_REF: {
5058 struct binder_node_info_for_ref info;
5059
5060 if (copy_from_user(&info, ubuf, sizeof(info))) {
5061 ret = -EFAULT;
5062 goto err;
5063 }
5064
5065 ret = binder_ioctl_get_node_info_for_ref(proc, &info);
5066 if (ret < 0)
5067 goto err;
5068
5069 if (copy_to_user(ubuf, &info, sizeof(info))) {
5070 ret = -EFAULT;
5071 goto err;
5072 }
5073
5074 break;
5075 }
Colin Crossabcc6152017-08-31 10:04:24 +02005076 case BINDER_GET_NODE_DEBUG_INFO: {
5077 struct binder_node_debug_info info;
5078
5079 if (copy_from_user(&info, ubuf, sizeof(info))) {
5080 ret = -EFAULT;
5081 goto err;
5082 }
5083
5084 ret = binder_ioctl_get_node_debug_info(proc, &info);
5085 if (ret < 0)
5086 goto err;
5087
5088 if (copy_to_user(ubuf, &info, sizeof(info))) {
5089 ret = -EFAULT;
5090 goto err;
5091 }
5092 break;
5093 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005094 default:
5095 ret = -EINVAL;
5096 goto err;
5097 }
5098 ret = 0;
5099err:
5100 if (thread)
Todd Kjos08dabce2017-06-29 12:01:49 -07005101 thread->looper_need_return = false;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005102 wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2);
5103 if (ret && ret != -ERESTARTSYS)
Anmol Sarma56b468f2012-10-30 22:35:43 +05305104 pr_info("%d:%d ioctl %x %lx returned %d\n", proc->pid, current->pid, cmd, arg, ret);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07005105err_unlocked:
5106 trace_binder_ioctl_done(ret);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005107 return ret;
5108}
5109
5110static void binder_vma_open(struct vm_area_struct *vma)
5111{
5112 struct binder_proc *proc = vma->vm_private_data;
Seunghun Lee10f62862014-05-01 01:30:23 +09005113
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005114 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
Anmol Sarma56b468f2012-10-30 22:35:43 +05305115 "%d open vm area %lx-%lx (%ld K) vma %lx pagep %lx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005116 proc->pid, vma->vm_start, vma->vm_end,
5117 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5118 (unsigned long)pgprot_val(vma->vm_page_prot));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005119}
5120
5121static void binder_vma_close(struct vm_area_struct *vma)
5122{
5123 struct binder_proc *proc = vma->vm_private_data;
Seunghun Lee10f62862014-05-01 01:30:23 +09005124
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005125 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
Anmol Sarma56b468f2012-10-30 22:35:43 +05305126 "%d close vm area %lx-%lx (%ld K) vma %lx pagep %lx\n",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005127 proc->pid, vma->vm_start, vma->vm_end,
5128 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5129 (unsigned long)pgprot_val(vma->vm_page_prot));
Todd Kjos19c98722017-06-29 12:01:40 -07005130 binder_alloc_vma_close(&proc->alloc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005131}
5132
Souptick Joardere19f70a2018-04-23 21:54:00 +05305133static vm_fault_t binder_vm_fault(struct vm_fault *vmf)
Vinayak Menonddac7d52014-06-02 18:17:59 +05305134{
5135 return VM_FAULT_SIGBUS;
5136}
5137
Kirill A. Shutemov7cbea8d2015-09-09 15:39:26 -07005138static const struct vm_operations_struct binder_vm_ops = {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005139 .open = binder_vma_open,
5140 .close = binder_vma_close,
Vinayak Menonddac7d52014-06-02 18:17:59 +05305141 .fault = binder_vm_fault,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005142};
5143
Todd Kjos19c98722017-06-29 12:01:40 -07005144static int binder_mmap(struct file *filp, struct vm_area_struct *vma)
5145{
5146 int ret;
5147 struct binder_proc *proc = filp->private_data;
5148 const char *failure_string;
5149
5150 if (proc->tsk != current->group_leader)
5151 return -EINVAL;
5152
5153 if ((vma->vm_end - vma->vm_start) > SZ_4M)
5154 vma->vm_end = vma->vm_start + SZ_4M;
5155
5156 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5157 "%s: %d %lx-%lx (%ld K) vma %lx pagep %lx\n",
5158 __func__, proc->pid, vma->vm_start, vma->vm_end,
5159 (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags,
5160 (unsigned long)pgprot_val(vma->vm_page_prot));
5161
5162 if (vma->vm_flags & FORBIDDEN_MMAP_FLAGS) {
5163 ret = -EPERM;
5164 failure_string = "bad vm_flags";
5165 goto err_bad_arg;
5166 }
Minchan Kim720c2412018-05-07 23:15:37 +09005167 vma->vm_flags |= VM_DONTCOPY | VM_MIXEDMAP;
5168 vma->vm_flags &= ~VM_MAYWRITE;
5169
Todd Kjos19c98722017-06-29 12:01:40 -07005170 vma->vm_ops = &binder_vm_ops;
5171 vma->vm_private_data = proc;
5172
5173 ret = binder_alloc_mmap_handler(&proc->alloc, vma);
5174 if (ret)
5175 return ret;
Todd Kjos19c98722017-06-29 12:01:40 -07005176 return 0;
5177
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005178err_bad_arg:
Elad Wexler00c41cd2017-12-29 11:03:37 +02005179 pr_err("%s: %d %lx-%lx %s failed %d\n", __func__,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005180 proc->pid, vma->vm_start, vma->vm_end, failure_string, ret);
5181 return ret;
5182}
5183
5184static int binder_open(struct inode *nodp, struct file *filp)
5185{
5186 struct binder_proc *proc;
Martijn Coenenac4812c2017-02-03 14:40:48 -08005187 struct binder_device *binder_dev;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005188
Elad Wexler00c41cd2017-12-29 11:03:37 +02005189 binder_debug(BINDER_DEBUG_OPEN_CLOSE, "%s: %d:%d\n", __func__,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005190 current->group_leader->pid, current->pid);
5191
5192 proc = kzalloc(sizeof(*proc), GFP_KERNEL);
5193 if (proc == NULL)
5194 return -ENOMEM;
Todd Kjos9630fe82017-06-29 12:02:00 -07005195 spin_lock_init(&proc->inner_lock);
5196 spin_lock_init(&proc->outer_lock);
Todd Kjosc4ea41b2017-06-29 12:01:36 -07005197 get_task_struct(current->group_leader);
5198 proc->tsk = current->group_leader;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005199 INIT_LIST_HEAD(&proc->todo);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005200 proc->default_priority = task_nice(current);
Christian Brauner3ad20fe2018-12-14 13:11:14 +01005201 /* binderfs stashes devices in i_private */
5202 if (is_binderfs_device(nodp))
5203 binder_dev = nodp->i_private;
5204 else
5205 binder_dev = container_of(filp->private_data,
5206 struct binder_device, miscdev);
Martijn Coenenac4812c2017-02-03 14:40:48 -08005207 proc->context = &binder_dev->context;
Todd Kjos19c98722017-06-29 12:01:40 -07005208 binder_alloc_init(&proc->alloc);
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07005209
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005210 binder_stats_created(BINDER_STAT_PROC);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005211 proc->pid = current->group_leader->pid;
5212 INIT_LIST_HEAD(&proc->delivered_death);
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005213 INIT_LIST_HEAD(&proc->waiting_threads);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005214 filp->private_data = proc;
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07005215
Todd Kjosc44b1232017-06-29 12:01:43 -07005216 mutex_lock(&binder_procs_lock);
5217 hlist_add_head(&proc->proc_node, &binder_procs);
5218 mutex_unlock(&binder_procs_lock);
5219
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07005220 if (binder_debugfs_dir_entry_proc) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005221 char strbuf[11];
Seunghun Lee10f62862014-05-01 01:30:23 +09005222
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005223 snprintf(strbuf, sizeof(strbuf), "%u", proc->pid);
Martijn Coenen14db3182017-02-03 14:40:47 -08005224 /*
5225 * proc debug entries are shared between contexts, so
5226 * this will fail if the process tries to open the driver
5227 * again with a different context. The priting code will
5228 * anyway print all contexts that a given PID has, so this
5229 * is not a problem.
5230 */
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05305231 proc->debugfs_entry = debugfs_create_file(strbuf, 0444,
Martijn Coenen14db3182017-02-03 14:40:47 -08005232 binder_debugfs_dir_entry_proc,
5233 (void *)(unsigned long)proc->pid,
Yangtao Lic13e0a52018-11-30 20:26:30 -05005234 &proc_fops);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005235 }
5236
5237 return 0;
5238}
5239
5240static int binder_flush(struct file *filp, fl_owner_t id)
5241{
5242 struct binder_proc *proc = filp->private_data;
5243
5244 binder_defer_work(proc, BINDER_DEFERRED_FLUSH);
5245
5246 return 0;
5247}
5248
5249static void binder_deferred_flush(struct binder_proc *proc)
5250{
5251 struct rb_node *n;
5252 int wake_count = 0;
Seunghun Lee10f62862014-05-01 01:30:23 +09005253
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005254 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005255 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) {
5256 struct binder_thread *thread = rb_entry(n, struct binder_thread, rb_node);
Seunghun Lee10f62862014-05-01 01:30:23 +09005257
Todd Kjos08dabce2017-06-29 12:01:49 -07005258 thread->looper_need_return = true;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005259 if (thread->looper & BINDER_LOOPER_STATE_WAITING) {
5260 wake_up_interruptible(&thread->wait);
5261 wake_count++;
5262 }
5263 }
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005264 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005265
5266 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
5267 "binder_flush: %d woke %d threads\n", proc->pid,
5268 wake_count);
5269}
5270
5271static int binder_release(struct inode *nodp, struct file *filp)
5272{
5273 struct binder_proc *proc = filp->private_data;
Seunghun Lee10f62862014-05-01 01:30:23 +09005274
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07005275 debugfs_remove(proc->debugfs_entry);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005276 binder_defer_work(proc, BINDER_DEFERRED_RELEASE);
5277
5278 return 0;
5279}
5280
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005281static int binder_node_release(struct binder_node *node, int refs)
5282{
5283 struct binder_ref *ref;
5284 int death = 0;
Todd Kjosed297212017-06-29 12:02:01 -07005285 struct binder_proc *proc = node->proc;
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005286
Todd Kjos72196392017-06-29 12:02:02 -07005287 binder_release_work(proc, &node->async_todo);
Todd Kjosed297212017-06-29 12:02:01 -07005288
Todd Kjos673068e2017-06-29 12:02:03 -07005289 binder_node_lock(node);
Todd Kjosed297212017-06-29 12:02:01 -07005290 binder_inner_proc_lock(proc);
Todd Kjos72196392017-06-29 12:02:02 -07005291 binder_dequeue_work_ilocked(&node->work);
Todd Kjosadc18842017-06-29 12:01:59 -07005292 /*
5293 * The caller must have taken a temporary ref on the node,
5294 */
5295 BUG_ON(!node->tmp_refs);
5296 if (hlist_empty(&node->refs) && node->tmp_refs == 1) {
Todd Kjosed297212017-06-29 12:02:01 -07005297 binder_inner_proc_unlock(proc);
Todd Kjos673068e2017-06-29 12:02:03 -07005298 binder_node_unlock(node);
Todd Kjosed297212017-06-29 12:02:01 -07005299 binder_free_node(node);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005300
5301 return refs;
5302 }
5303
5304 node->proc = NULL;
5305 node->local_strong_refs = 0;
5306 node->local_weak_refs = 0;
Todd Kjosed297212017-06-29 12:02:01 -07005307 binder_inner_proc_unlock(proc);
Todd Kjosc44b1232017-06-29 12:01:43 -07005308
5309 spin_lock(&binder_dead_nodes_lock);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005310 hlist_add_head(&node->dead_node, &binder_dead_nodes);
Todd Kjosc44b1232017-06-29 12:01:43 -07005311 spin_unlock(&binder_dead_nodes_lock);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005312
5313 hlist_for_each_entry(ref, &node->refs, node_entry) {
5314 refs++;
Martijn Coenenab51ec62017-06-29 12:02:10 -07005315 /*
5316 * Need the node lock to synchronize
5317 * with new notification requests and the
5318 * inner lock to synchronize with queued
5319 * death notifications.
5320 */
5321 binder_inner_proc_lock(ref->proc);
5322 if (!ref->death) {
5323 binder_inner_proc_unlock(ref->proc);
Arve Hjønnevåge194fd82014-02-17 13:58:29 -08005324 continue;
Martijn Coenenab51ec62017-06-29 12:02:10 -07005325 }
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005326
5327 death++;
5328
Martijn Coenenab51ec62017-06-29 12:02:10 -07005329 BUG_ON(!list_empty(&ref->death->work.entry));
5330 ref->death->work.type = BINDER_WORK_DEAD_BINDER;
5331 binder_enqueue_work_ilocked(&ref->death->work,
5332 &ref->proc->todo);
Martijn Coenen408c68b2017-08-31 10:04:19 +02005333 binder_wakeup_proc_ilocked(ref->proc);
Todd Kjos72196392017-06-29 12:02:02 -07005334 binder_inner_proc_unlock(ref->proc);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005335 }
5336
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005337 binder_debug(BINDER_DEBUG_DEAD_BINDER,
5338 "node %d now dead, refs %d, death %d\n",
5339 node->debug_id, refs, death);
Todd Kjos673068e2017-06-29 12:02:03 -07005340 binder_node_unlock(node);
Todd Kjosadc18842017-06-29 12:01:59 -07005341 binder_put_node(node);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005342
5343 return refs;
5344}
5345
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005346static void binder_deferred_release(struct binder_proc *proc)
5347{
Martijn Coenen342e5c92017-02-03 14:40:46 -08005348 struct binder_context *context = proc->context;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005349 struct rb_node *n;
Todd Kjos19c98722017-06-29 12:01:40 -07005350 int threads, nodes, incoming_refs, outgoing_refs, active_transactions;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005351
Todd Kjosc44b1232017-06-29 12:01:43 -07005352 mutex_lock(&binder_procs_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005353 hlist_del(&proc->proc_node);
Todd Kjosc44b1232017-06-29 12:01:43 -07005354 mutex_unlock(&binder_procs_lock);
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005355
Todd Kjosc44b1232017-06-29 12:01:43 -07005356 mutex_lock(&context->context_mgr_node_lock);
Martijn Coenen342e5c92017-02-03 14:40:46 -08005357 if (context->binder_context_mgr_node &&
5358 context->binder_context_mgr_node->proc == proc) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005359 binder_debug(BINDER_DEBUG_DEAD_BINDER,
Mirsal Ennaimec07c9332013-03-12 11:42:02 +01005360 "%s: %d context_mgr_node gone\n",
5361 __func__, proc->pid);
Martijn Coenen342e5c92017-02-03 14:40:46 -08005362 context->binder_context_mgr_node = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005363 }
Todd Kjosc44b1232017-06-29 12:01:43 -07005364 mutex_unlock(&context->context_mgr_node_lock);
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005365 binder_inner_proc_lock(proc);
Todd Kjos7a4408c2017-06-29 12:01:57 -07005366 /*
5367 * Make sure proc stays alive after we
5368 * remove all the threads
5369 */
5370 proc->tmp_ref++;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005371
Todd Kjos7a4408c2017-06-29 12:01:57 -07005372 proc->is_dead = true;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005373 threads = 0;
5374 active_transactions = 0;
5375 while ((n = rb_first(&proc->threads))) {
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005376 struct binder_thread *thread;
5377
5378 thread = rb_entry(n, struct binder_thread, rb_node);
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005379 binder_inner_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005380 threads++;
Todd Kjos7a4408c2017-06-29 12:01:57 -07005381 active_transactions += binder_thread_release(proc, thread);
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005382 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005383 }
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005384
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005385 nodes = 0;
5386 incoming_refs = 0;
5387 while ((n = rb_first(&proc->nodes))) {
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005388 struct binder_node *node;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005389
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005390 node = rb_entry(n, struct binder_node, rb_node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005391 nodes++;
Todd Kjosadc18842017-06-29 12:01:59 -07005392 /*
5393 * take a temporary ref on the node before
5394 * calling binder_node_release() which will either
5395 * kfree() the node or call binder_put_node()
5396 */
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005397 binder_inc_node_tmpref_ilocked(node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005398 rb_erase(&node->rb_node, &proc->nodes);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005399 binder_inner_proc_unlock(proc);
Mirsal Ennaime008fa742013-03-12 11:41:59 +01005400 incoming_refs = binder_node_release(node, incoming_refs);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005401 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005402 }
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005403 binder_inner_proc_unlock(proc);
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005404
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005405 outgoing_refs = 0;
Todd Kjos2c1838d2017-06-29 12:02:08 -07005406 binder_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005407 while ((n = rb_first(&proc->refs_by_desc))) {
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005408 struct binder_ref *ref;
5409
5410 ref = rb_entry(n, struct binder_ref, rb_node_desc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005411 outgoing_refs++;
Todd Kjos2c1838d2017-06-29 12:02:08 -07005412 binder_cleanup_ref_olocked(ref);
5413 binder_proc_unlock(proc);
Todd Kjos372e3142017-06-29 12:01:58 -07005414 binder_free_ref(ref);
Todd Kjos2c1838d2017-06-29 12:02:08 -07005415 binder_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005416 }
Todd Kjos2c1838d2017-06-29 12:02:08 -07005417 binder_proc_unlock(proc);
Mirsal Ennaime53413e72013-03-12 11:42:00 +01005418
Todd Kjos72196392017-06-29 12:02:02 -07005419 binder_release_work(proc, &proc->todo);
5420 binder_release_work(proc, &proc->delivered_death);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005421
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005422 binder_debug(BINDER_DEBUG_OPEN_CLOSE,
Todd Kjos19c98722017-06-29 12:01:40 -07005423 "%s: %d threads %d, nodes %d (ref %d), refs %d, active transactions %d\n",
Mirsal Ennaimec07c9332013-03-12 11:42:02 +01005424 __func__, proc->pid, threads, nodes, incoming_refs,
Todd Kjos19c98722017-06-29 12:01:40 -07005425 outgoing_refs, active_transactions);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005426
Todd Kjos7a4408c2017-06-29 12:01:57 -07005427 binder_proc_dec_tmpref(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005428}
5429
5430static void binder_deferred_func(struct work_struct *work)
5431{
5432 struct binder_proc *proc;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005433
5434 int defer;
Seunghun Lee10f62862014-05-01 01:30:23 +09005435
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005436 do {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005437 mutex_lock(&binder_deferred_lock);
5438 if (!hlist_empty(&binder_deferred_list)) {
5439 proc = hlist_entry(binder_deferred_list.first,
5440 struct binder_proc, deferred_work_node);
5441 hlist_del_init(&proc->deferred_work_node);
5442 defer = proc->deferred_work;
5443 proc->deferred_work = 0;
5444 } else {
5445 proc = NULL;
5446 defer = 0;
5447 }
5448 mutex_unlock(&binder_deferred_lock);
5449
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005450 if (defer & BINDER_DEFERRED_FLUSH)
5451 binder_deferred_flush(proc);
5452
5453 if (defer & BINDER_DEFERRED_RELEASE)
5454 binder_deferred_release(proc); /* frees proc */
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005455 } while (proc);
5456}
5457static DECLARE_WORK(binder_deferred_work, binder_deferred_func);
5458
5459static void
5460binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer)
5461{
5462 mutex_lock(&binder_deferred_lock);
5463 proc->deferred_work |= defer;
5464 if (hlist_unhashed(&proc->deferred_work_node)) {
5465 hlist_add_head(&proc->deferred_work_node,
5466 &binder_deferred_list);
Bhaktipriya Shridhar1beba522016-08-13 22:16:24 +05305467 schedule_work(&binder_deferred_work);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005468 }
5469 mutex_unlock(&binder_deferred_lock);
5470}
5471
Todd Kjos5f2f63692017-06-29 12:02:09 -07005472static void print_binder_transaction_ilocked(struct seq_file *m,
5473 struct binder_proc *proc,
5474 const char *prefix,
5475 struct binder_transaction *t)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005476{
Todd Kjos5f2f63692017-06-29 12:02:09 -07005477 struct binder_proc *to_proc;
5478 struct binder_buffer *buffer = t->buffer;
5479
Todd Kjos7a4408c2017-06-29 12:01:57 -07005480 spin_lock(&t->lock);
Todd Kjos5f2f63692017-06-29 12:02:09 -07005481 to_proc = t->to_proc;
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005482 seq_printf(m,
Todd Kjos8ca86f12018-02-07 13:57:37 -08005483 "%s %d: %pK from %d:%d to %d:%d code %x flags %x pri %ld r%d",
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005484 prefix, t->debug_id, t,
5485 t->from ? t->from->proc->pid : 0,
5486 t->from ? t->from->pid : 0,
Todd Kjos5f2f63692017-06-29 12:02:09 -07005487 to_proc ? to_proc->pid : 0,
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005488 t->to_thread ? t->to_thread->pid : 0,
5489 t->code, t->flags, t->priority, t->need_reply);
Todd Kjos7a4408c2017-06-29 12:01:57 -07005490 spin_unlock(&t->lock);
5491
Todd Kjos5f2f63692017-06-29 12:02:09 -07005492 if (proc != to_proc) {
5493 /*
5494 * Can only safely deref buffer if we are holding the
5495 * correct proc inner lock for this node
5496 */
5497 seq_puts(m, "\n");
5498 return;
5499 }
5500
5501 if (buffer == NULL) {
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005502 seq_puts(m, " buffer free\n");
5503 return;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005504 }
Todd Kjos5f2f63692017-06-29 12:02:09 -07005505 if (buffer->target_node)
5506 seq_printf(m, " node %d", buffer->target_node->debug_id);
Todd Kjos8ca86f12018-02-07 13:57:37 -08005507 seq_printf(m, " size %zd:%zd data %pK\n",
Todd Kjos5f2f63692017-06-29 12:02:09 -07005508 buffer->data_size, buffer->offsets_size,
Todd Kjosbde4a192019-02-08 10:35:20 -08005509 buffer->user_data);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005510}
5511
Todd Kjos5f2f63692017-06-29 12:02:09 -07005512static void print_binder_work_ilocked(struct seq_file *m,
5513 struct binder_proc *proc,
5514 const char *prefix,
5515 const char *transaction_prefix,
5516 struct binder_work *w)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005517{
5518 struct binder_node *node;
5519 struct binder_transaction *t;
5520
5521 switch (w->type) {
5522 case BINDER_WORK_TRANSACTION:
5523 t = container_of(w, struct binder_transaction, work);
Todd Kjos5f2f63692017-06-29 12:02:09 -07005524 print_binder_transaction_ilocked(
5525 m, proc, transaction_prefix, t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005526 break;
Todd Kjos26549d12017-06-29 12:01:55 -07005527 case BINDER_WORK_RETURN_ERROR: {
5528 struct binder_error *e = container_of(
5529 w, struct binder_error, work);
5530
5531 seq_printf(m, "%stransaction error: %u\n",
5532 prefix, e->cmd);
5533 } break;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005534 case BINDER_WORK_TRANSACTION_COMPLETE:
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005535 seq_printf(m, "%stransaction complete\n", prefix);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005536 break;
5537 case BINDER_WORK_NODE:
5538 node = container_of(w, struct binder_node, work);
Arve Hjønnevågda498892014-02-21 14:40:26 -08005539 seq_printf(m, "%snode work %d: u%016llx c%016llx\n",
5540 prefix, node->debug_id,
5541 (u64)node->ptr, (u64)node->cookie);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005542 break;
5543 case BINDER_WORK_DEAD_BINDER:
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005544 seq_printf(m, "%shas dead binder\n", prefix);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005545 break;
5546 case BINDER_WORK_DEAD_BINDER_AND_CLEAR:
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005547 seq_printf(m, "%shas cleared dead binder\n", prefix);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005548 break;
5549 case BINDER_WORK_CLEAR_DEATH_NOTIFICATION:
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005550 seq_printf(m, "%shas cleared death notification\n", prefix);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005551 break;
5552 default:
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005553 seq_printf(m, "%sunknown work: type %d\n", prefix, w->type);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005554 break;
5555 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005556}
5557
Todd Kjos72196392017-06-29 12:02:02 -07005558static void print_binder_thread_ilocked(struct seq_file *m,
5559 struct binder_thread *thread,
5560 int print_always)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005561{
5562 struct binder_transaction *t;
5563 struct binder_work *w;
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005564 size_t start_pos = m->count;
5565 size_t header_pos;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005566
Todd Kjos7a4408c2017-06-29 12:01:57 -07005567 seq_printf(m, " thread %d: l %02x need_return %d tr %d\n",
Todd Kjos08dabce2017-06-29 12:01:49 -07005568 thread->pid, thread->looper,
Todd Kjos7a4408c2017-06-29 12:01:57 -07005569 thread->looper_need_return,
5570 atomic_read(&thread->tmp_ref));
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005571 header_pos = m->count;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005572 t = thread->transaction_stack;
5573 while (t) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005574 if (t->from == thread) {
Todd Kjos5f2f63692017-06-29 12:02:09 -07005575 print_binder_transaction_ilocked(m, thread->proc,
5576 " outgoing transaction", t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005577 t = t->from_parent;
5578 } else if (t->to_thread == thread) {
Todd Kjos5f2f63692017-06-29 12:02:09 -07005579 print_binder_transaction_ilocked(m, thread->proc,
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005580 " incoming transaction", t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005581 t = t->to_parent;
5582 } else {
Todd Kjos5f2f63692017-06-29 12:02:09 -07005583 print_binder_transaction_ilocked(m, thread->proc,
5584 " bad transaction", t);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005585 t = NULL;
5586 }
5587 }
5588 list_for_each_entry(w, &thread->todo, entry) {
Todd Kjos5f2f63692017-06-29 12:02:09 -07005589 print_binder_work_ilocked(m, thread->proc, " ",
Todd Kjos72196392017-06-29 12:02:02 -07005590 " pending transaction", w);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005591 }
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005592 if (!print_always && m->count == header_pos)
5593 m->count = start_pos;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005594}
5595
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005596static void print_binder_node_nilocked(struct seq_file *m,
5597 struct binder_node *node)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005598{
5599 struct binder_ref *ref;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005600 struct binder_work *w;
5601 int count;
5602
5603 count = 0;
Sasha Levinb67bfe02013-02-27 17:06:00 -08005604 hlist_for_each_entry(ref, &node->refs, node_entry)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005605 count++;
5606
Todd Kjosadc18842017-06-29 12:01:59 -07005607 seq_printf(m, " node %d: u%016llx c%016llx hs %d hw %d ls %d lw %d is %d iw %d tr %d",
Arve Hjønnevågda498892014-02-21 14:40:26 -08005608 node->debug_id, (u64)node->ptr, (u64)node->cookie,
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005609 node->has_strong_ref, node->has_weak_ref,
5610 node->local_strong_refs, node->local_weak_refs,
Todd Kjosadc18842017-06-29 12:01:59 -07005611 node->internal_strong_refs, count, node->tmp_refs);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005612 if (count) {
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005613 seq_puts(m, " proc");
Sasha Levinb67bfe02013-02-27 17:06:00 -08005614 hlist_for_each_entry(ref, &node->refs, node_entry)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005615 seq_printf(m, " %d", ref->proc->pid);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005616 }
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005617 seq_puts(m, "\n");
Todd Kjos72196392017-06-29 12:02:02 -07005618 if (node->proc) {
Todd Kjos72196392017-06-29 12:02:02 -07005619 list_for_each_entry(w, &node->async_todo, entry)
Todd Kjos5f2f63692017-06-29 12:02:09 -07005620 print_binder_work_ilocked(m, node->proc, " ",
Todd Kjos72196392017-06-29 12:02:02 -07005621 " pending async transaction", w);
Todd Kjos72196392017-06-29 12:02:02 -07005622 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005623}
5624
Todd Kjos2c1838d2017-06-29 12:02:08 -07005625static void print_binder_ref_olocked(struct seq_file *m,
5626 struct binder_ref *ref)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005627{
Todd Kjos673068e2017-06-29 12:02:03 -07005628 binder_node_lock(ref->node);
Todd Kjos372e3142017-06-29 12:01:58 -07005629 seq_printf(m, " ref %d: desc %d %snode %d s %d w %d d %pK\n",
5630 ref->data.debug_id, ref->data.desc,
5631 ref->node->proc ? "" : "dead ",
5632 ref->node->debug_id, ref->data.strong,
5633 ref->data.weak, ref->death);
Todd Kjos673068e2017-06-29 12:02:03 -07005634 binder_node_unlock(ref->node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005635}
5636
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005637static void print_binder_proc(struct seq_file *m,
5638 struct binder_proc *proc, int print_all)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005639{
5640 struct binder_work *w;
5641 struct rb_node *n;
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005642 size_t start_pos = m->count;
5643 size_t header_pos;
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005644 struct binder_node *last_node = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005645
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005646 seq_printf(m, "proc %d\n", proc->pid);
Martijn Coenen14db3182017-02-03 14:40:47 -08005647 seq_printf(m, "context %s\n", proc->context->name);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005648 header_pos = m->count;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005649
Todd Kjos72196392017-06-29 12:02:02 -07005650 binder_inner_proc_lock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005651 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n))
Todd Kjos72196392017-06-29 12:02:02 -07005652 print_binder_thread_ilocked(m, rb_entry(n, struct binder_thread,
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005653 rb_node), print_all);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005654
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005655 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005656 struct binder_node *node = rb_entry(n, struct binder_node,
5657 rb_node);
Todd Kjosecd589d2018-12-05 15:19:26 -08005658 if (!print_all && !node->has_async_transaction)
5659 continue;
5660
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005661 /*
5662 * take a temporary reference on the node so it
5663 * survives and isn't removed from the tree
5664 * while we print it.
5665 */
5666 binder_inc_node_tmpref_ilocked(node);
5667 /* Need to drop inner lock to take node lock */
5668 binder_inner_proc_unlock(proc);
5669 if (last_node)
5670 binder_put_node(last_node);
5671 binder_node_inner_lock(node);
5672 print_binder_node_nilocked(m, node);
5673 binder_node_inner_unlock(node);
5674 last_node = node;
5675 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005676 }
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005677 binder_inner_proc_unlock(proc);
5678 if (last_node)
5679 binder_put_node(last_node);
5680
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005681 if (print_all) {
Todd Kjos2c1838d2017-06-29 12:02:08 -07005682 binder_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005683 for (n = rb_first(&proc->refs_by_desc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005684 n != NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005685 n = rb_next(n))
Todd Kjos2c1838d2017-06-29 12:02:08 -07005686 print_binder_ref_olocked(m, rb_entry(n,
5687 struct binder_ref,
5688 rb_node_desc));
5689 binder_proc_unlock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005690 }
Todd Kjos19c98722017-06-29 12:01:40 -07005691 binder_alloc_print_allocated(m, &proc->alloc);
Todd Kjos72196392017-06-29 12:02:02 -07005692 binder_inner_proc_lock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005693 list_for_each_entry(w, &proc->todo, entry)
Todd Kjos5f2f63692017-06-29 12:02:09 -07005694 print_binder_work_ilocked(m, proc, " ",
5695 " pending transaction", w);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005696 list_for_each_entry(w, &proc->delivered_death, entry) {
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005697 seq_puts(m, " has delivered dead binder\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005698 break;
5699 }
Todd Kjos72196392017-06-29 12:02:02 -07005700 binder_inner_proc_unlock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005701 if (!print_all && m->count == header_pos)
5702 m->count = start_pos;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005703}
5704
Cruz Julian Bishop167bccb2012-12-22 09:00:45 +10005705static const char * const binder_return_strings[] = {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005706 "BR_ERROR",
5707 "BR_OK",
5708 "BR_TRANSACTION",
5709 "BR_REPLY",
5710 "BR_ACQUIRE_RESULT",
5711 "BR_DEAD_REPLY",
5712 "BR_TRANSACTION_COMPLETE",
5713 "BR_INCREFS",
5714 "BR_ACQUIRE",
5715 "BR_RELEASE",
5716 "BR_DECREFS",
5717 "BR_ATTEMPT_ACQUIRE",
5718 "BR_NOOP",
5719 "BR_SPAWN_LOOPER",
5720 "BR_FINISHED",
5721 "BR_DEAD_BINDER",
5722 "BR_CLEAR_DEATH_NOTIFICATION_DONE",
5723 "BR_FAILED_REPLY"
5724};
5725
Cruz Julian Bishop167bccb2012-12-22 09:00:45 +10005726static const char * const binder_command_strings[] = {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005727 "BC_TRANSACTION",
5728 "BC_REPLY",
5729 "BC_ACQUIRE_RESULT",
5730 "BC_FREE_BUFFER",
5731 "BC_INCREFS",
5732 "BC_ACQUIRE",
5733 "BC_RELEASE",
5734 "BC_DECREFS",
5735 "BC_INCREFS_DONE",
5736 "BC_ACQUIRE_DONE",
5737 "BC_ATTEMPT_ACQUIRE",
5738 "BC_REGISTER_LOOPER",
5739 "BC_ENTER_LOOPER",
5740 "BC_EXIT_LOOPER",
5741 "BC_REQUEST_DEATH_NOTIFICATION",
5742 "BC_CLEAR_DEATH_NOTIFICATION",
Martijn Coenen79802402017-02-03 14:40:51 -08005743 "BC_DEAD_BINDER_DONE",
5744 "BC_TRANSACTION_SG",
5745 "BC_REPLY_SG",
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005746};
5747
Cruz Julian Bishop167bccb2012-12-22 09:00:45 +10005748static const char * const binder_objstat_strings[] = {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005749 "proc",
5750 "thread",
5751 "node",
5752 "ref",
5753 "death",
5754 "transaction",
5755 "transaction_complete"
5756};
5757
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005758static void print_binder_stats(struct seq_file *m, const char *prefix,
5759 struct binder_stats *stats)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005760{
5761 int i;
5762
5763 BUILD_BUG_ON(ARRAY_SIZE(stats->bc) !=
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005764 ARRAY_SIZE(binder_command_strings));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005765 for (i = 0; i < ARRAY_SIZE(stats->bc); i++) {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005766 int temp = atomic_read(&stats->bc[i]);
5767
5768 if (temp)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005769 seq_printf(m, "%s%s: %d\n", prefix,
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005770 binder_command_strings[i], temp);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005771 }
5772
5773 BUILD_BUG_ON(ARRAY_SIZE(stats->br) !=
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005774 ARRAY_SIZE(binder_return_strings));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005775 for (i = 0; i < ARRAY_SIZE(stats->br); i++) {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005776 int temp = atomic_read(&stats->br[i]);
5777
5778 if (temp)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005779 seq_printf(m, "%s%s: %d\n", prefix,
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005780 binder_return_strings[i], temp);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005781 }
5782
5783 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) !=
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005784 ARRAY_SIZE(binder_objstat_strings));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005785 BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) !=
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005786 ARRAY_SIZE(stats->obj_deleted));
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005787 for (i = 0; i < ARRAY_SIZE(stats->obj_created); i++) {
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005788 int created = atomic_read(&stats->obj_created[i]);
5789 int deleted = atomic_read(&stats->obj_deleted[i]);
5790
5791 if (created || deleted)
5792 seq_printf(m, "%s%s: active %d total %d\n",
5793 prefix,
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005794 binder_objstat_strings[i],
Badhri Jagan Sridharan0953c792017-06-29 12:01:44 -07005795 created - deleted,
5796 created);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005797 }
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005798}
5799
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005800static void print_binder_proc_stats(struct seq_file *m,
5801 struct binder_proc *proc)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005802{
5803 struct binder_work *w;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005804 struct binder_thread *thread;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005805 struct rb_node *n;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005806 int count, strong, weak, ready_threads;
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005807 size_t free_async_space =
5808 binder_alloc_get_free_async_space(&proc->alloc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005809
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005810 seq_printf(m, "proc %d\n", proc->pid);
Martijn Coenen14db3182017-02-03 14:40:47 -08005811 seq_printf(m, "context %s\n", proc->context->name);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005812 count = 0;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005813 ready_threads = 0;
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005814 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005815 for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n))
5816 count++;
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005817
5818 list_for_each_entry(thread, &proc->waiting_threads, waiting_thread_node)
5819 ready_threads++;
5820
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005821 seq_printf(m, " threads: %d\n", count);
5822 seq_printf(m, " requested threads: %d+%d/%d\n"
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005823 " ready threads %d\n"
5824 " free async space %zd\n", proc->requested_threads,
5825 proc->requested_threads_started, proc->max_threads,
Martijn Coenen1b77e9d2017-08-31 10:04:18 +02005826 ready_threads,
Todd Kjos7bd7b0e2017-06-29 12:02:05 -07005827 free_async_space);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005828 count = 0;
5829 for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n))
5830 count++;
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005831 binder_inner_proc_unlock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005832 seq_printf(m, " nodes: %d\n", count);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005833 count = 0;
5834 strong = 0;
5835 weak = 0;
Todd Kjos2c1838d2017-06-29 12:02:08 -07005836 binder_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005837 for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) {
5838 struct binder_ref *ref = rb_entry(n, struct binder_ref,
5839 rb_node_desc);
5840 count++;
Todd Kjos372e3142017-06-29 12:01:58 -07005841 strong += ref->data.strong;
5842 weak += ref->data.weak;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005843 }
Todd Kjos2c1838d2017-06-29 12:02:08 -07005844 binder_proc_unlock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005845 seq_printf(m, " refs: %d s %d w %d\n", count, strong, weak);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005846
Todd Kjos19c98722017-06-29 12:01:40 -07005847 count = binder_alloc_get_allocated_count(&proc->alloc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005848 seq_printf(m, " buffers: %d\n", count);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005849
Sherry Yang8ef46652017-08-31 11:56:36 -07005850 binder_alloc_print_pages(m, &proc->alloc);
5851
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005852 count = 0;
Todd Kjos72196392017-06-29 12:02:02 -07005853 binder_inner_proc_lock(proc);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005854 list_for_each_entry(w, &proc->todo, entry) {
Todd Kjos72196392017-06-29 12:02:02 -07005855 if (w->type == BINDER_WORK_TRANSACTION)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005856 count++;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005857 }
Todd Kjos72196392017-06-29 12:02:02 -07005858 binder_inner_proc_unlock(proc);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005859 seq_printf(m, " pending transactions: %d\n", count);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005860
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005861 print_binder_stats(m, " ", &proc->stats);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005862}
5863
5864
Yangtao Lic13e0a52018-11-30 20:26:30 -05005865static int state_show(struct seq_file *m, void *unused)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005866{
5867 struct binder_proc *proc;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005868 struct binder_node *node;
Todd Kjos673068e2017-06-29 12:02:03 -07005869 struct binder_node *last_node = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005870
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005871 seq_puts(m, "binder state:\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005872
Todd Kjosc44b1232017-06-29 12:01:43 -07005873 spin_lock(&binder_dead_nodes_lock);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005874 if (!hlist_empty(&binder_dead_nodes))
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005875 seq_puts(m, "dead nodes:\n");
Todd Kjos673068e2017-06-29 12:02:03 -07005876 hlist_for_each_entry(node, &binder_dead_nodes, dead_node) {
5877 /*
5878 * take a temporary reference on the node so it
5879 * survives and isn't removed from the list
5880 * while we print it.
5881 */
5882 node->tmp_refs++;
5883 spin_unlock(&binder_dead_nodes_lock);
5884 if (last_node)
5885 binder_put_node(last_node);
5886 binder_node_lock(node);
Todd Kjosda0fa9e2017-06-29 12:02:04 -07005887 print_binder_node_nilocked(m, node);
Todd Kjos673068e2017-06-29 12:02:03 -07005888 binder_node_unlock(node);
5889 last_node = node;
5890 spin_lock(&binder_dead_nodes_lock);
5891 }
Todd Kjosc44b1232017-06-29 12:01:43 -07005892 spin_unlock(&binder_dead_nodes_lock);
Todd Kjos673068e2017-06-29 12:02:03 -07005893 if (last_node)
5894 binder_put_node(last_node);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005895
Todd Kjosc44b1232017-06-29 12:01:43 -07005896 mutex_lock(&binder_procs_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005897 hlist_for_each_entry(proc, &binder_procs, proc_node)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005898 print_binder_proc(m, proc, 1);
Todd Kjosc44b1232017-06-29 12:01:43 -07005899 mutex_unlock(&binder_procs_lock);
Todd Kjosa60b8902017-06-29 12:02:11 -07005900
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005901 return 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005902}
5903
Yangtao Lic13e0a52018-11-30 20:26:30 -05005904static int stats_show(struct seq_file *m, void *unused)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005905{
5906 struct binder_proc *proc;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005907
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005908 seq_puts(m, "binder stats:\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005909
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005910 print_binder_stats(m, "", &binder_stats);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005911
Todd Kjosc44b1232017-06-29 12:01:43 -07005912 mutex_lock(&binder_procs_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005913 hlist_for_each_entry(proc, &binder_procs, proc_node)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005914 print_binder_proc_stats(m, proc);
Todd Kjosc44b1232017-06-29 12:01:43 -07005915 mutex_unlock(&binder_procs_lock);
Todd Kjosa60b8902017-06-29 12:02:11 -07005916
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005917 return 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005918}
5919
Yangtao Lic13e0a52018-11-30 20:26:30 -05005920static int transactions_show(struct seq_file *m, void *unused)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005921{
5922 struct binder_proc *proc;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005923
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005924 seq_puts(m, "binder transactions:\n");
Todd Kjosc44b1232017-06-29 12:01:43 -07005925 mutex_lock(&binder_procs_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -08005926 hlist_for_each_entry(proc, &binder_procs, proc_node)
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005927 print_binder_proc(m, proc, 0);
Todd Kjosc44b1232017-06-29 12:01:43 -07005928 mutex_unlock(&binder_procs_lock);
Todd Kjosa60b8902017-06-29 12:02:11 -07005929
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005930 return 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005931}
5932
Yangtao Lic13e0a52018-11-30 20:26:30 -05005933static int proc_show(struct seq_file *m, void *unused)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005934{
Riley Andrews83050a42016-02-09 21:05:33 -08005935 struct binder_proc *itr;
Martijn Coenen14db3182017-02-03 14:40:47 -08005936 int pid = (unsigned long)m->private;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005937
Todd Kjosc44b1232017-06-29 12:01:43 -07005938 mutex_lock(&binder_procs_lock);
Riley Andrews83050a42016-02-09 21:05:33 -08005939 hlist_for_each_entry(itr, &binder_procs, proc_node) {
Martijn Coenen14db3182017-02-03 14:40:47 -08005940 if (itr->pid == pid) {
5941 seq_puts(m, "binder proc state:\n");
5942 print_binder_proc(m, itr, 1);
Riley Andrews83050a42016-02-09 21:05:33 -08005943 }
5944 }
Todd Kjosc44b1232017-06-29 12:01:43 -07005945 mutex_unlock(&binder_procs_lock);
5946
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005947 return 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005948}
5949
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005950static void print_binder_transaction_log_entry(struct seq_file *m,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005951 struct binder_transaction_log_entry *e)
5952{
Todd Kjosd99c7332017-06-29 12:01:53 -07005953 int debug_id = READ_ONCE(e->debug_id_done);
5954 /*
5955 * read barrier to guarantee debug_id_done read before
5956 * we print the log values
5957 */
5958 smp_rmb();
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005959 seq_printf(m,
Todd Kjosd99c7332017-06-29 12:01:53 -07005960 "%d: %s from %d:%d to %d:%d context %s node %d handle %d size %d:%d ret %d/%d l=%d",
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005961 e->debug_id, (e->call_type == 2) ? "reply" :
5962 ((e->call_type == 1) ? "async" : "call "), e->from_proc,
Martijn Coenen14db3182017-02-03 14:40:47 -08005963 e->from_thread, e->to_proc, e->to_thread, e->context_name,
Todd Kjos57ada2f2017-06-29 12:01:46 -07005964 e->to_node, e->target_handle, e->data_size, e->offsets_size,
5965 e->return_error, e->return_error_param,
5966 e->return_error_line);
Todd Kjosd99c7332017-06-29 12:01:53 -07005967 /*
5968 * read-barrier to guarantee read of debug_id_done after
5969 * done printing the fields of the entry
5970 */
5971 smp_rmb();
5972 seq_printf(m, debug_id && debug_id == READ_ONCE(e->debug_id_done) ?
5973 "\n" : " (incomplete)\n");
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005974}
5975
Yangtao Lic13e0a52018-11-30 20:26:30 -05005976static int transaction_log_show(struct seq_file *m, void *unused)
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005977{
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005978 struct binder_transaction_log *log = m->private;
Todd Kjosd99c7332017-06-29 12:01:53 -07005979 unsigned int log_cur = atomic_read(&log->cur);
5980 unsigned int count;
5981 unsigned int cur;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005982 int i;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005983
Todd Kjosd99c7332017-06-29 12:01:53 -07005984 count = log_cur + 1;
5985 cur = count < ARRAY_SIZE(log->entry) && !log->full ?
5986 0 : count % ARRAY_SIZE(log->entry);
5987 if (count > ARRAY_SIZE(log->entry) || log->full)
5988 count = ARRAY_SIZE(log->entry);
5989 for (i = 0; i < count; i++) {
5990 unsigned int index = cur++ % ARRAY_SIZE(log->entry);
5991
5992 print_binder_transaction_log_entry(m, &log->entry[index]);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005993 }
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07005994 return 0;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005995}
5996
Christian Brauner3ad20fe2018-12-14 13:11:14 +01005997const struct file_operations binder_fops = {
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09005998 .owner = THIS_MODULE,
5999 .poll = binder_poll,
6000 .unlocked_ioctl = binder_ioctl,
Arve Hjønnevågda498892014-02-21 14:40:26 -08006001 .compat_ioctl = binder_ioctl,
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006002 .mmap = binder_mmap,
6003 .open = binder_open,
6004 .flush = binder_flush,
6005 .release = binder_release,
6006};
6007
Yangtao Lic13e0a52018-11-30 20:26:30 -05006008DEFINE_SHOW_ATTRIBUTE(state);
6009DEFINE_SHOW_ATTRIBUTE(stats);
6010DEFINE_SHOW_ATTRIBUTE(transactions);
6011DEFINE_SHOW_ATTRIBUTE(transaction_log);
Arve Hjønnevåg5249f482009-04-28 20:57:50 -07006012
Martijn Coenenac4812c2017-02-03 14:40:48 -08006013static int __init init_binder_device(const char *name)
6014{
6015 int ret;
6016 struct binder_device *binder_device;
6017
6018 binder_device = kzalloc(sizeof(*binder_device), GFP_KERNEL);
6019 if (!binder_device)
6020 return -ENOMEM;
6021
6022 binder_device->miscdev.fops = &binder_fops;
6023 binder_device->miscdev.minor = MISC_DYNAMIC_MINOR;
6024 binder_device->miscdev.name = name;
6025
6026 binder_device->context.binder_context_mgr_uid = INVALID_UID;
6027 binder_device->context.name = name;
Todd Kjosc44b1232017-06-29 12:01:43 -07006028 mutex_init(&binder_device->context.context_mgr_node_lock);
Martijn Coenenac4812c2017-02-03 14:40:48 -08006029
6030 ret = misc_register(&binder_device->miscdev);
6031 if (ret < 0) {
6032 kfree(binder_device);
6033 return ret;
6034 }
6035
6036 hlist_add_head(&binder_device->hlist, &binder_devices);
6037
6038 return ret;
6039}
6040
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006041static int __init binder_init(void)
6042{
6043 int ret;
Christian Brauner5b9633a2019-01-31 01:25:02 +01006044 char *device_name, *device_tmp;
Martijn Coenenac4812c2017-02-03 14:40:48 -08006045 struct binder_device *device;
6046 struct hlist_node *tmp;
Christian Brauner5b9633a2019-01-31 01:25:02 +01006047 char *device_names = NULL;
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006048
Tetsuo Handa533dfb22017-11-29 22:29:47 +09006049 ret = binder_alloc_shrinker_init();
6050 if (ret)
6051 return ret;
Sherry Yangf2517eb2017-08-23 08:46:42 -07006052
Todd Kjosd99c7332017-06-29 12:01:53 -07006053 atomic_set(&binder_transaction_log.cur, ~0U);
6054 atomic_set(&binder_transaction_log_failed.cur, ~0U);
6055
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006056 binder_debugfs_dir_entry_root = debugfs_create_dir("binder", NULL);
6057 if (binder_debugfs_dir_entry_root)
6058 binder_debugfs_dir_entry_proc = debugfs_create_dir("proc",
6059 binder_debugfs_dir_entry_root);
Martijn Coenenac4812c2017-02-03 14:40:48 -08006060
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006061 if (binder_debugfs_dir_entry_root) {
6062 debugfs_create_file("state",
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05306063 0444,
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006064 binder_debugfs_dir_entry_root,
6065 NULL,
Yangtao Lic13e0a52018-11-30 20:26:30 -05006066 &state_fops);
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006067 debugfs_create_file("stats",
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05306068 0444,
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006069 binder_debugfs_dir_entry_root,
6070 NULL,
Yangtao Lic13e0a52018-11-30 20:26:30 -05006071 &stats_fops);
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006072 debugfs_create_file("transactions",
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05306073 0444,
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006074 binder_debugfs_dir_entry_root,
6075 NULL,
Yangtao Lic13e0a52018-11-30 20:26:30 -05006076 &transactions_fops);
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006077 debugfs_create_file("transaction_log",
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05306078 0444,
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006079 binder_debugfs_dir_entry_root,
6080 &binder_transaction_log,
Yangtao Lic13e0a52018-11-30 20:26:30 -05006081 &transaction_log_fops);
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006082 debugfs_create_file("failed_transaction_log",
Harsh Shandilya21d02dd2017-12-22 19:37:02 +05306083 0444,
Arve Hjønnevåg16b66552009-04-28 20:57:50 -07006084 binder_debugfs_dir_entry_root,
6085 &binder_transaction_log_failed,
Yangtao Lic13e0a52018-11-30 20:26:30 -05006086 &transaction_log_fops);
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006087 }
Martijn Coenenac4812c2017-02-03 14:40:48 -08006088
Christian Brauner793c8232019-01-26 11:23:20 +01006089 if (strcmp(binder_devices_param, "") != 0) {
6090 /*
6091 * Copy the module_parameter string, because we don't want to
6092 * tokenize it in-place.
6093 */
6094 device_names = kstrdup(binder_devices_param, GFP_KERNEL);
6095 if (!device_names) {
6096 ret = -ENOMEM;
6097 goto err_alloc_device_names_failed;
6098 }
Martijn Coenenac4812c2017-02-03 14:40:48 -08006099
Christian Brauner793c8232019-01-26 11:23:20 +01006100 device_tmp = device_names;
6101 while ((device_name = strsep(&device_tmp, ","))) {
6102 ret = init_binder_device(device_name);
6103 if (ret)
6104 goto err_init_binder_device_failed;
6105 }
Martijn Coenenac4812c2017-02-03 14:40:48 -08006106 }
6107
Christian Brauner5b9633a2019-01-31 01:25:02 +01006108 ret = init_binderfs();
6109 if (ret)
6110 goto err_init_binder_device_failed;
Martijn Coenenac4812c2017-02-03 14:40:48 -08006111
6112 return ret;
6113
6114err_init_binder_device_failed:
6115 hlist_for_each_entry_safe(device, tmp, &binder_devices, hlist) {
6116 misc_deregister(&device->miscdev);
6117 hlist_del(&device->hlist);
6118 kfree(device);
6119 }
Christian Brauner22eb9472017-08-21 16:13:28 +02006120
6121 kfree(device_names);
6122
Martijn Coenenac4812c2017-02-03 14:40:48 -08006123err_alloc_device_names_failed:
6124 debugfs_remove_recursive(binder_debugfs_dir_entry_root);
6125
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006126 return ret;
6127}
6128
6129device_initcall(binder_init);
6130
Arve Hjønnevåg975a1ac2012-10-16 15:29:53 -07006131#define CREATE_TRACE_POINTS
6132#include "binder_trace.h"
6133
Greg Kroah-Hartman355b0502011-11-30 20:18:14 +09006134MODULE_LICENSE("GPL v2");