Thomas Gleixner | 9c92ab6 | 2019-05-29 07:17:56 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2 | /* binder.c |
| 3 | * |
| 4 | * Android IPC Subsystem |
| 5 | * |
| 6 | * Copyright (C) 2007-2008 Google, Inc. |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 7 | */ |
| 8 | |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 9 | /* |
| 10 | * Locking overview |
| 11 | * |
| 12 | * There are 3 main spinlocks which must be acquired in the |
| 13 | * order shown: |
| 14 | * |
| 15 | * 1) proc->outer_lock : protects binder_ref |
| 16 | * binder_proc_lock() and binder_proc_unlock() are |
| 17 | * used to acq/rel. |
| 18 | * 2) node->lock : protects most fields of binder_node. |
| 19 | * binder_node_lock() and binder_node_unlock() are |
| 20 | * used to acq/rel |
| 21 | * 3) proc->inner_lock : protects the thread and node lists |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 22 | * (proc->threads, proc->waiting_threads, proc->nodes) |
| 23 | * and all todo lists associated with the binder_proc |
| 24 | * (proc->todo, thread->todo, proc->delivered_death and |
| 25 | * node->async_todo), as well as thread->transaction_stack |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 26 | * binder_inner_proc_lock() and binder_inner_proc_unlock() |
| 27 | * are used to acq/rel |
| 28 | * |
| 29 | * Any lock under procA must never be nested under any lock at the same |
| 30 | * level or below on procB. |
| 31 | * |
| 32 | * Functions that require a lock held on entry indicate which lock |
| 33 | * in the suffix of the function name: |
| 34 | * |
| 35 | * foo_olocked() : requires node->outer_lock |
| 36 | * foo_nlocked() : requires node->lock |
| 37 | * foo_ilocked() : requires proc->inner_lock |
| 38 | * foo_oilocked(): requires proc->outer_lock and proc->inner_lock |
| 39 | * foo_nilocked(): requires node->lock and proc->inner_lock |
| 40 | * ... |
| 41 | */ |
| 42 | |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 43 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 44 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 45 | #include <linux/fdtable.h> |
| 46 | #include <linux/file.h> |
Colin Cross | e2610b2 | 2013-05-06 23:50:15 +0000 | [diff] [blame] | 47 | #include <linux/freezer.h> |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 48 | #include <linux/fs.h> |
| 49 | #include <linux/list.h> |
| 50 | #include <linux/miscdevice.h> |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 51 | #include <linux/module.h> |
| 52 | #include <linux/mutex.h> |
| 53 | #include <linux/nsproxy.h> |
| 54 | #include <linux/poll.h> |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 55 | #include <linux/debugfs.h> |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 56 | #include <linux/rbtree.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 57 | #include <linux/sched/signal.h> |
Ingo Molnar | 6e84f31 | 2017-02-08 18:51:29 +0100 | [diff] [blame] | 58 | #include <linux/sched/mm.h> |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 59 | #include <linux/seq_file.h> |
Christian Brauner | 51d8a7e | 2019-10-08 15:01:59 +0200 | [diff] [blame] | 60 | #include <linux/string.h> |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 61 | #include <linux/uaccess.h> |
Eric W. Biederman | 17cf22c | 2010-03-02 14:51:53 -0800 | [diff] [blame] | 62 | #include <linux/pid_namespace.h> |
Stephen Smalley | 79af730 | 2015-01-21 10:54:10 -0500 | [diff] [blame] | 63 | #include <linux/security.h> |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 64 | #include <linux/spinlock.h> |
Sherry Yang | 128f380 | 2018-08-07 12:57:13 -0700 | [diff] [blame] | 65 | #include <linux/ratelimit.h> |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 66 | #include <linux/syscalls.h> |
Todd Kjos | 80cd795 | 2018-12-14 15:58:21 -0800 | [diff] [blame] | 67 | #include <linux/task_work.h> |
Jann Horn | 990be74 | 2019-10-16 17:01:19 +0200 | [diff] [blame] | 68 | #include <linux/sizes.h> |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 69 | |
Greg Kroah-Hartman | 9246a4a | 2014-10-16 15:26:51 +0200 | [diff] [blame] | 70 | #include <uapi/linux/android/binder.h> |
Guenter Roeck | f371a7c | 2018-07-23 14:41:38 -0700 | [diff] [blame] | 71 | |
| 72 | #include <asm/cacheflush.h> |
| 73 | |
Christian Brauner | 3ad20fe | 2018-12-14 13:11:14 +0100 | [diff] [blame] | 74 | #include "binder_internal.h" |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 75 | #include "binder_trace.h" |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 76 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 77 | static HLIST_HEAD(binder_deferred_list); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 78 | static DEFINE_MUTEX(binder_deferred_lock); |
| 79 | |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 80 | static HLIST_HEAD(binder_devices); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 81 | static HLIST_HEAD(binder_procs); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 82 | static DEFINE_MUTEX(binder_procs_lock); |
| 83 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 84 | static HLIST_HEAD(binder_dead_nodes); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 85 | static DEFINE_SPINLOCK(binder_dead_nodes_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 86 | |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 87 | static struct dentry *binder_debugfs_dir_entry_root; |
| 88 | static struct dentry *binder_debugfs_dir_entry_proc; |
Todd Kjos | 656a800 | 2017-06-29 12:01:45 -0700 | [diff] [blame] | 89 | static atomic_t binder_last_id; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 90 | |
Yangtao Li | c13e0a5 | 2018-11-30 20:26:30 -0500 | [diff] [blame] | 91 | static int proc_show(struct seq_file *m, void *unused); |
| 92 | DEFINE_SHOW_ATTRIBUTE(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 93 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 94 | #define FORBIDDEN_MMAP_FLAGS (VM_WRITE) |
| 95 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 96 | enum { |
| 97 | BINDER_DEBUG_USER_ERROR = 1U << 0, |
| 98 | BINDER_DEBUG_FAILED_TRANSACTION = 1U << 1, |
| 99 | BINDER_DEBUG_DEAD_TRANSACTION = 1U << 2, |
| 100 | BINDER_DEBUG_OPEN_CLOSE = 1U << 3, |
| 101 | BINDER_DEBUG_DEAD_BINDER = 1U << 4, |
| 102 | BINDER_DEBUG_DEATH_NOTIFICATION = 1U << 5, |
| 103 | BINDER_DEBUG_READ_WRITE = 1U << 6, |
| 104 | BINDER_DEBUG_USER_REFS = 1U << 7, |
| 105 | BINDER_DEBUG_THREADS = 1U << 8, |
| 106 | BINDER_DEBUG_TRANSACTION = 1U << 9, |
| 107 | BINDER_DEBUG_TRANSACTION_COMPLETE = 1U << 10, |
| 108 | BINDER_DEBUG_FREE_BUFFER = 1U << 11, |
| 109 | BINDER_DEBUG_INTERNAL_REFS = 1U << 12, |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 110 | BINDER_DEBUG_PRIORITY_CAP = 1U << 13, |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 111 | BINDER_DEBUG_SPINLOCKS = 1U << 14, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 112 | }; |
| 113 | static uint32_t binder_debug_mask = BINDER_DEBUG_USER_ERROR | |
| 114 | BINDER_DEBUG_FAILED_TRANSACTION | BINDER_DEBUG_DEAD_TRANSACTION; |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 115 | module_param_named(debug_mask, binder_debug_mask, uint, 0644); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 116 | |
Hridya Valsaraju | ca2864c | 2019-09-04 13:07:03 +0200 | [diff] [blame] | 117 | char *binder_devices_param = CONFIG_ANDROID_BINDER_DEVICES; |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 118 | module_param_named(devices, binder_devices_param, charp, 0444); |
| 119 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 120 | static DECLARE_WAIT_QUEUE_HEAD(binder_user_error_wait); |
| 121 | static int binder_stop_on_user_error; |
| 122 | |
| 123 | static int binder_set_stop_on_user_error(const char *val, |
Kees Cook | e4dca7b | 2017-10-17 19:04:42 -0700 | [diff] [blame] | 124 | const struct kernel_param *kp) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 125 | { |
| 126 | int ret; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 127 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 128 | ret = param_set_int(val, kp); |
| 129 | if (binder_stop_on_user_error < 2) |
| 130 | wake_up(&binder_user_error_wait); |
| 131 | return ret; |
| 132 | } |
| 133 | module_param_call(stop_on_user_error, binder_set_stop_on_user_error, |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 134 | param_get_int, &binder_stop_on_user_error, 0644); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 135 | |
| 136 | #define binder_debug(mask, x...) \ |
| 137 | do { \ |
| 138 | if (binder_debug_mask & mask) \ |
Sherry Yang | 128f380 | 2018-08-07 12:57:13 -0700 | [diff] [blame] | 139 | pr_info_ratelimited(x); \ |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 140 | } while (0) |
| 141 | |
| 142 | #define binder_user_error(x...) \ |
| 143 | do { \ |
| 144 | if (binder_debug_mask & BINDER_DEBUG_USER_ERROR) \ |
Sherry Yang | 128f380 | 2018-08-07 12:57:13 -0700 | [diff] [blame] | 145 | pr_info_ratelimited(x); \ |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 146 | if (binder_stop_on_user_error) \ |
| 147 | binder_stop_on_user_error = 2; \ |
| 148 | } while (0) |
| 149 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 150 | #define to_flat_binder_object(hdr) \ |
| 151 | container_of(hdr, struct flat_binder_object, hdr) |
| 152 | |
| 153 | #define to_binder_fd_object(hdr) container_of(hdr, struct binder_fd_object, hdr) |
| 154 | |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 155 | #define to_binder_buffer_object(hdr) \ |
| 156 | container_of(hdr, struct binder_buffer_object, hdr) |
| 157 | |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 158 | #define to_binder_fd_array_object(hdr) \ |
| 159 | container_of(hdr, struct binder_fd_array_object, hdr) |
| 160 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 161 | static struct binder_stats binder_stats; |
| 162 | |
| 163 | static inline void binder_stats_deleted(enum binder_stat_types type) |
| 164 | { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 165 | atomic_inc(&binder_stats.obj_deleted[type]); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static inline void binder_stats_created(enum binder_stat_types type) |
| 169 | { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 170 | atomic_inc(&binder_stats.obj_created[type]); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 171 | } |
| 172 | |
Hridya Valsaraju | 03e2e07 | 2019-09-03 09:16:54 -0700 | [diff] [blame] | 173 | struct binder_transaction_log binder_transaction_log; |
| 174 | struct binder_transaction_log binder_transaction_log_failed; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 175 | |
| 176 | static struct binder_transaction_log_entry *binder_transaction_log_add( |
| 177 | struct binder_transaction_log *log) |
| 178 | { |
| 179 | struct binder_transaction_log_entry *e; |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 180 | unsigned int cur = atomic_inc_return(&log->cur); |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 181 | |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 182 | if (cur >= ARRAY_SIZE(log->entry)) |
Gustavo A. R. Silva | 197410a | 2018-01-23 12:04:27 -0600 | [diff] [blame] | 183 | log->full = true; |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 184 | e = &log->entry[cur % ARRAY_SIZE(log->entry)]; |
| 185 | WRITE_ONCE(e->debug_id_done, 0); |
| 186 | /* |
| 187 | * write-barrier to synchronize access to e->debug_id_done. |
| 188 | * We make sure the initialized 0 value is seen before |
| 189 | * memset() other fields are zeroed by memset. |
| 190 | */ |
| 191 | smp_wmb(); |
| 192 | memset(e, 0, sizeof(*e)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 193 | return e; |
| 194 | } |
| 195 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 196 | enum binder_deferred_state { |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 197 | BINDER_DEFERRED_FLUSH = 0x01, |
| 198 | BINDER_DEFERRED_RELEASE = 0x02, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 199 | }; |
| 200 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 201 | enum { |
| 202 | BINDER_LOOPER_STATE_REGISTERED = 0x01, |
| 203 | BINDER_LOOPER_STATE_ENTERED = 0x02, |
| 204 | BINDER_LOOPER_STATE_EXITED = 0x04, |
| 205 | BINDER_LOOPER_STATE_INVALID = 0x08, |
| 206 | BINDER_LOOPER_STATE_WAITING = 0x10, |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 207 | BINDER_LOOPER_STATE_POLL = 0x20, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 208 | }; |
| 209 | |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 210 | /** |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 211 | * binder_proc_lock() - Acquire outer lock for given binder_proc |
| 212 | * @proc: struct binder_proc to acquire |
| 213 | * |
| 214 | * Acquires proc->outer_lock. Used to protect binder_ref |
| 215 | * structures associated with the given proc. |
| 216 | */ |
| 217 | #define binder_proc_lock(proc) _binder_proc_lock(proc, __LINE__) |
| 218 | static void |
| 219 | _binder_proc_lock(struct binder_proc *proc, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 220 | __acquires(&proc->outer_lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 221 | { |
| 222 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 223 | "%s: line=%d\n", __func__, line); |
| 224 | spin_lock(&proc->outer_lock); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * binder_proc_unlock() - Release spinlock for given binder_proc |
| 229 | * @proc: struct binder_proc to acquire |
| 230 | * |
| 231 | * Release lock acquired via binder_proc_lock() |
| 232 | */ |
| 233 | #define binder_proc_unlock(_proc) _binder_proc_unlock(_proc, __LINE__) |
| 234 | static void |
| 235 | _binder_proc_unlock(struct binder_proc *proc, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 236 | __releases(&proc->outer_lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 237 | { |
| 238 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 239 | "%s: line=%d\n", __func__, line); |
| 240 | spin_unlock(&proc->outer_lock); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * binder_inner_proc_lock() - Acquire inner lock for given binder_proc |
| 245 | * @proc: struct binder_proc to acquire |
| 246 | * |
| 247 | * Acquires proc->inner_lock. Used to protect todo lists |
| 248 | */ |
| 249 | #define binder_inner_proc_lock(proc) _binder_inner_proc_lock(proc, __LINE__) |
| 250 | static void |
| 251 | _binder_inner_proc_lock(struct binder_proc *proc, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 252 | __acquires(&proc->inner_lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 253 | { |
| 254 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 255 | "%s: line=%d\n", __func__, line); |
| 256 | spin_lock(&proc->inner_lock); |
| 257 | } |
| 258 | |
| 259 | /** |
| 260 | * binder_inner_proc_unlock() - Release inner lock for given binder_proc |
| 261 | * @proc: struct binder_proc to acquire |
| 262 | * |
| 263 | * Release lock acquired via binder_inner_proc_lock() |
| 264 | */ |
| 265 | #define binder_inner_proc_unlock(proc) _binder_inner_proc_unlock(proc, __LINE__) |
| 266 | static void |
| 267 | _binder_inner_proc_unlock(struct binder_proc *proc, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 268 | __releases(&proc->inner_lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 269 | { |
| 270 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 271 | "%s: line=%d\n", __func__, line); |
| 272 | spin_unlock(&proc->inner_lock); |
| 273 | } |
| 274 | |
| 275 | /** |
| 276 | * binder_node_lock() - Acquire spinlock for given binder_node |
| 277 | * @node: struct binder_node to acquire |
| 278 | * |
| 279 | * Acquires node->lock. Used to protect binder_node fields |
| 280 | */ |
| 281 | #define binder_node_lock(node) _binder_node_lock(node, __LINE__) |
| 282 | static void |
| 283 | _binder_node_lock(struct binder_node *node, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 284 | __acquires(&node->lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 285 | { |
| 286 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 287 | "%s: line=%d\n", __func__, line); |
| 288 | spin_lock(&node->lock); |
| 289 | } |
| 290 | |
| 291 | /** |
| 292 | * binder_node_unlock() - Release spinlock for given binder_proc |
| 293 | * @node: struct binder_node to acquire |
| 294 | * |
| 295 | * Release lock acquired via binder_node_lock() |
| 296 | */ |
| 297 | #define binder_node_unlock(node) _binder_node_unlock(node, __LINE__) |
| 298 | static void |
| 299 | _binder_node_unlock(struct binder_node *node, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 300 | __releases(&node->lock) |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 301 | { |
| 302 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 303 | "%s: line=%d\n", __func__, line); |
| 304 | spin_unlock(&node->lock); |
| 305 | } |
| 306 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 307 | /** |
| 308 | * binder_node_inner_lock() - Acquire node and inner locks |
| 309 | * @node: struct binder_node to acquire |
| 310 | * |
| 311 | * Acquires node->lock. If node->proc also acquires |
| 312 | * proc->inner_lock. Used to protect binder_node fields |
| 313 | */ |
| 314 | #define binder_node_inner_lock(node) _binder_node_inner_lock(node, __LINE__) |
| 315 | static void |
| 316 | _binder_node_inner_lock(struct binder_node *node, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 317 | __acquires(&node->lock) __acquires(&node->proc->inner_lock) |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 318 | { |
| 319 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 320 | "%s: line=%d\n", __func__, line); |
| 321 | spin_lock(&node->lock); |
| 322 | if (node->proc) |
| 323 | binder_inner_proc_lock(node->proc); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 324 | else |
| 325 | /* annotation for sparse */ |
| 326 | __acquire(&node->proc->inner_lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /** |
| 330 | * binder_node_unlock() - Release node and inner locks |
| 331 | * @node: struct binder_node to acquire |
| 332 | * |
| 333 | * Release lock acquired via binder_node_lock() |
| 334 | */ |
| 335 | #define binder_node_inner_unlock(node) _binder_node_inner_unlock(node, __LINE__) |
| 336 | static void |
| 337 | _binder_node_inner_unlock(struct binder_node *node, int line) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 338 | __releases(&node->lock) __releases(&node->proc->inner_lock) |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 339 | { |
| 340 | struct binder_proc *proc = node->proc; |
| 341 | |
| 342 | binder_debug(BINDER_DEBUG_SPINLOCKS, |
| 343 | "%s: line=%d\n", __func__, line); |
| 344 | if (proc) |
| 345 | binder_inner_proc_unlock(proc); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 346 | else |
| 347 | /* annotation for sparse */ |
| 348 | __release(&node->proc->inner_lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 349 | spin_unlock(&node->lock); |
| 350 | } |
| 351 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 352 | static bool binder_worklist_empty_ilocked(struct list_head *list) |
| 353 | { |
| 354 | return list_empty(list); |
| 355 | } |
| 356 | |
| 357 | /** |
| 358 | * binder_worklist_empty() - Check if no items on the work list |
| 359 | * @proc: binder_proc associated with list |
| 360 | * @list: list to check |
| 361 | * |
| 362 | * Return: true if there are no items on list, else false |
| 363 | */ |
| 364 | static bool binder_worklist_empty(struct binder_proc *proc, |
| 365 | struct list_head *list) |
| 366 | { |
| 367 | bool ret; |
| 368 | |
| 369 | binder_inner_proc_lock(proc); |
| 370 | ret = binder_worklist_empty_ilocked(list); |
| 371 | binder_inner_proc_unlock(proc); |
| 372 | return ret; |
| 373 | } |
| 374 | |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 375 | /** |
| 376 | * binder_enqueue_work_ilocked() - Add an item to the work list |
| 377 | * @work: struct binder_work to add to list |
| 378 | * @target_list: list to add work to |
| 379 | * |
| 380 | * Adds the work to the specified list. Asserts that work |
| 381 | * is not already on a list. |
| 382 | * |
| 383 | * Requires the proc->inner_lock to be held. |
| 384 | */ |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 385 | static void |
| 386 | binder_enqueue_work_ilocked(struct binder_work *work, |
| 387 | struct list_head *target_list) |
| 388 | { |
| 389 | BUG_ON(target_list == NULL); |
| 390 | BUG_ON(work->entry.next && !list_empty(&work->entry)); |
| 391 | list_add_tail(&work->entry, target_list); |
| 392 | } |
| 393 | |
| 394 | /** |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 395 | * binder_enqueue_deferred_thread_work_ilocked() - Add deferred thread work |
| 396 | * @thread: thread to queue work to |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 397 | * @work: struct binder_work to add to list |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 398 | * |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 399 | * Adds the work to the todo list of the thread. Doesn't set the process_todo |
| 400 | * flag, which means that (if it wasn't already set) the thread will go to |
| 401 | * sleep without handling this work when it calls read. |
| 402 | * |
| 403 | * Requires the proc->inner_lock to be held. |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 404 | */ |
| 405 | static void |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 406 | binder_enqueue_deferred_thread_work_ilocked(struct binder_thread *thread, |
| 407 | struct binder_work *work) |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 408 | { |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 409 | WARN_ON(!list_empty(&thread->waiting_thread_node)); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 410 | binder_enqueue_work_ilocked(work, &thread->todo); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * binder_enqueue_thread_work_ilocked() - Add an item to the thread work list |
| 415 | * @thread: thread to queue work to |
| 416 | * @work: struct binder_work to add to list |
| 417 | * |
| 418 | * Adds the work to the todo list of the thread, and enables processing |
| 419 | * of the todo queue. |
| 420 | * |
| 421 | * Requires the proc->inner_lock to be held. |
| 422 | */ |
| 423 | static void |
| 424 | binder_enqueue_thread_work_ilocked(struct binder_thread *thread, |
| 425 | struct binder_work *work) |
| 426 | { |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 427 | WARN_ON(!list_empty(&thread->waiting_thread_node)); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 428 | binder_enqueue_work_ilocked(work, &thread->todo); |
| 429 | thread->process_todo = true; |
| 430 | } |
| 431 | |
| 432 | /** |
| 433 | * binder_enqueue_thread_work() - Add an item to the thread work list |
| 434 | * @thread: thread to queue work to |
| 435 | * @work: struct binder_work to add to list |
| 436 | * |
| 437 | * Adds the work to the todo list of the thread, and enables processing |
| 438 | * of the todo queue. |
| 439 | */ |
| 440 | static void |
| 441 | binder_enqueue_thread_work(struct binder_thread *thread, |
| 442 | struct binder_work *work) |
| 443 | { |
| 444 | binder_inner_proc_lock(thread->proc); |
| 445 | binder_enqueue_thread_work_ilocked(thread, work); |
| 446 | binder_inner_proc_unlock(thread->proc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | static void |
| 450 | binder_dequeue_work_ilocked(struct binder_work *work) |
| 451 | { |
| 452 | list_del_init(&work->entry); |
| 453 | } |
| 454 | |
| 455 | /** |
| 456 | * binder_dequeue_work() - Removes an item from the work list |
| 457 | * @proc: binder_proc associated with list |
| 458 | * @work: struct binder_work to remove from list |
| 459 | * |
| 460 | * Removes the specified work item from whatever list it is on. |
| 461 | * Can safely be called if work is not on any list. |
| 462 | */ |
| 463 | static void |
| 464 | binder_dequeue_work(struct binder_proc *proc, struct binder_work *work) |
| 465 | { |
| 466 | binder_inner_proc_lock(proc); |
| 467 | binder_dequeue_work_ilocked(work); |
| 468 | binder_inner_proc_unlock(proc); |
| 469 | } |
| 470 | |
| 471 | static struct binder_work *binder_dequeue_work_head_ilocked( |
| 472 | struct list_head *list) |
| 473 | { |
| 474 | struct binder_work *w; |
| 475 | |
| 476 | w = list_first_entry_or_null(list, struct binder_work, entry); |
| 477 | if (w) |
| 478 | list_del_init(&w->entry); |
| 479 | return w; |
| 480 | } |
| 481 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 482 | static void |
| 483 | binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 484 | static void binder_free_thread(struct binder_thread *thread); |
| 485 | static void binder_free_proc(struct binder_proc *proc); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 486 | static void binder_inc_node_tmpref_ilocked(struct binder_node *node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 487 | |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 488 | static bool binder_has_work_ilocked(struct binder_thread *thread, |
| 489 | bool do_proc_work) |
| 490 | { |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 491 | return thread->process_todo || |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 492 | thread->looper_need_return || |
| 493 | (do_proc_work && |
| 494 | !binder_worklist_empty_ilocked(&thread->proc->todo)); |
| 495 | } |
| 496 | |
| 497 | static bool binder_has_work(struct binder_thread *thread, bool do_proc_work) |
| 498 | { |
| 499 | bool has_work; |
| 500 | |
| 501 | binder_inner_proc_lock(thread->proc); |
| 502 | has_work = binder_has_work_ilocked(thread, do_proc_work); |
| 503 | binder_inner_proc_unlock(thread->proc); |
| 504 | |
| 505 | return has_work; |
| 506 | } |
| 507 | |
| 508 | static bool binder_available_for_proc_work_ilocked(struct binder_thread *thread) |
| 509 | { |
| 510 | return !thread->transaction_stack && |
| 511 | binder_worklist_empty_ilocked(&thread->todo) && |
| 512 | (thread->looper & (BINDER_LOOPER_STATE_ENTERED | |
| 513 | BINDER_LOOPER_STATE_REGISTERED)); |
| 514 | } |
| 515 | |
| 516 | static void binder_wakeup_poll_threads_ilocked(struct binder_proc *proc, |
| 517 | bool sync) |
| 518 | { |
| 519 | struct rb_node *n; |
| 520 | struct binder_thread *thread; |
| 521 | |
| 522 | for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) { |
| 523 | thread = rb_entry(n, struct binder_thread, rb_node); |
| 524 | if (thread->looper & BINDER_LOOPER_STATE_POLL && |
| 525 | binder_available_for_proc_work_ilocked(thread)) { |
| 526 | if (sync) |
| 527 | wake_up_interruptible_sync(&thread->wait); |
| 528 | else |
| 529 | wake_up_interruptible(&thread->wait); |
| 530 | } |
| 531 | } |
| 532 | } |
| 533 | |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 534 | /** |
| 535 | * binder_select_thread_ilocked() - selects a thread for doing proc work. |
| 536 | * @proc: process to select a thread from |
| 537 | * |
| 538 | * Note that calling this function moves the thread off the waiting_threads |
| 539 | * list, so it can only be woken up by the caller of this function, or a |
| 540 | * signal. Therefore, callers *should* always wake up the thread this function |
| 541 | * returns. |
| 542 | * |
| 543 | * Return: If there's a thread currently waiting for process work, |
| 544 | * returns that thread. Otherwise returns NULL. |
| 545 | */ |
| 546 | static struct binder_thread * |
| 547 | binder_select_thread_ilocked(struct binder_proc *proc) |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 548 | { |
| 549 | struct binder_thread *thread; |
| 550 | |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 551 | assert_spin_locked(&proc->inner_lock); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 552 | thread = list_first_entry_or_null(&proc->waiting_threads, |
| 553 | struct binder_thread, |
| 554 | waiting_thread_node); |
| 555 | |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 556 | if (thread) |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 557 | list_del_init(&thread->waiting_thread_node); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 558 | |
| 559 | return thread; |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * binder_wakeup_thread_ilocked() - wakes up a thread for doing proc work. |
| 564 | * @proc: process to wake up a thread in |
| 565 | * @thread: specific thread to wake-up (may be NULL) |
| 566 | * @sync: whether to do a synchronous wake-up |
| 567 | * |
| 568 | * This function wakes up a thread in the @proc process. |
| 569 | * The caller may provide a specific thread to wake-up in |
| 570 | * the @thread parameter. If @thread is NULL, this function |
| 571 | * will wake up threads that have called poll(). |
| 572 | * |
| 573 | * Note that for this function to work as expected, callers |
| 574 | * should first call binder_select_thread() to find a thread |
| 575 | * to handle the work (if they don't have a thread already), |
| 576 | * and pass the result into the @thread parameter. |
| 577 | */ |
| 578 | static void binder_wakeup_thread_ilocked(struct binder_proc *proc, |
| 579 | struct binder_thread *thread, |
| 580 | bool sync) |
| 581 | { |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 582 | assert_spin_locked(&proc->inner_lock); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 583 | |
| 584 | if (thread) { |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 585 | if (sync) |
| 586 | wake_up_interruptible_sync(&thread->wait); |
| 587 | else |
| 588 | wake_up_interruptible(&thread->wait); |
| 589 | return; |
| 590 | } |
| 591 | |
| 592 | /* Didn't find a thread waiting for proc work; this can happen |
| 593 | * in two scenarios: |
| 594 | * 1. All threads are busy handling transactions |
| 595 | * In that case, one of those threads should call back into |
| 596 | * the kernel driver soon and pick up this work. |
| 597 | * 2. Threads are using the (e)poll interface, in which case |
| 598 | * they may be blocked on the waitqueue without having been |
| 599 | * added to waiting_threads. For this case, we just iterate |
| 600 | * over all threads not handling transaction work, and |
| 601 | * wake them all up. We wake all because we don't know whether |
| 602 | * a thread that called into (e)poll is handling non-binder |
| 603 | * work currently. |
| 604 | */ |
| 605 | binder_wakeup_poll_threads_ilocked(proc, sync); |
| 606 | } |
| 607 | |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 608 | static void binder_wakeup_proc_ilocked(struct binder_proc *proc) |
| 609 | { |
| 610 | struct binder_thread *thread = binder_select_thread_ilocked(proc); |
| 611 | |
| 612 | binder_wakeup_thread_ilocked(proc, thread, /* sync = */false); |
| 613 | } |
| 614 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 615 | static void binder_set_nice(long nice) |
| 616 | { |
| 617 | long min_nice; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 618 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 619 | if (can_nice(current, nice)) { |
| 620 | set_user_nice(current, nice); |
| 621 | return; |
| 622 | } |
Krzysztof Opasiak | c3643b6 | 2017-07-05 19:24:44 +0200 | [diff] [blame] | 623 | min_nice = rlimit_to_nice(rlimit(RLIMIT_NICE)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 624 | binder_debug(BINDER_DEBUG_PRIORITY_CAP, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 625 | "%d: nice value %ld not allowed use %ld instead\n", |
| 626 | current->pid, nice, min_nice); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 627 | set_user_nice(current, min_nice); |
Dongsheng Yang | 8698a74 | 2014-03-11 18:09:12 +0800 | [diff] [blame] | 628 | if (min_nice <= MAX_NICE) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 629 | return; |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 630 | binder_user_error("%d RLIMIT_NICE not set\n", current->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 631 | } |
| 632 | |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 633 | static struct binder_node *binder_get_node_ilocked(struct binder_proc *proc, |
| 634 | binder_uintptr_t ptr) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 635 | { |
| 636 | struct rb_node *n = proc->nodes.rb_node; |
| 637 | struct binder_node *node; |
| 638 | |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 639 | assert_spin_locked(&proc->inner_lock); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 640 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 641 | while (n) { |
| 642 | node = rb_entry(n, struct binder_node, rb_node); |
| 643 | |
| 644 | if (ptr < node->ptr) |
| 645 | n = n->rb_left; |
| 646 | else if (ptr > node->ptr) |
| 647 | n = n->rb_right; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 648 | else { |
| 649 | /* |
| 650 | * take an implicit weak reference |
| 651 | * to ensure node stays alive until |
| 652 | * call to binder_put_node() |
| 653 | */ |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 654 | binder_inc_node_tmpref_ilocked(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 655 | return node; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 656 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 657 | } |
| 658 | return NULL; |
| 659 | } |
| 660 | |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 661 | static struct binder_node *binder_get_node(struct binder_proc *proc, |
| 662 | binder_uintptr_t ptr) |
| 663 | { |
| 664 | struct binder_node *node; |
| 665 | |
| 666 | binder_inner_proc_lock(proc); |
| 667 | node = binder_get_node_ilocked(proc, ptr); |
| 668 | binder_inner_proc_unlock(proc); |
| 669 | return node; |
| 670 | } |
| 671 | |
| 672 | static struct binder_node *binder_init_node_ilocked( |
| 673 | struct binder_proc *proc, |
| 674 | struct binder_node *new_node, |
| 675 | struct flat_binder_object *fp) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 676 | { |
| 677 | struct rb_node **p = &proc->nodes.rb_node; |
| 678 | struct rb_node *parent = NULL; |
| 679 | struct binder_node *node; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 680 | binder_uintptr_t ptr = fp ? fp->binder : 0; |
| 681 | binder_uintptr_t cookie = fp ? fp->cookie : 0; |
| 682 | __u32 flags = fp ? fp->flags : 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 683 | |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 684 | assert_spin_locked(&proc->inner_lock); |
| 685 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 686 | while (*p) { |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 687 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 688 | parent = *p; |
| 689 | node = rb_entry(parent, struct binder_node, rb_node); |
| 690 | |
| 691 | if (ptr < node->ptr) |
| 692 | p = &(*p)->rb_left; |
| 693 | else if (ptr > node->ptr) |
| 694 | p = &(*p)->rb_right; |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 695 | else { |
| 696 | /* |
| 697 | * A matching node is already in |
| 698 | * the rb tree. Abandon the init |
| 699 | * and return it. |
| 700 | */ |
| 701 | binder_inc_node_tmpref_ilocked(node); |
| 702 | return node; |
| 703 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 704 | } |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 705 | node = new_node; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 706 | binder_stats_created(BINDER_STAT_NODE); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 707 | node->tmp_refs++; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 708 | rb_link_node(&node->rb_node, parent, p); |
| 709 | rb_insert_color(&node->rb_node, &proc->nodes); |
Todd Kjos | 656a800 | 2017-06-29 12:01:45 -0700 | [diff] [blame] | 710 | node->debug_id = atomic_inc_return(&binder_last_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 711 | node->proc = proc; |
| 712 | node->ptr = ptr; |
| 713 | node->cookie = cookie; |
| 714 | node->work.type = BINDER_WORK_NODE; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 715 | node->min_priority = flags & FLAT_BINDER_FLAG_PRIORITY_MASK; |
| 716 | node->accept_fds = !!(flags & FLAT_BINDER_FLAG_ACCEPTS_FDS); |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 717 | node->txn_security_ctx = !!(flags & FLAT_BINDER_FLAG_TXN_SECURITY_CTX); |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 718 | spin_lock_init(&node->lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 719 | INIT_LIST_HEAD(&node->work.entry); |
| 720 | INIT_LIST_HEAD(&node->async_todo); |
| 721 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 722 | "%d:%d node %d u%016llx c%016llx created\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 723 | proc->pid, current->pid, node->debug_id, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 724 | (u64)node->ptr, (u64)node->cookie); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 725 | |
| 726 | return node; |
| 727 | } |
| 728 | |
| 729 | static struct binder_node *binder_new_node(struct binder_proc *proc, |
| 730 | struct flat_binder_object *fp) |
| 731 | { |
| 732 | struct binder_node *node; |
| 733 | struct binder_node *new_node = kzalloc(sizeof(*node), GFP_KERNEL); |
| 734 | |
| 735 | if (!new_node) |
| 736 | return NULL; |
| 737 | binder_inner_proc_lock(proc); |
| 738 | node = binder_init_node_ilocked(proc, new_node, fp); |
| 739 | binder_inner_proc_unlock(proc); |
| 740 | if (node != new_node) |
| 741 | /* |
| 742 | * The node was already added by another thread |
| 743 | */ |
| 744 | kfree(new_node); |
| 745 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 746 | return node; |
| 747 | } |
| 748 | |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 749 | static void binder_free_node(struct binder_node *node) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 750 | { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 751 | kfree(node); |
| 752 | binder_stats_deleted(BINDER_STAT_NODE); |
| 753 | } |
| 754 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 755 | static int binder_inc_node_nilocked(struct binder_node *node, int strong, |
| 756 | int internal, |
| 757 | struct list_head *target_list) |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 758 | { |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 759 | struct binder_proc *proc = node->proc; |
| 760 | |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 761 | assert_spin_locked(&node->lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 762 | if (proc) |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 763 | assert_spin_locked(&proc->inner_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 764 | if (strong) { |
| 765 | if (internal) { |
| 766 | if (target_list == NULL && |
| 767 | node->internal_strong_refs == 0 && |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 768 | !(node->proc && |
| 769 | node == node->proc->context->binder_context_mgr_node && |
| 770 | node->has_strong_ref)) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 771 | pr_err("invalid inc strong node for %d\n", |
| 772 | node->debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 773 | return -EINVAL; |
| 774 | } |
| 775 | node->internal_strong_refs++; |
| 776 | } else |
| 777 | node->local_strong_refs++; |
| 778 | if (!node->has_strong_ref && target_list) { |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 779 | struct binder_thread *thread = container_of(target_list, |
| 780 | struct binder_thread, todo); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 781 | binder_dequeue_work_ilocked(&node->work); |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 782 | BUG_ON(&thread->todo != target_list); |
| 783 | binder_enqueue_deferred_thread_work_ilocked(thread, |
| 784 | &node->work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 785 | } |
| 786 | } else { |
| 787 | if (!internal) |
| 788 | node->local_weak_refs++; |
| 789 | if (!node->has_weak_ref && list_empty(&node->work.entry)) { |
| 790 | if (target_list == NULL) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 791 | pr_err("invalid inc weak node for %d\n", |
| 792 | node->debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 793 | return -EINVAL; |
| 794 | } |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 795 | /* |
| 796 | * See comment above |
| 797 | */ |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 798 | binder_enqueue_work_ilocked(&node->work, target_list); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 799 | } |
| 800 | } |
| 801 | return 0; |
| 802 | } |
| 803 | |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 804 | static int binder_inc_node(struct binder_node *node, int strong, int internal, |
| 805 | struct list_head *target_list) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 806 | { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 807 | int ret; |
| 808 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 809 | binder_node_inner_lock(node); |
| 810 | ret = binder_inc_node_nilocked(node, strong, internal, target_list); |
| 811 | binder_node_inner_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 812 | |
| 813 | return ret; |
| 814 | } |
| 815 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 816 | static bool binder_dec_node_nilocked(struct binder_node *node, |
| 817 | int strong, int internal) |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 818 | { |
| 819 | struct binder_proc *proc = node->proc; |
| 820 | |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 821 | assert_spin_locked(&node->lock); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 822 | if (proc) |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 823 | assert_spin_locked(&proc->inner_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 824 | if (strong) { |
| 825 | if (internal) |
| 826 | node->internal_strong_refs--; |
| 827 | else |
| 828 | node->local_strong_refs--; |
| 829 | if (node->local_strong_refs || node->internal_strong_refs) |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 830 | return false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 831 | } else { |
| 832 | if (!internal) |
| 833 | node->local_weak_refs--; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 834 | if (node->local_weak_refs || node->tmp_refs || |
| 835 | !hlist_empty(&node->refs)) |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 836 | return false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 837 | } |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 838 | |
| 839 | if (proc && (node->has_strong_ref || node->has_weak_ref)) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 840 | if (list_empty(&node->work.entry)) { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 841 | binder_enqueue_work_ilocked(&node->work, &proc->todo); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 842 | binder_wakeup_proc_ilocked(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 843 | } |
| 844 | } else { |
| 845 | if (hlist_empty(&node->refs) && !node->local_strong_refs && |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 846 | !node->local_weak_refs && !node->tmp_refs) { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 847 | if (proc) { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 848 | binder_dequeue_work_ilocked(&node->work); |
| 849 | rb_erase(&node->rb_node, &proc->nodes); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 850 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 851 | "refless node %d deleted\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 852 | node->debug_id); |
| 853 | } else { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 854 | BUG_ON(!list_empty(&node->work.entry)); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 855 | spin_lock(&binder_dead_nodes_lock); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 856 | /* |
| 857 | * tmp_refs could have changed so |
| 858 | * check it again |
| 859 | */ |
| 860 | if (node->tmp_refs) { |
| 861 | spin_unlock(&binder_dead_nodes_lock); |
| 862 | return false; |
| 863 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 864 | hlist_del(&node->dead_node); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 865 | spin_unlock(&binder_dead_nodes_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 866 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 867 | "dead node %d deleted\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 868 | node->debug_id); |
| 869 | } |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 870 | return true; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 871 | } |
| 872 | } |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 873 | return false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 874 | } |
| 875 | |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 876 | static void binder_dec_node(struct binder_node *node, int strong, int internal) |
| 877 | { |
| 878 | bool free_node; |
| 879 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 880 | binder_node_inner_lock(node); |
| 881 | free_node = binder_dec_node_nilocked(node, strong, internal); |
| 882 | binder_node_inner_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 883 | if (free_node) |
| 884 | binder_free_node(node); |
| 885 | } |
| 886 | |
| 887 | static void binder_inc_node_tmpref_ilocked(struct binder_node *node) |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 888 | { |
| 889 | /* |
| 890 | * No call to binder_inc_node() is needed since we |
| 891 | * don't need to inform userspace of any changes to |
| 892 | * tmp_refs |
| 893 | */ |
| 894 | node->tmp_refs++; |
| 895 | } |
| 896 | |
| 897 | /** |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 898 | * binder_inc_node_tmpref() - take a temporary reference on node |
| 899 | * @node: node to reference |
| 900 | * |
| 901 | * Take reference on node to prevent the node from being freed |
| 902 | * while referenced only by a local variable. The inner lock is |
| 903 | * needed to serialize with the node work on the queue (which |
| 904 | * isn't needed after the node is dead). If the node is dead |
| 905 | * (node->proc is NULL), use binder_dead_nodes_lock to protect |
| 906 | * node->tmp_refs against dead-node-only cases where the node |
| 907 | * lock cannot be acquired (eg traversing the dead node list to |
| 908 | * print nodes) |
| 909 | */ |
| 910 | static void binder_inc_node_tmpref(struct binder_node *node) |
| 911 | { |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 912 | binder_node_lock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 913 | if (node->proc) |
| 914 | binder_inner_proc_lock(node->proc); |
| 915 | else |
| 916 | spin_lock(&binder_dead_nodes_lock); |
| 917 | binder_inc_node_tmpref_ilocked(node); |
| 918 | if (node->proc) |
| 919 | binder_inner_proc_unlock(node->proc); |
| 920 | else |
| 921 | spin_unlock(&binder_dead_nodes_lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 922 | binder_node_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /** |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 926 | * binder_dec_node_tmpref() - remove a temporary reference on node |
| 927 | * @node: node to reference |
| 928 | * |
| 929 | * Release temporary reference on node taken via binder_inc_node_tmpref() |
| 930 | */ |
| 931 | static void binder_dec_node_tmpref(struct binder_node *node) |
| 932 | { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 933 | bool free_node; |
| 934 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 935 | binder_node_inner_lock(node); |
| 936 | if (!node->proc) |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 937 | spin_lock(&binder_dead_nodes_lock); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 938 | else |
| 939 | __acquire(&binder_dead_nodes_lock); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 940 | node->tmp_refs--; |
| 941 | BUG_ON(node->tmp_refs < 0); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 942 | if (!node->proc) |
| 943 | spin_unlock(&binder_dead_nodes_lock); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 944 | else |
| 945 | __release(&binder_dead_nodes_lock); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 946 | /* |
| 947 | * Call binder_dec_node() to check if all refcounts are 0 |
| 948 | * and cleanup is needed. Calling with strong=0 and internal=1 |
| 949 | * causes no actual reference to be released in binder_dec_node(). |
| 950 | * If that changes, a change is needed here too. |
| 951 | */ |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 952 | free_node = binder_dec_node_nilocked(node, 0, 1); |
| 953 | binder_node_inner_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 954 | if (free_node) |
| 955 | binder_free_node(node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 956 | } |
| 957 | |
| 958 | static void binder_put_node(struct binder_node *node) |
| 959 | { |
| 960 | binder_dec_node_tmpref(node); |
| 961 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 962 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 963 | static struct binder_ref *binder_get_ref_olocked(struct binder_proc *proc, |
| 964 | u32 desc, bool need_strong_ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 965 | { |
| 966 | struct rb_node *n = proc->refs_by_desc.rb_node; |
| 967 | struct binder_ref *ref; |
| 968 | |
| 969 | while (n) { |
| 970 | ref = rb_entry(n, struct binder_ref, rb_node_desc); |
| 971 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 972 | if (desc < ref->data.desc) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 973 | n = n->rb_left; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 974 | } else if (desc > ref->data.desc) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 975 | n = n->rb_right; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 976 | } else if (need_strong_ref && !ref->data.strong) { |
Arve Hjønnevåg | 0a3ffab | 2016-10-24 15:20:29 +0200 | [diff] [blame] | 977 | binder_user_error("tried to use weak ref as strong ref\n"); |
| 978 | return NULL; |
| 979 | } else { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 980 | return ref; |
Arve Hjønnevåg | 0a3ffab | 2016-10-24 15:20:29 +0200 | [diff] [blame] | 981 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 982 | } |
| 983 | return NULL; |
| 984 | } |
| 985 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 986 | /** |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 987 | * binder_get_ref_for_node_olocked() - get the ref associated with given node |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 988 | * @proc: binder_proc that owns the ref |
| 989 | * @node: binder_node of target |
| 990 | * @new_ref: newly allocated binder_ref to be initialized or %NULL |
| 991 | * |
| 992 | * Look up the ref for the given node and return it if it exists |
| 993 | * |
| 994 | * If it doesn't exist and the caller provides a newly allocated |
| 995 | * ref, initialize the fields of the newly allocated ref and insert |
| 996 | * into the given proc rb_trees and node refs list. |
| 997 | * |
| 998 | * Return: the ref for node. It is possible that another thread |
| 999 | * allocated/initialized the ref first in which case the |
| 1000 | * returned ref would be different than the passed-in |
| 1001 | * new_ref. new_ref must be kfree'd by the caller in |
| 1002 | * this case. |
| 1003 | */ |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1004 | static struct binder_ref *binder_get_ref_for_node_olocked( |
| 1005 | struct binder_proc *proc, |
| 1006 | struct binder_node *node, |
| 1007 | struct binder_ref *new_ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1008 | { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1009 | struct binder_context *context = proc->context; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1010 | struct rb_node **p = &proc->refs_by_node.rb_node; |
| 1011 | struct rb_node *parent = NULL; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1012 | struct binder_ref *ref; |
| 1013 | struct rb_node *n; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1014 | |
| 1015 | while (*p) { |
| 1016 | parent = *p; |
| 1017 | ref = rb_entry(parent, struct binder_ref, rb_node_node); |
| 1018 | |
| 1019 | if (node < ref->node) |
| 1020 | p = &(*p)->rb_left; |
| 1021 | else if (node > ref->node) |
| 1022 | p = &(*p)->rb_right; |
| 1023 | else |
| 1024 | return ref; |
| 1025 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1026 | if (!new_ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1027 | return NULL; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1028 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1029 | binder_stats_created(BINDER_STAT_REF); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1030 | new_ref->data.debug_id = atomic_inc_return(&binder_last_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1031 | new_ref->proc = proc; |
| 1032 | new_ref->node = node; |
| 1033 | rb_link_node(&new_ref->rb_node_node, parent, p); |
| 1034 | rb_insert_color(&new_ref->rb_node_node, &proc->refs_by_node); |
| 1035 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1036 | new_ref->data.desc = (node == context->binder_context_mgr_node) ? 0 : 1; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1037 | for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) { |
| 1038 | ref = rb_entry(n, struct binder_ref, rb_node_desc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1039 | if (ref->data.desc > new_ref->data.desc) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1040 | break; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1041 | new_ref->data.desc = ref->data.desc + 1; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1042 | } |
| 1043 | |
| 1044 | p = &proc->refs_by_desc.rb_node; |
| 1045 | while (*p) { |
| 1046 | parent = *p; |
| 1047 | ref = rb_entry(parent, struct binder_ref, rb_node_desc); |
| 1048 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1049 | if (new_ref->data.desc < ref->data.desc) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1050 | p = &(*p)->rb_left; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1051 | else if (new_ref->data.desc > ref->data.desc) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1052 | p = &(*p)->rb_right; |
| 1053 | else |
| 1054 | BUG(); |
| 1055 | } |
| 1056 | rb_link_node(&new_ref->rb_node_desc, parent, p); |
| 1057 | rb_insert_color(&new_ref->rb_node_desc, &proc->refs_by_desc); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 1058 | |
| 1059 | binder_node_lock(node); |
Todd Kjos | e4cffcf | 2017-06-29 12:01:50 -0700 | [diff] [blame] | 1060 | hlist_add_head(&new_ref->node_entry, &node->refs); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1061 | |
Todd Kjos | e4cffcf | 2017-06-29 12:01:50 -0700 | [diff] [blame] | 1062 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
| 1063 | "%d new ref %d desc %d for node %d\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1064 | proc->pid, new_ref->data.debug_id, new_ref->data.desc, |
Todd Kjos | e4cffcf | 2017-06-29 12:01:50 -0700 | [diff] [blame] | 1065 | node->debug_id); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 1066 | binder_node_unlock(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1067 | return new_ref; |
| 1068 | } |
| 1069 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1070 | static void binder_cleanup_ref_olocked(struct binder_ref *ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1071 | { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1072 | bool delete_node = false; |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1073 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1074 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 1075 | "%d delete ref %d desc %d for node %d\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1076 | ref->proc->pid, ref->data.debug_id, ref->data.desc, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 1077 | ref->node->debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1078 | |
| 1079 | rb_erase(&ref->rb_node_desc, &ref->proc->refs_by_desc); |
| 1080 | rb_erase(&ref->rb_node_node, &ref->proc->refs_by_node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1081 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 1082 | binder_node_inner_lock(ref->node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1083 | if (ref->data.strong) |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 1084 | binder_dec_node_nilocked(ref->node, 1, 1); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1085 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1086 | hlist_del(&ref->node_entry); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 1087 | delete_node = binder_dec_node_nilocked(ref->node, 0, 1); |
| 1088 | binder_node_inner_unlock(ref->node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1089 | /* |
| 1090 | * Clear ref->node unless we want the caller to free the node |
| 1091 | */ |
| 1092 | if (!delete_node) { |
| 1093 | /* |
| 1094 | * The caller uses ref->node to determine |
| 1095 | * whether the node needs to be freed. Clear |
| 1096 | * it since the node is still alive. |
| 1097 | */ |
| 1098 | ref->node = NULL; |
| 1099 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1100 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1101 | if (ref->death) { |
| 1102 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 1103 | "%d delete ref %d desc %d has death notification\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1104 | ref->proc->pid, ref->data.debug_id, |
| 1105 | ref->data.desc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 1106 | binder_dequeue_work(ref->proc, &ref->death->work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1107 | binder_stats_deleted(BINDER_STAT_DEATH); |
| 1108 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1109 | binder_stats_deleted(BINDER_STAT_REF); |
| 1110 | } |
| 1111 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1112 | /** |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1113 | * binder_inc_ref_olocked() - increment the ref for given handle |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1114 | * @ref: ref to be incremented |
| 1115 | * @strong: if true, strong increment, else weak |
| 1116 | * @target_list: list to queue node work on |
| 1117 | * |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1118 | * Increment the ref. @ref->proc->outer_lock must be held on entry |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1119 | * |
| 1120 | * Return: 0, if successful, else errno |
| 1121 | */ |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1122 | static int binder_inc_ref_olocked(struct binder_ref *ref, int strong, |
| 1123 | struct list_head *target_list) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1124 | { |
| 1125 | int ret; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 1126 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1127 | if (strong) { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1128 | if (ref->data.strong == 0) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1129 | ret = binder_inc_node(ref->node, 1, 1, target_list); |
| 1130 | if (ret) |
| 1131 | return ret; |
| 1132 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1133 | ref->data.strong++; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1134 | } else { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1135 | if (ref->data.weak == 0) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1136 | ret = binder_inc_node(ref->node, 0, 1, target_list); |
| 1137 | if (ret) |
| 1138 | return ret; |
| 1139 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1140 | ref->data.weak++; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1141 | } |
| 1142 | return 0; |
| 1143 | } |
| 1144 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1145 | /** |
| 1146 | * binder_dec_ref() - dec the ref for given handle |
| 1147 | * @ref: ref to be decremented |
| 1148 | * @strong: if true, strong decrement, else weak |
| 1149 | * |
| 1150 | * Decrement the ref. |
| 1151 | * |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1152 | * Return: true if ref is cleaned up and ready to be freed |
| 1153 | */ |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1154 | static bool binder_dec_ref_olocked(struct binder_ref *ref, int strong) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1155 | { |
| 1156 | if (strong) { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1157 | if (ref->data.strong == 0) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 1158 | binder_user_error("%d invalid dec strong, ref %d desc %d s %d w %d\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1159 | ref->proc->pid, ref->data.debug_id, |
| 1160 | ref->data.desc, ref->data.strong, |
| 1161 | ref->data.weak); |
| 1162 | return false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1163 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1164 | ref->data.strong--; |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1165 | if (ref->data.strong == 0) |
| 1166 | binder_dec_node(ref->node, strong, 1); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1167 | } else { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1168 | if (ref->data.weak == 0) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 1169 | binder_user_error("%d invalid dec weak, ref %d desc %d s %d w %d\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1170 | ref->proc->pid, ref->data.debug_id, |
| 1171 | ref->data.desc, ref->data.strong, |
| 1172 | ref->data.weak); |
| 1173 | return false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1174 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1175 | ref->data.weak--; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1176 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1177 | if (ref->data.strong == 0 && ref->data.weak == 0) { |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1178 | binder_cleanup_ref_olocked(ref); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1179 | return true; |
| 1180 | } |
| 1181 | return false; |
| 1182 | } |
| 1183 | |
| 1184 | /** |
| 1185 | * binder_get_node_from_ref() - get the node from the given proc/desc |
| 1186 | * @proc: proc containing the ref |
| 1187 | * @desc: the handle associated with the ref |
| 1188 | * @need_strong_ref: if true, only return node if ref is strong |
| 1189 | * @rdata: the id/refcount data for the ref |
| 1190 | * |
| 1191 | * Given a proc and ref handle, return the associated binder_node |
| 1192 | * |
| 1193 | * Return: a binder_node or NULL if not found or not strong when strong required |
| 1194 | */ |
| 1195 | static struct binder_node *binder_get_node_from_ref( |
| 1196 | struct binder_proc *proc, |
| 1197 | u32 desc, bool need_strong_ref, |
| 1198 | struct binder_ref_data *rdata) |
| 1199 | { |
| 1200 | struct binder_node *node; |
| 1201 | struct binder_ref *ref; |
| 1202 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1203 | binder_proc_lock(proc); |
| 1204 | ref = binder_get_ref_olocked(proc, desc, need_strong_ref); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1205 | if (!ref) |
| 1206 | goto err_no_ref; |
| 1207 | node = ref->node; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 1208 | /* |
| 1209 | * Take an implicit reference on the node to ensure |
| 1210 | * it stays alive until the call to binder_put_node() |
| 1211 | */ |
| 1212 | binder_inc_node_tmpref(node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1213 | if (rdata) |
| 1214 | *rdata = ref->data; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1215 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1216 | |
| 1217 | return node; |
| 1218 | |
| 1219 | err_no_ref: |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1220 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1221 | return NULL; |
| 1222 | } |
| 1223 | |
| 1224 | /** |
| 1225 | * binder_free_ref() - free the binder_ref |
| 1226 | * @ref: ref to free |
| 1227 | * |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1228 | * Free the binder_ref. Free the binder_node indicated by ref->node |
| 1229 | * (if non-NULL) and the binder_ref_death indicated by ref->death. |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1230 | */ |
| 1231 | static void binder_free_ref(struct binder_ref *ref) |
| 1232 | { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 1233 | if (ref->node) |
| 1234 | binder_free_node(ref->node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1235 | kfree(ref->death); |
| 1236 | kfree(ref); |
| 1237 | } |
| 1238 | |
| 1239 | /** |
| 1240 | * binder_update_ref_for_handle() - inc/dec the ref for given handle |
| 1241 | * @proc: proc containing the ref |
| 1242 | * @desc: the handle associated with the ref |
| 1243 | * @increment: true=inc reference, false=dec reference |
| 1244 | * @strong: true=strong reference, false=weak reference |
| 1245 | * @rdata: the id/refcount data for the ref |
| 1246 | * |
| 1247 | * Given a proc and ref handle, increment or decrement the ref |
| 1248 | * according to "increment" arg. |
| 1249 | * |
| 1250 | * Return: 0 if successful, else errno |
| 1251 | */ |
| 1252 | static int binder_update_ref_for_handle(struct binder_proc *proc, |
| 1253 | uint32_t desc, bool increment, bool strong, |
| 1254 | struct binder_ref_data *rdata) |
| 1255 | { |
| 1256 | int ret = 0; |
| 1257 | struct binder_ref *ref; |
| 1258 | bool delete_ref = false; |
| 1259 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1260 | binder_proc_lock(proc); |
| 1261 | ref = binder_get_ref_olocked(proc, desc, strong); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1262 | if (!ref) { |
| 1263 | ret = -EINVAL; |
| 1264 | goto err_no_ref; |
| 1265 | } |
| 1266 | if (increment) |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1267 | ret = binder_inc_ref_olocked(ref, strong, NULL); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1268 | else |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1269 | delete_ref = binder_dec_ref_olocked(ref, strong); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1270 | |
| 1271 | if (rdata) |
| 1272 | *rdata = ref->data; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1273 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1274 | |
| 1275 | if (delete_ref) |
| 1276 | binder_free_ref(ref); |
| 1277 | return ret; |
| 1278 | |
| 1279 | err_no_ref: |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1280 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1281 | return ret; |
| 1282 | } |
| 1283 | |
| 1284 | /** |
| 1285 | * binder_dec_ref_for_handle() - dec the ref for given handle |
| 1286 | * @proc: proc containing the ref |
| 1287 | * @desc: the handle associated with the ref |
| 1288 | * @strong: true=strong reference, false=weak reference |
| 1289 | * @rdata: the id/refcount data for the ref |
| 1290 | * |
| 1291 | * Just calls binder_update_ref_for_handle() to decrement the ref. |
| 1292 | * |
| 1293 | * Return: 0 if successful, else errno |
| 1294 | */ |
| 1295 | static int binder_dec_ref_for_handle(struct binder_proc *proc, |
| 1296 | uint32_t desc, bool strong, struct binder_ref_data *rdata) |
| 1297 | { |
| 1298 | return binder_update_ref_for_handle(proc, desc, false, strong, rdata); |
| 1299 | } |
| 1300 | |
| 1301 | |
| 1302 | /** |
| 1303 | * binder_inc_ref_for_node() - increment the ref for given proc/node |
| 1304 | * @proc: proc containing the ref |
| 1305 | * @node: target node |
| 1306 | * @strong: true=strong reference, false=weak reference |
| 1307 | * @target_list: worklist to use if node is incremented |
| 1308 | * @rdata: the id/refcount data for the ref |
| 1309 | * |
| 1310 | * Given a proc and node, increment the ref. Create the ref if it |
| 1311 | * doesn't already exist |
| 1312 | * |
| 1313 | * Return: 0 if successful, else errno |
| 1314 | */ |
| 1315 | static int binder_inc_ref_for_node(struct binder_proc *proc, |
| 1316 | struct binder_node *node, |
| 1317 | bool strong, |
| 1318 | struct list_head *target_list, |
| 1319 | struct binder_ref_data *rdata) |
| 1320 | { |
| 1321 | struct binder_ref *ref; |
| 1322 | struct binder_ref *new_ref = NULL; |
| 1323 | int ret = 0; |
| 1324 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1325 | binder_proc_lock(proc); |
| 1326 | ref = binder_get_ref_for_node_olocked(proc, node, NULL); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1327 | if (!ref) { |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1328 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1329 | new_ref = kzalloc(sizeof(*ref), GFP_KERNEL); |
| 1330 | if (!new_ref) |
| 1331 | return -ENOMEM; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1332 | binder_proc_lock(proc); |
| 1333 | ref = binder_get_ref_for_node_olocked(proc, node, new_ref); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1334 | } |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1335 | ret = binder_inc_ref_olocked(ref, strong, target_list); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1336 | *rdata = ref->data; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 1337 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1338 | if (new_ref && ref != new_ref) |
| 1339 | /* |
| 1340 | * Another thread created the ref first so |
| 1341 | * free the one we allocated |
| 1342 | */ |
| 1343 | kfree(new_ref); |
| 1344 | return ret; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1345 | } |
| 1346 | |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1347 | static void binder_pop_transaction_ilocked(struct binder_thread *target_thread, |
| 1348 | struct binder_transaction *t) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1349 | { |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 1350 | BUG_ON(!target_thread); |
Martijn Coenen | 858b271 | 2017-08-31 10:04:26 +0200 | [diff] [blame] | 1351 | assert_spin_locked(&target_thread->proc->inner_lock); |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 1352 | BUG_ON(target_thread->transaction_stack != t); |
| 1353 | BUG_ON(target_thread->transaction_stack->from != target_thread); |
| 1354 | target_thread->transaction_stack = |
| 1355 | target_thread->transaction_stack->from_parent; |
| 1356 | t->from = NULL; |
| 1357 | } |
| 1358 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1359 | /** |
| 1360 | * binder_thread_dec_tmpref() - decrement thread->tmp_ref |
| 1361 | * @thread: thread to decrement |
| 1362 | * |
| 1363 | * A thread needs to be kept alive while being used to create or |
| 1364 | * handle a transaction. binder_get_txn_from() is used to safely |
| 1365 | * extract t->from from a binder_transaction and keep the thread |
| 1366 | * indicated by t->from from being freed. When done with that |
| 1367 | * binder_thread, this function is called to decrement the |
| 1368 | * tmp_ref and free if appropriate (thread has been released |
| 1369 | * and no transaction being processed by the driver) |
| 1370 | */ |
| 1371 | static void binder_thread_dec_tmpref(struct binder_thread *thread) |
| 1372 | { |
| 1373 | /* |
| 1374 | * atomic is used to protect the counter value while |
| 1375 | * it cannot reach zero or thread->is_dead is false |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1376 | */ |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1377 | binder_inner_proc_lock(thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1378 | atomic_dec(&thread->tmp_ref); |
| 1379 | if (thread->is_dead && !atomic_read(&thread->tmp_ref)) { |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1380 | binder_inner_proc_unlock(thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1381 | binder_free_thread(thread); |
| 1382 | return; |
| 1383 | } |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1384 | binder_inner_proc_unlock(thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1385 | } |
| 1386 | |
| 1387 | /** |
| 1388 | * binder_proc_dec_tmpref() - decrement proc->tmp_ref |
| 1389 | * @proc: proc to decrement |
| 1390 | * |
| 1391 | * A binder_proc needs to be kept alive while being used to create or |
| 1392 | * handle a transaction. proc->tmp_ref is incremented when |
| 1393 | * creating a new transaction or the binder_proc is currently in-use |
| 1394 | * by threads that are being released. When done with the binder_proc, |
| 1395 | * this function is called to decrement the counter and free the |
| 1396 | * proc if appropriate (proc has been released, all threads have |
| 1397 | * been released and not currenly in-use to process a transaction). |
| 1398 | */ |
| 1399 | static void binder_proc_dec_tmpref(struct binder_proc *proc) |
| 1400 | { |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1401 | binder_inner_proc_lock(proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1402 | proc->tmp_ref--; |
| 1403 | if (proc->is_dead && RB_EMPTY_ROOT(&proc->threads) && |
| 1404 | !proc->tmp_ref) { |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1405 | binder_inner_proc_unlock(proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1406 | binder_free_proc(proc); |
| 1407 | return; |
| 1408 | } |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 1409 | binder_inner_proc_unlock(proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1410 | } |
| 1411 | |
| 1412 | /** |
| 1413 | * binder_get_txn_from() - safely extract the "from" thread in transaction |
| 1414 | * @t: binder transaction for t->from |
| 1415 | * |
| 1416 | * Atomically return the "from" thread and increment the tmp_ref |
| 1417 | * count for the thread to ensure it stays alive until |
| 1418 | * binder_thread_dec_tmpref() is called. |
| 1419 | * |
| 1420 | * Return: the value of t->from |
| 1421 | */ |
| 1422 | static struct binder_thread *binder_get_txn_from( |
| 1423 | struct binder_transaction *t) |
| 1424 | { |
| 1425 | struct binder_thread *from; |
| 1426 | |
| 1427 | spin_lock(&t->lock); |
| 1428 | from = t->from; |
| 1429 | if (from) |
| 1430 | atomic_inc(&from->tmp_ref); |
| 1431 | spin_unlock(&t->lock); |
| 1432 | return from; |
| 1433 | } |
| 1434 | |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1435 | /** |
| 1436 | * binder_get_txn_from_and_acq_inner() - get t->from and acquire inner lock |
| 1437 | * @t: binder transaction for t->from |
| 1438 | * |
| 1439 | * Same as binder_get_txn_from() except it also acquires the proc->inner_lock |
| 1440 | * to guarantee that the thread cannot be released while operating on it. |
| 1441 | * The caller must call binder_inner_proc_unlock() to release the inner lock |
| 1442 | * as well as call binder_dec_thread_txn() to release the reference. |
| 1443 | * |
| 1444 | * Return: the value of t->from |
| 1445 | */ |
| 1446 | static struct binder_thread *binder_get_txn_from_and_acq_inner( |
| 1447 | struct binder_transaction *t) |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 1448 | __acquires(&t->from->proc->inner_lock) |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1449 | { |
| 1450 | struct binder_thread *from; |
| 1451 | |
| 1452 | from = binder_get_txn_from(t); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 1453 | if (!from) { |
| 1454 | __acquire(&from->proc->inner_lock); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1455 | return NULL; |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 1456 | } |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1457 | binder_inner_proc_lock(from->proc); |
| 1458 | if (t->from) { |
| 1459 | BUG_ON(from != t->from); |
| 1460 | return from; |
| 1461 | } |
| 1462 | binder_inner_proc_unlock(from->proc); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 1463 | __acquire(&from->proc->inner_lock); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1464 | binder_thread_dec_tmpref(from); |
| 1465 | return NULL; |
| 1466 | } |
| 1467 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 1468 | /** |
| 1469 | * binder_free_txn_fixups() - free unprocessed fd fixups |
| 1470 | * @t: binder transaction for t->from |
| 1471 | * |
| 1472 | * If the transaction is being torn down prior to being |
| 1473 | * processed by the target process, free all of the |
| 1474 | * fd fixups and fput the file structs. It is safe to |
| 1475 | * call this function after the fixups have been |
| 1476 | * processed -- in that case, the list will be empty. |
| 1477 | */ |
| 1478 | static void binder_free_txn_fixups(struct binder_transaction *t) |
| 1479 | { |
| 1480 | struct binder_txn_fd_fixup *fixup, *tmp; |
| 1481 | |
| 1482 | list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) { |
| 1483 | fput(fixup->file); |
| 1484 | list_del(&fixup->fixup_entry); |
| 1485 | kfree(fixup); |
| 1486 | } |
| 1487 | } |
| 1488 | |
Frankie.Chang | 1987f112 | 2020-11-11 11:02:43 +0800 | [diff] [blame] | 1489 | static void binder_txn_latency_free(struct binder_transaction *t) |
| 1490 | { |
| 1491 | int from_proc, from_thread, to_proc, to_thread; |
| 1492 | |
| 1493 | spin_lock(&t->lock); |
| 1494 | from_proc = t->from ? t->from->proc->pid : 0; |
| 1495 | from_thread = t->from ? t->from->pid : 0; |
| 1496 | to_proc = t->to_proc ? t->to_proc->pid : 0; |
| 1497 | to_thread = t->to_thread ? t->to_thread->pid : 0; |
| 1498 | spin_unlock(&t->lock); |
| 1499 | |
| 1500 | trace_binder_txn_latency_free(t, from_proc, from_thread, to_proc, to_thread); |
| 1501 | } |
| 1502 | |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 1503 | static void binder_free_transaction(struct binder_transaction *t) |
| 1504 | { |
Todd Kjos | a370003 | 2019-06-12 13:29:27 -0700 | [diff] [blame] | 1505 | struct binder_proc *target_proc = t->to_proc; |
| 1506 | |
| 1507 | if (target_proc) { |
| 1508 | binder_inner_proc_lock(target_proc); |
| 1509 | if (t->buffer) |
| 1510 | t->buffer->transaction = NULL; |
| 1511 | binder_inner_proc_unlock(target_proc); |
| 1512 | } |
Frankie.Chang | 1987f112 | 2020-11-11 11:02:43 +0800 | [diff] [blame] | 1513 | if (trace_binder_txn_latency_free_enabled()) |
| 1514 | binder_txn_latency_free(t); |
Todd Kjos | a370003 | 2019-06-12 13:29:27 -0700 | [diff] [blame] | 1515 | /* |
| 1516 | * If the transaction has no target_proc, then |
| 1517 | * t->buffer->transaction has already been cleared. |
| 1518 | */ |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 1519 | binder_free_txn_fixups(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1520 | kfree(t); |
| 1521 | binder_stats_deleted(BINDER_STAT_TRANSACTION); |
| 1522 | } |
| 1523 | |
| 1524 | static void binder_send_failed_reply(struct binder_transaction *t, |
| 1525 | uint32_t error_code) |
| 1526 | { |
| 1527 | struct binder_thread *target_thread; |
Lucas Tanure | d4ec15e | 2014-07-13 21:31:05 -0300 | [diff] [blame] | 1528 | struct binder_transaction *next; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 1529 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1530 | BUG_ON(t->flags & TF_ONE_WAY); |
| 1531 | while (1) { |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1532 | target_thread = binder_get_txn_from_and_acq_inner(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1533 | if (target_thread) { |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 1534 | binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, |
| 1535 | "send failed reply for transaction %d to %d:%d\n", |
| 1536 | t->debug_id, |
| 1537 | target_thread->proc->pid, |
| 1538 | target_thread->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1539 | |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1540 | binder_pop_transaction_ilocked(target_thread, t); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 1541 | if (target_thread->reply_error.cmd == BR_OK) { |
| 1542 | target_thread->reply_error.cmd = error_code; |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 1543 | binder_enqueue_thread_work_ilocked( |
| 1544 | target_thread, |
| 1545 | &target_thread->reply_error.work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1546 | wake_up_interruptible(&target_thread->wait); |
| 1547 | } else { |
Todd Kjos | e46a3b3 | 2018-02-07 12:38:47 -0800 | [diff] [blame] | 1548 | /* |
| 1549 | * Cannot get here for normal operation, but |
| 1550 | * we can if multiple synchronous transactions |
| 1551 | * are sent without blocking for responses. |
| 1552 | * Just ignore the 2nd error in this case. |
| 1553 | */ |
| 1554 | pr_warn("Unexpected reply error: %u\n", |
| 1555 | target_thread->reply_error.cmd); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1556 | } |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 1557 | binder_inner_proc_unlock(target_thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 1558 | binder_thread_dec_tmpref(target_thread); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 1559 | binder_free_transaction(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1560 | return; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1561 | } |
Mrinal Pandey | 72b93c7 | 2020-07-24 18:43:48 +0530 | [diff] [blame] | 1562 | __release(&target_thread->proc->inner_lock); |
Lucas Tanure | d4ec15e | 2014-07-13 21:31:05 -0300 | [diff] [blame] | 1563 | next = t->from_parent; |
| 1564 | |
| 1565 | binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, |
| 1566 | "send failed reply for transaction %d, target dead\n", |
| 1567 | t->debug_id); |
| 1568 | |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 1569 | binder_free_transaction(t); |
Lucas Tanure | d4ec15e | 2014-07-13 21:31:05 -0300 | [diff] [blame] | 1570 | if (next == NULL) { |
| 1571 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
| 1572 | "reply failed, no target thread at root\n"); |
| 1573 | return; |
| 1574 | } |
| 1575 | t = next; |
| 1576 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
| 1577 | "reply failed, no target thread -- retry %d\n", |
| 1578 | t->debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1579 | } |
| 1580 | } |
| 1581 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1582 | /** |
Martijn Coenen | fb2c445 | 2017-11-13 10:06:08 +0100 | [diff] [blame] | 1583 | * binder_cleanup_transaction() - cleans up undelivered transaction |
| 1584 | * @t: transaction that needs to be cleaned up |
| 1585 | * @reason: reason the transaction wasn't delivered |
| 1586 | * @error_code: error to return to caller (if synchronous call) |
| 1587 | */ |
| 1588 | static void binder_cleanup_transaction(struct binder_transaction *t, |
| 1589 | const char *reason, |
| 1590 | uint32_t error_code) |
| 1591 | { |
| 1592 | if (t->buffer->target_node && !(t->flags & TF_ONE_WAY)) { |
| 1593 | binder_send_failed_reply(t, error_code); |
| 1594 | } else { |
| 1595 | binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, |
| 1596 | "undelivered transaction %d, %s\n", |
| 1597 | t->debug_id, reason); |
| 1598 | binder_free_transaction(t); |
| 1599 | } |
| 1600 | } |
| 1601 | |
| 1602 | /** |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1603 | * binder_get_object() - gets object and checks for valid metadata |
| 1604 | * @proc: binder_proc owning the buffer |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1605 | * @buffer: binder_buffer that we're parsing. |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1606 | * @offset: offset in the @buffer at which to validate an object. |
| 1607 | * @object: struct binder_object to read into |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1608 | * |
| 1609 | * Return: If there's a valid metadata object at @offset in @buffer, the |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1610 | * size of that object. Otherwise, it returns zero. The object |
| 1611 | * is read into the struct binder_object pointed to by @object. |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1612 | */ |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1613 | static size_t binder_get_object(struct binder_proc *proc, |
| 1614 | struct binder_buffer *buffer, |
| 1615 | unsigned long offset, |
| 1616 | struct binder_object *object) |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1617 | { |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1618 | size_t read_size; |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1619 | struct binder_object_header *hdr; |
| 1620 | size_t object_size = 0; |
| 1621 | |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1622 | read_size = min_t(size_t, sizeof(*object), buffer->data_size - offset); |
Todd Kjos | 5997da8 | 2019-03-20 15:35:45 -0700 | [diff] [blame] | 1623 | if (offset > buffer->data_size || read_size < sizeof(*hdr) || |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 1624 | binder_alloc_copy_from_buffer(&proc->alloc, object, buffer, |
| 1625 | offset, read_size)) |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1626 | return 0; |
| 1627 | |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1628 | /* Ok, now see if we read a complete object. */ |
| 1629 | hdr = &object->hdr; |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1630 | switch (hdr->type) { |
| 1631 | case BINDER_TYPE_BINDER: |
| 1632 | case BINDER_TYPE_WEAK_BINDER: |
| 1633 | case BINDER_TYPE_HANDLE: |
| 1634 | case BINDER_TYPE_WEAK_HANDLE: |
| 1635 | object_size = sizeof(struct flat_binder_object); |
| 1636 | break; |
| 1637 | case BINDER_TYPE_FD: |
| 1638 | object_size = sizeof(struct binder_fd_object); |
| 1639 | break; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1640 | case BINDER_TYPE_PTR: |
| 1641 | object_size = sizeof(struct binder_buffer_object); |
| 1642 | break; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1643 | case BINDER_TYPE_FDA: |
| 1644 | object_size = sizeof(struct binder_fd_array_object); |
| 1645 | break; |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1646 | default: |
| 1647 | return 0; |
| 1648 | } |
| 1649 | if (offset <= buffer->data_size - object_size && |
| 1650 | buffer->data_size >= object_size) |
| 1651 | return object_size; |
| 1652 | else |
| 1653 | return 0; |
| 1654 | } |
| 1655 | |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1656 | /** |
| 1657 | * binder_validate_ptr() - validates binder_buffer_object in a binder_buffer. |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1658 | * @proc: binder_proc owning the buffer |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1659 | * @b: binder_buffer containing the object |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1660 | * @object: struct binder_object to read into |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1661 | * @index: index in offset array at which the binder_buffer_object is |
| 1662 | * located |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1663 | * @start_offset: points to the start of the offset array |
| 1664 | * @object_offsetp: offset of @object read from @b |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1665 | * @num_valid: the number of valid offsets in the offset array |
| 1666 | * |
| 1667 | * Return: If @index is within the valid range of the offset array |
| 1668 | * described by @start and @num_valid, and if there's a valid |
| 1669 | * binder_buffer_object at the offset found in index @index |
| 1670 | * of the offset array, that object is returned. Otherwise, |
| 1671 | * %NULL is returned. |
| 1672 | * Note that the offset found in index @index itself is not |
| 1673 | * verified; this function assumes that @num_valid elements |
| 1674 | * from @start were previously verified to have valid offsets. |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1675 | * If @object_offsetp is non-NULL, then the offset within |
| 1676 | * @b is written to it. |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1677 | */ |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1678 | static struct binder_buffer_object *binder_validate_ptr( |
| 1679 | struct binder_proc *proc, |
| 1680 | struct binder_buffer *b, |
| 1681 | struct binder_object *object, |
| 1682 | binder_size_t index, |
| 1683 | binder_size_t start_offset, |
| 1684 | binder_size_t *object_offsetp, |
| 1685 | binder_size_t num_valid) |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1686 | { |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1687 | size_t object_size; |
| 1688 | binder_size_t object_offset; |
| 1689 | unsigned long buffer_offset; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1690 | |
| 1691 | if (index >= num_valid) |
| 1692 | return NULL; |
| 1693 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1694 | buffer_offset = start_offset + sizeof(binder_size_t) * index; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 1695 | if (binder_alloc_copy_from_buffer(&proc->alloc, &object_offset, |
| 1696 | b, buffer_offset, |
| 1697 | sizeof(object_offset))) |
| 1698 | return NULL; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1699 | object_size = binder_get_object(proc, b, object_offset, object); |
| 1700 | if (!object_size || object->hdr.type != BINDER_TYPE_PTR) |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1701 | return NULL; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1702 | if (object_offsetp) |
| 1703 | *object_offsetp = object_offset; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1704 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1705 | return &object->bbo; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1706 | } |
| 1707 | |
| 1708 | /** |
| 1709 | * binder_validate_fixup() - validates pointer/fd fixups happen in order. |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1710 | * @proc: binder_proc owning the buffer |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1711 | * @b: transaction buffer |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1712 | * @objects_start_offset: offset to start of objects buffer |
| 1713 | * @buffer_obj_offset: offset to binder_buffer_object in which to fix up |
| 1714 | * @fixup_offset: start offset in @buffer to fix up |
| 1715 | * @last_obj_offset: offset to last binder_buffer_object that we fixed |
| 1716 | * @last_min_offset: minimum fixup offset in object at @last_obj_offset |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1717 | * |
| 1718 | * Return: %true if a fixup in buffer @buffer at offset @offset is |
| 1719 | * allowed. |
| 1720 | * |
| 1721 | * For safety reasons, we only allow fixups inside a buffer to happen |
| 1722 | * at increasing offsets; additionally, we only allow fixup on the last |
| 1723 | * buffer object that was verified, or one of its parents. |
| 1724 | * |
| 1725 | * Example of what is allowed: |
| 1726 | * |
| 1727 | * A |
| 1728 | * B (parent = A, offset = 0) |
| 1729 | * C (parent = A, offset = 16) |
| 1730 | * D (parent = C, offset = 0) |
| 1731 | * E (parent = A, offset = 32) // min_offset is 16 (C.parent_offset) |
| 1732 | * |
| 1733 | * Examples of what is not allowed: |
| 1734 | * |
| 1735 | * Decreasing offsets within the same parent: |
| 1736 | * A |
| 1737 | * C (parent = A, offset = 16) |
| 1738 | * B (parent = A, offset = 0) // decreasing offset within A |
| 1739 | * |
| 1740 | * Referring to a parent that wasn't the last object or any of its parents: |
| 1741 | * A |
| 1742 | * B (parent = A, offset = 0) |
| 1743 | * C (parent = A, offset = 0) |
| 1744 | * C (parent = A, offset = 16) |
| 1745 | * D (parent = B, offset = 0) // B is not A or any of A's parents |
| 1746 | */ |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1747 | static bool binder_validate_fixup(struct binder_proc *proc, |
| 1748 | struct binder_buffer *b, |
| 1749 | binder_size_t objects_start_offset, |
| 1750 | binder_size_t buffer_obj_offset, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1751 | binder_size_t fixup_offset, |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1752 | binder_size_t last_obj_offset, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1753 | binder_size_t last_min_offset) |
| 1754 | { |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1755 | if (!last_obj_offset) { |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1756 | /* Nothing to fix up in */ |
| 1757 | return false; |
| 1758 | } |
| 1759 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1760 | while (last_obj_offset != buffer_obj_offset) { |
| 1761 | unsigned long buffer_offset; |
| 1762 | struct binder_object last_object; |
| 1763 | struct binder_buffer_object *last_bbo; |
| 1764 | size_t object_size = binder_get_object(proc, b, last_obj_offset, |
| 1765 | &last_object); |
| 1766 | if (object_size != sizeof(*last_bbo)) |
| 1767 | return false; |
| 1768 | |
| 1769 | last_bbo = &last_object.bbo; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1770 | /* |
| 1771 | * Safe to retrieve the parent of last_obj, since it |
| 1772 | * was already previously verified by the driver. |
| 1773 | */ |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1774 | if ((last_bbo->flags & BINDER_BUFFER_FLAG_HAS_PARENT) == 0) |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1775 | return false; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1776 | last_min_offset = last_bbo->parent_offset + sizeof(uintptr_t); |
| 1777 | buffer_offset = objects_start_offset + |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 1778 | sizeof(binder_size_t) * last_bbo->parent; |
| 1779 | if (binder_alloc_copy_from_buffer(&proc->alloc, |
| 1780 | &last_obj_offset, |
| 1781 | b, buffer_offset, |
| 1782 | sizeof(last_obj_offset))) |
| 1783 | return false; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1784 | } |
| 1785 | return (fixup_offset >= last_min_offset); |
| 1786 | } |
| 1787 | |
Todd Kjos | 80cd795 | 2018-12-14 15:58:21 -0800 | [diff] [blame] | 1788 | /** |
| 1789 | * struct binder_task_work_cb - for deferred close |
| 1790 | * |
| 1791 | * @twork: callback_head for task work |
| 1792 | * @fd: fd to close |
| 1793 | * |
| 1794 | * Structure to pass task work to be handled after |
| 1795 | * returning from binder_ioctl() via task_work_add(). |
| 1796 | */ |
| 1797 | struct binder_task_work_cb { |
| 1798 | struct callback_head twork; |
| 1799 | struct file *file; |
| 1800 | }; |
| 1801 | |
| 1802 | /** |
| 1803 | * binder_do_fd_close() - close list of file descriptors |
| 1804 | * @twork: callback head for task work |
| 1805 | * |
| 1806 | * It is not safe to call ksys_close() during the binder_ioctl() |
| 1807 | * function if there is a chance that binder's own file descriptor |
| 1808 | * might be closed. This is to meet the requirements for using |
| 1809 | * fdget() (see comments for __fget_light()). Therefore use |
| 1810 | * task_work_add() to schedule the close operation once we have |
| 1811 | * returned from binder_ioctl(). This function is a callback |
| 1812 | * for that mechanism and does the actual ksys_close() on the |
| 1813 | * given file descriptor. |
| 1814 | */ |
| 1815 | static void binder_do_fd_close(struct callback_head *twork) |
| 1816 | { |
| 1817 | struct binder_task_work_cb *twcb = container_of(twork, |
| 1818 | struct binder_task_work_cb, twork); |
| 1819 | |
| 1820 | fput(twcb->file); |
| 1821 | kfree(twcb); |
| 1822 | } |
| 1823 | |
| 1824 | /** |
| 1825 | * binder_deferred_fd_close() - schedule a close for the given file-descriptor |
| 1826 | * @fd: file-descriptor to close |
| 1827 | * |
| 1828 | * See comments in binder_do_fd_close(). This function is used to schedule |
| 1829 | * a file-descriptor to be closed after returning from binder_ioctl(). |
| 1830 | */ |
| 1831 | static void binder_deferred_fd_close(int fd) |
| 1832 | { |
| 1833 | struct binder_task_work_cb *twcb; |
| 1834 | |
| 1835 | twcb = kzalloc(sizeof(*twcb), GFP_KERNEL); |
| 1836 | if (!twcb) |
| 1837 | return; |
| 1838 | init_task_work(&twcb->twork, binder_do_fd_close); |
Eric W. Biederman | 9fe83c4 | 2020-11-20 17:14:40 -0600 | [diff] [blame] | 1839 | close_fd_get_file(fd, &twcb->file); |
Jens Axboe | 6e802a4 | 2019-12-11 14:10:35 -0700 | [diff] [blame] | 1840 | if (twcb->file) { |
| 1841 | filp_close(twcb->file, current->files); |
Jens Axboe | 91989c7 | 2020-10-16 09:02:26 -0600 | [diff] [blame] | 1842 | task_work_add(current, &twcb->twork, TWA_RESUME); |
Jens Axboe | 6e802a4 | 2019-12-11 14:10:35 -0700 | [diff] [blame] | 1843 | } else { |
Todd Kjos | 80cd795 | 2018-12-14 15:58:21 -0800 | [diff] [blame] | 1844 | kfree(twcb); |
Jens Axboe | 6e802a4 | 2019-12-11 14:10:35 -0700 | [diff] [blame] | 1845 | } |
Todd Kjos | 80cd795 | 2018-12-14 15:58:21 -0800 | [diff] [blame] | 1846 | } |
| 1847 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1848 | static void binder_transaction_buffer_release(struct binder_proc *proc, |
| 1849 | struct binder_buffer *buffer, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1850 | binder_size_t failed_at, |
| 1851 | bool is_failure) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1852 | { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1853 | int debug_id = buffer->debug_id; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1854 | binder_size_t off_start_offset, buffer_offset, off_end_offset; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1855 | |
| 1856 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1857 | "%d buffer release %d, size %zd-%zd, failed at %llx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1858 | proc->pid, buffer->debug_id, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1859 | buffer->data_size, buffer->offsets_size, |
| 1860 | (unsigned long long)failed_at); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1861 | |
| 1862 | if (buffer->target_node) |
| 1863 | binder_dec_node(buffer->target_node, 1, 0); |
| 1864 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1865 | off_start_offset = ALIGN(buffer->data_size, sizeof(void *)); |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1866 | off_end_offset = is_failure ? failed_at : |
| 1867 | off_start_offset + buffer->offsets_size; |
| 1868 | for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; |
| 1869 | buffer_offset += sizeof(binder_size_t)) { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1870 | struct binder_object_header *hdr; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 1871 | size_t object_size = 0; |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1872 | struct binder_object object; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 1873 | binder_size_t object_offset; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 1874 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 1875 | if (!binder_alloc_copy_from_buffer(&proc->alloc, &object_offset, |
| 1876 | buffer, buffer_offset, |
| 1877 | sizeof(object_offset))) |
| 1878 | object_size = binder_get_object(proc, buffer, |
| 1879 | object_offset, &object); |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1880 | if (object_size == 0) { |
| 1881 | pr_err("transaction release %d bad object at offset %lld, size %zd\n", |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 1882 | debug_id, (u64)object_offset, buffer->data_size); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1883 | continue; |
| 1884 | } |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 1885 | hdr = &object.hdr; |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1886 | switch (hdr->type) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1887 | case BINDER_TYPE_BINDER: |
| 1888 | case BINDER_TYPE_WEAK_BINDER: { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1889 | struct flat_binder_object *fp; |
| 1890 | struct binder_node *node; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 1891 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1892 | fp = to_flat_binder_object(hdr); |
| 1893 | node = binder_get_node(proc, fp->binder); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1894 | if (node == NULL) { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 1895 | pr_err("transaction release %d bad node %016llx\n", |
| 1896 | debug_id, (u64)fp->binder); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1897 | break; |
| 1898 | } |
| 1899 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 1900 | " node %d u%016llx\n", |
| 1901 | node->debug_id, (u64)node->ptr); |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1902 | binder_dec_node(node, hdr->type == BINDER_TYPE_BINDER, |
| 1903 | 0); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 1904 | binder_put_node(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1905 | } break; |
| 1906 | case BINDER_TYPE_HANDLE: |
| 1907 | case BINDER_TYPE_WEAK_HANDLE: { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1908 | struct flat_binder_object *fp; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1909 | struct binder_ref_data rdata; |
| 1910 | int ret; |
Arve Hjønnevåg | 0a3ffab | 2016-10-24 15:20:29 +0200 | [diff] [blame] | 1911 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1912 | fp = to_flat_binder_object(hdr); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1913 | ret = binder_dec_ref_for_handle(proc, fp->handle, |
| 1914 | hdr->type == BINDER_TYPE_HANDLE, &rdata); |
| 1915 | |
| 1916 | if (ret) { |
| 1917 | pr_err("transaction release %d bad handle %d, ret = %d\n", |
| 1918 | debug_id, fp->handle, ret); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1919 | break; |
| 1920 | } |
| 1921 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 1922 | " ref %d desc %d\n", |
| 1923 | rdata.debug_id, rdata.desc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 1924 | } break; |
| 1925 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1926 | case BINDER_TYPE_FD: { |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 1927 | /* |
| 1928 | * No need to close the file here since user-space |
| 1929 | * closes it for for successfully delivered |
| 1930 | * transactions. For transactions that weren't |
| 1931 | * delivered, the new fd was never allocated so |
| 1932 | * there is no need to close and the fput on the |
| 1933 | * file is done when the transaction is torn |
| 1934 | * down. |
| 1935 | */ |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 1936 | } break; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 1937 | case BINDER_TYPE_PTR: |
| 1938 | /* |
| 1939 | * Nothing to do here, this will get cleaned up when the |
| 1940 | * transaction buffer gets freed |
| 1941 | */ |
| 1942 | break; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1943 | case BINDER_TYPE_FDA: { |
| 1944 | struct binder_fd_array_object *fda; |
| 1945 | struct binder_buffer_object *parent; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1946 | struct binder_object ptr_object; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1947 | binder_size_t fda_offset; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1948 | size_t fd_index; |
| 1949 | binder_size_t fd_buf_size; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1950 | binder_size_t num_valid; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1951 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 1952 | if (proc->tsk != current->group_leader) { |
| 1953 | /* |
| 1954 | * Nothing to do if running in sender context |
| 1955 | * The fd fixups have not been applied so no |
| 1956 | * fds need to be closed. |
| 1957 | */ |
| 1958 | continue; |
| 1959 | } |
| 1960 | |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1961 | num_valid = (buffer_offset - off_start_offset) / |
| 1962 | sizeof(binder_size_t); |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1963 | fda = to_binder_fd_array_object(hdr); |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 1964 | parent = binder_validate_ptr(proc, buffer, &ptr_object, |
| 1965 | fda->parent, |
| 1966 | off_start_offset, |
| 1967 | NULL, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1968 | num_valid); |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1969 | if (!parent) { |
Arvind Yadav | f7f84fd | 2017-09-25 12:52:11 +0530 | [diff] [blame] | 1970 | pr_err("transaction release %d bad parent offset\n", |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1971 | debug_id); |
| 1972 | continue; |
| 1973 | } |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 1974 | fd_buf_size = sizeof(u32) * fda->num_fds; |
| 1975 | if (fda->num_fds >= SIZE_MAX / sizeof(u32)) { |
| 1976 | pr_err("transaction release %d invalid number of fds (%lld)\n", |
| 1977 | debug_id, (u64)fda->num_fds); |
| 1978 | continue; |
| 1979 | } |
| 1980 | if (fd_buf_size > parent->length || |
| 1981 | fda->parent_offset > parent->length - fd_buf_size) { |
| 1982 | /* No space for all file descriptors here. */ |
| 1983 | pr_err("transaction release %d not enough space for %lld fds in buffer\n", |
| 1984 | debug_id, (u64)fda->num_fds); |
| 1985 | continue; |
| 1986 | } |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 1987 | /* |
| 1988 | * the source data for binder_buffer_object is visible |
| 1989 | * to user-space and the @buffer element is the user |
| 1990 | * pointer to the buffer_object containing the fd_array. |
| 1991 | * Convert the address to an offset relative to |
| 1992 | * the base of the transaction buffer. |
| 1993 | */ |
| 1994 | fda_offset = |
| 1995 | (parent->buffer - (uintptr_t)buffer->user_data) + |
| 1996 | fda->parent_offset; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 1997 | for (fd_index = 0; fd_index < fda->num_fds; |
| 1998 | fd_index++) { |
| 1999 | u32 fd; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2000 | int err; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2001 | binder_size_t offset = fda_offset + |
| 2002 | fd_index * sizeof(fd); |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2003 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2004 | err = binder_alloc_copy_from_buffer( |
| 2005 | &proc->alloc, &fd, buffer, |
| 2006 | offset, sizeof(fd)); |
| 2007 | WARN_ON(err); |
| 2008 | if (!err) |
| 2009 | binder_deferred_fd_close(fd); |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2010 | } |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2011 | } break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2012 | default: |
Serban Constantinescu | 64dcfe6 | 2013-07-04 10:54:48 +0100 | [diff] [blame] | 2013 | pr_err("transaction release %d bad object type %x\n", |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2014 | debug_id, hdr->type); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2015 | break; |
| 2016 | } |
| 2017 | } |
| 2018 | } |
| 2019 | |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2020 | static int binder_translate_binder(struct flat_binder_object *fp, |
| 2021 | struct binder_transaction *t, |
| 2022 | struct binder_thread *thread) |
| 2023 | { |
| 2024 | struct binder_node *node; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2025 | struct binder_proc *proc = thread->proc; |
| 2026 | struct binder_proc *target_proc = t->to_proc; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2027 | struct binder_ref_data rdata; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2028 | int ret = 0; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2029 | |
| 2030 | node = binder_get_node(proc, fp->binder); |
| 2031 | if (!node) { |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2032 | node = binder_new_node(proc, fp); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2033 | if (!node) |
| 2034 | return -ENOMEM; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2035 | } |
| 2036 | if (fp->cookie != node->cookie) { |
| 2037 | binder_user_error("%d:%d sending u%016llx node %d, cookie mismatch %016llx != %016llx\n", |
| 2038 | proc->pid, thread->pid, (u64)fp->binder, |
| 2039 | node->debug_id, (u64)fp->cookie, |
| 2040 | (u64)node->cookie); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2041 | ret = -EINVAL; |
| 2042 | goto done; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2043 | } |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2044 | if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) { |
| 2045 | ret = -EPERM; |
| 2046 | goto done; |
| 2047 | } |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2048 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2049 | ret = binder_inc_ref_for_node(target_proc, node, |
| 2050 | fp->hdr.type == BINDER_TYPE_BINDER, |
| 2051 | &thread->todo, &rdata); |
| 2052 | if (ret) |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2053 | goto done; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2054 | |
| 2055 | if (fp->hdr.type == BINDER_TYPE_BINDER) |
| 2056 | fp->hdr.type = BINDER_TYPE_HANDLE; |
| 2057 | else |
| 2058 | fp->hdr.type = BINDER_TYPE_WEAK_HANDLE; |
| 2059 | fp->binder = 0; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2060 | fp->handle = rdata.desc; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2061 | fp->cookie = 0; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2062 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2063 | trace_binder_transaction_node_to_ref(t, node, &rdata); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2064 | binder_debug(BINDER_DEBUG_TRANSACTION, |
| 2065 | " node %d u%016llx -> ref %d desc %d\n", |
| 2066 | node->debug_id, (u64)node->ptr, |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2067 | rdata.debug_id, rdata.desc); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2068 | done: |
| 2069 | binder_put_node(node); |
| 2070 | return ret; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2071 | } |
| 2072 | |
| 2073 | static int binder_translate_handle(struct flat_binder_object *fp, |
| 2074 | struct binder_transaction *t, |
| 2075 | struct binder_thread *thread) |
| 2076 | { |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2077 | struct binder_proc *proc = thread->proc; |
| 2078 | struct binder_proc *target_proc = t->to_proc; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2079 | struct binder_node *node; |
| 2080 | struct binder_ref_data src_rdata; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2081 | int ret = 0; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2082 | |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2083 | node = binder_get_node_from_ref(proc, fp->handle, |
| 2084 | fp->hdr.type == BINDER_TYPE_HANDLE, &src_rdata); |
| 2085 | if (!node) { |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2086 | binder_user_error("%d:%d got transaction with invalid handle, %d\n", |
| 2087 | proc->pid, thread->pid, fp->handle); |
| 2088 | return -EINVAL; |
| 2089 | } |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2090 | if (security_binder_transfer_binder(proc->tsk, target_proc->tsk)) { |
| 2091 | ret = -EPERM; |
| 2092 | goto done; |
| 2093 | } |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2094 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2095 | binder_node_lock(node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2096 | if (node->proc == target_proc) { |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2097 | if (fp->hdr.type == BINDER_TYPE_HANDLE) |
| 2098 | fp->hdr.type = BINDER_TYPE_BINDER; |
| 2099 | else |
| 2100 | fp->hdr.type = BINDER_TYPE_WEAK_BINDER; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2101 | fp->binder = node->ptr; |
| 2102 | fp->cookie = node->cookie; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2103 | if (node->proc) |
| 2104 | binder_inner_proc_lock(node->proc); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 2105 | else |
| 2106 | __acquire(&node->proc->inner_lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2107 | binder_inc_node_nilocked(node, |
| 2108 | fp->hdr.type == BINDER_TYPE_BINDER, |
| 2109 | 0, NULL); |
| 2110 | if (node->proc) |
| 2111 | binder_inner_proc_unlock(node->proc); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 2112 | else |
| 2113 | __release(&node->proc->inner_lock); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2114 | trace_binder_transaction_ref_to_node(t, node, &src_rdata); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2115 | binder_debug(BINDER_DEBUG_TRANSACTION, |
| 2116 | " ref %d desc %d -> node %d u%016llx\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2117 | src_rdata.debug_id, src_rdata.desc, node->debug_id, |
| 2118 | (u64)node->ptr); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2119 | binder_node_unlock(node); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2120 | } else { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2121 | struct binder_ref_data dest_rdata; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2122 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 2123 | binder_node_unlock(node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2124 | ret = binder_inc_ref_for_node(target_proc, node, |
| 2125 | fp->hdr.type == BINDER_TYPE_HANDLE, |
| 2126 | NULL, &dest_rdata); |
| 2127 | if (ret) |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2128 | goto done; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2129 | |
| 2130 | fp->binder = 0; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2131 | fp->handle = dest_rdata.desc; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2132 | fp->cookie = 0; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2133 | trace_binder_transaction_ref_to_ref(t, node, &src_rdata, |
| 2134 | &dest_rdata); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2135 | binder_debug(BINDER_DEBUG_TRANSACTION, |
| 2136 | " ref %d desc %d -> ref %d desc %d (node %d)\n", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 2137 | src_rdata.debug_id, src_rdata.desc, |
| 2138 | dest_rdata.debug_id, dest_rdata.desc, |
| 2139 | node->debug_id); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2140 | } |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 2141 | done: |
| 2142 | binder_put_node(node); |
| 2143 | return ret; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2144 | } |
| 2145 | |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2146 | static int binder_translate_fd(u32 fd, binder_size_t fd_offset, |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2147 | struct binder_transaction *t, |
| 2148 | struct binder_thread *thread, |
| 2149 | struct binder_transaction *in_reply_to) |
| 2150 | { |
| 2151 | struct binder_proc *proc = thread->proc; |
| 2152 | struct binder_proc *target_proc = t->to_proc; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2153 | struct binder_txn_fd_fixup *fixup; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2154 | struct file *file; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2155 | int ret = 0; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2156 | bool target_allows_fd; |
| 2157 | |
| 2158 | if (in_reply_to) |
| 2159 | target_allows_fd = !!(in_reply_to->flags & TF_ACCEPT_FDS); |
| 2160 | else |
| 2161 | target_allows_fd = t->buffer->target_node->accept_fds; |
| 2162 | if (!target_allows_fd) { |
| 2163 | binder_user_error("%d:%d got %s with fd, %d, but target does not allow fds\n", |
| 2164 | proc->pid, thread->pid, |
| 2165 | in_reply_to ? "reply" : "transaction", |
| 2166 | fd); |
| 2167 | ret = -EPERM; |
| 2168 | goto err_fd_not_accepted; |
| 2169 | } |
| 2170 | |
| 2171 | file = fget(fd); |
| 2172 | if (!file) { |
| 2173 | binder_user_error("%d:%d got transaction with invalid fd, %d\n", |
| 2174 | proc->pid, thread->pid, fd); |
| 2175 | ret = -EBADF; |
| 2176 | goto err_fget; |
| 2177 | } |
| 2178 | ret = security_binder_transfer_file(proc->tsk, target_proc->tsk, file); |
| 2179 | if (ret < 0) { |
| 2180 | ret = -EPERM; |
| 2181 | goto err_security; |
| 2182 | } |
| 2183 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2184 | /* |
| 2185 | * Add fixup record for this transaction. The allocation |
| 2186 | * of the fd in the target needs to be done from a |
| 2187 | * target thread. |
| 2188 | */ |
| 2189 | fixup = kzalloc(sizeof(*fixup), GFP_KERNEL); |
| 2190 | if (!fixup) { |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2191 | ret = -ENOMEM; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2192 | goto err_alloc; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2193 | } |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2194 | fixup->file = file; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2195 | fixup->offset = fd_offset; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2196 | trace_binder_transaction_fd_send(t, fd, fixup->offset); |
| 2197 | list_add_tail(&fixup->fixup_entry, &t->fd_fixups); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2198 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2199 | return ret; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2200 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2201 | err_alloc: |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2202 | err_security: |
| 2203 | fput(file); |
| 2204 | err_fget: |
| 2205 | err_fd_not_accepted: |
| 2206 | return ret; |
| 2207 | } |
| 2208 | |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2209 | static int binder_translate_fd_array(struct binder_fd_array_object *fda, |
| 2210 | struct binder_buffer_object *parent, |
| 2211 | struct binder_transaction *t, |
| 2212 | struct binder_thread *thread, |
| 2213 | struct binder_transaction *in_reply_to) |
| 2214 | { |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2215 | binder_size_t fdi, fd_buf_size; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2216 | binder_size_t fda_offset; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2217 | struct binder_proc *proc = thread->proc; |
| 2218 | struct binder_proc *target_proc = t->to_proc; |
| 2219 | |
| 2220 | fd_buf_size = sizeof(u32) * fda->num_fds; |
| 2221 | if (fda->num_fds >= SIZE_MAX / sizeof(u32)) { |
| 2222 | binder_user_error("%d:%d got transaction with invalid number of fds (%lld)\n", |
| 2223 | proc->pid, thread->pid, (u64)fda->num_fds); |
| 2224 | return -EINVAL; |
| 2225 | } |
| 2226 | if (fd_buf_size > parent->length || |
| 2227 | fda->parent_offset > parent->length - fd_buf_size) { |
| 2228 | /* No space for all file descriptors here. */ |
| 2229 | binder_user_error("%d:%d not enough space to store %lld fds in buffer\n", |
| 2230 | proc->pid, thread->pid, (u64)fda->num_fds); |
| 2231 | return -EINVAL; |
| 2232 | } |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2233 | /* |
| 2234 | * the source data for binder_buffer_object is visible |
| 2235 | * to user-space and the @buffer element is the user |
| 2236 | * pointer to the buffer_object containing the fd_array. |
| 2237 | * Convert the address to an offset relative to |
| 2238 | * the base of the transaction buffer. |
| 2239 | */ |
| 2240 | fda_offset = (parent->buffer - (uintptr_t)t->buffer->user_data) + |
| 2241 | fda->parent_offset; |
| 2242 | if (!IS_ALIGNED((unsigned long)fda_offset, sizeof(u32))) { |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2243 | binder_user_error("%d:%d parent offset not aligned correctly.\n", |
| 2244 | proc->pid, thread->pid); |
| 2245 | return -EINVAL; |
| 2246 | } |
| 2247 | for (fdi = 0; fdi < fda->num_fds; fdi++) { |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2248 | u32 fd; |
| 2249 | int ret; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2250 | binder_size_t offset = fda_offset + fdi * sizeof(fd); |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2251 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2252 | ret = binder_alloc_copy_from_buffer(&target_proc->alloc, |
| 2253 | &fd, t->buffer, |
| 2254 | offset, sizeof(fd)); |
| 2255 | if (!ret) |
| 2256 | ret = binder_translate_fd(fd, offset, t, thread, |
| 2257 | in_reply_to); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2258 | if (ret < 0) |
| 2259 | return ret; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2260 | } |
| 2261 | return 0; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2262 | } |
| 2263 | |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2264 | static int binder_fixup_parent(struct binder_transaction *t, |
| 2265 | struct binder_thread *thread, |
| 2266 | struct binder_buffer_object *bp, |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2267 | binder_size_t off_start_offset, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2268 | binder_size_t num_valid, |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2269 | binder_size_t last_fixup_obj_off, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2270 | binder_size_t last_fixup_min_off) |
| 2271 | { |
| 2272 | struct binder_buffer_object *parent; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2273 | struct binder_buffer *b = t->buffer; |
| 2274 | struct binder_proc *proc = thread->proc; |
| 2275 | struct binder_proc *target_proc = t->to_proc; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2276 | struct binder_object object; |
| 2277 | binder_size_t buffer_offset; |
| 2278 | binder_size_t parent_offset; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2279 | |
| 2280 | if (!(bp->flags & BINDER_BUFFER_FLAG_HAS_PARENT)) |
| 2281 | return 0; |
| 2282 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2283 | parent = binder_validate_ptr(target_proc, b, &object, bp->parent, |
| 2284 | off_start_offset, &parent_offset, |
| 2285 | num_valid); |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2286 | if (!parent) { |
| 2287 | binder_user_error("%d:%d got transaction with invalid parent offset or type\n", |
| 2288 | proc->pid, thread->pid); |
| 2289 | return -EINVAL; |
| 2290 | } |
| 2291 | |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2292 | if (!binder_validate_fixup(target_proc, b, off_start_offset, |
| 2293 | parent_offset, bp->parent_offset, |
| 2294 | last_fixup_obj_off, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2295 | last_fixup_min_off)) { |
| 2296 | binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n", |
| 2297 | proc->pid, thread->pid); |
| 2298 | return -EINVAL; |
| 2299 | } |
| 2300 | |
| 2301 | if (parent->length < sizeof(binder_uintptr_t) || |
| 2302 | bp->parent_offset > parent->length - sizeof(binder_uintptr_t)) { |
| 2303 | /* No space for a pointer here! */ |
| 2304 | binder_user_error("%d:%d got transaction with invalid parent offset\n", |
| 2305 | proc->pid, thread->pid); |
| 2306 | return -EINVAL; |
| 2307 | } |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2308 | buffer_offset = bp->parent_offset + |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2309 | (uintptr_t)parent->buffer - (uintptr_t)b->user_data; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2310 | if (binder_alloc_copy_to_buffer(&target_proc->alloc, b, buffer_offset, |
| 2311 | &bp->buffer, sizeof(bp->buffer))) { |
| 2312 | binder_user_error("%d:%d got transaction with invalid parent offset\n", |
| 2313 | proc->pid, thread->pid); |
| 2314 | return -EINVAL; |
| 2315 | } |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2316 | |
| 2317 | return 0; |
| 2318 | } |
| 2319 | |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2320 | /** |
| 2321 | * binder_proc_transaction() - sends a transaction to a process and wakes it up |
| 2322 | * @t: transaction to send |
| 2323 | * @proc: process to send the transaction to |
| 2324 | * @thread: thread in @proc to send the transaction to (may be NULL) |
| 2325 | * |
| 2326 | * This function queues a transaction to the specified process. It will try |
| 2327 | * to find a thread in the target process to handle the transaction and |
| 2328 | * wake it up. If no thread is found, the work is queued to the proc |
| 2329 | * waitqueue. |
| 2330 | * |
| 2331 | * If the @thread parameter is not NULL, the transaction is always queued |
| 2332 | * to the waitlist of that specific thread. |
| 2333 | * |
| 2334 | * Return: true if the transactions was successfully queued |
| 2335 | * false if the target process or thread is dead |
| 2336 | */ |
| 2337 | static bool binder_proc_transaction(struct binder_transaction *t, |
| 2338 | struct binder_proc *proc, |
| 2339 | struct binder_thread *thread) |
| 2340 | { |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2341 | struct binder_node *node = t->buffer->target_node; |
| 2342 | bool oneway = !!(t->flags & TF_ONE_WAY); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2343 | bool pending_async = false; |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2344 | |
| 2345 | BUG_ON(!node); |
| 2346 | binder_node_lock(node); |
| 2347 | if (oneway) { |
| 2348 | BUG_ON(thread); |
Mrinal Pandey | 8df5b94 | 2020-07-24 18:44:03 +0530 | [diff] [blame] | 2349 | if (node->has_async_transaction) |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2350 | pending_async = true; |
Mrinal Pandey | 8df5b94 | 2020-07-24 18:44:03 +0530 | [diff] [blame] | 2351 | else |
Gustavo A. R. Silva | 197410a | 2018-01-23 12:04:27 -0600 | [diff] [blame] | 2352 | node->has_async_transaction = true; |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2353 | } |
| 2354 | |
| 2355 | binder_inner_proc_lock(proc); |
| 2356 | |
| 2357 | if (proc->is_dead || (thread && thread->is_dead)) { |
| 2358 | binder_inner_proc_unlock(proc); |
| 2359 | binder_node_unlock(node); |
| 2360 | return false; |
| 2361 | } |
| 2362 | |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2363 | if (!thread && !pending_async) |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2364 | thread = binder_select_thread_ilocked(proc); |
| 2365 | |
| 2366 | if (thread) |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2367 | binder_enqueue_thread_work_ilocked(thread, &t->work); |
| 2368 | else if (!pending_async) |
| 2369 | binder_enqueue_work_ilocked(&t->work, &proc->todo); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2370 | else |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2371 | binder_enqueue_work_ilocked(&t->work, &node->async_todo); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2372 | |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 2373 | if (!pending_async) |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2374 | binder_wakeup_thread_ilocked(proc, thread, !oneway /* sync */); |
| 2375 | |
| 2376 | binder_inner_proc_unlock(proc); |
| 2377 | binder_node_unlock(node); |
| 2378 | |
| 2379 | return true; |
| 2380 | } |
| 2381 | |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 2382 | /** |
| 2383 | * binder_get_node_refs_for_txn() - Get required refs on node for txn |
| 2384 | * @node: struct binder_node for which to get refs |
| 2385 | * @proc: returns @node->proc if valid |
| 2386 | * @error: if no @proc then returns BR_DEAD_REPLY |
| 2387 | * |
| 2388 | * User-space normally keeps the node alive when creating a transaction |
| 2389 | * since it has a reference to the target. The local strong ref keeps it |
| 2390 | * alive if the sending process dies before the target process processes |
| 2391 | * the transaction. If the source process is malicious or has a reference |
| 2392 | * counting bug, relying on the local strong ref can fail. |
| 2393 | * |
| 2394 | * Since user-space can cause the local strong ref to go away, we also take |
| 2395 | * a tmpref on the node to ensure it survives while we are constructing |
| 2396 | * the transaction. We also need a tmpref on the proc while we are |
| 2397 | * constructing the transaction, so we take that here as well. |
| 2398 | * |
| 2399 | * Return: The target_node with refs taken or NULL if no @node->proc is NULL. |
| 2400 | * Also sets @proc if valid. If the @node->proc is NULL indicating that the |
| 2401 | * target proc has died, @error is set to BR_DEAD_REPLY |
| 2402 | */ |
| 2403 | static struct binder_node *binder_get_node_refs_for_txn( |
| 2404 | struct binder_node *node, |
| 2405 | struct binder_proc **procp, |
| 2406 | uint32_t *error) |
| 2407 | { |
| 2408 | struct binder_node *target_node = NULL; |
| 2409 | |
| 2410 | binder_node_inner_lock(node); |
| 2411 | if (node->proc) { |
| 2412 | target_node = node; |
| 2413 | binder_inc_node_nilocked(node, 1, 0, NULL); |
| 2414 | binder_inc_node_tmpref_ilocked(node); |
| 2415 | node->proc->tmp_ref++; |
| 2416 | *procp = node->proc; |
| 2417 | } else |
| 2418 | *error = BR_DEAD_REPLY; |
| 2419 | binder_node_inner_unlock(node); |
| 2420 | |
| 2421 | return target_node; |
| 2422 | } |
| 2423 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2424 | static void binder_transaction(struct binder_proc *proc, |
| 2425 | struct binder_thread *thread, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2426 | struct binder_transaction_data *tr, int reply, |
| 2427 | binder_size_t extra_buffers_size) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2428 | { |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2429 | int ret; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2430 | struct binder_transaction *t; |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 2431 | struct binder_work *w; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2432 | struct binder_work *tcomplete; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2433 | binder_size_t buffer_offset = 0; |
| 2434 | binder_size_t off_start_offset, off_end_offset; |
Arve Hjønnevåg | 212265e | 2016-02-09 21:05:32 -0800 | [diff] [blame] | 2435 | binder_size_t off_min; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2436 | binder_size_t sg_buf_offset, sg_buf_end_offset; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2437 | struct binder_proc *target_proc = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2438 | struct binder_thread *target_thread = NULL; |
| 2439 | struct binder_node *target_node = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2440 | struct binder_transaction *in_reply_to = NULL; |
| 2441 | struct binder_transaction_log_entry *e; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2442 | uint32_t return_error = 0; |
| 2443 | uint32_t return_error_param = 0; |
| 2444 | uint32_t return_error_line = 0; |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2445 | binder_size_t last_fixup_obj_off = 0; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2446 | binder_size_t last_fixup_min_off = 0; |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 2447 | struct binder_context *context = proc->context; |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 2448 | int t_debug_id = atomic_inc_return(&binder_last_id); |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2449 | char *secctx = NULL; |
| 2450 | u32 secctx_sz = 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2451 | |
| 2452 | e = binder_transaction_log_add(&binder_transaction_log); |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 2453 | e->debug_id = t_debug_id; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2454 | e->call_type = reply ? 2 : !!(tr->flags & TF_ONE_WAY); |
| 2455 | e->from_proc = proc->pid; |
| 2456 | e->from_thread = thread->pid; |
| 2457 | e->target_handle = tr->target.handle; |
| 2458 | e->data_size = tr->data_size; |
| 2459 | e->offsets_size = tr->offsets_size; |
Christian Brauner | 51d8a7e | 2019-10-08 15:01:59 +0200 | [diff] [blame] | 2460 | strscpy(e->context_name, proc->context->name, BINDERFS_MAX_NAME); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2461 | |
| 2462 | if (reply) { |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2463 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2464 | in_reply_to = thread->transaction_stack; |
| 2465 | if (in_reply_to == NULL) { |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2466 | binder_inner_proc_unlock(proc); |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2467 | binder_user_error("%d:%d got reply transaction with no transaction stack\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2468 | proc->pid, thread->pid); |
| 2469 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2470 | return_error_param = -EPROTO; |
| 2471 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2472 | goto err_empty_call_stack; |
| 2473 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2474 | if (in_reply_to->to_thread != thread) { |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2475 | spin_lock(&in_reply_to->lock); |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2476 | binder_user_error("%d:%d got reply transaction with bad transaction stack, transaction %d has target %d:%d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2477 | proc->pid, thread->pid, in_reply_to->debug_id, |
| 2478 | in_reply_to->to_proc ? |
| 2479 | in_reply_to->to_proc->pid : 0, |
| 2480 | in_reply_to->to_thread ? |
| 2481 | in_reply_to->to_thread->pid : 0); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2482 | spin_unlock(&in_reply_to->lock); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2483 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2484 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2485 | return_error_param = -EPROTO; |
| 2486 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2487 | in_reply_to = NULL; |
| 2488 | goto err_bad_call_stack; |
| 2489 | } |
| 2490 | thread->transaction_stack = in_reply_to->to_parent; |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2491 | binder_inner_proc_unlock(proc); |
| 2492 | binder_set_nice(in_reply_to->saved_priority); |
| 2493 | target_thread = binder_get_txn_from_and_acq_inner(in_reply_to); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2494 | if (target_thread == NULL) { |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 2495 | /* annotation for sparse */ |
| 2496 | __release(&target_thread->proc->inner_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2497 | return_error = BR_DEAD_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2498 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2499 | goto err_dead_binder; |
| 2500 | } |
| 2501 | if (target_thread->transaction_stack != in_reply_to) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2502 | binder_user_error("%d:%d got reply transaction with bad target transaction stack %d, expected %d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2503 | proc->pid, thread->pid, |
| 2504 | target_thread->transaction_stack ? |
| 2505 | target_thread->transaction_stack->debug_id : 0, |
| 2506 | in_reply_to->debug_id); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2507 | binder_inner_proc_unlock(target_thread->proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2508 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2509 | return_error_param = -EPROTO; |
| 2510 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2511 | in_reply_to = NULL; |
| 2512 | target_thread = NULL; |
| 2513 | goto err_dead_binder; |
| 2514 | } |
| 2515 | target_proc = target_thread->proc; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2516 | target_proc->tmp_ref++; |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2517 | binder_inner_proc_unlock(target_thread->proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2518 | } else { |
| 2519 | if (tr->target.handle) { |
| 2520 | struct binder_ref *ref; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 2521 | |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 2522 | /* |
| 2523 | * There must already be a strong ref |
| 2524 | * on this node. If so, do a strong |
| 2525 | * increment on the node to ensure it |
| 2526 | * stays alive until the transaction is |
| 2527 | * done. |
| 2528 | */ |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 2529 | binder_proc_lock(proc); |
| 2530 | ref = binder_get_ref_olocked(proc, tr->target.handle, |
| 2531 | true); |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 2532 | if (ref) { |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 2533 | target_node = binder_get_node_refs_for_txn( |
| 2534 | ref->node, &target_proc, |
| 2535 | &return_error); |
| 2536 | } else { |
| 2537 | binder_user_error("%d:%d got transaction to invalid handle\n", |
| 2538 | proc->pid, thread->pid); |
| 2539 | return_error = BR_FAILED_REPLY; |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 2540 | } |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 2541 | binder_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2542 | } else { |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 2543 | mutex_lock(&context->context_mgr_node_lock); |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 2544 | target_node = context->binder_context_mgr_node; |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 2545 | if (target_node) |
| 2546 | target_node = binder_get_node_refs_for_txn( |
| 2547 | target_node, &target_proc, |
| 2548 | &return_error); |
| 2549 | else |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2550 | return_error = BR_DEAD_REPLY; |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 2551 | mutex_unlock(&context->context_mgr_node_lock); |
Hridya Valsaraju | 49ed969 | 2019-07-15 12:18:04 -0700 | [diff] [blame] | 2552 | if (target_node && target_proc->pid == proc->pid) { |
Martijn Coenen | 7aa135f | 2018-03-28 11:14:50 +0200 | [diff] [blame] | 2553 | binder_user_error("%d:%d got transaction to context manager from process owning it\n", |
| 2554 | proc->pid, thread->pid); |
| 2555 | return_error = BR_FAILED_REPLY; |
| 2556 | return_error_param = -EINVAL; |
| 2557 | return_error_line = __LINE__; |
| 2558 | goto err_invalid_target_handle; |
| 2559 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2560 | } |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 2561 | if (!target_node) { |
| 2562 | /* |
| 2563 | * return_error is set above |
| 2564 | */ |
| 2565 | return_error_param = -EINVAL; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2566 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2567 | goto err_dead_binder; |
| 2568 | } |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 2569 | e->to_node = target_node->debug_id; |
Jann Horn | 4b836a1 | 2020-07-27 14:04:24 +0200 | [diff] [blame] | 2570 | if (WARN_ON(proc == target_proc)) { |
| 2571 | return_error = BR_FAILED_REPLY; |
| 2572 | return_error_param = -EINVAL; |
| 2573 | return_error_line = __LINE__; |
| 2574 | goto err_invalid_target_handle; |
| 2575 | } |
Stephen Smalley | 79af730 | 2015-01-21 10:54:10 -0500 | [diff] [blame] | 2576 | if (security_binder_transaction(proc->tsk, |
| 2577 | target_proc->tsk) < 0) { |
| 2578 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2579 | return_error_param = -EPERM; |
| 2580 | return_error_line = __LINE__; |
Stephen Smalley | 79af730 | 2015-01-21 10:54:10 -0500 | [diff] [blame] | 2581 | goto err_invalid_target_handle; |
| 2582 | } |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2583 | binder_inner_proc_lock(proc); |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 2584 | |
| 2585 | w = list_first_entry_or_null(&thread->todo, |
| 2586 | struct binder_work, entry); |
| 2587 | if (!(tr->flags & TF_ONE_WAY) && w && |
| 2588 | w->type == BINDER_WORK_TRANSACTION) { |
| 2589 | /* |
| 2590 | * Do not allow new outgoing transaction from a |
| 2591 | * thread that has a transaction at the head of |
| 2592 | * its todo list. Only need to check the head |
| 2593 | * because binder_select_thread_ilocked picks a |
| 2594 | * thread from proc->waiting_threads to enqueue |
| 2595 | * the transaction, and nothing is queued to the |
| 2596 | * todo list while the thread is on waiting_threads. |
| 2597 | */ |
| 2598 | binder_user_error("%d:%d new transaction not allowed when there is a transaction on thread todo\n", |
| 2599 | proc->pid, thread->pid); |
| 2600 | binder_inner_proc_unlock(proc); |
| 2601 | return_error = BR_FAILED_REPLY; |
| 2602 | return_error_param = -EPROTO; |
| 2603 | return_error_line = __LINE__; |
| 2604 | goto err_bad_todo_list; |
| 2605 | } |
| 2606 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2607 | if (!(tr->flags & TF_ONE_WAY) && thread->transaction_stack) { |
| 2608 | struct binder_transaction *tmp; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 2609 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2610 | tmp = thread->transaction_stack; |
| 2611 | if (tmp->to_thread != thread) { |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2612 | spin_lock(&tmp->lock); |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2613 | binder_user_error("%d:%d got new transaction with bad transaction stack, transaction %d has target %d:%d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2614 | proc->pid, thread->pid, tmp->debug_id, |
| 2615 | tmp->to_proc ? tmp->to_proc->pid : 0, |
| 2616 | tmp->to_thread ? |
| 2617 | tmp->to_thread->pid : 0); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2618 | spin_unlock(&tmp->lock); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2619 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2620 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2621 | return_error_param = -EPROTO; |
| 2622 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2623 | goto err_bad_call_stack; |
| 2624 | } |
| 2625 | while (tmp) { |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2626 | struct binder_thread *from; |
| 2627 | |
| 2628 | spin_lock(&tmp->lock); |
| 2629 | from = tmp->from; |
| 2630 | if (from && from->proc == target_proc) { |
| 2631 | atomic_inc(&from->tmp_ref); |
| 2632 | target_thread = from; |
| 2633 | spin_unlock(&tmp->lock); |
| 2634 | break; |
| 2635 | } |
| 2636 | spin_unlock(&tmp->lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2637 | tmp = tmp->from_parent; |
| 2638 | } |
| 2639 | } |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 2640 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2641 | } |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 2642 | if (target_thread) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2643 | e->to_thread = target_thread->pid; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2644 | e->to_proc = target_proc->pid; |
| 2645 | |
| 2646 | /* TODO: reuse incoming transaction for reply */ |
| 2647 | t = kzalloc(sizeof(*t), GFP_KERNEL); |
| 2648 | if (t == NULL) { |
| 2649 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2650 | return_error_param = -ENOMEM; |
| 2651 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2652 | goto err_alloc_t_failed; |
| 2653 | } |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2654 | INIT_LIST_HEAD(&t->fd_fixups); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2655 | binder_stats_created(BINDER_STAT_TRANSACTION); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 2656 | spin_lock_init(&t->lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2657 | |
| 2658 | tcomplete = kzalloc(sizeof(*tcomplete), GFP_KERNEL); |
| 2659 | if (tcomplete == NULL) { |
| 2660 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2661 | return_error_param = -ENOMEM; |
| 2662 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2663 | goto err_alloc_tcomplete_failed; |
| 2664 | } |
| 2665 | binder_stats_created(BINDER_STAT_TRANSACTION_COMPLETE); |
| 2666 | |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 2667 | t->debug_id = t_debug_id; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2668 | |
| 2669 | if (reply) |
| 2670 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2671 | "%d:%d BC_REPLY %d -> %d:%d, data %016llx-%016llx size %lld-%lld-%lld\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2672 | proc->pid, thread->pid, t->debug_id, |
| 2673 | target_proc->pid, target_thread->pid, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 2674 | (u64)tr->data.ptr.buffer, |
| 2675 | (u64)tr->data.ptr.offsets, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2676 | (u64)tr->data_size, (u64)tr->offsets_size, |
| 2677 | (u64)extra_buffers_size); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2678 | else |
| 2679 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2680 | "%d:%d BC_TRANSACTION %d -> %d - node %d, data %016llx-%016llx size %lld-%lld-%lld\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2681 | proc->pid, thread->pid, t->debug_id, |
| 2682 | target_proc->pid, target_node->debug_id, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 2683 | (u64)tr->data.ptr.buffer, |
| 2684 | (u64)tr->data.ptr.offsets, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2685 | (u64)tr->data_size, (u64)tr->offsets_size, |
| 2686 | (u64)extra_buffers_size); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2687 | |
| 2688 | if (!reply && !(tr->flags & TF_ONE_WAY)) |
| 2689 | t->from = thread; |
| 2690 | else |
| 2691 | t->from = NULL; |
Tair Rzayev | 57bab7c | 2014-05-31 22:43:34 +0300 | [diff] [blame] | 2692 | t->sender_euid = task_euid(proc->tsk); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2693 | t->to_proc = target_proc; |
| 2694 | t->to_thread = target_thread; |
| 2695 | t->code = tr->code; |
| 2696 | t->flags = tr->flags; |
| 2697 | t->priority = task_nice(current); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 2698 | |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2699 | if (target_node && target_node->txn_security_ctx) { |
| 2700 | u32 secid; |
Todd Kjos | 0b05095 | 2019-04-24 12:31:18 -0700 | [diff] [blame] | 2701 | size_t added_size; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2702 | |
| 2703 | security_task_getsecid(proc->tsk, &secid); |
| 2704 | ret = security_secid_to_secctx(secid, &secctx, &secctx_sz); |
| 2705 | if (ret) { |
| 2706 | return_error = BR_FAILED_REPLY; |
| 2707 | return_error_param = ret; |
| 2708 | return_error_line = __LINE__; |
| 2709 | goto err_get_secctx_failed; |
| 2710 | } |
Todd Kjos | 0b05095 | 2019-04-24 12:31:18 -0700 | [diff] [blame] | 2711 | added_size = ALIGN(secctx_sz, sizeof(u64)); |
| 2712 | extra_buffers_size += added_size; |
| 2713 | if (extra_buffers_size < added_size) { |
| 2714 | /* integer overflow of extra_buffers_size */ |
| 2715 | return_error = BR_FAILED_REPLY; |
Zhang Qilong | 88f6c77 | 2020-10-26 19:03:14 +0800 | [diff] [blame] | 2716 | return_error_param = -EINVAL; |
Todd Kjos | 0b05095 | 2019-04-24 12:31:18 -0700 | [diff] [blame] | 2717 | return_error_line = __LINE__; |
| 2718 | goto err_bad_extra_size; |
| 2719 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2720 | } |
| 2721 | |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 2722 | trace_binder_transaction(reply, t, target_node); |
| 2723 | |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 2724 | t->buffer = binder_alloc_new_buf(&target_proc->alloc, tr->data_size, |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 2725 | tr->offsets_size, extra_buffers_size, |
Martijn Coenen | 261e781 | 2020-08-21 14:25:44 +0200 | [diff] [blame] | 2726 | !reply && (t->flags & TF_ONE_WAY), current->tgid); |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2727 | if (IS_ERR(t->buffer)) { |
| 2728 | /* |
| 2729 | * -ESRCH indicates VMA cleared. The target is dying. |
| 2730 | */ |
| 2731 | return_error_param = PTR_ERR(t->buffer); |
| 2732 | return_error = return_error_param == -ESRCH ? |
| 2733 | BR_DEAD_REPLY : BR_FAILED_REPLY; |
| 2734 | return_error_line = __LINE__; |
| 2735 | t->buffer = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2736 | goto err_binder_alloc_buf_failed; |
| 2737 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2738 | if (secctx) { |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2739 | int err; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2740 | size_t buf_offset = ALIGN(tr->data_size, sizeof(void *)) + |
| 2741 | ALIGN(tr->offsets_size, sizeof(void *)) + |
| 2742 | ALIGN(extra_buffers_size, sizeof(void *)) - |
| 2743 | ALIGN(secctx_sz, sizeof(u64)); |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2744 | |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2745 | t->security_ctx = (uintptr_t)t->buffer->user_data + buf_offset; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2746 | err = binder_alloc_copy_to_buffer(&target_proc->alloc, |
| 2747 | t->buffer, buf_offset, |
| 2748 | secctx, secctx_sz); |
| 2749 | if (err) { |
| 2750 | t->security_ctx = 0; |
| 2751 | WARN_ON(1); |
| 2752 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 2753 | security_release_secctx(secctx, secctx_sz); |
| 2754 | secctx = NULL; |
| 2755 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2756 | t->buffer->debug_id = t->debug_id; |
| 2757 | t->buffer->transaction = t; |
| 2758 | t->buffer->target_node = target_node; |
Todd Kjos | 0f966cb | 2020-11-20 15:37:43 -0800 | [diff] [blame] | 2759 | t->buffer->clear_on_free = !!(t->flags & TF_CLEAR_BUF); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 2760 | trace_binder_transaction_alloc_buf(t->buffer); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2761 | |
Todd Kjos | 1a7c3d9 | 2019-02-08 10:35:14 -0800 | [diff] [blame] | 2762 | if (binder_alloc_copy_user_to_buffer( |
| 2763 | &target_proc->alloc, |
| 2764 | t->buffer, 0, |
| 2765 | (const void __user *) |
| 2766 | (uintptr_t)tr->data.ptr.buffer, |
| 2767 | tr->data_size)) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2768 | binder_user_error("%d:%d got transaction with invalid data ptr\n", |
| 2769 | proc->pid, thread->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2770 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2771 | return_error_param = -EFAULT; |
| 2772 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2773 | goto err_copy_data_failed; |
| 2774 | } |
Todd Kjos | 1a7c3d9 | 2019-02-08 10:35:14 -0800 | [diff] [blame] | 2775 | if (binder_alloc_copy_user_to_buffer( |
| 2776 | &target_proc->alloc, |
| 2777 | t->buffer, |
| 2778 | ALIGN(tr->data_size, sizeof(void *)), |
| 2779 | (const void __user *) |
| 2780 | (uintptr_t)tr->data.ptr.offsets, |
| 2781 | tr->offsets_size)) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 2782 | binder_user_error("%d:%d got transaction with invalid offsets ptr\n", |
| 2783 | proc->pid, thread->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2784 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2785 | return_error_param = -EFAULT; |
| 2786 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2787 | goto err_copy_data_failed; |
| 2788 | } |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 2789 | if (!IS_ALIGNED(tr->offsets_size, sizeof(binder_size_t))) { |
| 2790 | binder_user_error("%d:%d got transaction with invalid offsets size, %lld\n", |
| 2791 | proc->pid, thread->pid, (u64)tr->offsets_size); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2792 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2793 | return_error_param = -EINVAL; |
| 2794 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2795 | goto err_bad_offset; |
| 2796 | } |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2797 | if (!IS_ALIGNED(extra_buffers_size, sizeof(u64))) { |
| 2798 | binder_user_error("%d:%d got transaction with unaligned buffers size, %lld\n", |
| 2799 | proc->pid, thread->pid, |
| 2800 | (u64)extra_buffers_size); |
| 2801 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2802 | return_error_param = -EINVAL; |
| 2803 | return_error_line = __LINE__; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2804 | goto err_bad_offset; |
| 2805 | } |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2806 | off_start_offset = ALIGN(tr->data_size, sizeof(void *)); |
| 2807 | buffer_offset = off_start_offset; |
| 2808 | off_end_offset = off_start_offset + tr->offsets_size; |
| 2809 | sg_buf_offset = ALIGN(off_end_offset, sizeof(void *)); |
Martijn Coenen | a565870 | 2019-07-09 13:09:23 +0200 | [diff] [blame] | 2810 | sg_buf_end_offset = sg_buf_offset + extra_buffers_size - |
| 2811 | ALIGN(secctx_sz, sizeof(u64)); |
Arve Hjønnevåg | 212265e | 2016-02-09 21:05:32 -0800 | [diff] [blame] | 2812 | off_min = 0; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2813 | for (buffer_offset = off_start_offset; buffer_offset < off_end_offset; |
| 2814 | buffer_offset += sizeof(binder_size_t)) { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2815 | struct binder_object_header *hdr; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2816 | size_t object_size; |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 2817 | struct binder_object object; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2818 | binder_size_t object_offset; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 2819 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2820 | if (binder_alloc_copy_from_buffer(&target_proc->alloc, |
| 2821 | &object_offset, |
| 2822 | t->buffer, |
| 2823 | buffer_offset, |
| 2824 | sizeof(object_offset))) { |
| 2825 | return_error = BR_FAILED_REPLY; |
| 2826 | return_error_param = -EINVAL; |
| 2827 | return_error_line = __LINE__; |
| 2828 | goto err_bad_offset; |
| 2829 | } |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 2830 | object_size = binder_get_object(target_proc, t->buffer, |
| 2831 | object_offset, &object); |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2832 | if (object_size == 0 || object_offset < off_min) { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2833 | binder_user_error("%d:%d got transaction with invalid offset (%lld, min %lld max %lld) or object.\n", |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2834 | proc->pid, thread->pid, |
| 2835 | (u64)object_offset, |
Arve Hjønnevåg | 212265e | 2016-02-09 21:05:32 -0800 | [diff] [blame] | 2836 | (u64)off_min, |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2837 | (u64)t->buffer->data_size); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2838 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2839 | return_error_param = -EINVAL; |
| 2840 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2841 | goto err_bad_offset; |
| 2842 | } |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2843 | |
Todd Kjos | 7a67a39 | 2019-02-08 10:35:16 -0800 | [diff] [blame] | 2844 | hdr = &object.hdr; |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2845 | off_min = object_offset + object_size; |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2846 | switch (hdr->type) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2847 | case BINDER_TYPE_BINDER: |
| 2848 | case BINDER_TYPE_WEAK_BINDER: { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2849 | struct flat_binder_object *fp; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 2850 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2851 | fp = to_flat_binder_object(hdr); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2852 | ret = binder_translate_binder(fp, t, thread); |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2853 | |
| 2854 | if (ret < 0 || |
| 2855 | binder_alloc_copy_to_buffer(&target_proc->alloc, |
| 2856 | t->buffer, |
| 2857 | object_offset, |
| 2858 | fp, sizeof(*fp))) { |
Christian Engelmayer | 7d42043 | 2014-05-07 21:44:53 +0200 | [diff] [blame] | 2859 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2860 | return_error_param = ret; |
| 2861 | return_error_line = __LINE__; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2862 | goto err_translate_failed; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2863 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2864 | } break; |
| 2865 | case BINDER_TYPE_HANDLE: |
| 2866 | case BINDER_TYPE_WEAK_HANDLE: { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2867 | struct flat_binder_object *fp; |
Arve Hjønnevåg | 0a3ffab | 2016-10-24 15:20:29 +0200 | [diff] [blame] | 2868 | |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2869 | fp = to_flat_binder_object(hdr); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2870 | ret = binder_translate_handle(fp, t, thread); |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2871 | if (ret < 0 || |
| 2872 | binder_alloc_copy_to_buffer(&target_proc->alloc, |
| 2873 | t->buffer, |
| 2874 | object_offset, |
| 2875 | fp, sizeof(*fp))) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2876 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2877 | return_error_param = ret; |
| 2878 | return_error_line = __LINE__; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2879 | goto err_translate_failed; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2880 | } |
| 2881 | } break; |
| 2882 | |
| 2883 | case BINDER_TYPE_FD: { |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 2884 | struct binder_fd_object *fp = to_binder_fd_object(hdr); |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 2885 | binder_size_t fd_offset = object_offset + |
| 2886 | (uintptr_t)&fp->fd - (uintptr_t)fp; |
| 2887 | int ret = binder_translate_fd(fp->fd, fd_offset, t, |
| 2888 | thread, in_reply_to); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2889 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2890 | fp->pad_binder = 0; |
| 2891 | if (ret < 0 || |
| 2892 | binder_alloc_copy_to_buffer(&target_proc->alloc, |
| 2893 | t->buffer, |
| 2894 | object_offset, |
| 2895 | fp, sizeof(*fp))) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2896 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 2897 | return_error_param = ret; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2898 | return_error_line = __LINE__; |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 2899 | goto err_translate_failed; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2900 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2901 | } break; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2902 | case BINDER_TYPE_FDA: { |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2903 | struct binder_object ptr_object; |
| 2904 | binder_size_t parent_offset; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2905 | struct binder_fd_array_object *fda = |
| 2906 | to_binder_fd_array_object(hdr); |
Todd Kjos | 1698174 | 2019-12-13 12:25:31 -0800 | [diff] [blame] | 2907 | size_t num_valid = (buffer_offset - off_start_offset) / |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2908 | sizeof(binder_size_t); |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2909 | struct binder_buffer_object *parent = |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2910 | binder_validate_ptr(target_proc, t->buffer, |
| 2911 | &ptr_object, fda->parent, |
| 2912 | off_start_offset, |
| 2913 | &parent_offset, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2914 | num_valid); |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2915 | if (!parent) { |
| 2916 | binder_user_error("%d:%d got transaction with invalid parent offset or type\n", |
| 2917 | proc->pid, thread->pid); |
| 2918 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2919 | return_error_param = -EINVAL; |
| 2920 | return_error_line = __LINE__; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2921 | goto err_bad_parent; |
| 2922 | } |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2923 | if (!binder_validate_fixup(target_proc, t->buffer, |
| 2924 | off_start_offset, |
| 2925 | parent_offset, |
| 2926 | fda->parent_offset, |
| 2927 | last_fixup_obj_off, |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2928 | last_fixup_min_off)) { |
| 2929 | binder_user_error("%d:%d got transaction with out-of-order buffer fixup\n", |
| 2930 | proc->pid, thread->pid); |
| 2931 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2932 | return_error_param = -EINVAL; |
| 2933 | return_error_line = __LINE__; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2934 | goto err_bad_parent; |
| 2935 | } |
| 2936 | ret = binder_translate_fd_array(fda, parent, t, thread, |
| 2937 | in_reply_to); |
| 2938 | if (ret < 0) { |
| 2939 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2940 | return_error_param = ret; |
| 2941 | return_error_line = __LINE__; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2942 | goto err_translate_failed; |
| 2943 | } |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2944 | last_fixup_obj_off = parent_offset; |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 2945 | last_fixup_min_off = |
| 2946 | fda->parent_offset + sizeof(u32) * fda->num_fds; |
| 2947 | } break; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2948 | case BINDER_TYPE_PTR: { |
| 2949 | struct binder_buffer_object *bp = |
| 2950 | to_binder_buffer_object(hdr); |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2951 | size_t buf_left = sg_buf_end_offset - sg_buf_offset; |
| 2952 | size_t num_valid; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 2953 | |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2954 | if (bp->length > buf_left) { |
| 2955 | binder_user_error("%d:%d got transaction with too large buffer\n", |
| 2956 | proc->pid, thread->pid); |
| 2957 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2958 | return_error_param = -EINVAL; |
| 2959 | return_error_line = __LINE__; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2960 | goto err_bad_offset; |
| 2961 | } |
Todd Kjos | 1a7c3d9 | 2019-02-08 10:35:14 -0800 | [diff] [blame] | 2962 | if (binder_alloc_copy_user_to_buffer( |
| 2963 | &target_proc->alloc, |
| 2964 | t->buffer, |
| 2965 | sg_buf_offset, |
| 2966 | (const void __user *) |
| 2967 | (uintptr_t)bp->buffer, |
| 2968 | bp->length)) { |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2969 | binder_user_error("%d:%d got transaction with invalid offsets ptr\n", |
| 2970 | proc->pid, thread->pid); |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2971 | return_error_param = -EFAULT; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2972 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2973 | return_error_line = __LINE__; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2974 | goto err_copy_data_failed; |
| 2975 | } |
| 2976 | /* Fixup buffer pointer to target proc address space */ |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2977 | bp->buffer = (uintptr_t) |
| 2978 | t->buffer->user_data + sg_buf_offset; |
| 2979 | sg_buf_offset += ALIGN(bp->length, sizeof(u64)); |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2980 | |
Todd Kjos | 1698174 | 2019-12-13 12:25:31 -0800 | [diff] [blame] | 2981 | num_valid = (buffer_offset - off_start_offset) / |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2982 | sizeof(binder_size_t); |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2983 | ret = binder_fixup_parent(t, thread, bp, |
| 2984 | off_start_offset, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 2985 | num_valid, |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2986 | last_fixup_obj_off, |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2987 | last_fixup_min_off); |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 2988 | if (ret < 0 || |
| 2989 | binder_alloc_copy_to_buffer(&target_proc->alloc, |
| 2990 | t->buffer, |
| 2991 | object_offset, |
| 2992 | bp, sizeof(*bp))) { |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2993 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 2994 | return_error_param = ret; |
| 2995 | return_error_line = __LINE__; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2996 | goto err_translate_failed; |
| 2997 | } |
Todd Kjos | db6b0b8 | 2019-02-08 10:35:17 -0800 | [diff] [blame] | 2998 | last_fixup_obj_off = object_offset; |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 2999 | last_fixup_min_off = 0; |
| 3000 | } break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3001 | default: |
Serban Constantinescu | 64dcfe6 | 2013-07-04 10:54:48 +0100 | [diff] [blame] | 3002 | binder_user_error("%d:%d got transaction with invalid object type, %x\n", |
Martijn Coenen | feba390 | 2017-02-03 14:40:45 -0800 | [diff] [blame] | 3003 | proc->pid, thread->pid, hdr->type); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3004 | return_error = BR_FAILED_REPLY; |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 3005 | return_error_param = -EINVAL; |
| 3006 | return_error_line = __LINE__; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3007 | goto err_bad_object_type; |
| 3008 | } |
| 3009 | } |
Todd Kjos | ccae6f6 | 2017-06-29 12:01:48 -0700 | [diff] [blame] | 3010 | tcomplete->type = BINDER_WORK_TRANSACTION_COMPLETE; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3011 | t->work.type = BINDER_WORK_TRANSACTION; |
Todd Kjos | ccae6f6 | 2017-06-29 12:01:48 -0700 | [diff] [blame] | 3012 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3013 | if (reply) { |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3014 | binder_enqueue_thread_work(thread, tcomplete); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3015 | binder_inner_proc_lock(target_proc); |
| 3016 | if (target_thread->is_dead) { |
| 3017 | binder_inner_proc_unlock(target_proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3018 | goto err_dead_proc_or_thread; |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3019 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3020 | BUG_ON(t->buffer->async_transaction != 0); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3021 | binder_pop_transaction_ilocked(target_thread, in_reply_to); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3022 | binder_enqueue_thread_work_ilocked(target_thread, &t->work); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3023 | binder_inner_proc_unlock(target_proc); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 3024 | wake_up_interruptible_sync(&target_thread->wait); |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 3025 | binder_free_transaction(in_reply_to); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3026 | } else if (!(t->flags & TF_ONE_WAY)) { |
| 3027 | BUG_ON(t->buffer->async_transaction != 0); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3028 | binder_inner_proc_lock(proc); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3029 | /* |
| 3030 | * Defer the TRANSACTION_COMPLETE, so we don't return to |
| 3031 | * userspace immediately; this allows the target process to |
| 3032 | * immediately start processing this transaction, reducing |
| 3033 | * latency. We will then return the TRANSACTION_COMPLETE when |
| 3034 | * the target replies (or there is an error). |
| 3035 | */ |
| 3036 | binder_enqueue_deferred_thread_work_ilocked(thread, tcomplete); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3037 | t->need_reply = 1; |
| 3038 | t->from_parent = thread->transaction_stack; |
| 3039 | thread->transaction_stack = t; |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3040 | binder_inner_proc_unlock(proc); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 3041 | if (!binder_proc_transaction(t, target_proc, target_thread)) { |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3042 | binder_inner_proc_lock(proc); |
| 3043 | binder_pop_transaction_ilocked(thread, t); |
| 3044 | binder_inner_proc_unlock(proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3045 | goto err_dead_proc_or_thread; |
| 3046 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3047 | } else { |
| 3048 | BUG_ON(target_node == NULL); |
| 3049 | BUG_ON(t->buffer->async_transaction != 1); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3050 | binder_enqueue_thread_work(thread, tcomplete); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 3051 | if (!binder_proc_transaction(t, target_proc, NULL)) |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3052 | goto err_dead_proc_or_thread; |
Riley Andrews | 00b40d6 | 2017-06-29 12:01:37 -0700 | [diff] [blame] | 3053 | } |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3054 | if (target_thread) |
| 3055 | binder_thread_dec_tmpref(target_thread); |
| 3056 | binder_proc_dec_tmpref(target_proc); |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 3057 | if (target_node) |
| 3058 | binder_dec_node_tmpref(target_node); |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 3059 | /* |
| 3060 | * write barrier to synchronize with initialization |
| 3061 | * of log entry |
| 3062 | */ |
| 3063 | smp_wmb(); |
| 3064 | WRITE_ONCE(e->debug_id_done, t_debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3065 | return; |
| 3066 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3067 | err_dead_proc_or_thread: |
| 3068 | return_error = BR_DEAD_REPLY; |
| 3069 | return_error_line = __LINE__; |
Xu YiPing | d53bebd | 2017-09-05 10:21:52 -0700 | [diff] [blame] | 3070 | binder_dequeue_work(proc, tcomplete); |
Martijn Coenen | a056af4 | 2017-02-03 14:40:49 -0800 | [diff] [blame] | 3071 | err_translate_failed: |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3072 | err_bad_object_type: |
| 3073 | err_bad_offset: |
Martijn Coenen | def95c7 | 2017-02-03 14:40:52 -0800 | [diff] [blame] | 3074 | err_bad_parent: |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3075 | err_copy_data_failed: |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3076 | binder_free_txn_fixups(t); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3077 | trace_binder_transaction_failed_buffer_release(t->buffer); |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 3078 | binder_transaction_buffer_release(target_proc, t->buffer, |
| 3079 | buffer_offset, true); |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 3080 | if (target_node) |
| 3081 | binder_dec_node_tmpref(target_node); |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 3082 | target_node = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3083 | t->buffer->transaction = NULL; |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 3084 | binder_alloc_free_buf(&target_proc->alloc, t->buffer); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3085 | err_binder_alloc_buf_failed: |
Todd Kjos | 0b05095 | 2019-04-24 12:31:18 -0700 | [diff] [blame] | 3086 | err_bad_extra_size: |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 3087 | if (secctx) |
| 3088 | security_release_secctx(secctx, secctx_sz); |
| 3089 | err_get_secctx_failed: |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3090 | kfree(tcomplete); |
| 3091 | binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); |
| 3092 | err_alloc_tcomplete_failed: |
Frankie.Chang | 1987f112 | 2020-11-11 11:02:43 +0800 | [diff] [blame] | 3093 | if (trace_binder_txn_latency_free_enabled()) |
| 3094 | binder_txn_latency_free(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3095 | kfree(t); |
| 3096 | binder_stats_deleted(BINDER_STAT_TRANSACTION); |
| 3097 | err_alloc_t_failed: |
Sherry Yang | 44b7396 | 2018-08-13 17:28:53 -0700 | [diff] [blame] | 3098 | err_bad_todo_list: |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3099 | err_bad_call_stack: |
| 3100 | err_empty_call_stack: |
| 3101 | err_dead_binder: |
| 3102 | err_invalid_target_handle: |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3103 | if (target_thread) |
| 3104 | binder_thread_dec_tmpref(target_thread); |
| 3105 | if (target_proc) |
| 3106 | binder_proc_dec_tmpref(target_proc); |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 3107 | if (target_node) { |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 3108 | binder_dec_node(target_node, 1, 0); |
Todd Kjos | 512cf46 | 2017-09-29 15:39:49 -0700 | [diff] [blame] | 3109 | binder_dec_node_tmpref(target_node); |
| 3110 | } |
Todd Kjos | eb34983 | 2017-06-29 12:01:56 -0700 | [diff] [blame] | 3111 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3112 | binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 3113 | "%d:%d transaction failed %d/%d, size %lld-%lld line %d\n", |
| 3114 | proc->pid, thread->pid, return_error, return_error_param, |
| 3115 | (u64)tr->data_size, (u64)tr->offsets_size, |
| 3116 | return_error_line); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3117 | |
| 3118 | { |
| 3119 | struct binder_transaction_log_entry *fe; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 3120 | |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 3121 | e->return_error = return_error; |
| 3122 | e->return_error_param = return_error_param; |
| 3123 | e->return_error_line = return_error_line; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3124 | fe = binder_transaction_log_add(&binder_transaction_log_failed); |
| 3125 | *fe = *e; |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 3126 | /* |
| 3127 | * write barrier to synchronize with initialization |
| 3128 | * of log entry |
| 3129 | */ |
| 3130 | smp_wmb(); |
| 3131 | WRITE_ONCE(e->debug_id_done, t_debug_id); |
| 3132 | WRITE_ONCE(fe->debug_id_done, t_debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3133 | } |
| 3134 | |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3135 | BUG_ON(thread->return_error.cmd != BR_OK); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3136 | if (in_reply_to) { |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3137 | thread->return_error.cmd = BR_TRANSACTION_COMPLETE; |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3138 | binder_enqueue_thread_work(thread, &thread->return_error.work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3139 | binder_send_failed_reply(in_reply_to, return_error); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3140 | } else { |
| 3141 | thread->return_error.cmd = return_error; |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3142 | binder_enqueue_thread_work(thread, &thread->return_error.work); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3143 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3144 | } |
| 3145 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3146 | /** |
| 3147 | * binder_free_buf() - free the specified buffer |
| 3148 | * @proc: binder proc that owns buffer |
| 3149 | * @buffer: buffer to be freed |
| 3150 | * |
| 3151 | * If buffer for an async transaction, enqueue the next async |
| 3152 | * transaction from the node. |
| 3153 | * |
| 3154 | * Cleanup buffer and free it. |
| 3155 | */ |
Wei Yongjun | f4608ce | 2018-09-25 14:30:36 +0000 | [diff] [blame] | 3156 | static void |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3157 | binder_free_buf(struct binder_proc *proc, struct binder_buffer *buffer) |
| 3158 | { |
Todd Kjos | a370003 | 2019-06-12 13:29:27 -0700 | [diff] [blame] | 3159 | binder_inner_proc_lock(proc); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3160 | if (buffer->transaction) { |
| 3161 | buffer->transaction->buffer = NULL; |
| 3162 | buffer->transaction = NULL; |
| 3163 | } |
Todd Kjos | a370003 | 2019-06-12 13:29:27 -0700 | [diff] [blame] | 3164 | binder_inner_proc_unlock(proc); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3165 | if (buffer->async_transaction && buffer->target_node) { |
| 3166 | struct binder_node *buf_node; |
| 3167 | struct binder_work *w; |
| 3168 | |
| 3169 | buf_node = buffer->target_node; |
| 3170 | binder_node_inner_lock(buf_node); |
| 3171 | BUG_ON(!buf_node->has_async_transaction); |
| 3172 | BUG_ON(buf_node->proc != proc); |
| 3173 | w = binder_dequeue_work_head_ilocked( |
| 3174 | &buf_node->async_todo); |
| 3175 | if (!w) { |
| 3176 | buf_node->has_async_transaction = false; |
| 3177 | } else { |
| 3178 | binder_enqueue_work_ilocked( |
| 3179 | w, &proc->todo); |
| 3180 | binder_wakeup_proc_ilocked(proc); |
| 3181 | } |
| 3182 | binder_node_inner_unlock(buf_node); |
| 3183 | } |
| 3184 | trace_binder_transaction_buffer_release(buffer); |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 3185 | binder_transaction_buffer_release(proc, buffer, 0, false); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3186 | binder_alloc_free_buf(&proc->alloc, buffer); |
| 3187 | } |
| 3188 | |
Bojan Prtvar | fb07ebc | 2013-09-02 08:18:40 +0200 | [diff] [blame] | 3189 | static int binder_thread_write(struct binder_proc *proc, |
| 3190 | struct binder_thread *thread, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3191 | binder_uintptr_t binder_buffer, size_t size, |
| 3192 | binder_size_t *consumed) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3193 | { |
| 3194 | uint32_t cmd; |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 3195 | struct binder_context *context = proc->context; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3196 | void __user *buffer = (void __user *)(uintptr_t)binder_buffer; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3197 | void __user *ptr = buffer + *consumed; |
| 3198 | void __user *end = buffer + size; |
| 3199 | |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3200 | while (ptr < end && thread->return_error.cmd == BR_OK) { |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3201 | int ret; |
| 3202 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3203 | if (get_user(cmd, (uint32_t __user *)ptr)) |
| 3204 | return -EFAULT; |
| 3205 | ptr += sizeof(uint32_t); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3206 | trace_binder_command(cmd); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3207 | if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.bc)) { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 3208 | atomic_inc(&binder_stats.bc[_IOC_NR(cmd)]); |
| 3209 | atomic_inc(&proc->stats.bc[_IOC_NR(cmd)]); |
| 3210 | atomic_inc(&thread->stats.bc[_IOC_NR(cmd)]); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3211 | } |
| 3212 | switch (cmd) { |
| 3213 | case BC_INCREFS: |
| 3214 | case BC_ACQUIRE: |
| 3215 | case BC_RELEASE: |
| 3216 | case BC_DECREFS: { |
| 3217 | uint32_t target; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3218 | const char *debug_string; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3219 | bool strong = cmd == BC_ACQUIRE || cmd == BC_RELEASE; |
| 3220 | bool increment = cmd == BC_INCREFS || cmd == BC_ACQUIRE; |
| 3221 | struct binder_ref_data rdata; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3222 | |
| 3223 | if (get_user(target, (uint32_t __user *)ptr)) |
| 3224 | return -EFAULT; |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 3225 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3226 | ptr += sizeof(uint32_t); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3227 | ret = -1; |
| 3228 | if (increment && !target) { |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 3229 | struct binder_node *ctx_mgr_node; |
Andrew Bridges | 6c20032 | 2020-10-27 22:56:55 +0000 | [diff] [blame] | 3230 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 3231 | mutex_lock(&context->context_mgr_node_lock); |
| 3232 | ctx_mgr_node = context->binder_context_mgr_node; |
Jann Horn | 4b836a1 | 2020-07-27 14:04:24 +0200 | [diff] [blame] | 3233 | if (ctx_mgr_node) { |
| 3234 | if (ctx_mgr_node->proc == proc) { |
| 3235 | binder_user_error("%d:%d context manager tried to acquire desc 0\n", |
| 3236 | proc->pid, thread->pid); |
| 3237 | mutex_unlock(&context->context_mgr_node_lock); |
| 3238 | return -EINVAL; |
| 3239 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3240 | ret = binder_inc_ref_for_node( |
| 3241 | proc, ctx_mgr_node, |
| 3242 | strong, NULL, &rdata); |
Jann Horn | 4b836a1 | 2020-07-27 14:04:24 +0200 | [diff] [blame] | 3243 | } |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 3244 | mutex_unlock(&context->context_mgr_node_lock); |
| 3245 | } |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3246 | if (ret) |
| 3247 | ret = binder_update_ref_for_handle( |
| 3248 | proc, target, increment, strong, |
| 3249 | &rdata); |
| 3250 | if (!ret && rdata.desc != target) { |
| 3251 | binder_user_error("%d:%d tried to acquire reference to desc %d, got %d instead\n", |
| 3252 | proc->pid, thread->pid, |
| 3253 | target, rdata.desc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3254 | } |
| 3255 | switch (cmd) { |
| 3256 | case BC_INCREFS: |
| 3257 | debug_string = "IncRefs"; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3258 | break; |
| 3259 | case BC_ACQUIRE: |
| 3260 | debug_string = "Acquire"; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3261 | break; |
| 3262 | case BC_RELEASE: |
| 3263 | debug_string = "Release"; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3264 | break; |
| 3265 | case BC_DECREFS: |
| 3266 | default: |
| 3267 | debug_string = "DecRefs"; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3268 | break; |
| 3269 | } |
| 3270 | if (ret) { |
| 3271 | binder_user_error("%d:%d %s %d refcount change on invalid ref %d ret %d\n", |
| 3272 | proc->pid, thread->pid, debug_string, |
| 3273 | strong, target, ret); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3274 | break; |
| 3275 | } |
| 3276 | binder_debug(BINDER_DEBUG_USER_REFS, |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3277 | "%d:%d %s ref %d desc %d s %d w %d\n", |
| 3278 | proc->pid, thread->pid, debug_string, |
| 3279 | rdata.debug_id, rdata.desc, rdata.strong, |
| 3280 | rdata.weak); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3281 | break; |
| 3282 | } |
| 3283 | case BC_INCREFS_DONE: |
| 3284 | case BC_ACQUIRE_DONE: { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3285 | binder_uintptr_t node_ptr; |
| 3286 | binder_uintptr_t cookie; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3287 | struct binder_node *node; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3288 | bool free_node; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3289 | |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3290 | if (get_user(node_ptr, (binder_uintptr_t __user *)ptr)) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3291 | return -EFAULT; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3292 | ptr += sizeof(binder_uintptr_t); |
| 3293 | if (get_user(cookie, (binder_uintptr_t __user *)ptr)) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3294 | return -EFAULT; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3295 | ptr += sizeof(binder_uintptr_t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3296 | node = binder_get_node(proc, node_ptr); |
| 3297 | if (node == NULL) { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3298 | binder_user_error("%d:%d %s u%016llx no match\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3299 | proc->pid, thread->pid, |
| 3300 | cmd == BC_INCREFS_DONE ? |
| 3301 | "BC_INCREFS_DONE" : |
| 3302 | "BC_ACQUIRE_DONE", |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3303 | (u64)node_ptr); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3304 | break; |
| 3305 | } |
| 3306 | if (cookie != node->cookie) { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3307 | binder_user_error("%d:%d %s u%016llx node %d cookie mismatch %016llx != %016llx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3308 | proc->pid, thread->pid, |
| 3309 | cmd == BC_INCREFS_DONE ? |
| 3310 | "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE", |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3311 | (u64)node_ptr, node->debug_id, |
| 3312 | (u64)cookie, (u64)node->cookie); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3313 | binder_put_node(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3314 | break; |
| 3315 | } |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3316 | binder_node_inner_lock(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3317 | if (cmd == BC_ACQUIRE_DONE) { |
| 3318 | if (node->pending_strong_ref == 0) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3319 | binder_user_error("%d:%d BC_ACQUIRE_DONE node %d has no pending acquire request\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3320 | proc->pid, thread->pid, |
| 3321 | node->debug_id); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3322 | binder_node_inner_unlock(node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3323 | binder_put_node(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3324 | break; |
| 3325 | } |
| 3326 | node->pending_strong_ref = 0; |
| 3327 | } else { |
| 3328 | if (node->pending_weak_ref == 0) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3329 | binder_user_error("%d:%d BC_INCREFS_DONE node %d has no pending increfs request\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3330 | proc->pid, thread->pid, |
| 3331 | node->debug_id); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3332 | binder_node_inner_unlock(node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3333 | binder_put_node(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3334 | break; |
| 3335 | } |
| 3336 | node->pending_weak_ref = 0; |
| 3337 | } |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3338 | free_node = binder_dec_node_nilocked(node, |
| 3339 | cmd == BC_ACQUIRE_DONE, 0); |
| 3340 | WARN_ON(free_node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3341 | binder_debug(BINDER_DEBUG_USER_REFS, |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3342 | "%d:%d %s node %d ls %d lw %d tr %d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3343 | proc->pid, thread->pid, |
| 3344 | cmd == BC_INCREFS_DONE ? "BC_INCREFS_DONE" : "BC_ACQUIRE_DONE", |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3345 | node->debug_id, node->local_strong_refs, |
| 3346 | node->local_weak_refs, node->tmp_refs); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3347 | binder_node_inner_unlock(node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3348 | binder_put_node(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3349 | break; |
| 3350 | } |
| 3351 | case BC_ATTEMPT_ACQUIRE: |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3352 | pr_err("BC_ATTEMPT_ACQUIRE not supported\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3353 | return -EINVAL; |
| 3354 | case BC_ACQUIRE_RESULT: |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3355 | pr_err("BC_ACQUIRE_RESULT not supported\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3356 | return -EINVAL; |
| 3357 | |
| 3358 | case BC_FREE_BUFFER: { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3359 | binder_uintptr_t data_ptr; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3360 | struct binder_buffer *buffer; |
| 3361 | |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3362 | if (get_user(data_ptr, (binder_uintptr_t __user *)ptr)) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3363 | return -EFAULT; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3364 | ptr += sizeof(binder_uintptr_t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3365 | |
Todd Kjos | 53d311cf | 2017-06-29 12:01:51 -0700 | [diff] [blame] | 3366 | buffer = binder_alloc_prepare_to_free(&proc->alloc, |
| 3367 | data_ptr); |
Todd Kjos | 7bada55 | 2018-11-06 15:55:32 -0800 | [diff] [blame] | 3368 | if (IS_ERR_OR_NULL(buffer)) { |
| 3369 | if (PTR_ERR(buffer) == -EPERM) { |
| 3370 | binder_user_error( |
| 3371 | "%d:%d BC_FREE_BUFFER u%016llx matched unreturned or currently freeing buffer\n", |
| 3372 | proc->pid, thread->pid, |
| 3373 | (u64)data_ptr); |
| 3374 | } else { |
| 3375 | binder_user_error( |
| 3376 | "%d:%d BC_FREE_BUFFER u%016llx no match\n", |
| 3377 | proc->pid, thread->pid, |
| 3378 | (u64)data_ptr); |
| 3379 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3380 | break; |
| 3381 | } |
| 3382 | binder_debug(BINDER_DEBUG_FREE_BUFFER, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3383 | "%d:%d BC_FREE_BUFFER u%016llx found buffer %d for %s transaction\n", |
| 3384 | proc->pid, thread->pid, (u64)data_ptr, |
| 3385 | buffer->debug_id, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3386 | buffer->transaction ? "active" : "finished"); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3387 | binder_free_buf(proc, buffer); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3388 | break; |
| 3389 | } |
| 3390 | |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 3391 | case BC_TRANSACTION_SG: |
| 3392 | case BC_REPLY_SG: { |
| 3393 | struct binder_transaction_data_sg tr; |
| 3394 | |
| 3395 | if (copy_from_user(&tr, ptr, sizeof(tr))) |
| 3396 | return -EFAULT; |
| 3397 | ptr += sizeof(tr); |
| 3398 | binder_transaction(proc, thread, &tr.transaction_data, |
| 3399 | cmd == BC_REPLY_SG, tr.buffers_size); |
| 3400 | break; |
| 3401 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3402 | case BC_TRANSACTION: |
| 3403 | case BC_REPLY: { |
| 3404 | struct binder_transaction_data tr; |
| 3405 | |
| 3406 | if (copy_from_user(&tr, ptr, sizeof(tr))) |
| 3407 | return -EFAULT; |
| 3408 | ptr += sizeof(tr); |
Martijn Coenen | 4bfac80 | 2017-02-03 14:40:50 -0800 | [diff] [blame] | 3409 | binder_transaction(proc, thread, &tr, |
| 3410 | cmd == BC_REPLY, 0); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3411 | break; |
| 3412 | } |
| 3413 | |
| 3414 | case BC_REGISTER_LOOPER: |
| 3415 | binder_debug(BINDER_DEBUG_THREADS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3416 | "%d:%d BC_REGISTER_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3417 | proc->pid, thread->pid); |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 3418 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3419 | if (thread->looper & BINDER_LOOPER_STATE_ENTERED) { |
| 3420 | thread->looper |= BINDER_LOOPER_STATE_INVALID; |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3421 | binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called after BC_ENTER_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3422 | proc->pid, thread->pid); |
| 3423 | } else if (proc->requested_threads == 0) { |
| 3424 | thread->looper |= BINDER_LOOPER_STATE_INVALID; |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3425 | binder_user_error("%d:%d ERROR: BC_REGISTER_LOOPER called without request\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3426 | proc->pid, thread->pid); |
| 3427 | } else { |
| 3428 | proc->requested_threads--; |
| 3429 | proc->requested_threads_started++; |
| 3430 | } |
| 3431 | thread->looper |= BINDER_LOOPER_STATE_REGISTERED; |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 3432 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3433 | break; |
| 3434 | case BC_ENTER_LOOPER: |
| 3435 | binder_debug(BINDER_DEBUG_THREADS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3436 | "%d:%d BC_ENTER_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3437 | proc->pid, thread->pid); |
| 3438 | if (thread->looper & BINDER_LOOPER_STATE_REGISTERED) { |
| 3439 | thread->looper |= BINDER_LOOPER_STATE_INVALID; |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3440 | binder_user_error("%d:%d ERROR: BC_ENTER_LOOPER called after BC_REGISTER_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3441 | proc->pid, thread->pid); |
| 3442 | } |
| 3443 | thread->looper |= BINDER_LOOPER_STATE_ENTERED; |
| 3444 | break; |
| 3445 | case BC_EXIT_LOOPER: |
| 3446 | binder_debug(BINDER_DEBUG_THREADS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3447 | "%d:%d BC_EXIT_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3448 | proc->pid, thread->pid); |
| 3449 | thread->looper |= BINDER_LOOPER_STATE_EXITED; |
| 3450 | break; |
| 3451 | |
| 3452 | case BC_REQUEST_DEATH_NOTIFICATION: |
| 3453 | case BC_CLEAR_DEATH_NOTIFICATION: { |
| 3454 | uint32_t target; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3455 | binder_uintptr_t cookie; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3456 | struct binder_ref *ref; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3457 | struct binder_ref_death *death = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3458 | |
| 3459 | if (get_user(target, (uint32_t __user *)ptr)) |
| 3460 | return -EFAULT; |
| 3461 | ptr += sizeof(uint32_t); |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3462 | if (get_user(cookie, (binder_uintptr_t __user *)ptr)) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3463 | return -EFAULT; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3464 | ptr += sizeof(binder_uintptr_t); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3465 | if (cmd == BC_REQUEST_DEATH_NOTIFICATION) { |
| 3466 | /* |
| 3467 | * Allocate memory for death notification |
| 3468 | * before taking lock |
| 3469 | */ |
| 3470 | death = kzalloc(sizeof(*death), GFP_KERNEL); |
| 3471 | if (death == NULL) { |
| 3472 | WARN_ON(thread->return_error.cmd != |
| 3473 | BR_OK); |
| 3474 | thread->return_error.cmd = BR_ERROR; |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3475 | binder_enqueue_thread_work( |
| 3476 | thread, |
| 3477 | &thread->return_error.work); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3478 | binder_debug( |
| 3479 | BINDER_DEBUG_FAILED_TRANSACTION, |
| 3480 | "%d:%d BC_REQUEST_DEATH_NOTIFICATION failed\n", |
| 3481 | proc->pid, thread->pid); |
| 3482 | break; |
| 3483 | } |
| 3484 | } |
| 3485 | binder_proc_lock(proc); |
| 3486 | ref = binder_get_ref_olocked(proc, target, false); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3487 | if (ref == NULL) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3488 | binder_user_error("%d:%d %s invalid ref %d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3489 | proc->pid, thread->pid, |
| 3490 | cmd == BC_REQUEST_DEATH_NOTIFICATION ? |
| 3491 | "BC_REQUEST_DEATH_NOTIFICATION" : |
| 3492 | "BC_CLEAR_DEATH_NOTIFICATION", |
| 3493 | target); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3494 | binder_proc_unlock(proc); |
| 3495 | kfree(death); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3496 | break; |
| 3497 | } |
| 3498 | |
| 3499 | binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3500 | "%d:%d %s %016llx ref %d desc %d s %d w %d for node %d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3501 | proc->pid, thread->pid, |
| 3502 | cmd == BC_REQUEST_DEATH_NOTIFICATION ? |
| 3503 | "BC_REQUEST_DEATH_NOTIFICATION" : |
| 3504 | "BC_CLEAR_DEATH_NOTIFICATION", |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 3505 | (u64)cookie, ref->data.debug_id, |
| 3506 | ref->data.desc, ref->data.strong, |
| 3507 | ref->data.weak, ref->node->debug_id); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3508 | |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3509 | binder_node_lock(ref->node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3510 | if (cmd == BC_REQUEST_DEATH_NOTIFICATION) { |
| 3511 | if (ref->death) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3512 | binder_user_error("%d:%d BC_REQUEST_DEATH_NOTIFICATION death notification already set\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3513 | proc->pid, thread->pid); |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3514 | binder_node_unlock(ref->node); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3515 | binder_proc_unlock(proc); |
| 3516 | kfree(death); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3517 | break; |
| 3518 | } |
| 3519 | binder_stats_created(BINDER_STAT_DEATH); |
| 3520 | INIT_LIST_HEAD(&death->work.entry); |
| 3521 | death->cookie = cookie; |
| 3522 | ref->death = death; |
| 3523 | if (ref->node->proc == NULL) { |
| 3524 | ref->death->work.type = BINDER_WORK_DEAD_BINDER; |
Martijn Coenen | bb74562 | 2017-08-31 10:04:28 +0200 | [diff] [blame] | 3525 | |
| 3526 | binder_inner_proc_lock(proc); |
| 3527 | binder_enqueue_work_ilocked( |
| 3528 | &ref->death->work, &proc->todo); |
| 3529 | binder_wakeup_proc_ilocked(proc); |
| 3530 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3531 | } |
| 3532 | } else { |
| 3533 | if (ref->death == NULL) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3534 | binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification not active\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3535 | proc->pid, thread->pid); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3536 | binder_node_unlock(ref->node); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3537 | binder_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3538 | break; |
| 3539 | } |
| 3540 | death = ref->death; |
| 3541 | if (death->cookie != cookie) { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3542 | binder_user_error("%d:%d BC_CLEAR_DEATH_NOTIFICATION death notification cookie mismatch %016llx != %016llx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3543 | proc->pid, thread->pid, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3544 | (u64)death->cookie, |
| 3545 | (u64)cookie); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3546 | binder_node_unlock(ref->node); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3547 | binder_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3548 | break; |
| 3549 | } |
| 3550 | ref->death = NULL; |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3551 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3552 | if (list_empty(&death->work.entry)) { |
| 3553 | death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION; |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3554 | if (thread->looper & |
| 3555 | (BINDER_LOOPER_STATE_REGISTERED | |
| 3556 | BINDER_LOOPER_STATE_ENTERED)) |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3557 | binder_enqueue_thread_work_ilocked( |
| 3558 | thread, |
| 3559 | &death->work); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3560 | else { |
| 3561 | binder_enqueue_work_ilocked( |
| 3562 | &death->work, |
| 3563 | &proc->todo); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 3564 | binder_wakeup_proc_ilocked( |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 3565 | proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3566 | } |
| 3567 | } else { |
| 3568 | BUG_ON(death->work.type != BINDER_WORK_DEAD_BINDER); |
| 3569 | death->work.type = BINDER_WORK_DEAD_BINDER_AND_CLEAR; |
| 3570 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3571 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3572 | } |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3573 | binder_node_unlock(ref->node); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 3574 | binder_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3575 | } break; |
| 3576 | case BC_DEAD_BINDER_DONE: { |
| 3577 | struct binder_work *w; |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3578 | binder_uintptr_t cookie; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3579 | struct binder_ref_death *death = NULL; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 3580 | |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3581 | if (get_user(cookie, (binder_uintptr_t __user *)ptr)) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3582 | return -EFAULT; |
| 3583 | |
Lisa Du | 7a64cd8 | 2016-02-17 09:32:52 +0800 | [diff] [blame] | 3584 | ptr += sizeof(cookie); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3585 | binder_inner_proc_lock(proc); |
| 3586 | list_for_each_entry(w, &proc->delivered_death, |
| 3587 | entry) { |
| 3588 | struct binder_ref_death *tmp_death = |
| 3589 | container_of(w, |
| 3590 | struct binder_ref_death, |
| 3591 | work); |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 3592 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3593 | if (tmp_death->cookie == cookie) { |
| 3594 | death = tmp_death; |
| 3595 | break; |
| 3596 | } |
| 3597 | } |
| 3598 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
Todd Kjos | 8ca86f1 | 2018-02-07 13:57:37 -0800 | [diff] [blame] | 3599 | "%d:%d BC_DEAD_BINDER_DONE %016llx found %pK\n", |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3600 | proc->pid, thread->pid, (u64)cookie, |
| 3601 | death); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3602 | if (death == NULL) { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3603 | binder_user_error("%d:%d BC_DEAD_BINDER_DONE %016llx not found\n", |
| 3604 | proc->pid, thread->pid, (u64)cookie); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3605 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3606 | break; |
| 3607 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3608 | binder_dequeue_work_ilocked(&death->work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3609 | if (death->work.type == BINDER_WORK_DEAD_BINDER_AND_CLEAR) { |
| 3610 | death->work.type = BINDER_WORK_CLEAR_DEATH_NOTIFICATION; |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3611 | if (thread->looper & |
| 3612 | (BINDER_LOOPER_STATE_REGISTERED | |
| 3613 | BINDER_LOOPER_STATE_ENTERED)) |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3614 | binder_enqueue_thread_work_ilocked( |
| 3615 | thread, &death->work); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3616 | else { |
| 3617 | binder_enqueue_work_ilocked( |
| 3618 | &death->work, |
| 3619 | &proc->todo); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 3620 | binder_wakeup_proc_ilocked(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3621 | } |
| 3622 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3623 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3624 | } break; |
| 3625 | |
| 3626 | default: |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3627 | pr_err("%d:%d unknown command %d\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3628 | proc->pid, thread->pid, cmd); |
| 3629 | return -EINVAL; |
| 3630 | } |
| 3631 | *consumed = ptr - buffer; |
| 3632 | } |
| 3633 | return 0; |
| 3634 | } |
| 3635 | |
Bojan Prtvar | fb07ebc | 2013-09-02 08:18:40 +0200 | [diff] [blame] | 3636 | static void binder_stat_br(struct binder_proc *proc, |
| 3637 | struct binder_thread *thread, uint32_t cmd) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3638 | { |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3639 | trace_binder_return(cmd); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3640 | if (_IOC_NR(cmd) < ARRAY_SIZE(binder_stats.br)) { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 3641 | atomic_inc(&binder_stats.br[_IOC_NR(cmd)]); |
| 3642 | atomic_inc(&proc->stats.br[_IOC_NR(cmd)]); |
| 3643 | atomic_inc(&thread->stats.br[_IOC_NR(cmd)]); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3644 | } |
| 3645 | } |
| 3646 | |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3647 | static int binder_put_node_cmd(struct binder_proc *proc, |
| 3648 | struct binder_thread *thread, |
| 3649 | void __user **ptrp, |
| 3650 | binder_uintptr_t node_ptr, |
| 3651 | binder_uintptr_t node_cookie, |
| 3652 | int node_debug_id, |
| 3653 | uint32_t cmd, const char *cmd_name) |
| 3654 | { |
| 3655 | void __user *ptr = *ptrp; |
| 3656 | |
| 3657 | if (put_user(cmd, (uint32_t __user *)ptr)) |
| 3658 | return -EFAULT; |
| 3659 | ptr += sizeof(uint32_t); |
| 3660 | |
| 3661 | if (put_user(node_ptr, (binder_uintptr_t __user *)ptr)) |
| 3662 | return -EFAULT; |
| 3663 | ptr += sizeof(binder_uintptr_t); |
| 3664 | |
| 3665 | if (put_user(node_cookie, (binder_uintptr_t __user *)ptr)) |
| 3666 | return -EFAULT; |
| 3667 | ptr += sizeof(binder_uintptr_t); |
| 3668 | |
| 3669 | binder_stat_br(proc, thread, cmd); |
| 3670 | binder_debug(BINDER_DEBUG_USER_REFS, "%d:%d %s %d u%016llx c%016llx\n", |
| 3671 | proc->pid, thread->pid, cmd_name, node_debug_id, |
| 3672 | (u64)node_ptr, (u64)node_cookie); |
| 3673 | |
| 3674 | *ptrp = ptr; |
| 3675 | return 0; |
| 3676 | } |
| 3677 | |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 3678 | static int binder_wait_for_work(struct binder_thread *thread, |
| 3679 | bool do_proc_work) |
| 3680 | { |
| 3681 | DEFINE_WAIT(wait); |
| 3682 | struct binder_proc *proc = thread->proc; |
| 3683 | int ret = 0; |
| 3684 | |
| 3685 | freezer_do_not_count(); |
| 3686 | binder_inner_proc_lock(proc); |
| 3687 | for (;;) { |
| 3688 | prepare_to_wait(&thread->wait, &wait, TASK_INTERRUPTIBLE); |
| 3689 | if (binder_has_work_ilocked(thread, do_proc_work)) |
| 3690 | break; |
| 3691 | if (do_proc_work) |
| 3692 | list_add(&thread->waiting_thread_node, |
| 3693 | &proc->waiting_threads); |
| 3694 | binder_inner_proc_unlock(proc); |
| 3695 | schedule(); |
| 3696 | binder_inner_proc_lock(proc); |
| 3697 | list_del_init(&thread->waiting_thread_node); |
| 3698 | if (signal_pending(current)) { |
| 3699 | ret = -ERESTARTSYS; |
| 3700 | break; |
| 3701 | } |
| 3702 | } |
| 3703 | finish_wait(&thread->wait, &wait); |
| 3704 | binder_inner_proc_unlock(proc); |
| 3705 | freezer_count(); |
| 3706 | |
| 3707 | return ret; |
| 3708 | } |
| 3709 | |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3710 | /** |
| 3711 | * binder_apply_fd_fixups() - finish fd translation |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 3712 | * @proc: binder_proc associated @t->buffer |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3713 | * @t: binder transaction with list of fd fixups |
| 3714 | * |
| 3715 | * Now that we are in the context of the transaction target |
| 3716 | * process, we can allocate and install fds. Process the |
| 3717 | * list of fds to translate and fixup the buffer with the |
| 3718 | * new fds. |
| 3719 | * |
| 3720 | * If we fail to allocate an fd, then free the resources by |
| 3721 | * fput'ing files that have not been processed and ksys_close'ing |
| 3722 | * any fds that have already been allocated. |
| 3723 | */ |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 3724 | static int binder_apply_fd_fixups(struct binder_proc *proc, |
| 3725 | struct binder_transaction *t) |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3726 | { |
| 3727 | struct binder_txn_fd_fixup *fixup, *tmp; |
| 3728 | int ret = 0; |
| 3729 | |
| 3730 | list_for_each_entry(fixup, &t->fd_fixups, fixup_entry) { |
| 3731 | int fd = get_unused_fd_flags(O_CLOEXEC); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3732 | |
| 3733 | if (fd < 0) { |
| 3734 | binder_debug(BINDER_DEBUG_TRANSACTION, |
| 3735 | "failed fd fixup txn %d fd %d\n", |
| 3736 | t->debug_id, fd); |
| 3737 | ret = -ENOMEM; |
| 3738 | break; |
| 3739 | } |
| 3740 | binder_debug(BINDER_DEBUG_TRANSACTION, |
| 3741 | "fd fixup txn %d fd %d\n", |
| 3742 | t->debug_id, fd); |
| 3743 | trace_binder_transaction_fd_recv(t, fd, fixup->offset); |
| 3744 | fd_install(fd, fixup->file); |
| 3745 | fixup->file = NULL; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 3746 | if (binder_alloc_copy_to_buffer(&proc->alloc, t->buffer, |
| 3747 | fixup->offset, &fd, |
| 3748 | sizeof(u32))) { |
| 3749 | ret = -EINVAL; |
| 3750 | break; |
| 3751 | } |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3752 | } |
| 3753 | list_for_each_entry_safe(fixup, tmp, &t->fd_fixups, fixup_entry) { |
| 3754 | if (fixup->file) { |
| 3755 | fput(fixup->file); |
| 3756 | } else if (ret) { |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 3757 | u32 fd; |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 3758 | int err; |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3759 | |
Todd Kjos | bb4a2e48 | 2019-06-28 09:50:12 -0700 | [diff] [blame] | 3760 | err = binder_alloc_copy_from_buffer(&proc->alloc, &fd, |
| 3761 | t->buffer, |
| 3762 | fixup->offset, |
| 3763 | sizeof(fd)); |
| 3764 | WARN_ON(err); |
| 3765 | if (!err) |
| 3766 | binder_deferred_fd_close(fd); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 3767 | } |
| 3768 | list_del(&fixup->fixup_entry); |
| 3769 | kfree(fixup); |
| 3770 | } |
| 3771 | |
| 3772 | return ret; |
| 3773 | } |
| 3774 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3775 | static int binder_thread_read(struct binder_proc *proc, |
| 3776 | struct binder_thread *thread, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3777 | binder_uintptr_t binder_buffer, size_t size, |
| 3778 | binder_size_t *consumed, int non_block) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3779 | { |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3780 | void __user *buffer = (void __user *)(uintptr_t)binder_buffer; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3781 | void __user *ptr = buffer + *consumed; |
| 3782 | void __user *end = buffer + size; |
| 3783 | |
| 3784 | int ret = 0; |
| 3785 | int wait_for_proc_work; |
| 3786 | |
| 3787 | if (*consumed == 0) { |
| 3788 | if (put_user(BR_NOOP, (uint32_t __user *)ptr)) |
| 3789 | return -EFAULT; |
| 3790 | ptr += sizeof(uint32_t); |
| 3791 | } |
| 3792 | |
| 3793 | retry: |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3794 | binder_inner_proc_lock(proc); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 3795 | wait_for_proc_work = binder_available_for_proc_work_ilocked(thread); |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 3796 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3797 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3798 | thread->looper |= BINDER_LOOPER_STATE_WAITING; |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3799 | |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3800 | trace_binder_wait_for_work(wait_for_proc_work, |
| 3801 | !!thread->transaction_stack, |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3802 | !binder_worklist_empty(proc, &thread->todo)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3803 | if (wait_for_proc_work) { |
| 3804 | if (!(thread->looper & (BINDER_LOOPER_STATE_REGISTERED | |
| 3805 | BINDER_LOOPER_STATE_ENTERED))) { |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3806 | 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-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3807 | proc->pid, thread->pid, thread->looper); |
| 3808 | wait_event_interruptible(binder_user_error_wait, |
| 3809 | binder_stop_on_user_error < 2); |
| 3810 | } |
| 3811 | binder_set_nice(proc->default_priority); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3812 | } |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 3813 | |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 3814 | if (non_block) { |
| 3815 | if (!binder_has_work(thread, wait_for_proc_work)) |
| 3816 | ret = -EAGAIN; |
| 3817 | } else { |
| 3818 | ret = binder_wait_for_work(thread, wait_for_proc_work); |
| 3819 | } |
| 3820 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3821 | thread->looper &= ~BINDER_LOOPER_STATE_WAITING; |
| 3822 | |
| 3823 | if (ret) |
| 3824 | return ret; |
| 3825 | |
| 3826 | while (1) { |
| 3827 | uint32_t cmd; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 3828 | struct binder_transaction_data_secctx tr; |
| 3829 | struct binder_transaction_data *trd = &tr.transaction_data; |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3830 | struct binder_work *w = NULL; |
| 3831 | struct list_head *list = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3832 | struct binder_transaction *t = NULL; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 3833 | struct binder_thread *t_from; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 3834 | size_t trsize = sizeof(*trd); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3835 | |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3836 | binder_inner_proc_lock(proc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3837 | if (!binder_worklist_empty_ilocked(&thread->todo)) |
| 3838 | list = &thread->todo; |
| 3839 | else if (!binder_worklist_empty_ilocked(&proc->todo) && |
| 3840 | wait_for_proc_work) |
| 3841 | list = &proc->todo; |
| 3842 | else { |
| 3843 | binder_inner_proc_unlock(proc); |
| 3844 | |
Dmitry Voytik | 395262a | 2014-09-08 18:16:34 +0400 | [diff] [blame] | 3845 | /* no data added */ |
Todd Kjos | 08dabce | 2017-06-29 12:01:49 -0700 | [diff] [blame] | 3846 | if (ptr - buffer == 4 && !thread->looper_need_return) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3847 | goto retry; |
| 3848 | break; |
| 3849 | } |
| 3850 | |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3851 | if (end - ptr < sizeof(tr) + 4) { |
| 3852 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3853 | break; |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3854 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 3855 | w = binder_dequeue_work_head_ilocked(list); |
Martijn Coenen | 148ade2 | 2017-11-15 09:21:35 +0100 | [diff] [blame] | 3856 | if (binder_worklist_empty_ilocked(&thread->todo)) |
| 3857 | thread->process_todo = false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3858 | |
| 3859 | switch (w->type) { |
| 3860 | case BINDER_WORK_TRANSACTION: { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3861 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3862 | t = container_of(w, struct binder_transaction, work); |
| 3863 | } break; |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3864 | case BINDER_WORK_RETURN_ERROR: { |
| 3865 | struct binder_error *e = container_of( |
| 3866 | w, struct binder_error, work); |
| 3867 | |
| 3868 | WARN_ON(e->cmd == BR_OK); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3869 | binder_inner_proc_unlock(proc); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3870 | if (put_user(e->cmd, (uint32_t __user *)ptr)) |
| 3871 | return -EFAULT; |
宋金时 | 838d556 | 2018-05-10 02:05:03 +0000 | [diff] [blame] | 3872 | cmd = e->cmd; |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3873 | e->cmd = BR_OK; |
| 3874 | ptr += sizeof(uint32_t); |
| 3875 | |
宋金时 | 838d556 | 2018-05-10 02:05:03 +0000 | [diff] [blame] | 3876 | binder_stat_br(proc, thread, cmd); |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 3877 | } break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3878 | case BINDER_WORK_TRANSACTION_COMPLETE: { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3879 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3880 | cmd = BR_TRANSACTION_COMPLETE; |
Todd Kjos | 1909a67 | 2019-06-21 10:54:15 -0700 | [diff] [blame] | 3881 | kfree(w); |
| 3882 | binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3883 | if (put_user(cmd, (uint32_t __user *)ptr)) |
| 3884 | return -EFAULT; |
| 3885 | ptr += sizeof(uint32_t); |
| 3886 | |
| 3887 | binder_stat_br(proc, thread, cmd); |
| 3888 | binder_debug(BINDER_DEBUG_TRANSACTION_COMPLETE, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 3889 | "%d:%d BR_TRANSACTION_COMPLETE\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3890 | proc->pid, thread->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3891 | } break; |
| 3892 | case BINDER_WORK_NODE: { |
| 3893 | struct binder_node *node = container_of(w, struct binder_node, work); |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3894 | int strong, weak; |
| 3895 | binder_uintptr_t node_ptr = node->ptr; |
| 3896 | binder_uintptr_t node_cookie = node->cookie; |
| 3897 | int node_debug_id = node->debug_id; |
| 3898 | int has_weak_ref; |
| 3899 | int has_strong_ref; |
| 3900 | void __user *orig_ptr = ptr; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 3901 | |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3902 | BUG_ON(proc != node->proc); |
| 3903 | strong = node->internal_strong_refs || |
| 3904 | node->local_strong_refs; |
| 3905 | weak = !hlist_empty(&node->refs) || |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 3906 | node->local_weak_refs || |
| 3907 | node->tmp_refs || strong; |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3908 | has_strong_ref = node->has_strong_ref; |
| 3909 | has_weak_ref = node->has_weak_ref; |
| 3910 | |
| 3911 | if (weak && !has_weak_ref) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3912 | node->has_weak_ref = 1; |
| 3913 | node->pending_weak_ref = 1; |
| 3914 | node->local_weak_refs++; |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3915 | } |
| 3916 | if (strong && !has_strong_ref) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3917 | node->has_strong_ref = 1; |
| 3918 | node->pending_strong_ref = 1; |
| 3919 | node->local_strong_refs++; |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3920 | } |
| 3921 | if (!strong && has_strong_ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3922 | node->has_strong_ref = 0; |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3923 | if (!weak && has_weak_ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3924 | node->has_weak_ref = 0; |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3925 | if (!weak && !strong) { |
| 3926 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
| 3927 | "%d:%d node %d u%016llx c%016llx deleted\n", |
| 3928 | proc->pid, thread->pid, |
| 3929 | node_debug_id, |
| 3930 | (u64)node_ptr, |
| 3931 | (u64)node_cookie); |
| 3932 | rb_erase(&node->rb_node, &proc->nodes); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3933 | binder_inner_proc_unlock(proc); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 3934 | binder_node_lock(node); |
| 3935 | /* |
| 3936 | * Acquire the node lock before freeing the |
| 3937 | * node to serialize with other threads that |
| 3938 | * may have been holding the node lock while |
| 3939 | * decrementing this node (avoids race where |
| 3940 | * this thread frees while the other thread |
| 3941 | * is unlocking the node after the final |
| 3942 | * decrement) |
| 3943 | */ |
| 3944 | binder_node_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 3945 | binder_free_node(node); |
| 3946 | } else |
| 3947 | binder_inner_proc_unlock(proc); |
| 3948 | |
Todd Kjos | 26b47d8 | 2017-06-29 12:01:47 -0700 | [diff] [blame] | 3949 | if (weak && !has_weak_ref) |
| 3950 | ret = binder_put_node_cmd( |
| 3951 | proc, thread, &ptr, node_ptr, |
| 3952 | node_cookie, node_debug_id, |
| 3953 | BR_INCREFS, "BR_INCREFS"); |
| 3954 | if (!ret && strong && !has_strong_ref) |
| 3955 | ret = binder_put_node_cmd( |
| 3956 | proc, thread, &ptr, node_ptr, |
| 3957 | node_cookie, node_debug_id, |
| 3958 | BR_ACQUIRE, "BR_ACQUIRE"); |
| 3959 | if (!ret && !strong && has_strong_ref) |
| 3960 | ret = binder_put_node_cmd( |
| 3961 | proc, thread, &ptr, node_ptr, |
| 3962 | node_cookie, node_debug_id, |
| 3963 | BR_RELEASE, "BR_RELEASE"); |
| 3964 | if (!ret && !weak && has_weak_ref) |
| 3965 | ret = binder_put_node_cmd( |
| 3966 | proc, thread, &ptr, node_ptr, |
| 3967 | node_cookie, node_debug_id, |
| 3968 | BR_DECREFS, "BR_DECREFS"); |
| 3969 | if (orig_ptr == ptr) |
| 3970 | binder_debug(BINDER_DEBUG_INTERNAL_REFS, |
| 3971 | "%d:%d node %d u%016llx c%016llx state unchanged\n", |
| 3972 | proc->pid, thread->pid, |
| 3973 | node_debug_id, |
| 3974 | (u64)node_ptr, |
| 3975 | (u64)node_cookie); |
| 3976 | if (ret) |
| 3977 | return ret; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3978 | } break; |
| 3979 | case BINDER_WORK_DEAD_BINDER: |
| 3980 | case BINDER_WORK_DEAD_BINDER_AND_CLEAR: |
| 3981 | case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: { |
| 3982 | struct binder_ref_death *death; |
| 3983 | uint32_t cmd; |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3984 | binder_uintptr_t cookie; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3985 | |
| 3986 | death = container_of(w, struct binder_ref_death, work); |
| 3987 | if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) |
| 3988 | cmd = BR_CLEAR_DEATH_NOTIFICATION_DONE; |
| 3989 | else |
| 3990 | cmd = BR_DEAD_BINDER; |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3991 | cookie = death->cookie; |
| 3992 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3993 | binder_debug(BINDER_DEBUG_DEATH_NOTIFICATION, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 3994 | "%d:%d %s %016llx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 3995 | proc->pid, thread->pid, |
| 3996 | cmd == BR_DEAD_BINDER ? |
| 3997 | "BR_DEAD_BINDER" : |
| 3998 | "BR_CLEAR_DEATH_NOTIFICATION_DONE", |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 3999 | (u64)cookie); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4000 | if (w->type == BINDER_WORK_CLEAR_DEATH_NOTIFICATION) { |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 4001 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4002 | kfree(death); |
| 4003 | binder_stats_deleted(BINDER_STAT_DEATH); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4004 | } else { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4005 | binder_enqueue_work_ilocked( |
| 4006 | w, &proc->delivered_death); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4007 | binder_inner_proc_unlock(proc); |
| 4008 | } |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 4009 | if (put_user(cmd, (uint32_t __user *)ptr)) |
| 4010 | return -EFAULT; |
| 4011 | ptr += sizeof(uint32_t); |
| 4012 | if (put_user(cookie, |
| 4013 | (binder_uintptr_t __user *)ptr)) |
| 4014 | return -EFAULT; |
| 4015 | ptr += sizeof(binder_uintptr_t); |
| 4016 | binder_stat_br(proc, thread, cmd); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4017 | if (cmd == BR_DEAD_BINDER) |
| 4018 | goto done; /* DEAD_BINDER notifications can cause transactions */ |
| 4019 | } break; |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 4020 | default: |
| 4021 | binder_inner_proc_unlock(proc); |
| 4022 | pr_err("%d:%d: bad work type %d\n", |
| 4023 | proc->pid, thread->pid, w->type); |
| 4024 | break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4025 | } |
| 4026 | |
| 4027 | if (!t) |
| 4028 | continue; |
| 4029 | |
| 4030 | BUG_ON(t->buffer == NULL); |
| 4031 | if (t->buffer->target_node) { |
| 4032 | struct binder_node *target_node = t->buffer->target_node; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4033 | |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4034 | trd->target.ptr = target_node->ptr; |
| 4035 | trd->cookie = target_node->cookie; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4036 | t->saved_priority = task_nice(current); |
| 4037 | if (t->priority < target_node->min_priority && |
| 4038 | !(t->flags & TF_ONE_WAY)) |
| 4039 | binder_set_nice(t->priority); |
| 4040 | else if (!(t->flags & TF_ONE_WAY) || |
| 4041 | t->saved_priority > target_node->min_priority) |
| 4042 | binder_set_nice(target_node->min_priority); |
| 4043 | cmd = BR_TRANSACTION; |
| 4044 | } else { |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4045 | trd->target.ptr = 0; |
| 4046 | trd->cookie = 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4047 | cmd = BR_REPLY; |
| 4048 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4049 | trd->code = t->code; |
| 4050 | trd->flags = t->flags; |
| 4051 | trd->sender_euid = from_kuid(current_user_ns(), t->sender_euid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4052 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4053 | t_from = binder_get_txn_from(t); |
| 4054 | if (t_from) { |
| 4055 | struct task_struct *sender = t_from->proc->tsk; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4056 | |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4057 | trd->sender_pid = |
| 4058 | task_tgid_nr_ns(sender, |
| 4059 | task_active_pid_ns(current)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4060 | } else { |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4061 | trd->sender_pid = 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4062 | } |
| 4063 | |
Todd Kjos | 8ced0c6 | 2019-02-08 10:35:15 -0800 | [diff] [blame] | 4064 | ret = binder_apply_fd_fixups(proc, t); |
Todd Kjos | 44d8047 | 2018-08-28 13:46:25 -0700 | [diff] [blame] | 4065 | if (ret) { |
| 4066 | struct binder_buffer *buffer = t->buffer; |
| 4067 | bool oneway = !!(t->flags & TF_ONE_WAY); |
| 4068 | int tid = t->debug_id; |
| 4069 | |
| 4070 | if (t_from) |
| 4071 | binder_thread_dec_tmpref(t_from); |
| 4072 | buffer->transaction = NULL; |
| 4073 | binder_cleanup_transaction(t, "fd fixups failed", |
| 4074 | BR_FAILED_REPLY); |
| 4075 | binder_free_buf(proc, buffer); |
| 4076 | binder_debug(BINDER_DEBUG_FAILED_TRANSACTION, |
| 4077 | "%d:%d %stransaction %d fd fixups failed %d/%d, line %d\n", |
| 4078 | proc->pid, thread->pid, |
| 4079 | oneway ? "async " : |
| 4080 | (cmd == BR_REPLY ? "reply " : ""), |
| 4081 | tid, BR_FAILED_REPLY, ret, __LINE__); |
| 4082 | if (cmd == BR_REPLY) { |
| 4083 | cmd = BR_FAILED_REPLY; |
| 4084 | if (put_user(cmd, (uint32_t __user *)ptr)) |
| 4085 | return -EFAULT; |
| 4086 | ptr += sizeof(uint32_t); |
| 4087 | binder_stat_br(proc, thread, cmd); |
| 4088 | break; |
| 4089 | } |
| 4090 | continue; |
| 4091 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4092 | trd->data_size = t->buffer->data_size; |
| 4093 | trd->offsets_size = t->buffer->offsets_size; |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 4094 | trd->data.ptr.buffer = (uintptr_t)t->buffer->user_data; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4095 | trd->data.ptr.offsets = trd->data.ptr.buffer + |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4096 | ALIGN(t->buffer->data_size, |
| 4097 | sizeof(void *)); |
| 4098 | |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4099 | tr.secctx = t->security_ctx; |
| 4100 | if (t->security_ctx) { |
| 4101 | cmd = BR_TRANSACTION_SEC_CTX; |
| 4102 | trsize = sizeof(tr); |
| 4103 | } |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4104 | if (put_user(cmd, (uint32_t __user *)ptr)) { |
| 4105 | if (t_from) |
| 4106 | binder_thread_dec_tmpref(t_from); |
Martijn Coenen | fb2c445 | 2017-11-13 10:06:08 +0100 | [diff] [blame] | 4107 | |
| 4108 | binder_cleanup_transaction(t, "put_user failed", |
| 4109 | BR_FAILED_REPLY); |
| 4110 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4111 | return -EFAULT; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4112 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4113 | ptr += sizeof(uint32_t); |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4114 | if (copy_to_user(ptr, &tr, trsize)) { |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4115 | if (t_from) |
| 4116 | binder_thread_dec_tmpref(t_from); |
Martijn Coenen | fb2c445 | 2017-11-13 10:06:08 +0100 | [diff] [blame] | 4117 | |
| 4118 | binder_cleanup_transaction(t, "copy_to_user failed", |
| 4119 | BR_FAILED_REPLY); |
| 4120 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4121 | return -EFAULT; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4122 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4123 | ptr += trsize; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4124 | |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4125 | trace_binder_transaction_received(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4126 | binder_stat_br(proc, thread, cmd); |
| 4127 | binder_debug(BINDER_DEBUG_TRANSACTION, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 4128 | "%d:%d %s %d %d:%d, cmd %d size %zd-%zd ptr %016llx-%016llx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4129 | proc->pid, thread->pid, |
| 4130 | (cmd == BR_TRANSACTION) ? "BR_TRANSACTION" : |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4131 | (cmd == BR_TRANSACTION_SEC_CTX) ? |
| 4132 | "BR_TRANSACTION_SEC_CTX" : "BR_REPLY", |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4133 | t->debug_id, t_from ? t_from->proc->pid : 0, |
| 4134 | t_from ? t_from->pid : 0, cmd, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4135 | t->buffer->data_size, t->buffer->offsets_size, |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4136 | (u64)trd->data.ptr.buffer, |
| 4137 | (u64)trd->data.ptr.offsets); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4138 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4139 | if (t_from) |
| 4140 | binder_thread_dec_tmpref(t_from); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4141 | t->buffer->allow_user_free = 1; |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4142 | if (cmd != BR_REPLY && !(t->flags & TF_ONE_WAY)) { |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 4143 | binder_inner_proc_lock(thread->proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4144 | t->to_parent = thread->transaction_stack; |
| 4145 | t->to_thread = thread; |
| 4146 | thread->transaction_stack = t; |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 4147 | binder_inner_proc_unlock(thread->proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4148 | } else { |
Todd Kjos | b6d282c | 2017-06-29 12:01:54 -0700 | [diff] [blame] | 4149 | binder_free_transaction(t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4150 | } |
| 4151 | break; |
| 4152 | } |
| 4153 | |
| 4154 | done: |
| 4155 | |
| 4156 | *consumed = ptr - buffer; |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4157 | binder_inner_proc_lock(proc); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4158 | if (proc->requested_threads == 0 && |
| 4159 | list_empty(&thread->proc->waiting_threads) && |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4160 | proc->requested_threads_started < proc->max_threads && |
| 4161 | (thread->looper & (BINDER_LOOPER_STATE_REGISTERED | |
| 4162 | BINDER_LOOPER_STATE_ENTERED)) /* the user-space code fails to */ |
| 4163 | /*spawn a new thread if we leave this out */) { |
| 4164 | proc->requested_threads++; |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4165 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4166 | binder_debug(BINDER_DEBUG_THREADS, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4167 | "%d:%d BR_SPAWN_LOOPER\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4168 | proc->pid, thread->pid); |
| 4169 | if (put_user(BR_SPAWN_LOOPER, (uint32_t __user *)buffer)) |
| 4170 | return -EFAULT; |
Arve Hjønnevåg | 89334ab | 2012-10-16 15:29:52 -0700 | [diff] [blame] | 4171 | binder_stat_br(proc, thread, BR_SPAWN_LOOPER); |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4172 | } else |
| 4173 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4174 | return 0; |
| 4175 | } |
| 4176 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4177 | static void binder_release_work(struct binder_proc *proc, |
| 4178 | struct list_head *list) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4179 | { |
| 4180 | struct binder_work *w; |
Todd Kjos | f3277cb | 2020-10-09 16:24:55 -0700 | [diff] [blame] | 4181 | enum binder_work_type wtype; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4182 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4183 | while (1) { |
Todd Kjos | f3277cb | 2020-10-09 16:24:55 -0700 | [diff] [blame] | 4184 | binder_inner_proc_lock(proc); |
| 4185 | w = binder_dequeue_work_head_ilocked(list); |
| 4186 | wtype = w ? w->type : 0; |
| 4187 | binder_inner_proc_unlock(proc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4188 | if (!w) |
| 4189 | return; |
| 4190 | |
Todd Kjos | f3277cb | 2020-10-09 16:24:55 -0700 | [diff] [blame] | 4191 | switch (wtype) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4192 | case BINDER_WORK_TRANSACTION: { |
| 4193 | struct binder_transaction *t; |
| 4194 | |
| 4195 | t = container_of(w, struct binder_transaction, work); |
Martijn Coenen | fb2c445 | 2017-11-13 10:06:08 +0100 | [diff] [blame] | 4196 | |
| 4197 | binder_cleanup_transaction(t, "process died.", |
| 4198 | BR_DEAD_REPLY); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4199 | } break; |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 4200 | case BINDER_WORK_RETURN_ERROR: { |
| 4201 | struct binder_error *e = container_of( |
| 4202 | w, struct binder_error, work); |
| 4203 | |
| 4204 | binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, |
| 4205 | "undelivered TRANSACTION_ERROR: %u\n", |
| 4206 | e->cmd); |
| 4207 | } break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4208 | case BINDER_WORK_TRANSACTION_COMPLETE: { |
Arve Hjønnevåg | 675d66b | 2012-10-16 15:29:54 -0700 | [diff] [blame] | 4209 | binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4210 | "undelivered TRANSACTION_COMPLETE\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4211 | kfree(w); |
| 4212 | binder_stats_deleted(BINDER_STAT_TRANSACTION_COMPLETE); |
| 4213 | } break; |
Arve Hjønnevåg | 675d66b | 2012-10-16 15:29:54 -0700 | [diff] [blame] | 4214 | case BINDER_WORK_DEAD_BINDER_AND_CLEAR: |
| 4215 | case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: { |
| 4216 | struct binder_ref_death *death; |
| 4217 | |
| 4218 | death = container_of(w, struct binder_ref_death, work); |
| 4219 | binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 4220 | "undelivered death notification, %016llx\n", |
| 4221 | (u64)death->cookie); |
Arve Hjønnevåg | 675d66b | 2012-10-16 15:29:54 -0700 | [diff] [blame] | 4222 | kfree(death); |
| 4223 | binder_stats_deleted(BINDER_STAT_DEATH); |
| 4224 | } break; |
Todd Kjos | f3277cb | 2020-10-09 16:24:55 -0700 | [diff] [blame] | 4225 | case BINDER_WORK_NODE: |
| 4226 | break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4227 | default: |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4228 | pr_err("unexpected work type, %d, not freed\n", |
Todd Kjos | f3277cb | 2020-10-09 16:24:55 -0700 | [diff] [blame] | 4229 | wtype); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4230 | break; |
| 4231 | } |
| 4232 | } |
| 4233 | |
| 4234 | } |
| 4235 | |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4236 | static struct binder_thread *binder_get_thread_ilocked( |
| 4237 | struct binder_proc *proc, struct binder_thread *new_thread) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4238 | { |
| 4239 | struct binder_thread *thread = NULL; |
| 4240 | struct rb_node *parent = NULL; |
| 4241 | struct rb_node **p = &proc->threads.rb_node; |
| 4242 | |
| 4243 | while (*p) { |
| 4244 | parent = *p; |
| 4245 | thread = rb_entry(parent, struct binder_thread, rb_node); |
| 4246 | |
| 4247 | if (current->pid < thread->pid) |
| 4248 | p = &(*p)->rb_left; |
| 4249 | else if (current->pid > thread->pid) |
| 4250 | p = &(*p)->rb_right; |
| 4251 | else |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4252 | return thread; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4253 | } |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4254 | if (!new_thread) |
| 4255 | return NULL; |
| 4256 | thread = new_thread; |
| 4257 | binder_stats_created(BINDER_STAT_THREAD); |
| 4258 | thread->proc = proc; |
| 4259 | thread->pid = current->pid; |
| 4260 | atomic_set(&thread->tmp_ref, 0); |
| 4261 | init_waitqueue_head(&thread->wait); |
| 4262 | INIT_LIST_HEAD(&thread->todo); |
| 4263 | rb_link_node(&thread->rb_node, parent, p); |
| 4264 | rb_insert_color(&thread->rb_node, &proc->threads); |
| 4265 | thread->looper_need_return = true; |
| 4266 | thread->return_error.work.type = BINDER_WORK_RETURN_ERROR; |
| 4267 | thread->return_error.cmd = BR_OK; |
| 4268 | thread->reply_error.work.type = BINDER_WORK_RETURN_ERROR; |
| 4269 | thread->reply_error.cmd = BR_OK; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4270 | INIT_LIST_HEAD(&new_thread->waiting_thread_node); |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4271 | return thread; |
| 4272 | } |
| 4273 | |
| 4274 | static struct binder_thread *binder_get_thread(struct binder_proc *proc) |
| 4275 | { |
| 4276 | struct binder_thread *thread; |
| 4277 | struct binder_thread *new_thread; |
| 4278 | |
| 4279 | binder_inner_proc_lock(proc); |
| 4280 | thread = binder_get_thread_ilocked(proc, NULL); |
| 4281 | binder_inner_proc_unlock(proc); |
| 4282 | if (!thread) { |
| 4283 | new_thread = kzalloc(sizeof(*thread), GFP_KERNEL); |
| 4284 | if (new_thread == NULL) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4285 | return NULL; |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4286 | binder_inner_proc_lock(proc); |
| 4287 | thread = binder_get_thread_ilocked(proc, new_thread); |
| 4288 | binder_inner_proc_unlock(proc); |
| 4289 | if (thread != new_thread) |
| 4290 | kfree(new_thread); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4291 | } |
| 4292 | return thread; |
| 4293 | } |
| 4294 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4295 | static void binder_free_proc(struct binder_proc *proc) |
| 4296 | { |
Todd Kjos | d35d366 | 2020-06-22 13:07:15 -0700 | [diff] [blame] | 4297 | struct binder_device *device; |
| 4298 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4299 | BUG_ON(!list_empty(&proc->todo)); |
| 4300 | BUG_ON(!list_empty(&proc->delivered_death)); |
Todd Kjos | d35d366 | 2020-06-22 13:07:15 -0700 | [diff] [blame] | 4301 | device = container_of(proc->context, struct binder_device, context); |
| 4302 | if (refcount_dec_and_test(&device->ref)) { |
| 4303 | kfree(proc->context->name); |
| 4304 | kfree(device); |
| 4305 | } |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4306 | binder_alloc_deferred_release(&proc->alloc); |
| 4307 | put_task_struct(proc->tsk); |
| 4308 | binder_stats_deleted(BINDER_STAT_PROC); |
| 4309 | kfree(proc); |
| 4310 | } |
| 4311 | |
| 4312 | static void binder_free_thread(struct binder_thread *thread) |
| 4313 | { |
| 4314 | BUG_ON(!list_empty(&thread->todo)); |
| 4315 | binder_stats_deleted(BINDER_STAT_THREAD); |
| 4316 | binder_proc_dec_tmpref(thread->proc); |
| 4317 | kfree(thread); |
| 4318 | } |
| 4319 | |
| 4320 | static int binder_thread_release(struct binder_proc *proc, |
| 4321 | struct binder_thread *thread) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4322 | { |
| 4323 | struct binder_transaction *t; |
| 4324 | struct binder_transaction *send_reply = NULL; |
| 4325 | int active_transactions = 0; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4326 | struct binder_transaction *last_t = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4327 | |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4328 | binder_inner_proc_lock(thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4329 | /* |
| 4330 | * take a ref on the proc so it survives |
| 4331 | * after we remove this thread from proc->threads. |
| 4332 | * The corresponding dec is when we actually |
| 4333 | * free the thread in binder_free_thread() |
| 4334 | */ |
| 4335 | proc->tmp_ref++; |
| 4336 | /* |
| 4337 | * take a ref on this thread to ensure it |
| 4338 | * survives while we are releasing it |
| 4339 | */ |
| 4340 | atomic_inc(&thread->tmp_ref); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4341 | rb_erase(&thread->rb_node, &proc->threads); |
| 4342 | t = thread->transaction_stack; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4343 | if (t) { |
| 4344 | spin_lock(&t->lock); |
| 4345 | if (t->to_thread == thread) |
| 4346 | send_reply = t; |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 4347 | } else { |
| 4348 | __acquire(&t->lock); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4349 | } |
| 4350 | thread->is_dead = true; |
| 4351 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4352 | while (t) { |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4353 | last_t = t; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4354 | active_transactions++; |
| 4355 | binder_debug(BINDER_DEBUG_DEAD_TRANSACTION, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4356 | "release %d:%d transaction %d %s, still active\n", |
| 4357 | proc->pid, thread->pid, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4358 | t->debug_id, |
| 4359 | (t->to_thread == thread) ? "in" : "out"); |
| 4360 | |
| 4361 | if (t->to_thread == thread) { |
| 4362 | t->to_proc = NULL; |
| 4363 | t->to_thread = NULL; |
| 4364 | if (t->buffer) { |
| 4365 | t->buffer->transaction = NULL; |
| 4366 | t->buffer = NULL; |
| 4367 | } |
| 4368 | t = t->to_parent; |
| 4369 | } else if (t->from == thread) { |
| 4370 | t->from = NULL; |
| 4371 | t = t->from_parent; |
| 4372 | } else |
| 4373 | BUG(); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4374 | spin_unlock(&last_t->lock); |
| 4375 | if (t) |
| 4376 | spin_lock(&t->lock); |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 4377 | else |
| 4378 | __acquire(&t->lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4379 | } |
Todd Kjos | 324fa64 | 2018-11-06 15:56:31 -0800 | [diff] [blame] | 4380 | /* annotation for sparse, lock not acquired in last iteration above */ |
| 4381 | __release(&t->lock); |
Martijn Coenen | f5cb779 | 2018-01-05 11:27:07 +0100 | [diff] [blame] | 4382 | |
| 4383 | /* |
| 4384 | * If this thread used poll, make sure we remove the waitqueue |
| 4385 | * from any epoll data structures holding it with POLLFREE. |
| 4386 | * waitqueue_active() is safe to use here because we're holding |
| 4387 | * the inner lock. |
| 4388 | */ |
| 4389 | if ((thread->looper & BINDER_LOOPER_STATE_POLL) && |
| 4390 | waitqueue_active(&thread->wait)) { |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 4391 | wake_up_poll(&thread->wait, EPOLLHUP | POLLFREE); |
Martijn Coenen | f5cb779 | 2018-01-05 11:27:07 +0100 | [diff] [blame] | 4392 | } |
| 4393 | |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4394 | binder_inner_proc_unlock(thread->proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4395 | |
Martijn Coenen | 5eeb2ca | 2018-02-16 09:47:15 +0100 | [diff] [blame] | 4396 | /* |
| 4397 | * This is needed to avoid races between wake_up_poll() above and |
| 4398 | * and ep_remove_waitqueue() called for other reasons (eg the epoll file |
| 4399 | * descriptor being closed); ep_remove_waitqueue() holds an RCU read |
| 4400 | * lock, so we can be sure it's done after calling synchronize_rcu(). |
| 4401 | */ |
| 4402 | if (thread->looper & BINDER_LOOPER_STATE_POLL) |
| 4403 | synchronize_rcu(); |
| 4404 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4405 | if (send_reply) |
| 4406 | binder_send_failed_reply(send_reply, BR_DEAD_REPLY); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4407 | binder_release_work(proc, &thread->todo); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4408 | binder_thread_dec_tmpref(thread); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4409 | return active_transactions; |
| 4410 | } |
| 4411 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 4412 | static __poll_t binder_poll(struct file *filp, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4413 | struct poll_table_struct *wait) |
| 4414 | { |
| 4415 | struct binder_proc *proc = filp->private_data; |
| 4416 | struct binder_thread *thread = NULL; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4417 | bool wait_for_proc_work; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4418 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4419 | thread = binder_get_thread(proc); |
Eric Biggers | f889826 | 2018-01-30 23:11:24 -0800 | [diff] [blame] | 4420 | if (!thread) |
| 4421 | return POLLERR; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4422 | |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 4423 | binder_inner_proc_lock(thread->proc); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4424 | thread->looper |= BINDER_LOOPER_STATE_POLL; |
| 4425 | wait_for_proc_work = binder_available_for_proc_work_ilocked(thread); |
| 4426 | |
Martijn Coenen | 0b89d69 | 2017-06-29 12:02:06 -0700 | [diff] [blame] | 4427 | binder_inner_proc_unlock(thread->proc); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4428 | |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4429 | poll_wait(filp, &thread->wait, wait); |
| 4430 | |
Martijn Coenen | 66b83a4 | 2017-10-09 14:26:56 +0200 | [diff] [blame] | 4431 | if (binder_has_work(thread, wait_for_proc_work)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 4432 | return EPOLLIN; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4433 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4434 | return 0; |
| 4435 | } |
| 4436 | |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4437 | static int binder_ioctl_write_read(struct file *filp, |
| 4438 | unsigned int cmd, unsigned long arg, |
| 4439 | struct binder_thread *thread) |
| 4440 | { |
| 4441 | int ret = 0; |
| 4442 | struct binder_proc *proc = filp->private_data; |
| 4443 | unsigned int size = _IOC_SIZE(cmd); |
| 4444 | void __user *ubuf = (void __user *)arg; |
| 4445 | struct binder_write_read bwr; |
| 4446 | |
| 4447 | if (size != sizeof(struct binder_write_read)) { |
| 4448 | ret = -EINVAL; |
| 4449 | goto out; |
| 4450 | } |
| 4451 | if (copy_from_user(&bwr, ubuf, sizeof(bwr))) { |
| 4452 | ret = -EFAULT; |
| 4453 | goto out; |
| 4454 | } |
| 4455 | binder_debug(BINDER_DEBUG_READ_WRITE, |
| 4456 | "%d:%d write %lld at %016llx, read %lld at %016llx\n", |
| 4457 | proc->pid, thread->pid, |
| 4458 | (u64)bwr.write_size, (u64)bwr.write_buffer, |
| 4459 | (u64)bwr.read_size, (u64)bwr.read_buffer); |
| 4460 | |
| 4461 | if (bwr.write_size > 0) { |
| 4462 | ret = binder_thread_write(proc, thread, |
| 4463 | bwr.write_buffer, |
| 4464 | bwr.write_size, |
| 4465 | &bwr.write_consumed); |
| 4466 | trace_binder_write_done(ret); |
| 4467 | if (ret < 0) { |
| 4468 | bwr.read_consumed = 0; |
| 4469 | if (copy_to_user(ubuf, &bwr, sizeof(bwr))) |
| 4470 | ret = -EFAULT; |
| 4471 | goto out; |
| 4472 | } |
| 4473 | } |
| 4474 | if (bwr.read_size > 0) { |
| 4475 | ret = binder_thread_read(proc, thread, bwr.read_buffer, |
| 4476 | bwr.read_size, |
| 4477 | &bwr.read_consumed, |
| 4478 | filp->f_flags & O_NONBLOCK); |
| 4479 | trace_binder_read_done(ret); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4480 | binder_inner_proc_lock(proc); |
| 4481 | if (!binder_worklist_empty_ilocked(&proc->todo)) |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 4482 | binder_wakeup_proc_ilocked(proc); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4483 | binder_inner_proc_unlock(proc); |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4484 | if (ret < 0) { |
| 4485 | if (copy_to_user(ubuf, &bwr, sizeof(bwr))) |
| 4486 | ret = -EFAULT; |
| 4487 | goto out; |
| 4488 | } |
| 4489 | } |
| 4490 | binder_debug(BINDER_DEBUG_READ_WRITE, |
| 4491 | "%d:%d wrote %lld of %lld, read return %lld of %lld\n", |
| 4492 | proc->pid, thread->pid, |
| 4493 | (u64)bwr.write_consumed, (u64)bwr.write_size, |
| 4494 | (u64)bwr.read_consumed, (u64)bwr.read_size); |
| 4495 | if (copy_to_user(ubuf, &bwr, sizeof(bwr))) { |
| 4496 | ret = -EFAULT; |
| 4497 | goto out; |
| 4498 | } |
| 4499 | out: |
| 4500 | return ret; |
| 4501 | } |
| 4502 | |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4503 | static int binder_ioctl_set_ctx_mgr(struct file *filp, |
| 4504 | struct flat_binder_object *fbo) |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4505 | { |
| 4506 | int ret = 0; |
| 4507 | struct binder_proc *proc = filp->private_data; |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 4508 | struct binder_context *context = proc->context; |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4509 | struct binder_node *new_node; |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4510 | kuid_t curr_euid = current_euid(); |
| 4511 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4512 | mutex_lock(&context->context_mgr_node_lock); |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 4513 | if (context->binder_context_mgr_node) { |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4514 | pr_err("BINDER_SET_CONTEXT_MGR already set\n"); |
| 4515 | ret = -EBUSY; |
| 4516 | goto out; |
| 4517 | } |
Stephen Smalley | 79af730 | 2015-01-21 10:54:10 -0500 | [diff] [blame] | 4518 | ret = security_binder_set_context_mgr(proc->tsk); |
| 4519 | if (ret < 0) |
| 4520 | goto out; |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 4521 | if (uid_valid(context->binder_context_mgr_uid)) { |
| 4522 | if (!uid_eq(context->binder_context_mgr_uid, curr_euid)) { |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4523 | pr_err("BINDER_SET_CONTEXT_MGR bad uid %d != %d\n", |
| 4524 | from_kuid(&init_user_ns, curr_euid), |
| 4525 | from_kuid(&init_user_ns, |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 4526 | context->binder_context_mgr_uid)); |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4527 | ret = -EPERM; |
| 4528 | goto out; |
| 4529 | } |
| 4530 | } else { |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 4531 | context->binder_context_mgr_uid = curr_euid; |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4532 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4533 | new_node = binder_new_node(proc, fbo); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4534 | if (!new_node) { |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4535 | ret = -ENOMEM; |
| 4536 | goto out; |
| 4537 | } |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 4538 | binder_node_lock(new_node); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4539 | new_node->local_weak_refs++; |
| 4540 | new_node->local_strong_refs++; |
| 4541 | new_node->has_strong_ref = 1; |
| 4542 | new_node->has_weak_ref = 1; |
| 4543 | context->binder_context_mgr_node = new_node; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 4544 | binder_node_unlock(new_node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 4545 | binder_put_node(new_node); |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4546 | out: |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4547 | mutex_unlock(&context->context_mgr_node_lock); |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4548 | return ret; |
| 4549 | } |
| 4550 | |
Martijn Coenen | b7e6a89 | 2018-09-07 15:38:37 +0200 | [diff] [blame] | 4551 | static int binder_ioctl_get_node_info_for_ref(struct binder_proc *proc, |
| 4552 | struct binder_node_info_for_ref *info) |
| 4553 | { |
| 4554 | struct binder_node *node; |
| 4555 | struct binder_context *context = proc->context; |
| 4556 | __u32 handle = info->handle; |
| 4557 | |
| 4558 | if (info->strong_count || info->weak_count || info->reserved1 || |
| 4559 | info->reserved2 || info->reserved3) { |
| 4560 | binder_user_error("%d BINDER_GET_NODE_INFO_FOR_REF: only handle may be non-zero.", |
| 4561 | proc->pid); |
| 4562 | return -EINVAL; |
| 4563 | } |
| 4564 | |
| 4565 | /* This ioctl may only be used by the context manager */ |
| 4566 | mutex_lock(&context->context_mgr_node_lock); |
| 4567 | if (!context->binder_context_mgr_node || |
| 4568 | context->binder_context_mgr_node->proc != proc) { |
| 4569 | mutex_unlock(&context->context_mgr_node_lock); |
| 4570 | return -EPERM; |
| 4571 | } |
| 4572 | mutex_unlock(&context->context_mgr_node_lock); |
| 4573 | |
| 4574 | node = binder_get_node_from_ref(proc, handle, true, NULL); |
| 4575 | if (!node) |
| 4576 | return -EINVAL; |
| 4577 | |
| 4578 | info->strong_count = node->local_strong_refs + |
| 4579 | node->internal_strong_refs; |
| 4580 | info->weak_count = node->local_weak_refs; |
| 4581 | |
| 4582 | binder_put_node(node); |
| 4583 | |
| 4584 | return 0; |
| 4585 | } |
| 4586 | |
Colin Cross | abcc615 | 2017-08-31 10:04:24 +0200 | [diff] [blame] | 4587 | static int binder_ioctl_get_node_debug_info(struct binder_proc *proc, |
| 4588 | struct binder_node_debug_info *info) |
| 4589 | { |
| 4590 | struct rb_node *n; |
| 4591 | binder_uintptr_t ptr = info->ptr; |
| 4592 | |
| 4593 | memset(info, 0, sizeof(*info)); |
| 4594 | |
| 4595 | binder_inner_proc_lock(proc); |
| 4596 | for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) { |
| 4597 | struct binder_node *node = rb_entry(n, struct binder_node, |
| 4598 | rb_node); |
| 4599 | if (node->ptr > ptr) { |
| 4600 | info->ptr = node->ptr; |
| 4601 | info->cookie = node->cookie; |
| 4602 | info->has_strong_ref = node->has_strong_ref; |
| 4603 | info->has_weak_ref = node->has_weak_ref; |
| 4604 | break; |
| 4605 | } |
| 4606 | } |
| 4607 | binder_inner_proc_unlock(proc); |
| 4608 | |
| 4609 | return 0; |
| 4610 | } |
| 4611 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4612 | static long binder_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| 4613 | { |
| 4614 | int ret; |
| 4615 | struct binder_proc *proc = filp->private_data; |
| 4616 | struct binder_thread *thread; |
| 4617 | unsigned int size = _IOC_SIZE(cmd); |
| 4618 | void __user *ubuf = (void __user *)arg; |
| 4619 | |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4620 | /*pr_info("binder_ioctl: %d:%d %x %lx\n", |
| 4621 | proc->pid, current->pid, cmd, arg);*/ |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4622 | |
Sherry Yang | 4175e2b | 2017-08-23 08:46:40 -0700 | [diff] [blame] | 4623 | binder_selftest_alloc(&proc->alloc); |
| 4624 | |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4625 | trace_binder_ioctl(cmd, arg); |
| 4626 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4627 | ret = wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2); |
| 4628 | if (ret) |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4629 | goto err_unlocked; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4630 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4631 | thread = binder_get_thread(proc); |
| 4632 | if (thread == NULL) { |
| 4633 | ret = -ENOMEM; |
| 4634 | goto err; |
| 4635 | } |
| 4636 | |
| 4637 | switch (cmd) { |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4638 | case BINDER_WRITE_READ: |
| 4639 | ret = binder_ioctl_write_read(filp, cmd, arg, thread); |
| 4640 | if (ret) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4641 | goto err; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4642 | break; |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4643 | case BINDER_SET_MAX_THREADS: { |
| 4644 | int max_threads; |
| 4645 | |
| 4646 | if (copy_from_user(&max_threads, ubuf, |
| 4647 | sizeof(max_threads))) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4648 | ret = -EINVAL; |
| 4649 | goto err; |
| 4650 | } |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4651 | binder_inner_proc_lock(proc); |
| 4652 | proc->max_threads = max_threads; |
| 4653 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4654 | break; |
Todd Kjos | b3e6861 | 2017-06-29 12:02:07 -0700 | [diff] [blame] | 4655 | } |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4656 | case BINDER_SET_CONTEXT_MGR_EXT: { |
| 4657 | struct flat_binder_object fbo; |
| 4658 | |
| 4659 | if (copy_from_user(&fbo, ubuf, sizeof(fbo))) { |
| 4660 | ret = -EINVAL; |
| 4661 | goto err; |
| 4662 | } |
| 4663 | ret = binder_ioctl_set_ctx_mgr(filp, &fbo); |
| 4664 | if (ret) |
| 4665 | goto err; |
| 4666 | break; |
| 4667 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4668 | case BINDER_SET_CONTEXT_MGR: |
Todd Kjos | ec74136 | 2019-01-14 09:10:21 -0800 | [diff] [blame] | 4669 | ret = binder_ioctl_set_ctx_mgr(filp, NULL); |
Tair Rzayev | 78260ac | 2014-06-03 22:27:21 +0300 | [diff] [blame] | 4670 | if (ret) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4671 | goto err; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4672 | break; |
| 4673 | case BINDER_THREAD_EXIT: |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4674 | binder_debug(BINDER_DEBUG_THREADS, "%d:%d exit\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4675 | proc->pid, thread->pid); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 4676 | binder_thread_release(proc, thread); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4677 | thread = NULL; |
| 4678 | break; |
Mathieu Maret | 36c89c0 | 2014-04-15 12:03:05 +0200 | [diff] [blame] | 4679 | case BINDER_VERSION: { |
| 4680 | struct binder_version __user *ver = ubuf; |
| 4681 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4682 | if (size != sizeof(struct binder_version)) { |
| 4683 | ret = -EINVAL; |
| 4684 | goto err; |
| 4685 | } |
Mathieu Maret | 36c89c0 | 2014-04-15 12:03:05 +0200 | [diff] [blame] | 4686 | if (put_user(BINDER_CURRENT_PROTOCOL_VERSION, |
| 4687 | &ver->protocol_version)) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4688 | ret = -EINVAL; |
| 4689 | goto err; |
| 4690 | } |
| 4691 | break; |
Mathieu Maret | 36c89c0 | 2014-04-15 12:03:05 +0200 | [diff] [blame] | 4692 | } |
Martijn Coenen | b7e6a89 | 2018-09-07 15:38:37 +0200 | [diff] [blame] | 4693 | case BINDER_GET_NODE_INFO_FOR_REF: { |
| 4694 | struct binder_node_info_for_ref info; |
| 4695 | |
| 4696 | if (copy_from_user(&info, ubuf, sizeof(info))) { |
| 4697 | ret = -EFAULT; |
| 4698 | goto err; |
| 4699 | } |
| 4700 | |
| 4701 | ret = binder_ioctl_get_node_info_for_ref(proc, &info); |
| 4702 | if (ret < 0) |
| 4703 | goto err; |
| 4704 | |
| 4705 | if (copy_to_user(ubuf, &info, sizeof(info))) { |
| 4706 | ret = -EFAULT; |
| 4707 | goto err; |
| 4708 | } |
| 4709 | |
| 4710 | break; |
| 4711 | } |
Colin Cross | abcc615 | 2017-08-31 10:04:24 +0200 | [diff] [blame] | 4712 | case BINDER_GET_NODE_DEBUG_INFO: { |
| 4713 | struct binder_node_debug_info info; |
| 4714 | |
| 4715 | if (copy_from_user(&info, ubuf, sizeof(info))) { |
| 4716 | ret = -EFAULT; |
| 4717 | goto err; |
| 4718 | } |
| 4719 | |
| 4720 | ret = binder_ioctl_get_node_debug_info(proc, &info); |
| 4721 | if (ret < 0) |
| 4722 | goto err; |
| 4723 | |
| 4724 | if (copy_to_user(ubuf, &info, sizeof(info))) { |
| 4725 | ret = -EFAULT; |
| 4726 | goto err; |
| 4727 | } |
| 4728 | break; |
| 4729 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4730 | default: |
| 4731 | ret = -EINVAL; |
| 4732 | goto err; |
| 4733 | } |
| 4734 | ret = 0; |
| 4735 | err: |
| 4736 | if (thread) |
Todd Kjos | 08dabce | 2017-06-29 12:01:49 -0700 | [diff] [blame] | 4737 | thread->looper_need_return = false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4738 | wait_event_interruptible(binder_user_error_wait, binder_stop_on_user_error < 2); |
| 4739 | if (ret && ret != -ERESTARTSYS) |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4740 | pr_info("%d:%d ioctl %x %lx returned %d\n", proc->pid, current->pid, cmd, arg, ret); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4741 | err_unlocked: |
| 4742 | trace_binder_ioctl_done(ret); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4743 | return ret; |
| 4744 | } |
| 4745 | |
| 4746 | static void binder_vma_open(struct vm_area_struct *vma) |
| 4747 | { |
| 4748 | struct binder_proc *proc = vma->vm_private_data; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4749 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4750 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4751 | "%d open vm area %lx-%lx (%ld K) vma %lx pagep %lx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4752 | proc->pid, vma->vm_start, vma->vm_end, |
| 4753 | (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, |
| 4754 | (unsigned long)pgprot_val(vma->vm_page_prot)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4755 | } |
| 4756 | |
| 4757 | static void binder_vma_close(struct vm_area_struct *vma) |
| 4758 | { |
| 4759 | struct binder_proc *proc = vma->vm_private_data; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4760 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4761 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, |
Anmol Sarma | 56b468f | 2012-10-30 22:35:43 +0530 | [diff] [blame] | 4762 | "%d close vm area %lx-%lx (%ld K) vma %lx pagep %lx\n", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4763 | proc->pid, vma->vm_start, vma->vm_end, |
| 4764 | (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, |
| 4765 | (unsigned long)pgprot_val(vma->vm_page_prot)); |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4766 | binder_alloc_vma_close(&proc->alloc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4767 | } |
| 4768 | |
Souptick Joarder | e19f70a | 2018-04-23 21:54:00 +0530 | [diff] [blame] | 4769 | static vm_fault_t binder_vm_fault(struct vm_fault *vmf) |
Vinayak Menon | ddac7d5 | 2014-06-02 18:17:59 +0530 | [diff] [blame] | 4770 | { |
| 4771 | return VM_FAULT_SIGBUS; |
| 4772 | } |
| 4773 | |
Kirill A. Shutemov | 7cbea8d | 2015-09-09 15:39:26 -0700 | [diff] [blame] | 4774 | static const struct vm_operations_struct binder_vm_ops = { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4775 | .open = binder_vma_open, |
| 4776 | .close = binder_vma_close, |
Vinayak Menon | ddac7d5 | 2014-06-02 18:17:59 +0530 | [diff] [blame] | 4777 | .fault = binder_vm_fault, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4778 | }; |
| 4779 | |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4780 | static int binder_mmap(struct file *filp, struct vm_area_struct *vma) |
| 4781 | { |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4782 | struct binder_proc *proc = filp->private_data; |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4783 | |
| 4784 | if (proc->tsk != current->group_leader) |
| 4785 | return -EINVAL; |
| 4786 | |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4787 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, |
| 4788 | "%s: %d %lx-%lx (%ld K) vma %lx pagep %lx\n", |
| 4789 | __func__, proc->pid, vma->vm_start, vma->vm_end, |
| 4790 | (vma->vm_end - vma->vm_start) / SZ_1K, vma->vm_flags, |
| 4791 | (unsigned long)pgprot_val(vma->vm_page_prot)); |
| 4792 | |
| 4793 | if (vma->vm_flags & FORBIDDEN_MMAP_FLAGS) { |
Liu Shixin | 2a3809d | 2020-09-29 09:52:16 +0800 | [diff] [blame] | 4794 | pr_err("%s: %d %lx-%lx %s failed %d\n", __func__, |
| 4795 | proc->pid, vma->vm_start, vma->vm_end, "bad vm_flags", -EPERM); |
| 4796 | return -EPERM; |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4797 | } |
Minchan Kim | 720c2419 | 2018-05-07 23:15:37 +0900 | [diff] [blame] | 4798 | vma->vm_flags |= VM_DONTCOPY | VM_MIXEDMAP; |
| 4799 | vma->vm_flags &= ~VM_MAYWRITE; |
| 4800 | |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4801 | vma->vm_ops = &binder_vm_ops; |
| 4802 | vma->vm_private_data = proc; |
| 4803 | |
Liu Shixin | 2a3809d | 2020-09-29 09:52:16 +0800 | [diff] [blame] | 4804 | return binder_alloc_mmap_handler(&proc->alloc, vma); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4805 | } |
| 4806 | |
| 4807 | static int binder_open(struct inode *nodp, struct file *filp) |
| 4808 | { |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4809 | struct binder_proc *proc, *itr; |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 4810 | struct binder_device *binder_dev; |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4811 | struct binderfs_info *info; |
| 4812 | struct dentry *binder_binderfs_dir_entry_proc = NULL; |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4813 | bool existing_pid = false; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4814 | |
Elad Wexler | 00c41cd | 2017-12-29 11:03:37 +0200 | [diff] [blame] | 4815 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, "%s: %d:%d\n", __func__, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4816 | current->group_leader->pid, current->pid); |
| 4817 | |
| 4818 | proc = kzalloc(sizeof(*proc), GFP_KERNEL); |
| 4819 | if (proc == NULL) |
| 4820 | return -ENOMEM; |
Todd Kjos | 9630fe8 | 2017-06-29 12:02:00 -0700 | [diff] [blame] | 4821 | spin_lock_init(&proc->inner_lock); |
| 4822 | spin_lock_init(&proc->outer_lock); |
Todd Kjos | c4ea41b | 2017-06-29 12:01:36 -0700 | [diff] [blame] | 4823 | get_task_struct(current->group_leader); |
| 4824 | proc->tsk = current->group_leader; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4825 | INIT_LIST_HEAD(&proc->todo); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4826 | proc->default_priority = task_nice(current); |
Christian Brauner | 3ad20fe | 2018-12-14 13:11:14 +0100 | [diff] [blame] | 4827 | /* binderfs stashes devices in i_private */ |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4828 | if (is_binderfs_device(nodp)) { |
Christian Brauner | f0fe2c0 | 2020-03-03 17:43:40 +0100 | [diff] [blame] | 4829 | binder_dev = nodp->i_private; |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4830 | info = nodp->i_sb->s_fs_info; |
| 4831 | binder_binderfs_dir_entry_proc = info->proc_log_dir; |
| 4832 | } else { |
Christian Brauner | 3ad20fe | 2018-12-14 13:11:14 +0100 | [diff] [blame] | 4833 | binder_dev = container_of(filp->private_data, |
| 4834 | struct binder_device, miscdev); |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4835 | } |
Christian Brauner | f0fe2c0 | 2020-03-03 17:43:40 +0100 | [diff] [blame] | 4836 | refcount_inc(&binder_dev->ref); |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 4837 | proc->context = &binder_dev->context; |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 4838 | binder_alloc_init(&proc->alloc); |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4839 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4840 | binder_stats_created(BINDER_STAT_PROC); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4841 | proc->pid = current->group_leader->pid; |
| 4842 | INIT_LIST_HEAD(&proc->delivered_death); |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 4843 | INIT_LIST_HEAD(&proc->waiting_threads); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4844 | filp->private_data = proc; |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 4845 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4846 | mutex_lock(&binder_procs_lock); |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4847 | hlist_for_each_entry(itr, &binder_procs, proc_node) { |
| 4848 | if (itr->pid == proc->pid) { |
| 4849 | existing_pid = true; |
| 4850 | break; |
| 4851 | } |
| 4852 | } |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4853 | hlist_add_head(&proc->proc_node, &binder_procs); |
| 4854 | mutex_unlock(&binder_procs_lock); |
| 4855 | |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4856 | if (binder_debugfs_dir_entry_proc && !existing_pid) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4857 | char strbuf[11]; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4858 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4859 | snprintf(strbuf, sizeof(strbuf), "%u", proc->pid); |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 4860 | /* |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4861 | * proc debug entries are shared between contexts. |
| 4862 | * Only create for the first PID to avoid debugfs log spamming |
| 4863 | * The printing code will anyway print all contexts for a given |
| 4864 | * PID so this is not a problem. |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 4865 | */ |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 4866 | proc->debugfs_entry = debugfs_create_file(strbuf, 0444, |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 4867 | binder_debugfs_dir_entry_proc, |
| 4868 | (void *)(unsigned long)proc->pid, |
Yangtao Li | c13e0a5 | 2018-11-30 20:26:30 -0500 | [diff] [blame] | 4869 | &proc_fops); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4870 | } |
| 4871 | |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4872 | if (binder_binderfs_dir_entry_proc && !existing_pid) { |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4873 | char strbuf[11]; |
| 4874 | struct dentry *binderfs_entry; |
| 4875 | |
| 4876 | snprintf(strbuf, sizeof(strbuf), "%u", proc->pid); |
| 4877 | /* |
| 4878 | * Similar to debugfs, the process specific log file is shared |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4879 | * between contexts. Only create for the first PID. |
| 4880 | * This is ok since same as debugfs, the log file will contain |
| 4881 | * information on all contexts of a given PID. |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4882 | */ |
| 4883 | binderfs_entry = binderfs_create_file(binder_binderfs_dir_entry_proc, |
| 4884 | strbuf, &proc_fops, (void *)(unsigned long)proc->pid); |
| 4885 | if (!IS_ERR(binderfs_entry)) { |
| 4886 | proc->binderfs_entry = binderfs_entry; |
| 4887 | } else { |
| 4888 | int error; |
| 4889 | |
| 4890 | error = PTR_ERR(binderfs_entry); |
Martin Fuzzey | eb143f8 | 2020-01-10 16:44:01 +0100 | [diff] [blame] | 4891 | pr_warn("Unable to create file %s in binderfs (error %d)\n", |
| 4892 | strbuf, error); |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4893 | } |
| 4894 | } |
| 4895 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4896 | return 0; |
| 4897 | } |
| 4898 | |
| 4899 | static int binder_flush(struct file *filp, fl_owner_t id) |
| 4900 | { |
| 4901 | struct binder_proc *proc = filp->private_data; |
| 4902 | |
| 4903 | binder_defer_work(proc, BINDER_DEFERRED_FLUSH); |
| 4904 | |
| 4905 | return 0; |
| 4906 | } |
| 4907 | |
| 4908 | static void binder_deferred_flush(struct binder_proc *proc) |
| 4909 | { |
| 4910 | struct rb_node *n; |
| 4911 | int wake_count = 0; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4912 | |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4913 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4914 | for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) { |
| 4915 | struct binder_thread *thread = rb_entry(n, struct binder_thread, rb_node); |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4916 | |
Todd Kjos | 08dabce | 2017-06-29 12:01:49 -0700 | [diff] [blame] | 4917 | thread->looper_need_return = true; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4918 | if (thread->looper & BINDER_LOOPER_STATE_WAITING) { |
| 4919 | wake_up_interruptible(&thread->wait); |
| 4920 | wake_count++; |
| 4921 | } |
| 4922 | } |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 4923 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4924 | |
| 4925 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, |
| 4926 | "binder_flush: %d woke %d threads\n", proc->pid, |
| 4927 | wake_count); |
| 4928 | } |
| 4929 | |
| 4930 | static int binder_release(struct inode *nodp, struct file *filp) |
| 4931 | { |
| 4932 | struct binder_proc *proc = filp->private_data; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 4933 | |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 4934 | debugfs_remove(proc->debugfs_entry); |
Hridya Valsaraju | 4feb80f | 2019-09-03 09:16:55 -0700 | [diff] [blame] | 4935 | |
| 4936 | if (proc->binderfs_entry) { |
| 4937 | binderfs_remove_file(proc->binderfs_entry); |
| 4938 | proc->binderfs_entry = NULL; |
| 4939 | } |
| 4940 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 4941 | binder_defer_work(proc, BINDER_DEFERRED_RELEASE); |
| 4942 | |
| 4943 | return 0; |
| 4944 | } |
| 4945 | |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4946 | static int binder_node_release(struct binder_node *node, int refs) |
| 4947 | { |
| 4948 | struct binder_ref *ref; |
| 4949 | int death = 0; |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4950 | struct binder_proc *proc = node->proc; |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4951 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4952 | binder_release_work(proc, &node->async_todo); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4953 | |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 4954 | binder_node_lock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4955 | binder_inner_proc_lock(proc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4956 | binder_dequeue_work_ilocked(&node->work); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 4957 | /* |
| 4958 | * The caller must have taken a temporary ref on the node, |
| 4959 | */ |
| 4960 | BUG_ON(!node->tmp_refs); |
| 4961 | if (hlist_empty(&node->refs) && node->tmp_refs == 1) { |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4962 | binder_inner_proc_unlock(proc); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 4963 | binder_node_unlock(node); |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4964 | binder_free_node(node); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4965 | |
| 4966 | return refs; |
| 4967 | } |
| 4968 | |
| 4969 | node->proc = NULL; |
| 4970 | node->local_strong_refs = 0; |
| 4971 | node->local_weak_refs = 0; |
Todd Kjos | ed29721 | 2017-06-29 12:02:01 -0700 | [diff] [blame] | 4972 | binder_inner_proc_unlock(proc); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4973 | |
| 4974 | spin_lock(&binder_dead_nodes_lock); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4975 | hlist_add_head(&node->dead_node, &binder_dead_nodes); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 4976 | spin_unlock(&binder_dead_nodes_lock); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4977 | |
| 4978 | hlist_for_each_entry(ref, &node->refs, node_entry) { |
| 4979 | refs++; |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 4980 | /* |
| 4981 | * Need the node lock to synchronize |
| 4982 | * with new notification requests and the |
| 4983 | * inner lock to synchronize with queued |
| 4984 | * death notifications. |
| 4985 | */ |
| 4986 | binder_inner_proc_lock(ref->proc); |
| 4987 | if (!ref->death) { |
| 4988 | binder_inner_proc_unlock(ref->proc); |
Arve Hjønnevåg | e194fd8 | 2014-02-17 13:58:29 -0800 | [diff] [blame] | 4989 | continue; |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 4990 | } |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 4991 | |
| 4992 | death++; |
| 4993 | |
Martijn Coenen | ab51ec6 | 2017-06-29 12:02:10 -0700 | [diff] [blame] | 4994 | BUG_ON(!list_empty(&ref->death->work.entry)); |
| 4995 | ref->death->work.type = BINDER_WORK_DEAD_BINDER; |
| 4996 | binder_enqueue_work_ilocked(&ref->death->work, |
| 4997 | &ref->proc->todo); |
Martijn Coenen | 408c68b | 2017-08-31 10:04:19 +0200 | [diff] [blame] | 4998 | binder_wakeup_proc_ilocked(ref->proc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 4999 | binder_inner_proc_unlock(ref->proc); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 5000 | } |
| 5001 | |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 5002 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
| 5003 | "node %d now dead, refs %d, death %d\n", |
| 5004 | node->debug_id, refs, death); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5005 | binder_node_unlock(node); |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 5006 | binder_put_node(node); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 5007 | |
| 5008 | return refs; |
| 5009 | } |
| 5010 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5011 | static void binder_deferred_release(struct binder_proc *proc) |
| 5012 | { |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 5013 | struct binder_context *context = proc->context; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5014 | struct rb_node *n; |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 5015 | int threads, nodes, incoming_refs, outgoing_refs, active_transactions; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5016 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5017 | mutex_lock(&binder_procs_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5018 | hlist_del(&proc->proc_node); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5019 | mutex_unlock(&binder_procs_lock); |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5020 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5021 | mutex_lock(&context->context_mgr_node_lock); |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 5022 | if (context->binder_context_mgr_node && |
| 5023 | context->binder_context_mgr_node->proc == proc) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5024 | binder_debug(BINDER_DEBUG_DEAD_BINDER, |
Mirsal Ennaime | c07c933 | 2013-03-12 11:42:02 +0100 | [diff] [blame] | 5025 | "%s: %d context_mgr_node gone\n", |
| 5026 | __func__, proc->pid); |
Martijn Coenen | 342e5c9 | 2017-02-03 14:40:46 -0800 | [diff] [blame] | 5027 | context->binder_context_mgr_node = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5028 | } |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5029 | mutex_unlock(&context->context_mgr_node_lock); |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5030 | binder_inner_proc_lock(proc); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5031 | /* |
| 5032 | * Make sure proc stays alive after we |
| 5033 | * remove all the threads |
| 5034 | */ |
| 5035 | proc->tmp_ref++; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5036 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5037 | proc->is_dead = true; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5038 | threads = 0; |
| 5039 | active_transactions = 0; |
| 5040 | while ((n = rb_first(&proc->threads))) { |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5041 | struct binder_thread *thread; |
| 5042 | |
| 5043 | thread = rb_entry(n, struct binder_thread, rb_node); |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5044 | binder_inner_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5045 | threads++; |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5046 | active_transactions += binder_thread_release(proc, thread); |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5047 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5048 | } |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5049 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5050 | nodes = 0; |
| 5051 | incoming_refs = 0; |
| 5052 | while ((n = rb_first(&proc->nodes))) { |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5053 | struct binder_node *node; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5054 | |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5055 | node = rb_entry(n, struct binder_node, rb_node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5056 | nodes++; |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 5057 | /* |
| 5058 | * take a temporary ref on the node before |
| 5059 | * calling binder_node_release() which will either |
| 5060 | * kfree() the node or call binder_put_node() |
| 5061 | */ |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5062 | binder_inc_node_tmpref_ilocked(node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5063 | rb_erase(&node->rb_node, &proc->nodes); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5064 | binder_inner_proc_unlock(proc); |
Mirsal Ennaime | 008fa74 | 2013-03-12 11:41:59 +0100 | [diff] [blame] | 5065 | incoming_refs = binder_node_release(node, incoming_refs); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5066 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5067 | } |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5068 | binder_inner_proc_unlock(proc); |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5069 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5070 | outgoing_refs = 0; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5071 | binder_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5072 | while ((n = rb_first(&proc->refs_by_desc))) { |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5073 | struct binder_ref *ref; |
| 5074 | |
| 5075 | ref = rb_entry(n, struct binder_ref, rb_node_desc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5076 | outgoing_refs++; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5077 | binder_cleanup_ref_olocked(ref); |
| 5078 | binder_proc_unlock(proc); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 5079 | binder_free_ref(ref); |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5080 | binder_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5081 | } |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5082 | binder_proc_unlock(proc); |
Mirsal Ennaime | 53413e7 | 2013-03-12 11:42:00 +0100 | [diff] [blame] | 5083 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5084 | binder_release_work(proc, &proc->todo); |
| 5085 | binder_release_work(proc, &proc->delivered_death); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5086 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5087 | binder_debug(BINDER_DEBUG_OPEN_CLOSE, |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 5088 | "%s: %d threads %d, nodes %d (ref %d), refs %d, active transactions %d\n", |
Mirsal Ennaime | c07c933 | 2013-03-12 11:42:02 +0100 | [diff] [blame] | 5089 | __func__, proc->pid, threads, nodes, incoming_refs, |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 5090 | outgoing_refs, active_transactions); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5091 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5092 | binder_proc_dec_tmpref(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5093 | } |
| 5094 | |
| 5095 | static void binder_deferred_func(struct work_struct *work) |
| 5096 | { |
| 5097 | struct binder_proc *proc; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5098 | |
| 5099 | int defer; |
Seunghun Lee | 10f6286 | 2014-05-01 01:30:23 +0900 | [diff] [blame] | 5100 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5101 | do { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5102 | mutex_lock(&binder_deferred_lock); |
| 5103 | if (!hlist_empty(&binder_deferred_list)) { |
| 5104 | proc = hlist_entry(binder_deferred_list.first, |
| 5105 | struct binder_proc, deferred_work_node); |
| 5106 | hlist_del_init(&proc->deferred_work_node); |
| 5107 | defer = proc->deferred_work; |
| 5108 | proc->deferred_work = 0; |
| 5109 | } else { |
| 5110 | proc = NULL; |
| 5111 | defer = 0; |
| 5112 | } |
| 5113 | mutex_unlock(&binder_deferred_lock); |
| 5114 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5115 | if (defer & BINDER_DEFERRED_FLUSH) |
| 5116 | binder_deferred_flush(proc); |
| 5117 | |
| 5118 | if (defer & BINDER_DEFERRED_RELEASE) |
| 5119 | binder_deferred_release(proc); /* frees proc */ |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5120 | } while (proc); |
| 5121 | } |
| 5122 | static DECLARE_WORK(binder_deferred_work, binder_deferred_func); |
| 5123 | |
| 5124 | static void |
| 5125 | binder_defer_work(struct binder_proc *proc, enum binder_deferred_state defer) |
| 5126 | { |
| 5127 | mutex_lock(&binder_deferred_lock); |
| 5128 | proc->deferred_work |= defer; |
| 5129 | if (hlist_unhashed(&proc->deferred_work_node)) { |
| 5130 | hlist_add_head(&proc->deferred_work_node, |
| 5131 | &binder_deferred_list); |
Bhaktipriya Shridhar | 1beba52 | 2016-08-13 22:16:24 +0530 | [diff] [blame] | 5132 | schedule_work(&binder_deferred_work); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5133 | } |
| 5134 | mutex_unlock(&binder_deferred_lock); |
| 5135 | } |
| 5136 | |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5137 | static void print_binder_transaction_ilocked(struct seq_file *m, |
| 5138 | struct binder_proc *proc, |
| 5139 | const char *prefix, |
| 5140 | struct binder_transaction *t) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5141 | { |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5142 | struct binder_proc *to_proc; |
| 5143 | struct binder_buffer *buffer = t->buffer; |
| 5144 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5145 | spin_lock(&t->lock); |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5146 | to_proc = t->to_proc; |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5147 | seq_printf(m, |
Todd Kjos | 8ca86f1 | 2018-02-07 13:57:37 -0800 | [diff] [blame] | 5148 | "%s %d: %pK from %d:%d to %d:%d code %x flags %x pri %ld r%d", |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5149 | prefix, t->debug_id, t, |
| 5150 | t->from ? t->from->proc->pid : 0, |
| 5151 | t->from ? t->from->pid : 0, |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5152 | to_proc ? to_proc->pid : 0, |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5153 | t->to_thread ? t->to_thread->pid : 0, |
| 5154 | t->code, t->flags, t->priority, t->need_reply); |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5155 | spin_unlock(&t->lock); |
| 5156 | |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5157 | if (proc != to_proc) { |
| 5158 | /* |
| 5159 | * Can only safely deref buffer if we are holding the |
| 5160 | * correct proc inner lock for this node |
| 5161 | */ |
| 5162 | seq_puts(m, "\n"); |
| 5163 | return; |
| 5164 | } |
| 5165 | |
| 5166 | if (buffer == NULL) { |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5167 | seq_puts(m, " buffer free\n"); |
| 5168 | return; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5169 | } |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5170 | if (buffer->target_node) |
| 5171 | seq_printf(m, " node %d", buffer->target_node->debug_id); |
Todd Kjos | 8ca86f1 | 2018-02-07 13:57:37 -0800 | [diff] [blame] | 5172 | seq_printf(m, " size %zd:%zd data %pK\n", |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5173 | buffer->data_size, buffer->offsets_size, |
Todd Kjos | bde4a19 | 2019-02-08 10:35:20 -0800 | [diff] [blame] | 5174 | buffer->user_data); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5175 | } |
| 5176 | |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5177 | static void print_binder_work_ilocked(struct seq_file *m, |
| 5178 | struct binder_proc *proc, |
| 5179 | const char *prefix, |
| 5180 | const char *transaction_prefix, |
| 5181 | struct binder_work *w) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5182 | { |
| 5183 | struct binder_node *node; |
| 5184 | struct binder_transaction *t; |
| 5185 | |
| 5186 | switch (w->type) { |
| 5187 | case BINDER_WORK_TRANSACTION: |
| 5188 | t = container_of(w, struct binder_transaction, work); |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5189 | print_binder_transaction_ilocked( |
| 5190 | m, proc, transaction_prefix, t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5191 | break; |
Todd Kjos | 26549d1 | 2017-06-29 12:01:55 -0700 | [diff] [blame] | 5192 | case BINDER_WORK_RETURN_ERROR: { |
| 5193 | struct binder_error *e = container_of( |
| 5194 | w, struct binder_error, work); |
| 5195 | |
| 5196 | seq_printf(m, "%stransaction error: %u\n", |
| 5197 | prefix, e->cmd); |
| 5198 | } break; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5199 | case BINDER_WORK_TRANSACTION_COMPLETE: |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5200 | seq_printf(m, "%stransaction complete\n", prefix); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5201 | break; |
| 5202 | case BINDER_WORK_NODE: |
| 5203 | node = container_of(w, struct binder_node, work); |
Arve Hjønnevåg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 5204 | seq_printf(m, "%snode work %d: u%016llx c%016llx\n", |
| 5205 | prefix, node->debug_id, |
| 5206 | (u64)node->ptr, (u64)node->cookie); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5207 | break; |
| 5208 | case BINDER_WORK_DEAD_BINDER: |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5209 | seq_printf(m, "%shas dead binder\n", prefix); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5210 | break; |
| 5211 | case BINDER_WORK_DEAD_BINDER_AND_CLEAR: |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5212 | seq_printf(m, "%shas cleared dead binder\n", prefix); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5213 | break; |
| 5214 | case BINDER_WORK_CLEAR_DEATH_NOTIFICATION: |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5215 | seq_printf(m, "%shas cleared death notification\n", prefix); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5216 | break; |
| 5217 | default: |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5218 | seq_printf(m, "%sunknown work: type %d\n", prefix, w->type); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5219 | break; |
| 5220 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5221 | } |
| 5222 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5223 | static void print_binder_thread_ilocked(struct seq_file *m, |
| 5224 | struct binder_thread *thread, |
| 5225 | int print_always) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5226 | { |
| 5227 | struct binder_transaction *t; |
| 5228 | struct binder_work *w; |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5229 | size_t start_pos = m->count; |
| 5230 | size_t header_pos; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5231 | |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5232 | seq_printf(m, " thread %d: l %02x need_return %d tr %d\n", |
Todd Kjos | 08dabce | 2017-06-29 12:01:49 -0700 | [diff] [blame] | 5233 | thread->pid, thread->looper, |
Todd Kjos | 7a4408c | 2017-06-29 12:01:57 -0700 | [diff] [blame] | 5234 | thread->looper_need_return, |
| 5235 | atomic_read(&thread->tmp_ref)); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5236 | header_pos = m->count; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5237 | t = thread->transaction_stack; |
| 5238 | while (t) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5239 | if (t->from == thread) { |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5240 | print_binder_transaction_ilocked(m, thread->proc, |
| 5241 | " outgoing transaction", t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5242 | t = t->from_parent; |
| 5243 | } else if (t->to_thread == thread) { |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5244 | print_binder_transaction_ilocked(m, thread->proc, |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5245 | " incoming transaction", t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5246 | t = t->to_parent; |
| 5247 | } else { |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5248 | print_binder_transaction_ilocked(m, thread->proc, |
| 5249 | " bad transaction", t); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5250 | t = NULL; |
| 5251 | } |
| 5252 | } |
| 5253 | list_for_each_entry(w, &thread->todo, entry) { |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5254 | print_binder_work_ilocked(m, thread->proc, " ", |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5255 | " pending transaction", w); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5256 | } |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5257 | if (!print_always && m->count == header_pos) |
| 5258 | m->count = start_pos; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5259 | } |
| 5260 | |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5261 | static void print_binder_node_nilocked(struct seq_file *m, |
| 5262 | struct binder_node *node) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5263 | { |
| 5264 | struct binder_ref *ref; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5265 | struct binder_work *w; |
| 5266 | int count; |
| 5267 | |
| 5268 | count = 0; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5269 | hlist_for_each_entry(ref, &node->refs, node_entry) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5270 | count++; |
| 5271 | |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 5272 | 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åg | da49889 | 2014-02-21 14:40:26 -0800 | [diff] [blame] | 5273 | node->debug_id, (u64)node->ptr, (u64)node->cookie, |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5274 | node->has_strong_ref, node->has_weak_ref, |
| 5275 | node->local_strong_refs, node->local_weak_refs, |
Todd Kjos | adc1884 | 2017-06-29 12:01:59 -0700 | [diff] [blame] | 5276 | node->internal_strong_refs, count, node->tmp_refs); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5277 | if (count) { |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5278 | seq_puts(m, " proc"); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5279 | hlist_for_each_entry(ref, &node->refs, node_entry) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5280 | seq_printf(m, " %d", ref->proc->pid); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5281 | } |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5282 | seq_puts(m, "\n"); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5283 | if (node->proc) { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5284 | list_for_each_entry(w, &node->async_todo, entry) |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5285 | print_binder_work_ilocked(m, node->proc, " ", |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5286 | " pending async transaction", w); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5287 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5288 | } |
| 5289 | |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5290 | static void print_binder_ref_olocked(struct seq_file *m, |
| 5291 | struct binder_ref *ref) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5292 | { |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5293 | binder_node_lock(ref->node); |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 5294 | seq_printf(m, " ref %d: desc %d %snode %d s %d w %d d %pK\n", |
| 5295 | ref->data.debug_id, ref->data.desc, |
| 5296 | ref->node->proc ? "" : "dead ", |
| 5297 | ref->node->debug_id, ref->data.strong, |
| 5298 | ref->data.weak, ref->death); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5299 | binder_node_unlock(ref->node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5300 | } |
| 5301 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5302 | static void print_binder_proc(struct seq_file *m, |
| 5303 | struct binder_proc *proc, int print_all) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5304 | { |
| 5305 | struct binder_work *w; |
| 5306 | struct rb_node *n; |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5307 | size_t start_pos = m->count; |
| 5308 | size_t header_pos; |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5309 | struct binder_node *last_node = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5310 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5311 | seq_printf(m, "proc %d\n", proc->pid); |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 5312 | seq_printf(m, "context %s\n", proc->context->name); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5313 | header_pos = m->count; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5314 | |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5315 | binder_inner_proc_lock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5316 | for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5317 | print_binder_thread_ilocked(m, rb_entry(n, struct binder_thread, |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5318 | rb_node), print_all); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5319 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5320 | for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5321 | struct binder_node *node = rb_entry(n, struct binder_node, |
| 5322 | rb_node); |
Todd Kjos | ecd589d | 2018-12-05 15:19:26 -0800 | [diff] [blame] | 5323 | if (!print_all && !node->has_async_transaction) |
| 5324 | continue; |
| 5325 | |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5326 | /* |
| 5327 | * take a temporary reference on the node so it |
| 5328 | * survives and isn't removed from the tree |
| 5329 | * while we print it. |
| 5330 | */ |
| 5331 | binder_inc_node_tmpref_ilocked(node); |
| 5332 | /* Need to drop inner lock to take node lock */ |
| 5333 | binder_inner_proc_unlock(proc); |
| 5334 | if (last_node) |
| 5335 | binder_put_node(last_node); |
| 5336 | binder_node_inner_lock(node); |
| 5337 | print_binder_node_nilocked(m, node); |
| 5338 | binder_node_inner_unlock(node); |
| 5339 | last_node = node; |
| 5340 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5341 | } |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5342 | binder_inner_proc_unlock(proc); |
| 5343 | if (last_node) |
| 5344 | binder_put_node(last_node); |
| 5345 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5346 | if (print_all) { |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5347 | binder_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5348 | for (n = rb_first(&proc->refs_by_desc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5349 | n != NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5350 | n = rb_next(n)) |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5351 | print_binder_ref_olocked(m, rb_entry(n, |
| 5352 | struct binder_ref, |
| 5353 | rb_node_desc)); |
| 5354 | binder_proc_unlock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5355 | } |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 5356 | binder_alloc_print_allocated(m, &proc->alloc); |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5357 | binder_inner_proc_lock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5358 | list_for_each_entry(w, &proc->todo, entry) |
Todd Kjos | 5f2f636 | 2017-06-29 12:02:09 -0700 | [diff] [blame] | 5359 | print_binder_work_ilocked(m, proc, " ", |
| 5360 | " pending transaction", w); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5361 | list_for_each_entry(w, &proc->delivered_death, entry) { |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5362 | seq_puts(m, " has delivered dead binder\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5363 | break; |
| 5364 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5365 | binder_inner_proc_unlock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5366 | if (!print_all && m->count == header_pos) |
| 5367 | m->count = start_pos; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5368 | } |
| 5369 | |
Cruz Julian Bishop | 167bccb | 2012-12-22 09:00:45 +1000 | [diff] [blame] | 5370 | static const char * const binder_return_strings[] = { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5371 | "BR_ERROR", |
| 5372 | "BR_OK", |
| 5373 | "BR_TRANSACTION", |
| 5374 | "BR_REPLY", |
| 5375 | "BR_ACQUIRE_RESULT", |
| 5376 | "BR_DEAD_REPLY", |
| 5377 | "BR_TRANSACTION_COMPLETE", |
| 5378 | "BR_INCREFS", |
| 5379 | "BR_ACQUIRE", |
| 5380 | "BR_RELEASE", |
| 5381 | "BR_DECREFS", |
| 5382 | "BR_ATTEMPT_ACQUIRE", |
| 5383 | "BR_NOOP", |
| 5384 | "BR_SPAWN_LOOPER", |
| 5385 | "BR_FINISHED", |
| 5386 | "BR_DEAD_BINDER", |
| 5387 | "BR_CLEAR_DEATH_NOTIFICATION_DONE", |
| 5388 | "BR_FAILED_REPLY" |
| 5389 | }; |
| 5390 | |
Cruz Julian Bishop | 167bccb | 2012-12-22 09:00:45 +1000 | [diff] [blame] | 5391 | static const char * const binder_command_strings[] = { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5392 | "BC_TRANSACTION", |
| 5393 | "BC_REPLY", |
| 5394 | "BC_ACQUIRE_RESULT", |
| 5395 | "BC_FREE_BUFFER", |
| 5396 | "BC_INCREFS", |
| 5397 | "BC_ACQUIRE", |
| 5398 | "BC_RELEASE", |
| 5399 | "BC_DECREFS", |
| 5400 | "BC_INCREFS_DONE", |
| 5401 | "BC_ACQUIRE_DONE", |
| 5402 | "BC_ATTEMPT_ACQUIRE", |
| 5403 | "BC_REGISTER_LOOPER", |
| 5404 | "BC_ENTER_LOOPER", |
| 5405 | "BC_EXIT_LOOPER", |
| 5406 | "BC_REQUEST_DEATH_NOTIFICATION", |
| 5407 | "BC_CLEAR_DEATH_NOTIFICATION", |
Martijn Coenen | 7980240 | 2017-02-03 14:40:51 -0800 | [diff] [blame] | 5408 | "BC_DEAD_BINDER_DONE", |
| 5409 | "BC_TRANSACTION_SG", |
| 5410 | "BC_REPLY_SG", |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5411 | }; |
| 5412 | |
Cruz Julian Bishop | 167bccb | 2012-12-22 09:00:45 +1000 | [diff] [blame] | 5413 | static const char * const binder_objstat_strings[] = { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5414 | "proc", |
| 5415 | "thread", |
| 5416 | "node", |
| 5417 | "ref", |
| 5418 | "death", |
| 5419 | "transaction", |
| 5420 | "transaction_complete" |
| 5421 | }; |
| 5422 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5423 | static void print_binder_stats(struct seq_file *m, const char *prefix, |
| 5424 | struct binder_stats *stats) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5425 | { |
| 5426 | int i; |
| 5427 | |
| 5428 | BUILD_BUG_ON(ARRAY_SIZE(stats->bc) != |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5429 | ARRAY_SIZE(binder_command_strings)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5430 | for (i = 0; i < ARRAY_SIZE(stats->bc); i++) { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5431 | int temp = atomic_read(&stats->bc[i]); |
| 5432 | |
| 5433 | if (temp) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5434 | seq_printf(m, "%s%s: %d\n", prefix, |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5435 | binder_command_strings[i], temp); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5436 | } |
| 5437 | |
| 5438 | BUILD_BUG_ON(ARRAY_SIZE(stats->br) != |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5439 | ARRAY_SIZE(binder_return_strings)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5440 | for (i = 0; i < ARRAY_SIZE(stats->br); i++) { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5441 | int temp = atomic_read(&stats->br[i]); |
| 5442 | |
| 5443 | if (temp) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5444 | seq_printf(m, "%s%s: %d\n", prefix, |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5445 | binder_return_strings[i], temp); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5446 | } |
| 5447 | |
| 5448 | BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) != |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5449 | ARRAY_SIZE(binder_objstat_strings)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5450 | BUILD_BUG_ON(ARRAY_SIZE(stats->obj_created) != |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5451 | ARRAY_SIZE(stats->obj_deleted)); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5452 | for (i = 0; i < ARRAY_SIZE(stats->obj_created); i++) { |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5453 | int created = atomic_read(&stats->obj_created[i]); |
| 5454 | int deleted = atomic_read(&stats->obj_deleted[i]); |
| 5455 | |
| 5456 | if (created || deleted) |
| 5457 | seq_printf(m, "%s%s: active %d total %d\n", |
| 5458 | prefix, |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5459 | binder_objstat_strings[i], |
Badhri Jagan Sridharan | 0953c79 | 2017-06-29 12:01:44 -0700 | [diff] [blame] | 5460 | created - deleted, |
| 5461 | created); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5462 | } |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5463 | } |
| 5464 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5465 | static void print_binder_proc_stats(struct seq_file *m, |
| 5466 | struct binder_proc *proc) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5467 | { |
| 5468 | struct binder_work *w; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 5469 | struct binder_thread *thread; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5470 | struct rb_node *n; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 5471 | int count, strong, weak, ready_threads; |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5472 | size_t free_async_space = |
| 5473 | binder_alloc_get_free_async_space(&proc->alloc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5474 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5475 | seq_printf(m, "proc %d\n", proc->pid); |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 5476 | seq_printf(m, "context %s\n", proc->context->name); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5477 | count = 0; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 5478 | ready_threads = 0; |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5479 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5480 | for (n = rb_first(&proc->threads); n != NULL; n = rb_next(n)) |
| 5481 | count++; |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 5482 | |
| 5483 | list_for_each_entry(thread, &proc->waiting_threads, waiting_thread_node) |
| 5484 | ready_threads++; |
| 5485 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5486 | seq_printf(m, " threads: %d\n", count); |
| 5487 | seq_printf(m, " requested threads: %d+%d/%d\n" |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5488 | " ready threads %d\n" |
| 5489 | " free async space %zd\n", proc->requested_threads, |
| 5490 | proc->requested_threads_started, proc->max_threads, |
Martijn Coenen | 1b77e9d | 2017-08-31 10:04:18 +0200 | [diff] [blame] | 5491 | ready_threads, |
Todd Kjos | 7bd7b0e | 2017-06-29 12:02:05 -0700 | [diff] [blame] | 5492 | free_async_space); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5493 | count = 0; |
| 5494 | for (n = rb_first(&proc->nodes); n != NULL; n = rb_next(n)) |
| 5495 | count++; |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5496 | binder_inner_proc_unlock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5497 | seq_printf(m, " nodes: %d\n", count); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5498 | count = 0; |
| 5499 | strong = 0; |
| 5500 | weak = 0; |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5501 | binder_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5502 | for (n = rb_first(&proc->refs_by_desc); n != NULL; n = rb_next(n)) { |
| 5503 | struct binder_ref *ref = rb_entry(n, struct binder_ref, |
| 5504 | rb_node_desc); |
| 5505 | count++; |
Todd Kjos | 372e314 | 2017-06-29 12:01:58 -0700 | [diff] [blame] | 5506 | strong += ref->data.strong; |
| 5507 | weak += ref->data.weak; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5508 | } |
Todd Kjos | 2c1838d | 2017-06-29 12:02:08 -0700 | [diff] [blame] | 5509 | binder_proc_unlock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5510 | seq_printf(m, " refs: %d s %d w %d\n", count, strong, weak); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5511 | |
Todd Kjos | 19c9872 | 2017-06-29 12:01:40 -0700 | [diff] [blame] | 5512 | count = binder_alloc_get_allocated_count(&proc->alloc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5513 | seq_printf(m, " buffers: %d\n", count); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5514 | |
Sherry Yang | 8ef4665 | 2017-08-31 11:56:36 -0700 | [diff] [blame] | 5515 | binder_alloc_print_pages(m, &proc->alloc); |
| 5516 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5517 | count = 0; |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5518 | binder_inner_proc_lock(proc); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5519 | list_for_each_entry(w, &proc->todo, entry) { |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5520 | if (w->type == BINDER_WORK_TRANSACTION) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5521 | count++; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5522 | } |
Todd Kjos | 7219639 | 2017-06-29 12:02:02 -0700 | [diff] [blame] | 5523 | binder_inner_proc_unlock(proc); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5524 | seq_printf(m, " pending transactions: %d\n", count); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5525 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5526 | print_binder_stats(m, " ", &proc->stats); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5527 | } |
| 5528 | |
| 5529 | |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5530 | int binder_state_show(struct seq_file *m, void *unused) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5531 | { |
| 5532 | struct binder_proc *proc; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5533 | struct binder_node *node; |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5534 | struct binder_node *last_node = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5535 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5536 | seq_puts(m, "binder state:\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5537 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5538 | spin_lock(&binder_dead_nodes_lock); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5539 | if (!hlist_empty(&binder_dead_nodes)) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5540 | seq_puts(m, "dead nodes:\n"); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5541 | hlist_for_each_entry(node, &binder_dead_nodes, dead_node) { |
| 5542 | /* |
| 5543 | * take a temporary reference on the node so it |
| 5544 | * survives and isn't removed from the list |
| 5545 | * while we print it. |
| 5546 | */ |
| 5547 | node->tmp_refs++; |
| 5548 | spin_unlock(&binder_dead_nodes_lock); |
| 5549 | if (last_node) |
| 5550 | binder_put_node(last_node); |
| 5551 | binder_node_lock(node); |
Todd Kjos | da0fa9e | 2017-06-29 12:02:04 -0700 | [diff] [blame] | 5552 | print_binder_node_nilocked(m, node); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5553 | binder_node_unlock(node); |
| 5554 | last_node = node; |
| 5555 | spin_lock(&binder_dead_nodes_lock); |
| 5556 | } |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5557 | spin_unlock(&binder_dead_nodes_lock); |
Todd Kjos | 673068e | 2017-06-29 12:02:03 -0700 | [diff] [blame] | 5558 | if (last_node) |
| 5559 | binder_put_node(last_node); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5560 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5561 | mutex_lock(&binder_procs_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5562 | hlist_for_each_entry(proc, &binder_procs, proc_node) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5563 | print_binder_proc(m, proc, 1); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5564 | mutex_unlock(&binder_procs_lock); |
Todd Kjos | a60b890 | 2017-06-29 12:02:11 -0700 | [diff] [blame] | 5565 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5566 | return 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5567 | } |
| 5568 | |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5569 | int binder_stats_show(struct seq_file *m, void *unused) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5570 | { |
| 5571 | struct binder_proc *proc; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5572 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5573 | seq_puts(m, "binder stats:\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5574 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5575 | print_binder_stats(m, "", &binder_stats); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5576 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5577 | mutex_lock(&binder_procs_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5578 | hlist_for_each_entry(proc, &binder_procs, proc_node) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5579 | print_binder_proc_stats(m, proc); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5580 | mutex_unlock(&binder_procs_lock); |
Todd Kjos | a60b890 | 2017-06-29 12:02:11 -0700 | [diff] [blame] | 5581 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5582 | return 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5583 | } |
| 5584 | |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5585 | int binder_transactions_show(struct seq_file *m, void *unused) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5586 | { |
| 5587 | struct binder_proc *proc; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5588 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5589 | seq_puts(m, "binder transactions:\n"); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5590 | mutex_lock(&binder_procs_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 5591 | hlist_for_each_entry(proc, &binder_procs, proc_node) |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5592 | print_binder_proc(m, proc, 0); |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5593 | mutex_unlock(&binder_procs_lock); |
Todd Kjos | a60b890 | 2017-06-29 12:02:11 -0700 | [diff] [blame] | 5594 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5595 | return 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5596 | } |
| 5597 | |
Yangtao Li | c13e0a5 | 2018-11-30 20:26:30 -0500 | [diff] [blame] | 5598 | static int proc_show(struct seq_file *m, void *unused) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5599 | { |
Riley Andrews | 83050a4 | 2016-02-09 21:05:33 -0800 | [diff] [blame] | 5600 | struct binder_proc *itr; |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 5601 | int pid = (unsigned long)m->private; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5602 | |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5603 | mutex_lock(&binder_procs_lock); |
Riley Andrews | 83050a4 | 2016-02-09 21:05:33 -0800 | [diff] [blame] | 5604 | hlist_for_each_entry(itr, &binder_procs, proc_node) { |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 5605 | if (itr->pid == pid) { |
| 5606 | seq_puts(m, "binder proc state:\n"); |
| 5607 | print_binder_proc(m, itr, 1); |
Riley Andrews | 83050a4 | 2016-02-09 21:05:33 -0800 | [diff] [blame] | 5608 | } |
| 5609 | } |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5610 | mutex_unlock(&binder_procs_lock); |
| 5611 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5612 | return 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5613 | } |
| 5614 | |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5615 | static void print_binder_transaction_log_entry(struct seq_file *m, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5616 | struct binder_transaction_log_entry *e) |
| 5617 | { |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5618 | int debug_id = READ_ONCE(e->debug_id_done); |
| 5619 | /* |
| 5620 | * read barrier to guarantee debug_id_done read before |
| 5621 | * we print the log values |
| 5622 | */ |
| 5623 | smp_rmb(); |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5624 | seq_printf(m, |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5625 | "%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åg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5626 | e->debug_id, (e->call_type == 2) ? "reply" : |
| 5627 | ((e->call_type == 1) ? "async" : "call "), e->from_proc, |
Martijn Coenen | 14db318 | 2017-02-03 14:40:47 -0800 | [diff] [blame] | 5628 | e->from_thread, e->to_proc, e->to_thread, e->context_name, |
Todd Kjos | 57ada2f | 2017-06-29 12:01:46 -0700 | [diff] [blame] | 5629 | e->to_node, e->target_handle, e->data_size, e->offsets_size, |
| 5630 | e->return_error, e->return_error_param, |
| 5631 | e->return_error_line); |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5632 | /* |
| 5633 | * read-barrier to guarantee read of debug_id_done after |
| 5634 | * done printing the fields of the entry |
| 5635 | */ |
| 5636 | smp_rmb(); |
| 5637 | seq_printf(m, debug_id && debug_id == READ_ONCE(e->debug_id_done) ? |
| 5638 | "\n" : " (incomplete)\n"); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5639 | } |
| 5640 | |
Hridya Valsaraju | 03e2e07 | 2019-09-03 09:16:54 -0700 | [diff] [blame] | 5641 | int binder_transaction_log_show(struct seq_file *m, void *unused) |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5642 | { |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5643 | struct binder_transaction_log *log = m->private; |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5644 | unsigned int log_cur = atomic_read(&log->cur); |
| 5645 | unsigned int count; |
| 5646 | unsigned int cur; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5647 | int i; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5648 | |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5649 | count = log_cur + 1; |
| 5650 | cur = count < ARRAY_SIZE(log->entry) && !log->full ? |
| 5651 | 0 : count % ARRAY_SIZE(log->entry); |
| 5652 | if (count > ARRAY_SIZE(log->entry) || log->full) |
| 5653 | count = ARRAY_SIZE(log->entry); |
| 5654 | for (i = 0; i < count; i++) { |
| 5655 | unsigned int index = cur++ % ARRAY_SIZE(log->entry); |
| 5656 | |
| 5657 | print_binder_transaction_log_entry(m, &log->entry[index]); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5658 | } |
Arve Hjønnevåg | 5249f48 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5659 | return 0; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5660 | } |
| 5661 | |
Christian Brauner | 3ad20fe | 2018-12-14 13:11:14 +0100 | [diff] [blame] | 5662 | const struct file_operations binder_fops = { |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5663 | .owner = THIS_MODULE, |
| 5664 | .poll = binder_poll, |
| 5665 | .unlocked_ioctl = binder_ioctl, |
Arnd Bergmann | 1832f2d | 2018-09-11 21:59:08 +0200 | [diff] [blame] | 5666 | .compat_ioctl = compat_ptr_ioctl, |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5667 | .mmap = binder_mmap, |
| 5668 | .open = binder_open, |
| 5669 | .flush = binder_flush, |
| 5670 | .release = binder_release, |
| 5671 | }; |
| 5672 | |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5673 | static int __init init_binder_device(const char *name) |
| 5674 | { |
| 5675 | int ret; |
| 5676 | struct binder_device *binder_device; |
| 5677 | |
| 5678 | binder_device = kzalloc(sizeof(*binder_device), GFP_KERNEL); |
| 5679 | if (!binder_device) |
| 5680 | return -ENOMEM; |
| 5681 | |
| 5682 | binder_device->miscdev.fops = &binder_fops; |
| 5683 | binder_device->miscdev.minor = MISC_DYNAMIC_MINOR; |
| 5684 | binder_device->miscdev.name = name; |
| 5685 | |
Christian Brauner | f0fe2c0 | 2020-03-03 17:43:40 +0100 | [diff] [blame] | 5686 | refcount_set(&binder_device->ref, 1); |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5687 | binder_device->context.binder_context_mgr_uid = INVALID_UID; |
| 5688 | binder_device->context.name = name; |
Todd Kjos | c44b123 | 2017-06-29 12:01:43 -0700 | [diff] [blame] | 5689 | mutex_init(&binder_device->context.context_mgr_node_lock); |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5690 | |
| 5691 | ret = misc_register(&binder_device->miscdev); |
| 5692 | if (ret < 0) { |
| 5693 | kfree(binder_device); |
| 5694 | return ret; |
| 5695 | } |
| 5696 | |
| 5697 | hlist_add_head(&binder_device->hlist, &binder_devices); |
| 5698 | |
| 5699 | return ret; |
| 5700 | } |
| 5701 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5702 | static int __init binder_init(void) |
| 5703 | { |
| 5704 | int ret; |
Christian Brauner | 5b9633a | 2019-01-31 01:25:02 +0100 | [diff] [blame] | 5705 | char *device_name, *device_tmp; |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5706 | struct binder_device *device; |
| 5707 | struct hlist_node *tmp; |
Christian Brauner | 5b9633a | 2019-01-31 01:25:02 +0100 | [diff] [blame] | 5708 | char *device_names = NULL; |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5709 | |
Tetsuo Handa | 533dfb2 | 2017-11-29 22:29:47 +0900 | [diff] [blame] | 5710 | ret = binder_alloc_shrinker_init(); |
| 5711 | if (ret) |
| 5712 | return ret; |
Sherry Yang | f2517eb | 2017-08-23 08:46:42 -0700 | [diff] [blame] | 5713 | |
Todd Kjos | d99c733 | 2017-06-29 12:01:53 -0700 | [diff] [blame] | 5714 | atomic_set(&binder_transaction_log.cur, ~0U); |
| 5715 | atomic_set(&binder_transaction_log_failed.cur, ~0U); |
| 5716 | |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5717 | binder_debugfs_dir_entry_root = debugfs_create_dir("binder", NULL); |
| 5718 | if (binder_debugfs_dir_entry_root) |
| 5719 | binder_debugfs_dir_entry_proc = debugfs_create_dir("proc", |
| 5720 | binder_debugfs_dir_entry_root); |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5721 | |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5722 | if (binder_debugfs_dir_entry_root) { |
| 5723 | debugfs_create_file("state", |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 5724 | 0444, |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5725 | binder_debugfs_dir_entry_root, |
| 5726 | NULL, |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5727 | &binder_state_fops); |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5728 | debugfs_create_file("stats", |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 5729 | 0444, |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5730 | binder_debugfs_dir_entry_root, |
| 5731 | NULL, |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5732 | &binder_stats_fops); |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5733 | debugfs_create_file("transactions", |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 5734 | 0444, |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5735 | binder_debugfs_dir_entry_root, |
| 5736 | NULL, |
Hridya Valsaraju | 0e13e45 | 2019-09-03 09:16:53 -0700 | [diff] [blame] | 5737 | &binder_transactions_fops); |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5738 | debugfs_create_file("transaction_log", |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 5739 | 0444, |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5740 | binder_debugfs_dir_entry_root, |
| 5741 | &binder_transaction_log, |
Hridya Valsaraju | 03e2e07 | 2019-09-03 09:16:54 -0700 | [diff] [blame] | 5742 | &binder_transaction_log_fops); |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5743 | debugfs_create_file("failed_transaction_log", |
Harsh Shandilya | 21d02dd | 2017-12-22 19:37:02 +0530 | [diff] [blame] | 5744 | 0444, |
Arve Hjønnevåg | 16b6655 | 2009-04-28 20:57:50 -0700 | [diff] [blame] | 5745 | binder_debugfs_dir_entry_root, |
| 5746 | &binder_transaction_log_failed, |
Hridya Valsaraju | 03e2e07 | 2019-09-03 09:16:54 -0700 | [diff] [blame] | 5747 | &binder_transaction_log_fops); |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5748 | } |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5749 | |
Hridya Valsaraju | ca2864c | 2019-09-04 13:07:03 +0200 | [diff] [blame] | 5750 | if (!IS_ENABLED(CONFIG_ANDROID_BINDERFS) && |
| 5751 | strcmp(binder_devices_param, "") != 0) { |
Christian Brauner | 793c823 | 2019-01-26 11:23:20 +0100 | [diff] [blame] | 5752 | /* |
| 5753 | * Copy the module_parameter string, because we don't want to |
| 5754 | * tokenize it in-place. |
| 5755 | */ |
| 5756 | device_names = kstrdup(binder_devices_param, GFP_KERNEL); |
| 5757 | if (!device_names) { |
| 5758 | ret = -ENOMEM; |
| 5759 | goto err_alloc_device_names_failed; |
| 5760 | } |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5761 | |
Christian Brauner | 793c823 | 2019-01-26 11:23:20 +0100 | [diff] [blame] | 5762 | device_tmp = device_names; |
| 5763 | while ((device_name = strsep(&device_tmp, ","))) { |
| 5764 | ret = init_binder_device(device_name); |
| 5765 | if (ret) |
| 5766 | goto err_init_binder_device_failed; |
| 5767 | } |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5768 | } |
| 5769 | |
Christian Brauner | 5b9633a | 2019-01-31 01:25:02 +0100 | [diff] [blame] | 5770 | ret = init_binderfs(); |
| 5771 | if (ret) |
| 5772 | goto err_init_binder_device_failed; |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5773 | |
| 5774 | return ret; |
| 5775 | |
| 5776 | err_init_binder_device_failed: |
| 5777 | hlist_for_each_entry_safe(device, tmp, &binder_devices, hlist) { |
| 5778 | misc_deregister(&device->miscdev); |
| 5779 | hlist_del(&device->hlist); |
| 5780 | kfree(device); |
| 5781 | } |
Christian Brauner | 22eb947 | 2017-08-21 16:13:28 +0200 | [diff] [blame] | 5782 | |
| 5783 | kfree(device_names); |
| 5784 | |
Martijn Coenen | ac4812c | 2017-02-03 14:40:48 -0800 | [diff] [blame] | 5785 | err_alloc_device_names_failed: |
| 5786 | debugfs_remove_recursive(binder_debugfs_dir_entry_root); |
| 5787 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5788 | return ret; |
| 5789 | } |
| 5790 | |
| 5791 | device_initcall(binder_init); |
| 5792 | |
Arve Hjønnevåg | 975a1ac | 2012-10-16 15:29:53 -0700 | [diff] [blame] | 5793 | #define CREATE_TRACE_POINTS |
| 5794 | #include "binder_trace.h" |
| 5795 | |
Greg Kroah-Hartman | 355b050 | 2011-11-30 20:18:14 +0900 | [diff] [blame] | 5796 | MODULE_LICENSE("GPL v2"); |