blob: bbd5c0d1f3bd5aea4a493f12502501192484bcbf [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +01003 * A security identifier table (sidtab) is a lookup table
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * of security context structures indexed by SID value.
5 *
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +01006 * Original author: Stephen Smalley, <sds@tycho.nsa.gov>
7 * Author: Ondrej Mosnacek, <omosnacek@gmail.com>
8 *
9 * Copyright (C) 2018 Red Hat, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11#ifndef _SS_SIDTAB_H_
12#define _SS_SIDTAB_H_
13
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010014#include <linux/spinlock_types.h>
15#include <linux/log2.h>
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "context.h"
18
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010019struct sidtab_entry_leaf {
20 struct context context;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021};
22
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010023struct sidtab_node_inner;
24struct sidtab_node_leaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010026union sidtab_entry_inner {
27 struct sidtab_node_inner *ptr_inner;
28 struct sidtab_node_leaf *ptr_leaf;
29};
30
31/* align node size to page boundary */
32#define SIDTAB_NODE_ALLOC_SHIFT PAGE_SHIFT
33#define SIDTAB_NODE_ALLOC_SIZE PAGE_SIZE
34
35#define size_to_shift(size) ((size) == 1 ? 1 : (const_ilog2((size) - 1) + 1))
36
37#define SIDTAB_INNER_SHIFT \
38 (SIDTAB_NODE_ALLOC_SHIFT - size_to_shift(sizeof(union sidtab_entry_inner)))
39#define SIDTAB_INNER_ENTRIES ((size_t)1 << SIDTAB_INNER_SHIFT)
40#define SIDTAB_LEAF_ENTRIES \
41 (SIDTAB_NODE_ALLOC_SIZE / sizeof(struct sidtab_entry_leaf))
42
43#define SIDTAB_MAX_BITS 31 /* limited to INT_MAX due to atomic_t range */
44#define SIDTAB_MAX (((u32)1 << SIDTAB_MAX_BITS) - 1)
45/* ensure enough tree levels for SIDTAB_MAX entries */
46#define SIDTAB_MAX_LEVEL \
47 DIV_ROUND_UP(SIDTAB_MAX_BITS - size_to_shift(SIDTAB_LEAF_ENTRIES), \
48 SIDTAB_INNER_SHIFT)
49
50struct sidtab_node_leaf {
51 struct sidtab_entry_leaf entries[SIDTAB_LEAF_ENTRIES];
52};
53
54struct sidtab_node_inner {
55 union sidtab_entry_inner entries[SIDTAB_INNER_ENTRIES];
56};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Ondrej Mosnacek24ed7fd2018-11-30 16:24:07 +010058struct sidtab_isid_entry {
59 int set;
60 struct context context;
61};
62
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010063struct sidtab_convert_params {
64 int (*func)(struct context *oldc, struct context *newc, void *args);
65 void *args;
66 struct sidtab *target;
67};
68
69#define SIDTAB_RCACHE_SIZE 3
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct sidtab {
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010072 union sidtab_entry_inner roots[SIDTAB_MAX_LEVEL + 1];
73 atomic_t count;
74 struct sidtab_convert_params *convert;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 spinlock_t lock;
Ondrej Mosnacek24ed7fd2018-11-30 16:24:07 +010076
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010077 /* reverse lookup cache */
78 atomic_t rcache[SIDTAB_RCACHE_SIZE];
79
Ondrej Mosnacek24ed7fd2018-11-30 16:24:07 +010080 /* index == SID - 1 (no entry for SECSID_NULL) */
81 struct sidtab_isid_entry isids[SECINITSID_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
84int sidtab_init(struct sidtab *s);
Ondrej Mosnacek24ed7fd2018-11-30 16:24:07 +010085int sidtab_set_initial(struct sidtab *s, u32 sid, struct context *context);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct context *sidtab_search(struct sidtab *s, u32 sid);
Stephen Smalley12b29f32008-05-07 13:03:20 -040087struct context *sidtab_search_force(struct sidtab *s, u32 sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Ondrej Mosnacekee1a84f2018-11-30 16:24:08 +010089int sidtab_convert(struct sidtab *s, struct sidtab_convert_params *params);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Ondrej Mosnacek24ed7fd2018-11-30 16:24:07 +010091int sidtab_context_to_sid(struct sidtab *s, struct context *context, u32 *sid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093void sidtab_destroy(struct sidtab *s);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#endif /* _SS_SIDTAB_H_ */
96
97