Whamcloud - gitweb
LU-12355 llite: Lustre specific iov_for_each broken (removed)
[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/fs.h>
37 #include <linux/mutex.h>
38 #include <linux/user_namespace.h>
39 #include <linux/uio.h>
40
41 #ifdef HAVE_SYSCTL_CTLNAME
42 #define INIT_CTL_NAME   .ctl_name = CTL_UNNUMBERED,
43 #define INIT_STRATEGY   .strategy = &sysctl_intvec,
44 #else
45 #define INIT_CTL_NAME
46 #define INIT_STRATEGY
47 #endif
48
49 #ifndef HAVE_IOV_ITER_TYPE
50 #ifdef HAVE_IOV_ITER_HAS_TYPE_MEMBER
51 #define iter_is_iovec(iter)             ((iter)->type & ITER_IOVEC)
52 #define iov_iter_is_kvec(iter)          ((iter)->type & ITER_KVEC)
53 #define iov_iter_is_bvec(iter)          ((iter)->type & ITER_BVEC)
54 #define iov_iter_is_pipe(iter)          ((iter)->type & ITER_PIPE)
55 #define iov_iter_is_discard(iter)       ((iter)->type & ITER_DISCARD)
56 #else
57 #define iter_is_iovec(iter)             1
58 #define iov_iter_is_kvec(iter)          0
59 #define iov_iter_is_bvec(iter)          0
60 #define iov_iter_is_pipe(iter)          0
61 #define iov_iter_is_discard(iter)       0
62 #endif
63 #endif /* HAVE_IOV_ITER_TYPE */
64
65 #ifndef HAVE_MODULE_PARAM_LOCKING
66 static DEFINE_MUTEX(param_lock);
67 #endif
68
69 #ifndef HAVE_UIDGID_HEADER
70
71 #ifndef _LINUX_UIDGID_H
72 #define _LINUX_UIDGID_H
73
74 typedef uid_t kuid_t;
75 typedef gid_t kgid_t;
76
77 #define INVALID_UID     -1
78 #define INVALID_GID     -1
79
80 #define GLOBAL_ROOT_UID 0
81 #define GLOBAL_ROOT_GID 0
82
83 static inline uid_t __kuid_val(kuid_t uid)
84 {
85         return uid;
86 }
87
88 static inline gid_t __kgid_val(kgid_t gid)
89 {
90         return gid;
91 }
92
93 static inline kuid_t make_kuid(struct user_namespace *from, uid_t uid)
94 {
95         return uid;
96 }
97
98 static inline kgid_t make_kgid(struct user_namespace *from, gid_t gid)
99 {
100         return gid;
101 }
102
103 static inline uid_t from_kuid(struct user_namespace *to, kuid_t uid)
104 {
105         return uid;
106 }
107
108 static inline gid_t from_kgid(struct user_namespace *to, kgid_t gid)
109 {
110         return gid;
111 }
112
113 static inline bool uid_eq(kuid_t left, kuid_t right)
114 {
115         return left == right;
116 }
117
118 static inline bool uid_valid(kuid_t uid)
119 {
120         return uid != (typeof(uid))INVALID_UID;
121 }
122
123 static inline bool gid_valid(kgid_t gid)
124 {
125         return gid != (typeof(gid))INVALID_GID;
126 }
127 #endif /* _LINUX_UIDGID_H */
128
129 #endif
130
131 int cfs_get_environ(const char *key, char *value, int *val_len);
132
133 int cfs_kernel_write(struct file *filp, const void *buf, size_t count,
134                      loff_t *pos);
135 ssize_t cfs_kernel_read(struct file *file, void *buf, size_t count,
136                         loff_t *pos);
137
138 /*
139  * For RHEL6 struct kernel_parm_ops doesn't exist. Also
140  * the arguments for .set and .get take different
141  * parameters which is handled below
142  */
143 #ifdef HAVE_KERNEL_PARAM_OPS
144 #define cfs_kernel_param_arg_t const struct kernel_param
145 #else
146 #define cfs_kernel_param_arg_t struct kernel_param_ops
147 #define kernel_param_ops kernel_param
148 #endif /* ! HAVE_KERNEL_PARAM_OPS */
149
150 #ifndef HAVE_KERNEL_PARAM_LOCK
151 static inline void kernel_param_unlock(struct module *mod)
152 {
153 #ifndef HAVE_MODULE_PARAM_LOCKING
154         mutex_unlock(&param_lock);
155 #else
156         __kernel_param_unlock();
157 #endif
158 }
159
160 static inline void kernel_param_lock(struct module *mod)
161 {
162 #ifndef HAVE_MODULE_PARAM_LOCKING
163         mutex_lock(&param_lock);
164 #else
165         __kernel_param_lock();
166 #endif
167 }
168 #endif /* ! HAVE_KERNEL_PARAM_LOCK */
169
170 #ifndef HAVE_KSTRTOUL
171 static inline int kstrtoul(const char *s, unsigned int base, unsigned long *res)
172 {
173         char *end = (char *)s;
174
175         *res = simple_strtoul(s, &end, base);
176         if (end - s == 0)
177                 return -EINVAL;
178         return 0;
179 }
180 #endif /* !HAVE_KSTRTOUL */
181
182 #ifndef HAVE_KSTRTOBOOL_FROM_USER
183
184 #define kstrtobool strtobool
185
186 int kstrtobool_from_user(const char __user *s, size_t count, bool *res);
187 #endif
188 #endif