source: mainline/kernel/generic/include/cap/cap.h@ 455241b

Last change on this file since 455241b was 455241b, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 11 months ago

Integrate kobject_t into target structures

This just means fewer allocations and indirections.

  • Property mode set to 100644
File size: 3.8 KB
RevLine 
[c8cec85]1/*
2 * Copyright (c) 2017 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[174156fd]29/** @addtogroup kernel_generic
[c8cec85]30 * @{
31 */
32/** @file
33 */
34
[3f74275]35#ifndef KERN_CAP_H_
36#define KERN_CAP_H_
[c8cec85]37
[98cb5e0d]38#include <abi/cap.h>
[05913fe7]39#include <adt/hash_table.h>
[96368f56]40#include <adt/hash.h>
41#include <adt/list.h>
42#include <atomic.h>
[05913fe7]43#include <lib/ra.h>
[96368f56]44#include <lib/refcount.h>
[9e87562]45#include <synch/mutex.h>
[96368f56]46#include <typedefs.h>
[c8cec85]47
[48bcf49]48typedef enum {
49 CAP_STATE_FREE,
50 CAP_STATE_ALLOCATED,
51 CAP_STATE_PUBLISHED
52} cap_state_t;
53
[c8cec85]54typedef enum {
[d51a0d6]55 KOBJECT_TYPE_CALL,
[48bcf49]56 KOBJECT_TYPE_IRQ,
[d51a0d6]57 KOBJECT_TYPE_PHONE,
[d314571]58 KOBJECT_TYPE_WAITQ,
[48bcf49]59 KOBJECT_TYPE_MAX
60} kobject_type_t;
61
[455241b]62struct kobject;
[48bcf49]63
64typedef struct kobject_ops {
[455241b]65 void (*destroy)(struct kobject *);
[48bcf49]66} kobject_ops_t;
67
[fc0de8c]68extern kobject_ops_t *kobject_ops[];
69
70#define KOBJECT_OP(k) kobject_ops[(k)->type]
71
[6636fb19]72/*
[d24e987]73 * Everything in kobject_t except for the atomic reference count, the capability
[455241b]74 * list and its lock is immutable.
[6636fb19]75 */
[48bcf49]76typedef struct kobject {
77 kobject_type_t type;
[96368f56]78 atomic_refcount_t refcnt;
[48bcf49]79
[d24e987]80 /** Mutex protecting caps_list */
81 mutex_t caps_list_lock;
82 /** List of published capabilities associated with the kobject */
83 list_t caps_list;
[48bcf49]84} kobject_t;
[c8cec85]85
[6636fb19]86/*
87 * A cap_t may only be accessed under the protection of the cap_info_t lock.
88 */
[3f74275]89typedef struct cap {
[48bcf49]90 cap_state_t state;
[e68765e]91
[05913fe7]92 struct task *task;
[48bcf49]93 cap_handle_t handle;
[05ffb41]94
[d24e987]95 /** Link to the kobject's list of capabilities. */
96 link_t kobj_link;
97
[48bcf49]98 /* Link to the task's capabilities of the same kobject type. */
[05913fe7]99 link_t type_link;
100
101 ht_link_t caps_link;
[9e87562]102
[3f74275]103 /* The underlying kernel object. */
[48bcf49]104 kobject_t *kobject;
[3f74275]105} cap_t;
[c8cec85]106
[9e87562]107typedef struct cap_info {
108 mutex_t lock;
109
[48bcf49]110 list_t type_list[KOBJECT_TYPE_MAX];
[9e87562]111
[05913fe7]112 hash_table_t caps;
113 ra_arena_t *handles;
[9e87562]114} cap_info_t;
115
[ce732e74]116extern void caps_init(void);
[b7fd2a0]117extern errno_t caps_task_alloc(struct task *);
[9e87562]118extern void caps_task_free(struct task *);
[fa3ed5b]119extern void caps_task_clear(struct task *task);
120extern errno_t caps_task_init(struct task *);
[48bcf49]121extern bool caps_apply_to_kobject_type(struct task *, kobject_type_t,
[9e87562]122 bool (*)(cap_t *, void *), void *);
[48bcf49]123
[b7fd2a0]124extern errno_t cap_alloc(struct task *, cap_handle_t *);
[48bcf49]125extern void cap_publish(struct task *, cap_handle_t, kobject_t *);
126extern kobject_t *cap_unpublish(struct task *, cap_handle_t, kobject_type_t);
[d24e987]127extern void cap_revoke(kobject_t *);
[48bcf49]128extern void cap_free(struct task *, cap_handle_t);
129
[455241b]130extern void kobject_initialize(kobject_t *, kobject_type_t);
[48bcf49]131extern kobject_t *kobject_get(struct task *, cap_handle_t, kobject_type_t);
[6636fb19]132extern void kobject_add_ref(kobject_t *);
[48bcf49]133extern void kobject_put(kobject_t *);
[c8cec85]134
135#endif
136
137/** @}
138 */
Note: See TracBrowser for help on using the repository browser.