blob: e6ac1d23320b6728cc1ccd5521daea599d2207b4 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * pkey table
4 *
5 * SELinux must keep a mapping of pkeys to labels/SIDs. This
6 * mapping is maintained as part of the normal policy but a fast cache is
7 * needed to reduce the lookup overhead.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00008 */
9
10/*
11 * (c) Mellanox Technologies, 2016
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012 */
13
14#ifndef _SELINUX_IB_PKEY_H
15#define _SELINUX_IB_PKEY_H
16
Olivier Deprez157378f2022-04-04 15:47:50 +020017#ifdef CONFIG_SECURITY_INFINIBAND
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018void sel_ib_pkey_flush(void);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000019int sel_ib_pkey_sid(u64 subnet_prefix, u16 pkey, u32 *sid);
Olivier Deprez157378f2022-04-04 15:47:50 +020020#else
21static inline void sel_ib_pkey_flush(void)
22{
23 return;
24}
25static inline int sel_ib_pkey_sid(u64 subnet_prefix, u16 pkey, u32 *sid)
26{
27 *sid = SECINITSID_UNLABELED;
28 return 0;
29}
30#endif
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000031
32#endif