1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_PROJID_H
3 #define _LINUX_PROJID_H
6 * A set of types for the internal kernel types representing project ids.
8 * The types defined in this header allow distinguishing which project ids in
9 * the kernel are values used by userspace and which project id values are
10 * the internal kernel values. With the addition of user namespaces the values
11 * can be different. Using the type system makes it possible for the compiler
12 * to detect when we overlook these differences.
15 #include <linux/types.h>
17 struct user_namespace
;
18 extern struct user_namespace init_user_ns
;
20 typedef __kernel_uid32_t projid_t
;
26 static inline projid_t
__kprojid_val(kprojid_t projid
)
31 #define KPROJIDT_INIT(value) (kprojid_t){ value }
33 #define INVALID_PROJID KPROJIDT_INIT(-1)
34 #define OVERFLOW_PROJID 65534
36 static inline bool projid_eq(kprojid_t left
, kprojid_t right
)
38 return __kprojid_val(left
) == __kprojid_val(right
);
41 static inline bool projid_lt(kprojid_t left
, kprojid_t right
)
43 return __kprojid_val(left
) < __kprojid_val(right
);
46 static inline bool projid_valid(kprojid_t projid
)
48 return !projid_eq(projid
, INVALID_PROJID
);
53 extern kprojid_t
make_kprojid(struct user_namespace
*from
, projid_t projid
);
55 extern projid_t
from_kprojid(struct user_namespace
*to
, kprojid_t projid
);
56 extern projid_t
from_kprojid_munged(struct user_namespace
*to
, kprojid_t projid
);
58 static inline bool kprojid_has_mapping(struct user_namespace
*ns
, kprojid_t projid
)
60 return from_kprojid(ns
, projid
) != (projid_t
)-1;
65 static inline kprojid_t
make_kprojid(struct user_namespace
*from
, projid_t projid
)
67 return KPROJIDT_INIT(projid
);
70 static inline projid_t
from_kprojid(struct user_namespace
*to
, kprojid_t kprojid
)
72 return __kprojid_val(kprojid
);
75 static inline projid_t
from_kprojid_munged(struct user_namespace
*to
, kprojid_t kprojid
)
77 projid_t projid
= from_kprojid(to
, kprojid
);
78 if (projid
== (projid_t
)-1)
79 projid
= OVERFLOW_PROJID
;
83 static inline bool kprojid_has_mapping(struct user_namespace
*ns
, kprojid_t projid
)
88 #endif /* CONFIG_USER_NS */
90 #endif /* _LINUX_PROJID_H */