Whamcloud - gitweb
LU-8066 libcfs: migrate to debugfs
[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, 2014, 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 #ifdef HAVE_SYSCTL_CTLNAME
37 #define INIT_CTL_NAME   .ctl_name = CTL_UNNUMBERED,
38 #define INIT_STRATEGY   .strategy = &sysctl_intvec,
39 #else
40 #define INIT_CTL_NAME
41 #define INIT_STRATEGY
42 #endif
43
44 #ifndef HAVE_MODULE_PARAM_LOCKING
45 static DEFINE_MUTEX(param_lock);
46 #endif
47
48 #ifndef HAVE_UIDGID_HEADER
49
50 #ifndef _LINUX_UIDGID_H
51 #define _LINUX_UIDGID_H
52
53 typedef uid_t kuid_t;
54 typedef gid_t kgid_t;
55
56 #define INVALID_UID     -1
57 #define INVALID_GID     -1
58
59 #define GLOBAL_ROOT_UID 0
60 #define GLOBAL_ROOT_GID 0
61
62 static inline uid_t __kuid_val(kuid_t uid)
63 {
64         return uid;
65 }
66
67 static inline gid_t __kgid_val(kgid_t gid)
68 {
69         return gid;
70 }
71
72 static inline kuid_t make_kuid(struct user_namespace *from, uid_t uid)
73 {
74         return uid;
75 }
76
77 static inline kgid_t make_kgid(struct user_namespace *from, gid_t gid)
78 {
79         return gid;
80 }
81
82 static inline uid_t from_kuid(struct user_namespace *to, kuid_t uid)
83 {
84         return uid;
85 }
86
87 static inline gid_t from_kgid(struct user_namespace *to, kgid_t gid)
88 {
89         return gid;
90 }
91
92 static inline bool uid_eq(kuid_t left, kuid_t right)
93 {
94         return left == right;
95 }
96
97 static inline bool uid_valid(kuid_t uid)
98 {
99         return uid != (typeof(uid))INVALID_UID;
100 }
101
102 static inline bool gid_valid(kgid_t gid)
103 {
104         return gid != (typeof(gid))INVALID_GID;
105 }
106 #endif /* _LINUX_UIDGID_H */
107
108 #endif
109
110 int cfs_get_environ(const char *key, char *value, int *val_len);
111
112 /*
113  * For RHEL6 struct kernel_parm_ops doesn't exist. Also
114  * the arguments for .set and .get take different
115  * parameters which is handled below
116  */
117 #ifdef HAVE_KERNEL_PARAM_OPS
118 #define cfs_kernel_param_arg_t const struct kernel_param
119 #else
120 #define cfs_kernel_param_arg_t struct kernel_param_ops
121 #define kernel_param_ops kernel_param
122 #endif /* ! HAVE_KERNEL_PARAM_OPS */
123
124 #ifndef HAVE_KERNEL_PARAM_LOCK
125 static inline void kernel_param_unlock(struct module *mod)
126 {
127 #ifndef HAVE_MODULE_PARAM_LOCKING
128         mutex_unlock(&param_lock);
129 #else
130         __kernel_param_unlock();
131 #endif
132 }
133
134 static inline void kernel_param_lock(struct module *mod)
135 {
136 #ifndef HAVE_MODULE_PARAM_LOCKING
137         mutex_lock(&param_lock);
138 #else
139         __kernel_param_lock();
140 #endif
141 }
142 #endif /* ! HAVE_KERNEL_PARAM_LOCK */
143
144 #ifndef HAVE_KSTRTOUL
145 static inline int kstrtoul(const char *s, unsigned int base, unsigned long *res)
146 {
147         char *end = (char *)s;
148
149         *res = simple_strtoul(s, &end, base);
150         if (end - s == 0)
151                 return -EINVAL;
152         return 0;
153 }
154 #endif /* !HAVE_KSTRTOUL */
155
156 #endif