1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/* Copyright 2023 Kim Kuparinen < kimi.h.kuparinen@gmail.com > */
#include <kmi/uapi.h>
#include <kmi/caps.h>
#include <kmi/tcb.h>
/**
* @file cap.c
* Sycalls handlers for thread capabilities.
*/
/**
* Set capabilities.
*
* @param t Current tcb.
* @param tid Thread ID whose capabilities to set.
* @param caps Mask of capabilities to set.
* @return \ref OK on success, \ref ERR_INVAL on invalid input.
*/
SYSCALL_DEFINE2(set_cap)(struct tcb *t, sys_arg_t tid, sys_arg_t caps)
{
if (!is_set(t->caps, CAP_CAPS))
return_args1(t, ERR_PERM);
struct tcb *c = get_tcb(tid);
if (!c)
return_args1(t, ERR_NF);
set_caps(c->caps, caps);
return_args1(t, OK);
}
/**
* Get capabilities.
*
* @param t Current tcb.
* @param tid Thread ID whose capabilities to get.
* @return \ref OK, capabilities.
*/
SYSCALL_DEFINE1(get_cap)(struct tcb *t, sys_arg_t tid)
{
struct tcb *c = get_tcb(tid);
if (!c)
return_args1(t, ERR_NF);
return_args2(t, OK, c->caps);
}
/**
* Clear capabilities.
*
* @param t Current tcb.
* @param tid Thread ID whose capabilities to clear.
* @param caps Mask of capabilities to clear.
* @return ERR_LERM if invalid permissions, ERR_INVAL if \p tid doesn't exist,
* otherwise OK.
*/
SYSCALL_DEFINE2(clear_cap)(struct tcb *t, sys_arg_t tid, sys_arg_t caps)
{
if (!is_set(t->caps, CAP_CAPS))
return_args1(t, ERR_PERM);
struct tcb *c = get_tcb(tid);
if (!c)
return_args1(t, ERR_NF);
clear_caps(c->caps, caps);
return_args1(t, OK);
}
|