Whamcloud - gitweb
LU-9859 libcfs: delete libcfs/linux/libcfs.h
[fs/lustre-release.git] / libcfs / include / libcfs / linux / linux-misc.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 #ifndef __LIBCFS_LINUX_MISC_H__
34 #define __LIBCFS_LINUX_MISC_H__
35
36 #include <linux/mutex.h>
37 #include <linux/user_namespace.h>
38
39 #ifdef HAVE_SYSCTL_CTLNAME
40 #define INIT_CTL_NAME   .ctl_name = CTL_UNNUMBERED,
41 #define INIT_STRATEGY   .strategy = &sysctl_intvec,
42 #else
43 #define INIT_CTL_NAME
44 #define INIT_STRATEGY
45 #endif
46
47 #ifndef HAVE_MODULE_PARAM_LOCKING
48 static DEFINE_MUTEX(param_lock);
49 #endif
50
51 #ifndef HAVE_UIDGID_HEADER
52
53 #ifndef _LINUX_UIDGID_H
54 #define _LINUX_UIDGID_H
55
56 typedef uid_t kuid_t;
57 typedef gid_t kgid_t;
58
59 #define INVALID_UID     -1
60 #define INVALID_GID     -1
61
62 #define GLOBAL_ROOT_UID 0
63 #define GLOBAL_ROOT_GID 0
64
65 static inline uid_t __kuid_val(kuid_t uid)
66 {
67         return uid;
68 }
69
70 static inline gid_t __kgid_val(kgid_t gid)
71 {
72         return gid;
73 }
74
75 static inline kuid_t make_kuid(struct user_namespace *from, uid_t uid)
76 {
77         return uid;
78 }
79
80 static inline kgid_t make_kgid(struct user_namespace *from, gid_t gid)
81 {
82         return gid;
83 }
84
85 static inline uid_t from_kuid(struct user_namespace *to, kuid_t uid)
86 {
87         return uid;
88 }
89
90 static inline gid_t from_kgid(struct user_namespace *to, kgid_t gid)
91 {
92         return gid;
93 }
94
95 static inline bool uid_eq(kuid_t left, kuid_t right)
96 {
97         return left == right;
98 }
99
100 static inline bool uid_valid(kuid_t uid)
101 {
102         return uid != (typeof(uid))INVALID_UID;
103 }
104
105 static inline bool gid_valid(kgid_t gid)
106 {
107         return gid != (typeof(gid))INVALID_GID;
108 }
109 #endif /* _LINUX_UIDGID_H */
110
111 #endif
112
113 int cfs_get_environ(const char *key, char *value, int *val_len);
114
115 /*
116  * For RHEL6 struct kernel_parm_ops doesn't exist. Also
117  * the arguments for .set and .get take different
118  * parameters which is handled below
119  */
120 #ifdef HAVE_KERNEL_PARAM_OPS
121 #define cfs_kernel_param_arg_t const struct kernel_param
122 #else
123 #define cfs_kernel_param_arg_t struct kernel_param_ops
124 #define kernel_param_ops kernel_param
125 #endif /* ! HAVE_KERNEL_PARAM_OPS */
126
127 #ifndef HAVE_KERNEL_PARAM_LOCK
128 static inline void kernel_param_unlock(struct module *mod)
129 {
130 #ifndef HAVE_MODULE_PARAM_LOCKING
131         mutex_unlock(&param_lock);
132 #else
133         __kernel_param_unlock();
134 #endif
135 }
136
137 static inline void kernel_param_lock(struct module *mod)
138 {
139 #ifndef HAVE_MODULE_PARAM_LOCKING
140         mutex_lock(&param_lock);
141 #else
142         __kernel_param_lock();
143 #endif
144 }
145 #endif /* ! HAVE_KERNEL_PARAM_LOCK */
146
147 #ifndef HAVE_KSTRTOUL
148 static inline int kstrtoul(const char *s, unsigned int base, unsigned long *res)
149 {
150         char *end = (char *)s;
151
152         *res = simple_strtoul(s, &end, base);
153         if (end - s == 0)
154                 return -EINVAL;
155         return 0;
156 }
157 #endif /* !HAVE_KSTRTOUL */
158
159 #endif