source: mainline/kernel/generic/include/cap/cap.h@ d51a0d6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d51a0d6 was d51a0d6, checked in by Jakub Jermar <jakub@…>, 8 years ago

Associate a kobject_t with a call_t

Let all the reference counting be done on call_t::kobject.

  • Property mode set to 100644
File size: 3.6 KB
Line 
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
29/** @addtogroup generic
30 * @{
31 */
32/** @file
33 */
34
35#ifndef KERN_CAP_H_
36#define KERN_CAP_H_
37
38#include <typedefs.h>
39#include <adt/list.h>
40#include <adt/hash.h>
41#include <adt/hash_table.h>
42#include <lib/ra.h>
43#include <synch/mutex.h>
44#include <atomic.h>
45
46typedef int cap_handle_t;
47
48typedef enum {
49 CAP_STATE_FREE,
50 CAP_STATE_ALLOCATED,
51 CAP_STATE_PUBLISHED
52} cap_state_t;
53
54typedef enum {
55 KOBJECT_TYPE_CALL,
56 KOBJECT_TYPE_IRQ,
57 KOBJECT_TYPE_PHONE,
58 KOBJECT_TYPE_MAX
59} kobject_type_t;
60
61struct task;
62
63struct call;
64struct irq;
65struct phone;
66
67struct kobject;
68typedef struct kobject_ops {
69 bool (*reclaim)(struct kobject *);
70 void (*destroy)(void *);
71} kobject_ops_t;
72
73/*
74 * Everything in kobject_t except for the atomic reference count is imutable.
75 */
76typedef struct kobject {
77 kobject_type_t type;
78 atomic_t refcnt;
79
80 kobject_ops_t *ops;
81
82 union {
83 void *raw;
84 struct call *call;
85 struct irq *irq;
86 struct phone *phone;
87 };
88} kobject_t;
89
90/*
91 * A cap_t may only be accessed under the protection of the cap_info_t lock.
92 */
93typedef struct cap {
94 cap_state_t state;
95
96 struct task *task;
97 cap_handle_t handle;
98
99 /* Link to the task's capabilities of the same kobject type. */
100 link_t type_link;
101
102 ht_link_t caps_link;
103
104 /* The underlying kernel object. */
105 kobject_t *kobject;
106} cap_t;
107
108typedef struct cap_info {
109 mutex_t lock;
110
111 list_t type_list[KOBJECT_TYPE_MAX];
112
113 hash_table_t caps;
114 ra_arena_t *handles;
115} cap_info_t;
116
117extern void caps_init(void);
118extern int caps_task_alloc(struct task *);
119extern void caps_task_free(struct task *);
120extern void caps_task_init(struct task *);
121extern bool caps_apply_to_kobject_type(struct task *, kobject_type_t,
122 bool (*)(cap_t *, void *), void *);
123
124extern cap_handle_t cap_alloc(struct task *);
125extern void cap_publish(struct task *, cap_handle_t, kobject_t *);
126extern kobject_t *cap_unpublish(struct task *, cap_handle_t, kobject_type_t);
127extern void cap_free(struct task *, cap_handle_t);
128
129extern void kobject_initialize(kobject_t *, kobject_type_t, void *,
130 kobject_ops_t *);
131extern kobject_t *kobject_get(struct task *, cap_handle_t, kobject_type_t);
132extern void kobject_add_ref(kobject_t *);
133extern void kobject_put(kobject_t *);
134
135#endif
136
137/** @}
138 */
Note: See TracBrowser for help on using the repository browser.