Merge branch 'linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad...
[linux-block.git] / drivers / android / binder_internal.h
CommitLineData
3ad20fe3
CB
1/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef _LINUX_BINDER_INTERNAL_H
4#define _LINUX_BINDER_INTERNAL_H
5
6#include <linux/export.h>
7#include <linux/fs.h>
8#include <linux/list.h>
9#include <linux/miscdevice.h>
10#include <linux/mutex.h>
f0fe2c0f 11#include <linux/refcount.h>
3ad20fe3
CB
12#include <linux/stddef.h>
13#include <linux/types.h>
14#include <linux/uidgid.h>
421518a2
FC
15#include <uapi/linux/android/binderfs.h>
16#include "binder_alloc.h"
3ad20fe3
CB
17
18struct binder_context {
19 struct binder_node *binder_context_mgr_node;
20 struct mutex context_mgr_node_lock;
21 kuid_t binder_context_mgr_uid;
22 const char *name;
23};
24
25/**
26 * struct binder_device - information about a binder device node
27 * @hlist: list of binder devices (only used for devices requested via
28 * CONFIG_ANDROID_BINDER_DEVICES)
29 * @miscdev: information about a binder character device node
30 * @context: binder context information
31 * @binderfs_inode: This is the inode of the root dentry of the super block
32 * belonging to a binderfs mount.
33 */
34struct binder_device {
35 struct hlist_node hlist;
36 struct miscdevice miscdev;
37 struct binder_context context;
38 struct inode *binderfs_inode;
f0fe2c0f 39 refcount_t ref;
3ad20fe3
CB
40};
41
4feb80fa
HV
42/**
43 * binderfs_mount_opts - mount options for binderfs
44 * @max: maximum number of allocatable binderfs binder devices
45 * @stats_mode: enable binder stats in binderfs.
46 */
47struct binderfs_mount_opts {
48 int max;
49 int stats_mode;
50};
51
52/**
53 * binderfs_info - information about a binderfs mount
54 * @ipc_ns: The ipc namespace the binderfs mount belongs to.
55 * @control_dentry: This records the dentry of this binderfs mount
56 * binder-control device.
57 * @root_uid: uid that needs to be used when a new binder device is
58 * created.
59 * @root_gid: gid that needs to be used when a new binder device is
60 * created.
61 * @mount_opts: The mount options in use.
62 * @device_count: The current number of allocated binder devices.
63 * @proc_log_dir: Pointer to the directory dentry containing process-specific
64 * logs.
65 */
66struct binderfs_info {
67 struct ipc_namespace *ipc_ns;
68 struct dentry *control_dentry;
69 kuid_t root_uid;
70 kgid_t root_gid;
71 struct binderfs_mount_opts mount_opts;
72 int device_count;
73 struct dentry *proc_log_dir;
74};
75
3ad20fe3
CB
76extern const struct file_operations binder_fops;
77
ca2864c6
HV
78extern char *binder_devices_param;
79
3ad20fe3
CB
80#ifdef CONFIG_ANDROID_BINDERFS
81extern bool is_binderfs_device(const struct inode *inode);
4feb80fa
HV
82extern struct dentry *binderfs_create_file(struct dentry *dir, const char *name,
83 const struct file_operations *fops,
84 void *data);
85extern void binderfs_remove_file(struct dentry *dentry);
3ad20fe3
CB
86#else
87static inline bool is_binderfs_device(const struct inode *inode)
88{
89 return false;
90}
4feb80fa
HV
91static inline struct dentry *binderfs_create_file(struct dentry *dir,
92 const char *name,
93 const struct file_operations *fops,
94 void *data)
95{
96 return NULL;
97}
98static inline void binderfs_remove_file(struct dentry *dentry) {}
3ad20fe3
CB
99#endif
100
5b9633af
CB
101#ifdef CONFIG_ANDROID_BINDERFS
102extern int __init init_binderfs(void);
103#else
104static inline int __init init_binderfs(void)
105{
106 return 0;
107}
108#endif
109
0e13e452
HV
110int binder_stats_show(struct seq_file *m, void *unused);
111DEFINE_SHOW_ATTRIBUTE(binder_stats);
112
113int binder_state_show(struct seq_file *m, void *unused);
114DEFINE_SHOW_ATTRIBUTE(binder_state);
115
116int binder_transactions_show(struct seq_file *m, void *unused);
117DEFINE_SHOW_ATTRIBUTE(binder_transactions);
03e2e07e
HV
118
119int binder_transaction_log_show(struct seq_file *m, void *unused);
120DEFINE_SHOW_ATTRIBUTE(binder_transaction_log);
121
122struct binder_transaction_log_entry {
123 int debug_id;
124 int debug_id_done;
125 int call_type;
126 int from_proc;
127 int from_thread;
128 int target_handle;
129 int to_proc;
130 int to_thread;
131 int to_node;
132 int data_size;
133 int offsets_size;
134 int return_error_line;
135 uint32_t return_error;
136 uint32_t return_error_param;
51d8a7ec 137 char context_name[BINDERFS_MAX_NAME + 1];
03e2e07e
HV
138};
139
140struct binder_transaction_log {
141 atomic_t cur;
142 bool full;
143 struct binder_transaction_log_entry entry[32];
144};
145
421518a2
FC
146enum binder_stat_types {
147 BINDER_STAT_PROC,
148 BINDER_STAT_THREAD,
149 BINDER_STAT_NODE,
150 BINDER_STAT_REF,
151 BINDER_STAT_DEATH,
152 BINDER_STAT_TRANSACTION,
153 BINDER_STAT_TRANSACTION_COMPLETE,
154 BINDER_STAT_COUNT
155};
156
157struct binder_stats {
a7dc1e6f 158 atomic_t br[_IOC_NR(BR_ONEWAY_SPAM_SUSPECT) + 1];
421518a2
FC
159 atomic_t bc[_IOC_NR(BC_REPLY_SG) + 1];
160 atomic_t obj_created[BINDER_STAT_COUNT];
161 atomic_t obj_deleted[BINDER_STAT_COUNT];
162};
163
164/**
165 * struct binder_work - work enqueued on a worklist
166 * @entry: node enqueued on list
167 * @type: type of work to be performed
168 *
169 * There are separate work lists for proc, thread, and node (async).
170 */
171struct binder_work {
172 struct list_head entry;
173
174 enum binder_work_type {
175 BINDER_WORK_TRANSACTION = 1,
176 BINDER_WORK_TRANSACTION_COMPLETE,
a7dc1e6f 177 BINDER_WORK_TRANSACTION_ONEWAY_SPAM_SUSPECT,
421518a2
FC
178 BINDER_WORK_RETURN_ERROR,
179 BINDER_WORK_NODE,
180 BINDER_WORK_DEAD_BINDER,
181 BINDER_WORK_DEAD_BINDER_AND_CLEAR,
182 BINDER_WORK_CLEAR_DEATH_NOTIFICATION,
183 } type;
184};
185
186struct binder_error {
187 struct binder_work work;
188 uint32_t cmd;
189};
190
191/**
192 * struct binder_node - binder node bookkeeping
193 * @debug_id: unique ID for debugging
194 * (invariant after initialized)
195 * @lock: lock for node fields
196 * @work: worklist element for node work
197 * (protected by @proc->inner_lock)
198 * @rb_node: element for proc->nodes tree
199 * (protected by @proc->inner_lock)
200 * @dead_node: element for binder_dead_nodes list
201 * (protected by binder_dead_nodes_lock)
202 * @proc: binder_proc that owns this node
203 * (invariant after initialized)
204 * @refs: list of references on this node
205 * (protected by @lock)
206 * @internal_strong_refs: used to take strong references when
207 * initiating a transaction
208 * (protected by @proc->inner_lock if @proc
209 * and by @lock)
210 * @local_weak_refs: weak user refs from local process
211 * (protected by @proc->inner_lock if @proc
212 * and by @lock)
213 * @local_strong_refs: strong user refs from local process
214 * (protected by @proc->inner_lock if @proc
215 * and by @lock)
216 * @tmp_refs: temporary kernel refs
217 * (protected by @proc->inner_lock while @proc
218 * is valid, and by binder_dead_nodes_lock
219 * if @proc is NULL. During inc/dec and node release
220 * it is also protected by @lock to provide safety
221 * as the node dies and @proc becomes NULL)
222 * @ptr: userspace pointer for node
223 * (invariant, no lock needed)
224 * @cookie: userspace cookie for node
225 * (invariant, no lock needed)
226 * @has_strong_ref: userspace notified of strong ref
227 * (protected by @proc->inner_lock if @proc
228 * and by @lock)
229 * @pending_strong_ref: userspace has acked notification of strong ref
230 * (protected by @proc->inner_lock if @proc
231 * and by @lock)
232 * @has_weak_ref: userspace notified of weak ref
233 * (protected by @proc->inner_lock if @proc
234 * and by @lock)
235 * @pending_weak_ref: userspace has acked notification of weak ref
236 * (protected by @proc->inner_lock if @proc
237 * and by @lock)
238 * @has_async_transaction: async transaction to node in progress
239 * (protected by @lock)
240 * @accept_fds: file descriptor operations supported for node
241 * (invariant after initialized)
242 * @min_priority: minimum scheduling priority
243 * (invariant after initialized)
244 * @txn_security_ctx: require sender's security context
245 * (invariant after initialized)
246 * @async_todo: list of async work items
247 * (protected by @proc->inner_lock)
248 *
249 * Bookkeeping structure for binder nodes.
250 */
251struct binder_node {
252 int debug_id;
253 spinlock_t lock;
254 struct binder_work work;
255 union {
256 struct rb_node rb_node;
257 struct hlist_node dead_node;
258 };
259 struct binder_proc *proc;
260 struct hlist_head refs;
261 int internal_strong_refs;
262 int local_weak_refs;
263 int local_strong_refs;
264 int tmp_refs;
265 binder_uintptr_t ptr;
266 binder_uintptr_t cookie;
267 struct {
268 /*
269 * bitfield elements protected by
270 * proc inner_lock
271 */
272 u8 has_strong_ref:1;
273 u8 pending_strong_ref:1;
274 u8 has_weak_ref:1;
275 u8 pending_weak_ref:1;
276 };
277 struct {
278 /*
279 * invariant after initialization
280 */
281 u8 accept_fds:1;
282 u8 txn_security_ctx:1;
283 u8 min_priority;
284 };
285 bool has_async_transaction;
286 struct list_head async_todo;
287};
288
289struct binder_ref_death {
290 /**
291 * @work: worklist element for death notifications
292 * (protected by inner_lock of the proc that
293 * this ref belongs to)
294 */
295 struct binder_work work;
296 binder_uintptr_t cookie;
297};
298
299/**
300 * struct binder_ref_data - binder_ref counts and id
301 * @debug_id: unique ID for the ref
302 * @desc: unique userspace handle for ref
303 * @strong: strong ref count (debugging only if not locked)
304 * @weak: weak ref count (debugging only if not locked)
305 *
306 * Structure to hold ref count and ref id information. Since
307 * the actual ref can only be accessed with a lock, this structure
308 * is used to return information about the ref to callers of
309 * ref inc/dec functions.
310 */
311struct binder_ref_data {
312 int debug_id;
313 uint32_t desc;
314 int strong;
315 int weak;
316};
317
318/**
319 * struct binder_ref - struct to track references on nodes
320 * @data: binder_ref_data containing id, handle, and current refcounts
321 * @rb_node_desc: node for lookup by @data.desc in proc's rb_tree
322 * @rb_node_node: node for lookup by @node in proc's rb_tree
323 * @node_entry: list entry for node->refs list in target node
324 * (protected by @node->lock)
325 * @proc: binder_proc containing ref
326 * @node: binder_node of target node. When cleaning up a
327 * ref for deletion in binder_cleanup_ref, a non-NULL
328 * @node indicates the node must be freed
329 * @death: pointer to death notification (ref_death) if requested
330 * (protected by @node->lock)
331 *
332 * Structure to track references from procA to target node (on procB). This
333 * structure is unsafe to access without holding @proc->outer_lock.
334 */
335struct binder_ref {
336 /* Lookups needed: */
337 /* node + proc => ref (transaction) */
338 /* desc + proc => ref (transaction, inc/dec ref) */
339 /* node => refs + procs (proc exit) */
340 struct binder_ref_data data;
341 struct rb_node rb_node_desc;
342 struct rb_node rb_node_node;
343 struct hlist_node node_entry;
344 struct binder_proc *proc;
345 struct binder_node *node;
346 struct binder_ref_death *death;
347};
348
349/**
350 * struct binder_proc - binder process bookkeeping
351 * @proc_node: element for binder_procs list
352 * @threads: rbtree of binder_threads in this proc
353 * (protected by @inner_lock)
354 * @nodes: rbtree of binder nodes associated with
355 * this proc ordered by node->ptr
356 * (protected by @inner_lock)
357 * @refs_by_desc: rbtree of refs ordered by ref->desc
358 * (protected by @outer_lock)
359 * @refs_by_node: rbtree of refs ordered by ref->node
360 * (protected by @outer_lock)
361 * @waiting_threads: threads currently waiting for proc work
362 * (protected by @inner_lock)
363 * @pid PID of group_leader of process
364 * (invariant after initialized)
365 * @tsk task_struct for group_leader of process
366 * (invariant after initialized)
367 * @deferred_work_node: element for binder_deferred_list
368 * (protected by binder_deferred_lock)
369 * @deferred_work: bitmap of deferred work to perform
370 * (protected by binder_deferred_lock)
432ff1e9
MB
371 * @outstanding_txns: number of transactions to be transmitted before
372 * processes in freeze_wait are woken up
373 * (protected by @inner_lock)
421518a2
FC
374 * @is_dead: process is dead and awaiting free
375 * when outstanding transactions are cleaned up
376 * (protected by @inner_lock)
432ff1e9
MB
377 * @is_frozen: process is frozen and unable to service
378 * binder transactions
379 * (protected by @inner_lock)
ae28c1be
MB
380 * @sync_recv: process received sync transactions since last frozen
381 * (protected by @inner_lock)
382 * @async_recv: process received async transactions since last frozen
383 * (protected by @inner_lock)
432ff1e9
MB
384 * @freeze_wait: waitqueue of processes waiting for all outstanding
385 * transactions to be processed
386 * (protected by @inner_lock)
421518a2
FC
387 * @todo: list of work for this process
388 * (protected by @inner_lock)
389 * @stats: per-process binder statistics
390 * (atomics, no lock needed)
391 * @delivered_death: list of delivered death notification
392 * (protected by @inner_lock)
393 * @max_threads: cap on number of binder threads
394 * (protected by @inner_lock)
395 * @requested_threads: number of binder threads requested but not
396 * yet started. In current implementation, can
397 * only be 0 or 1.
398 * (protected by @inner_lock)
399 * @requested_threads_started: number binder threads started
400 * (protected by @inner_lock)
401 * @tmp_ref: temporary reference to indicate proc is in use
402 * (protected by @inner_lock)
403 * @default_priority: default scheduler priority
404 * (invariant after initialized)
405 * @debugfs_entry: debugfs node
406 * @alloc: binder allocator bookkeeping
407 * @context: binder_context for this proc
408 * (invariant after initialized)
409 * @inner_lock: can nest under outer_lock and/or node lock
410 * @outer_lock: no nesting under innor or node lock
411 * Lock order: 1) outer, 2) node, 3) inner
412 * @binderfs_entry: process-specific binderfs log file
a7dc1e6f
HL
413 * @oneway_spam_detection_enabled: process enabled oneway spam detection
414 * or not
421518a2
FC
415 *
416 * Bookkeeping structure for binder processes
417 */
418struct binder_proc {
419 struct hlist_node proc_node;
420 struct rb_root threads;
421 struct rb_root nodes;
422 struct rb_root refs_by_desc;
423 struct rb_root refs_by_node;
424 struct list_head waiting_threads;
425 int pid;
426 struct task_struct *tsk;
427 struct hlist_node deferred_work_node;
428 int deferred_work;
432ff1e9 429 int outstanding_txns;
421518a2 430 bool is_dead;
432ff1e9 431 bool is_frozen;
ae28c1be
MB
432 bool sync_recv;
433 bool async_recv;
432ff1e9 434 wait_queue_head_t freeze_wait;
421518a2
FC
435
436 struct list_head todo;
437 struct binder_stats stats;
438 struct list_head delivered_death;
439 int max_threads;
440 int requested_threads;
441 int requested_threads_started;
442 int tmp_ref;
443 long default_priority;
444 struct dentry *debugfs_entry;
445 struct binder_alloc alloc;
446 struct binder_context *context;
447 spinlock_t inner_lock;
448 spinlock_t outer_lock;
449 struct dentry *binderfs_entry;
a7dc1e6f 450 bool oneway_spam_detection_enabled;
421518a2
FC
451};
452
453/**
454 * struct binder_thread - binder thread bookkeeping
455 * @proc: binder process for this thread
456 * (invariant after initialization)
457 * @rb_node: element for proc->threads rbtree
458 * (protected by @proc->inner_lock)
459 * @waiting_thread_node: element for @proc->waiting_threads list
460 * (protected by @proc->inner_lock)
461 * @pid: PID for this thread
462 * (invariant after initialization)
463 * @looper: bitmap of looping state
464 * (only accessed by this thread)
465 * @looper_needs_return: looping thread needs to exit driver
466 * (no lock needed)
467 * @transaction_stack: stack of in-progress transactions for this thread
468 * (protected by @proc->inner_lock)
469 * @todo: list of work to do for this thread
470 * (protected by @proc->inner_lock)
471 * @process_todo: whether work in @todo should be processed
472 * (protected by @proc->inner_lock)
473 * @return_error: transaction errors reported by this thread
474 * (only accessed by this thread)
475 * @reply_error: transaction errors reported by target thread
476 * (protected by @proc->inner_lock)
477 * @wait: wait queue for thread work
478 * @stats: per-thread statistics
479 * (atomics, no lock needed)
480 * @tmp_ref: temporary reference to indicate thread is in use
481 * (atomic since @proc->inner_lock cannot
482 * always be acquired)
483 * @is_dead: thread is dead and awaiting free
484 * when outstanding transactions are cleaned up
485 * (protected by @proc->inner_lock)
486 *
487 * Bookkeeping structure for binder threads.
488 */
489struct binder_thread {
490 struct binder_proc *proc;
491 struct rb_node rb_node;
492 struct list_head waiting_thread_node;
493 int pid;
494 int looper; /* only modified by this thread */
495 bool looper_need_return; /* can be written by other thread */
496 struct binder_transaction *transaction_stack;
497 struct list_head todo;
498 bool process_todo;
499 struct binder_error return_error;
500 struct binder_error reply_error;
501 wait_queue_head_t wait;
502 struct binder_stats stats;
503 atomic_t tmp_ref;
504 bool is_dead;
505};
506
507/**
508 * struct binder_txn_fd_fixup - transaction fd fixup list element
509 * @fixup_entry: list entry
510 * @file: struct file to be associated with new fd
511 * @offset: offset in buffer data to this fixup
512 *
513 * List element for fd fixups in a transaction. Since file
514 * descriptors need to be allocated in the context of the
515 * target process, we pass each fd to be processed in this
516 * struct.
517 */
518struct binder_txn_fd_fixup {
519 struct list_head fixup_entry;
520 struct file *file;
521 size_t offset;
522};
523
524struct binder_transaction {
525 int debug_id;
526 struct binder_work work;
527 struct binder_thread *from;
528 struct binder_transaction *from_parent;
529 struct binder_proc *to_proc;
530 struct binder_thread *to_thread;
531 struct binder_transaction *to_parent;
532 unsigned need_reply:1;
533 /* unsigned is_dead:1; */ /* not used at the moment */
534
535 struct binder_buffer *buffer;
536 unsigned int code;
537 unsigned int flags;
538 long priority;
539 long saved_priority;
540 kuid_t sender_euid;
541 struct list_head fd_fixups;
542 binder_uintptr_t security_ctx;
543 /**
544 * @lock: protects @from, @to_proc, and @to_thread
545 *
546 * @from, @to_proc, and @to_thread can be set to NULL
547 * during thread teardown
548 */
549 spinlock_t lock;
550};
551
552/**
553 * struct binder_object - union of flat binder object types
554 * @hdr: generic object header
555 * @fbo: binder object (nodes and refs)
556 * @fdo: file descriptor object
557 * @bbo: binder buffer pointer
558 * @fdao: file descriptor array
559 *
560 * Used for type-independent object copies
561 */
562struct binder_object {
563 union {
564 struct binder_object_header hdr;
565 struct flat_binder_object fbo;
566 struct binder_fd_object fdo;
567 struct binder_buffer_object bbo;
568 struct binder_fd_array_object fdao;
569 };
570};
571
03e2e07e
HV
572extern struct binder_transaction_log binder_transaction_log;
573extern struct binder_transaction_log binder_transaction_log_failed;
3ad20fe3 574#endif /* _LINUX_BINDER_INTERNAL_H */