blob: fa2a46521b7aa4df6f325b9db56ff374ad5e52b3 [file] [log] [blame]
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001/*
2 * (C) 2001 Clemson University and The University of Chicago
3 *
4 * See COPYING in top-level directory.
5 */
6#include "protocol.h"
Mike Marshall575e9462015-12-04 12:56:14 -05007#include "orangefs-kernel.h"
8#include "orangefs-dev-proto.h"
9#include "orangefs-bufmap.h"
Mike Marshallf7be4ee2015-07-17 10:38:14 -040010
Yi Liu8bb8aef2015-11-24 15:12:14 -050011__s32 fsid_of_op(struct orangefs_kernel_op_s *op)
Mike Marshallf7be4ee2015-07-17 10:38:14 -040012{
Yi Liu8bb8aef2015-11-24 15:12:14 -050013 __s32 fsid = ORANGEFS_FS_ID_NULL;
Mike Marshallf7be4ee2015-07-17 10:38:14 -040014
15 if (op) {
16 switch (op->upcall.type) {
Yi Liu8bb8aef2015-11-24 15:12:14 -050017 case ORANGEFS_VFS_OP_FILE_IO:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040018 fsid = op->upcall.req.io.refn.fs_id;
19 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050020 case ORANGEFS_VFS_OP_LOOKUP:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040021 fsid = op->upcall.req.lookup.parent_refn.fs_id;
22 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050023 case ORANGEFS_VFS_OP_CREATE:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040024 fsid = op->upcall.req.create.parent_refn.fs_id;
25 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050026 case ORANGEFS_VFS_OP_GETATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040027 fsid = op->upcall.req.getattr.refn.fs_id;
28 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050029 case ORANGEFS_VFS_OP_REMOVE:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040030 fsid = op->upcall.req.remove.parent_refn.fs_id;
31 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050032 case ORANGEFS_VFS_OP_MKDIR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040033 fsid = op->upcall.req.mkdir.parent_refn.fs_id;
34 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050035 case ORANGEFS_VFS_OP_READDIR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040036 fsid = op->upcall.req.readdir.refn.fs_id;
37 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050038 case ORANGEFS_VFS_OP_SETATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040039 fsid = op->upcall.req.setattr.refn.fs_id;
40 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050041 case ORANGEFS_VFS_OP_SYMLINK:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040042 fsid = op->upcall.req.sym.parent_refn.fs_id;
43 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050044 case ORANGEFS_VFS_OP_RENAME:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040045 fsid = op->upcall.req.rename.old_parent_refn.fs_id;
46 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050047 case ORANGEFS_VFS_OP_STATFS:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040048 fsid = op->upcall.req.statfs.fs_id;
49 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050050 case ORANGEFS_VFS_OP_TRUNCATE:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040051 fsid = op->upcall.req.truncate.refn.fs_id;
52 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050053 case ORANGEFS_VFS_OP_MMAP_RA_FLUSH:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040054 fsid = op->upcall.req.ra_cache_flush.refn.fs_id;
55 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050056 case ORANGEFS_VFS_OP_FS_UMOUNT:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040057 fsid = op->upcall.req.fs_umount.fs_id;
58 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050059 case ORANGEFS_VFS_OP_GETXATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040060 fsid = op->upcall.req.getxattr.refn.fs_id;
61 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050062 case ORANGEFS_VFS_OP_SETXATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040063 fsid = op->upcall.req.setxattr.refn.fs_id;
64 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050065 case ORANGEFS_VFS_OP_LISTXATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040066 fsid = op->upcall.req.listxattr.refn.fs_id;
67 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050068 case ORANGEFS_VFS_OP_REMOVEXATTR:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040069 fsid = op->upcall.req.removexattr.refn.fs_id;
70 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -050071 case ORANGEFS_VFS_OP_FSYNC:
Mike Marshallf7be4ee2015-07-17 10:38:14 -040072 fsid = op->upcall.req.fsync.refn.fs_id;
73 break;
74 default:
75 break;
76 }
77 }
78 return fsid;
79}
80
Yi Liu8bb8aef2015-11-24 15:12:14 -050081static void orangefs_set_inode_flags(struct inode *inode,
82 struct ORANGEFS_sys_attr_s *attrs)
Mike Marshallf7be4ee2015-07-17 10:38:14 -040083{
Yi Liu8bb8aef2015-11-24 15:12:14 -050084 if (attrs->flags & ORANGEFS_IMMUTABLE_FL)
Mike Marshallf7be4ee2015-07-17 10:38:14 -040085 inode->i_flags |= S_IMMUTABLE;
86 else
87 inode->i_flags &= ~S_IMMUTABLE;
88
Yi Liu8bb8aef2015-11-24 15:12:14 -050089 if (attrs->flags & ORANGEFS_APPEND_FL)
Mike Marshallf7be4ee2015-07-17 10:38:14 -040090 inode->i_flags |= S_APPEND;
91 else
92 inode->i_flags &= ~S_APPEND;
93
Yi Liu8bb8aef2015-11-24 15:12:14 -050094 if (attrs->flags & ORANGEFS_NOATIME_FL)
Mike Marshallf7be4ee2015-07-17 10:38:14 -040095 inode->i_flags |= S_NOATIME;
96 else
97 inode->i_flags &= ~S_NOATIME;
98
99}
100
101/* NOTE: symname is ignored unless the inode is a sym link */
102static int copy_attributes_to_inode(struct inode *inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500103 struct ORANGEFS_sys_attr_s *attrs,
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400104 char *symname)
105{
106 int ret = -1;
107 int perm_mode = 0;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500108 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400109 loff_t inode_size = 0;
110 loff_t rounded_up_size = 0;
111
112
113 /*
Mike Marshall54804942015-10-05 13:44:24 -0400114 * arbitrarily set the inode block size; FIXME: we need to
115 * resolve the difference between the reported inode blocksize
116 * and the PAGE_CACHE_SIZE, since our block count will always
117 * be wrong.
118 *
119 * For now, we're setting the block count to be the proper
120 * number assuming the block size is 512 bytes, and the size is
121 * rounded up to the nearest 4K. This is apparently required
122 * to get proper size reports from the 'du' shell utility.
123 *
124 * changing the inode->i_blkbits to something other than
125 * PAGE_CACHE_SHIFT breaks mmap/execution as we depend on that.
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400126 */
127 gossip_debug(GOSSIP_UTILS_DEBUG,
128 "attrs->mask = %x (objtype = %s)\n",
129 attrs->mask,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500130 attrs->objtype == ORANGEFS_TYPE_METAFILE ? "file" :
131 attrs->objtype == ORANGEFS_TYPE_DIRECTORY ? "directory" :
132 attrs->objtype == ORANGEFS_TYPE_SYMLINK ? "symlink" :
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400133 "invalid/unknown");
134
135 switch (attrs->objtype) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500136 case ORANGEFS_TYPE_METAFILE:
137 orangefs_set_inode_flags(inode, attrs);
138 if (attrs->mask & ORANGEFS_ATTR_SYS_SIZE) {
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400139 inode_size = (loff_t) attrs->size;
140 rounded_up_size =
141 (inode_size + (4096 - (inode_size % 4096)));
142
Yi Liu8bb8aef2015-11-24 15:12:14 -0500143 orangefs_lock_inode(inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400144 inode->i_bytes = inode_size;
145 inode->i_blocks =
146 (unsigned long)(rounded_up_size / 512);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500147 orangefs_unlock_inode(inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400148
149 /*
150 * NOTE: make sure all the places we're called
151 * from have the inode->i_sem lock. We're fine
152 * in 99% of the cases since we're mostly
153 * called from a lookup.
154 */
155 inode->i_size = inode_size;
156 }
157 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500158 case ORANGEFS_TYPE_SYMLINK:
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400159 if (symname != NULL) {
160 inode->i_size = (loff_t) strlen(symname);
161 break;
162 }
163 /*FALLTHRU*/
164 default:
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400165 inode->i_size = PAGE_CACHE_SIZE;
Mike Marshallf0566532015-08-05 13:46:28 -0400166
Yi Liu8bb8aef2015-11-24 15:12:14 -0500167 orangefs_lock_inode(inode);
Mike Marshallf0566532015-08-05 13:46:28 -0400168 inode_set_bytes(inode, inode->i_size);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500169 orangefs_unlock_inode(inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400170 break;
171 }
172
173 inode->i_uid = make_kuid(&init_user_ns, attrs->owner);
174 inode->i_gid = make_kgid(&init_user_ns, attrs->group);
175 inode->i_atime.tv_sec = (time_t) attrs->atime;
176 inode->i_mtime.tv_sec = (time_t) attrs->mtime;
177 inode->i_ctime.tv_sec = (time_t) attrs->ctime;
178 inode->i_atime.tv_nsec = 0;
179 inode->i_mtime.tv_nsec = 0;
180 inode->i_ctime.tv_nsec = 0;
181
Yi Liu8bb8aef2015-11-24 15:12:14 -0500182 if (attrs->perms & ORANGEFS_O_EXECUTE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400183 perm_mode |= S_IXOTH;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500184 if (attrs->perms & ORANGEFS_O_WRITE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400185 perm_mode |= S_IWOTH;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500186 if (attrs->perms & ORANGEFS_O_READ)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400187 perm_mode |= S_IROTH;
188
Yi Liu8bb8aef2015-11-24 15:12:14 -0500189 if (attrs->perms & ORANGEFS_G_EXECUTE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400190 perm_mode |= S_IXGRP;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500191 if (attrs->perms & ORANGEFS_G_WRITE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400192 perm_mode |= S_IWGRP;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500193 if (attrs->perms & ORANGEFS_G_READ)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400194 perm_mode |= S_IRGRP;
195
Yi Liu8bb8aef2015-11-24 15:12:14 -0500196 if (attrs->perms & ORANGEFS_U_EXECUTE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400197 perm_mode |= S_IXUSR;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500198 if (attrs->perms & ORANGEFS_U_WRITE)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400199 perm_mode |= S_IWUSR;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500200 if (attrs->perms & ORANGEFS_U_READ)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400201 perm_mode |= S_IRUSR;
202
Yi Liu8bb8aef2015-11-24 15:12:14 -0500203 if (attrs->perms & ORANGEFS_G_SGID)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400204 perm_mode |= S_ISGID;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500205 if (attrs->perms & ORANGEFS_U_SUID)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400206 perm_mode |= S_ISUID;
207
208 inode->i_mode = perm_mode;
209
210 if (is_root_handle(inode)) {
211 /* special case: mark the root inode as sticky */
212 inode->i_mode |= S_ISVTX;
213 gossip_debug(GOSSIP_UTILS_DEBUG,
214 "Marking inode %pU as sticky\n",
215 get_khandle_from_ino(inode));
216 }
217
218 switch (attrs->objtype) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500219 case ORANGEFS_TYPE_METAFILE:
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400220 inode->i_mode |= S_IFREG;
221 ret = 0;
222 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500223 case ORANGEFS_TYPE_DIRECTORY:
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400224 inode->i_mode |= S_IFDIR;
225 /* NOTE: we have no good way to keep nlink consistent
226 * for directories across clients; keep constant at 1.
227 * Why 1? If we go with 2, then find(1) gets confused
228 * and won't work properly withouth the -noleaf option
229 */
230 set_nlink(inode, 1);
231 ret = 0;
232 break;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500233 case ORANGEFS_TYPE_SYMLINK:
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400234 inode->i_mode |= S_IFLNK;
235
236 /* copy link target to inode private data */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500237 if (orangefs_inode && symname) {
238 strncpy(orangefs_inode->link_target,
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400239 symname,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500240 ORANGEFS_NAME_MAX);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400241 gossip_debug(GOSSIP_UTILS_DEBUG,
242 "Copied attr link target %s\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500243 orangefs_inode->link_target);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400244 }
245 gossip_debug(GOSSIP_UTILS_DEBUG,
246 "symlink mode %o\n",
247 inode->i_mode);
248 ret = 0;
249 break;
250 default:
Yi Liu8bb8aef2015-11-24 15:12:14 -0500251 gossip_err("orangefs: copy_attributes_to_inode: got invalid attribute type %x\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400252 attrs->objtype);
253 }
254
255 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500256 "orangefs: copy_attributes_to_inode: setting i_mode to %o, i_size to %lu\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400257 inode->i_mode,
258 (unsigned long)i_size_read(inode));
259
260 return ret;
261}
262
263/*
264 * NOTE: in kernel land, we never use the sys_attr->link_target for
265 * anything, so don't bother copying it into the sys_attr object here.
266 */
267static inline int copy_attributes_from_inode(struct inode *inode,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500268 struct ORANGEFS_sys_attr_s *attrs,
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400269 struct iattr *iattr)
270{
271 umode_t tmp_mode;
272
273 if (!iattr || !inode || !attrs) {
274 gossip_err("NULL iattr (%p), inode (%p), attrs (%p) "
275 "in copy_attributes_from_inode!\n",
276 iattr,
277 inode,
278 attrs);
279 return -EINVAL;
280 }
281 /*
282 * We need to be careful to only copy the attributes out of the
283 * iattr object that we know are valid.
284 */
285 attrs->mask = 0;
286 if (iattr->ia_valid & ATTR_UID) {
287 attrs->owner = from_kuid(current_user_ns(), iattr->ia_uid);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500288 attrs->mask |= ORANGEFS_ATTR_SYS_UID;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400289 gossip_debug(GOSSIP_UTILS_DEBUG, "(UID) %d\n", attrs->owner);
290 }
291 if (iattr->ia_valid & ATTR_GID) {
292 attrs->group = from_kgid(current_user_ns(), iattr->ia_gid);
Yi Liu8bb8aef2015-11-24 15:12:14 -0500293 attrs->mask |= ORANGEFS_ATTR_SYS_GID;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400294 gossip_debug(GOSSIP_UTILS_DEBUG, "(GID) %d\n", attrs->group);
295 }
296
297 if (iattr->ia_valid & ATTR_ATIME) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500298 attrs->mask |= ORANGEFS_ATTR_SYS_ATIME;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400299 if (iattr->ia_valid & ATTR_ATIME_SET) {
300 attrs->atime =
Yi Liu8bb8aef2015-11-24 15:12:14 -0500301 orangefs_convert_time_field(&iattr->ia_atime);
302 attrs->mask |= ORANGEFS_ATTR_SYS_ATIME_SET;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400303 }
304 }
305 if (iattr->ia_valid & ATTR_MTIME) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500306 attrs->mask |= ORANGEFS_ATTR_SYS_MTIME;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400307 if (iattr->ia_valid & ATTR_MTIME_SET) {
308 attrs->mtime =
Yi Liu8bb8aef2015-11-24 15:12:14 -0500309 orangefs_convert_time_field(&iattr->ia_mtime);
310 attrs->mask |= ORANGEFS_ATTR_SYS_MTIME_SET;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400311 }
312 }
313 if (iattr->ia_valid & ATTR_CTIME)
Yi Liu8bb8aef2015-11-24 15:12:14 -0500314 attrs->mask |= ORANGEFS_ATTR_SYS_CTIME;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400315
316 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500317 * ORANGEFS cannot set size with a setattr operation. Probably not likely
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400318 * to be requested through the VFS, but just in case, don't worry about
319 * ATTR_SIZE
320 */
321
322 if (iattr->ia_valid & ATTR_MODE) {
323 tmp_mode = iattr->ia_mode;
324 if (tmp_mode & (S_ISVTX)) {
325 if (is_root_handle(inode)) {
326 /*
327 * allow sticky bit to be set on root (since
328 * it shows up that way by default anyhow),
329 * but don't show it to the server
330 */
331 tmp_mode -= S_ISVTX;
332 } else {
333 gossip_debug(GOSSIP_UTILS_DEBUG,
334 "User attempted to set sticky bit on non-root directory; returning EINVAL.\n");
335 return -EINVAL;
336 }
337 }
338
339 if (tmp_mode & (S_ISUID)) {
340 gossip_debug(GOSSIP_UTILS_DEBUG,
341 "Attempting to set setuid bit (not supported); returning EINVAL.\n");
342 return -EINVAL;
343 }
344
Yi Liu8bb8aef2015-11-24 15:12:14 -0500345 attrs->perms = ORANGEFS_util_translate_mode(tmp_mode);
346 attrs->mask |= ORANGEFS_ATTR_SYS_PERM;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400347 }
348
349 return 0;
350}
351
352/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500353 * issues a orangefs getattr request and fills in the appropriate inode
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400354 * attributes if successful. returns 0 on success; -errno otherwise
355 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500356int orangefs_inode_getattr(struct inode *inode, __u32 getattr_mask)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400357{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500358 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
359 struct orangefs_kernel_op_s *new_op;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400360 int ret = -EINVAL;
361
362 gossip_debug(GOSSIP_UTILS_DEBUG,
363 "%s: called on inode %pU\n",
364 __func__,
365 get_khandle_from_ino(inode));
366
Yi Liu8bb8aef2015-11-24 15:12:14 -0500367 new_op = op_alloc(ORANGEFS_VFS_OP_GETATTR);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400368 if (!new_op)
369 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500370 new_op->upcall.req.getattr.refn = orangefs_inode->refn;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400371 new_op->upcall.req.getattr.mask = getattr_mask;
372
373 ret = service_operation(new_op, __func__,
374 get_interruptible_flag(inode));
375 if (ret != 0)
376 goto out;
377
378 if (copy_attributes_to_inode(inode,
379 &new_op->downcall.resp.getattr.attributes,
380 new_op->downcall.resp.getattr.link_target)) {
381 gossip_err("%s: failed to copy attributes\n", __func__);
382 ret = -ENOENT;
383 goto out;
384 }
385
386 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500387 * Store blksize in orangefs specific part of inode structure; we are
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400388 * only going to use this to report to stat to make sure it doesn't
389 * perturb any inode related code paths.
390 */
391 if (new_op->downcall.resp.getattr.attributes.objtype ==
Yi Liu8bb8aef2015-11-24 15:12:14 -0500392 ORANGEFS_TYPE_METAFILE) {
393 orangefs_inode->blksize =
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400394 new_op->downcall.resp.getattr.attributes.blksize;
395 } else {
396 /* mimic behavior of generic_fillattr() for other types. */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500397 orangefs_inode->blksize = (1 << inode->i_blkbits);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400398
399 }
400
401out:
402 gossip_debug(GOSSIP_UTILS_DEBUG,
403 "Getattr on handle %pU, "
404 "fsid %d\n (inode ct = %d) returned %d\n",
Yi Liu8bb8aef2015-11-24 15:12:14 -0500405 &orangefs_inode->refn.khandle,
406 orangefs_inode->refn.fs_id,
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400407 (int)atomic_read(&inode->i_count),
408 ret);
409
410 op_release(new_op);
411 return ret;
412}
413
414/*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500415 * issues a orangefs setattr request to make sure the new attribute values
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400416 * take effect if successful. returns 0 on success; -errno otherwise
417 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500418int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400419{
Yi Liu8bb8aef2015-11-24 15:12:14 -0500420 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
421 struct orangefs_kernel_op_s *new_op;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400422 int ret;
423
Yi Liu8bb8aef2015-11-24 15:12:14 -0500424 new_op = op_alloc(ORANGEFS_VFS_OP_SETATTR);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400425 if (!new_op)
426 return -ENOMEM;
427
Yi Liu8bb8aef2015-11-24 15:12:14 -0500428 new_op->upcall.req.setattr.refn = orangefs_inode->refn;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400429 ret = copy_attributes_from_inode(inode,
430 &new_op->upcall.req.setattr.attributes,
431 iattr);
432 if (ret < 0) {
433 op_release(new_op);
434 return ret;
435 }
436
437 ret = service_operation(new_op, __func__,
438 get_interruptible_flag(inode));
439
440 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500441 "orangefs_inode_setattr: returning %d\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400442 ret);
443
444 /* when request is serviced properly, free req op struct */
445 op_release(new_op);
446
447 /*
448 * successful setattr should clear the atime, mtime and
449 * ctime flags.
450 */
451 if (ret == 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500452 ClearAtimeFlag(orangefs_inode);
453 ClearMtimeFlag(orangefs_inode);
454 ClearCtimeFlag(orangefs_inode);
455 ClearModeFlag(orangefs_inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400456 }
457
458 return ret;
459}
460
Yi Liu8bb8aef2015-11-24 15:12:14 -0500461int orangefs_flush_inode(struct inode *inode)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400462{
463 /*
464 * If it is a dirty inode, this function gets called.
465 * Gather all the information that needs to be setattr'ed
466 * Right now, this will only be used for mode, atime, mtime
467 * and/or ctime.
468 */
469 struct iattr wbattr;
470 int ret;
471 int mtime_flag;
472 int ctime_flag;
473 int atime_flag;
474 int mode_flag;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500475 struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400476
477 memset(&wbattr, 0, sizeof(wbattr));
478
479 /*
480 * check inode flags up front, and clear them if they are set. This
481 * will prevent multiple processes from all trying to flush the same
482 * inode if they call close() simultaneously
483 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500484 mtime_flag = MtimeFlag(orangefs_inode);
485 ClearMtimeFlag(orangefs_inode);
486 ctime_flag = CtimeFlag(orangefs_inode);
487 ClearCtimeFlag(orangefs_inode);
488 atime_flag = AtimeFlag(orangefs_inode);
489 ClearAtimeFlag(orangefs_inode);
490 mode_flag = ModeFlag(orangefs_inode);
491 ClearModeFlag(orangefs_inode);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400492
493 /* -- Lazy atime,mtime and ctime update --
494 * Note: all times are dictated by server in the new scheme
495 * and not by the clients
496 *
497 * Also mode updates are being handled now..
498 */
499
500 if (mtime_flag)
501 wbattr.ia_valid |= ATTR_MTIME;
502 if (ctime_flag)
503 wbattr.ia_valid |= ATTR_CTIME;
504 if (atime_flag)
505 wbattr.ia_valid |= ATTR_ATIME;
506
507 if (mode_flag) {
508 wbattr.ia_mode = inode->i_mode;
509 wbattr.ia_valid |= ATTR_MODE;
510 }
511
512 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500513 "*********** orangefs_flush_inode: %pU "
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400514 "(ia_valid %d)\n",
515 get_khandle_from_ino(inode),
516 wbattr.ia_valid);
517 if (wbattr.ia_valid == 0) {
518 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500519 "orangefs_flush_inode skipping setattr()\n");
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400520 return 0;
521 }
522
523 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500524 "orangefs_flush_inode (%pU) writing mode %o\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400525 get_khandle_from_ino(inode),
526 inode->i_mode);
527
Yi Liu8bb8aef2015-11-24 15:12:14 -0500528 ret = orangefs_inode_setattr(inode, &wbattr);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400529
530 return ret;
531}
532
Yi Liu8bb8aef2015-11-24 15:12:14 -0500533int orangefs_unmount_sb(struct super_block *sb)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400534{
535 int ret = -EINVAL;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500536 struct orangefs_kernel_op_s *new_op = NULL;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400537
538 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500539 "orangefs_unmount_sb called on sb %p\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400540 sb);
541
Yi Liu8bb8aef2015-11-24 15:12:14 -0500542 new_op = op_alloc(ORANGEFS_VFS_OP_FS_UMOUNT);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400543 if (!new_op)
544 return -ENOMEM;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500545 new_op->upcall.req.fs_umount.id = ORANGEFS_SB(sb)->id;
546 new_op->upcall.req.fs_umount.fs_id = ORANGEFS_SB(sb)->fs_id;
547 strncpy(new_op->upcall.req.fs_umount.orangefs_config_server,
548 ORANGEFS_SB(sb)->devname,
549 ORANGEFS_MAX_SERVER_ADDR_LEN);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400550
551 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500552 "Attempting ORANGEFS Unmount via host %s\n",
553 new_op->upcall.req.fs_umount.orangefs_config_server);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400554
Yi Liu8bb8aef2015-11-24 15:12:14 -0500555 ret = service_operation(new_op, "orangefs_fs_umount", 0);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400556
557 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500558 "orangefs_unmount: got return value of %d\n", ret);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400559 if (ret)
560 sb = ERR_PTR(ret);
561 else
Yi Liu8bb8aef2015-11-24 15:12:14 -0500562 ORANGEFS_SB(sb)->mount_pending = 1;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400563
564 op_release(new_op);
565 return ret;
566}
567
568/*
569 * NOTE: on successful cancellation, be sure to return -EINTR, as
570 * that's the return value the caller expects
571 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500572int orangefs_cancel_op_in_progress(__u64 tag)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400573{
574 int ret = -EINVAL;
Yi Liu8bb8aef2015-11-24 15:12:14 -0500575 struct orangefs_kernel_op_s *new_op = NULL;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400576
577 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500578 "orangefs_cancel_op_in_progress called on tag %llu\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400579 llu(tag));
580
Yi Liu8bb8aef2015-11-24 15:12:14 -0500581 new_op = op_alloc(ORANGEFS_VFS_OP_CANCEL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400582 if (!new_op)
583 return -ENOMEM;
584 new_op->upcall.req.cancel.op_tag = tag;
585
586 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500587 "Attempting ORANGEFS operation cancellation of tag %llu\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400588 llu(new_op->upcall.req.cancel.op_tag));
589
Yi Liu8bb8aef2015-11-24 15:12:14 -0500590 ret = service_operation(new_op, "orangefs_cancel", ORANGEFS_OP_CANCELLATION);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400591
592 gossip_debug(GOSSIP_UTILS_DEBUG,
Yi Liu8bb8aef2015-11-24 15:12:14 -0500593 "orangefs_cancel_op_in_progress: got return value of %d\n",
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400594 ret);
595
596 op_release(new_op);
597 return ret;
598}
599
Yi Liu8bb8aef2015-11-24 15:12:14 -0500600void orangefs_op_initialize(struct orangefs_kernel_op_s *op)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400601{
602 if (op) {
603 spin_lock(&op->lock);
604 op->io_completed = 0;
605
Yi Liu8bb8aef2015-11-24 15:12:14 -0500606 op->upcall.type = ORANGEFS_VFS_OP_INVALID;
607 op->downcall.type = ORANGEFS_VFS_OP_INVALID;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400608 op->downcall.status = -1;
609
610 op->op_state = OP_VFS_STATE_UNKNOWN;
611 op->tag = 0;
612 spin_unlock(&op->lock);
613 }
614}
615
Yi Liu8bb8aef2015-11-24 15:12:14 -0500616void orangefs_make_bad_inode(struct inode *inode)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400617{
618 if (is_root_handle(inode)) {
619 /*
620 * if this occurs, the pvfs2-client-core was killed but we
621 * can't afford to lose the inode operations and such
622 * associated with the root handle in any case.
623 */
624 gossip_debug(GOSSIP_UTILS_DEBUG,
625 "*** NOT making bad root inode %pU\n",
626 get_khandle_from_ino(inode));
627 } else {
628 gossip_debug(GOSSIP_UTILS_DEBUG,
629 "*** making bad inode %pU\n",
630 get_khandle_from_ino(inode));
631 make_bad_inode(inode);
632 }
633}
634
Mike Marshall8c3905a2015-09-29 12:07:46 -0400635/* Block all blockable signals... */
636void block_signals(sigset_t *orig_sigset)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400637{
Mike Marshall8c3905a2015-09-29 12:07:46 -0400638 sigset_t mask;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400639
Mike Marshall8c3905a2015-09-29 12:07:46 -0400640 /*
641 * Initialize all entries in the signal set to the
642 * inverse of the given mask.
643 */
644 siginitsetinv(&mask, sigmask(SIGKILL));
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400645
Mike Marshall8c3905a2015-09-29 12:07:46 -0400646 /* Block 'em Danno... */
647 sigprocmask(SIG_BLOCK, &mask, orig_sigset);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400648}
649
Mike Marshall8c3905a2015-09-29 12:07:46 -0400650/* set the signal mask to the given template... */
651void set_signals(sigset_t *sigset)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400652{
Mike Marshall8c3905a2015-09-29 12:07:46 -0400653 sigprocmask(SIG_SETMASK, sigset, NULL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400654}
655
Mike Marshall54804942015-10-05 13:44:24 -0400656/*
657 * The following is a very dirty hack that is now a permanent part of the
Yi Liu8bb8aef2015-11-24 15:12:14 -0500658 * ORANGEFS protocol. See protocol.h for more error definitions.
Mike Marshall54804942015-10-05 13:44:24 -0400659 */
Martin Brandenburg894ac432015-10-02 12:11:19 -0400660
Yi Liu8bb8aef2015-11-24 15:12:14 -0500661/* The order matches include/orangefs-types.h in the OrangeFS source. */
Martin Brandenburg894ac432015-10-02 12:11:19 -0400662static int PINT_errno_mapping[] = {
Mike Marshall54804942015-10-05 13:44:24 -0400663 0, EPERM, ENOENT, EINTR, EIO, ENXIO, EBADF, EAGAIN, ENOMEM,
664 EFAULT, EBUSY, EEXIST, ENODEV, ENOTDIR, EISDIR, EINVAL, EMFILE,
665 EFBIG, ENOSPC, EROFS, EMLINK, EPIPE, EDEADLK, ENAMETOOLONG,
666 ENOLCK, ENOSYS, ENOTEMPTY, ELOOP, EWOULDBLOCK, ENOMSG, EUNATCH,
667 EBADR, EDEADLOCK, ENODATA, ETIME, ENONET, EREMOTE, ECOMM,
668 EPROTO, EBADMSG, EOVERFLOW, ERESTART, EMSGSIZE, EPROTOTYPE,
669 ENOPROTOOPT, EPROTONOSUPPORT, EOPNOTSUPP, EADDRINUSE,
670 EADDRNOTAVAIL, ENETDOWN, ENETUNREACH, ENETRESET, ENOBUFS,
671 ETIMEDOUT, ECONNREFUSED, EHOSTDOWN, EHOSTUNREACH, EALREADY,
672 EACCES, ECONNRESET, ERANGE
Martin Brandenburg894ac432015-10-02 12:11:19 -0400673};
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400674
Yi Liu8bb8aef2015-11-24 15:12:14 -0500675int orangefs_normalize_to_errno(__s32 error_code)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400676{
Mike Marshall54804942015-10-05 13:44:24 -0400677 __u32 i;
678
Martin Brandenburg894ac432015-10-02 12:11:19 -0400679 /* Success */
680 if (error_code == 0) {
681 return 0;
Mike Marshall54804942015-10-05 13:44:24 -0400682 /*
683 * This shouldn't ever happen. If it does it should be fixed on the
684 * server.
685 */
Martin Brandenburg894ac432015-10-02 12:11:19 -0400686 } else if (error_code > 0) {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500687 gossip_err("orangefs: error status receieved.\n");
688 gossip_err("orangefs: assuming error code is inverted.\n");
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400689 error_code = -error_code;
690 }
691
Mike Marshall54804942015-10-05 13:44:24 -0400692 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500693 * XXX: This is very bad since error codes from ORANGEFS may not be
Mike Marshall54804942015-10-05 13:44:24 -0400694 * suitable for return into userspace.
695 */
Martin Brandenburg894ac432015-10-02 12:11:19 -0400696
Mike Marshall54804942015-10-05 13:44:24 -0400697 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500698 * Convert ORANGEFS error values into errno values suitable for return
Mike Marshall54804942015-10-05 13:44:24 -0400699 * from the kernel.
700 */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500701 if ((-error_code) & ORANGEFS_NON_ERRNO_ERROR_BIT) {
Martin Brandenburg894ac432015-10-02 12:11:19 -0400702 if (((-error_code) &
Yi Liu8bb8aef2015-11-24 15:12:14 -0500703 (ORANGEFS_ERROR_NUMBER_BITS|ORANGEFS_NON_ERRNO_ERROR_BIT|
704 ORANGEFS_ERROR_BIT)) == ORANGEFS_ECANCEL) {
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400705 /*
706 * cancellation error codes generally correspond to
707 * a timeout from the client's perspective
708 */
709 error_code = -ETIMEDOUT;
710 } else {
711 /* assume a default error code */
Yi Liu8bb8aef2015-11-24 15:12:14 -0500712 gossip_err("orangefs: warning: got error code without errno equivalent: %d.\n", error_code);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400713 error_code = -EINVAL;
714 }
Martin Brandenburg894ac432015-10-02 12:11:19 -0400715
Yi Liu8bb8aef2015-11-24 15:12:14 -0500716 /* Convert ORANGEFS encoded errno values into regular errno values. */
717 } else if ((-error_code) & ORANGEFS_ERROR_BIT) {
718 i = (-error_code) & ~(ORANGEFS_ERROR_BIT|ORANGEFS_ERROR_CLASS_BITS);
Mike Marshall54804942015-10-05 13:44:24 -0400719 if (i < sizeof(PINT_errno_mapping)/sizeof(*PINT_errno_mapping))
Martin Brandenburg894ac432015-10-02 12:11:19 -0400720 error_code = -PINT_errno_mapping[i];
721 else
722 error_code = -EINVAL;
723
Mike Marshall54804942015-10-05 13:44:24 -0400724 /*
Yi Liu8bb8aef2015-11-24 15:12:14 -0500725 * Only ORANGEFS protocol error codes should ever come here. Otherwise
Mike Marshall54804942015-10-05 13:44:24 -0400726 * there is a bug somewhere.
727 */
Martin Brandenburg894ac432015-10-02 12:11:19 -0400728 } else {
Yi Liu8bb8aef2015-11-24 15:12:14 -0500729 gossip_err("orangefs: orangefs_normalize_to_errno: got error code which is not from ORANGEFS.\n");
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400730 }
731 return error_code;
732}
733
734#define NUM_MODES 11
Yi Liu8bb8aef2015-11-24 15:12:14 -0500735__s32 ORANGEFS_util_translate_mode(int mode)
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400736{
737 int ret = 0;
738 int i = 0;
739 static int modes[NUM_MODES] = {
740 S_IXOTH, S_IWOTH, S_IROTH,
741 S_IXGRP, S_IWGRP, S_IRGRP,
742 S_IXUSR, S_IWUSR, S_IRUSR,
743 S_ISGID, S_ISUID
744 };
Yi Liu8bb8aef2015-11-24 15:12:14 -0500745 static int orangefs_modes[NUM_MODES] = {
746 ORANGEFS_O_EXECUTE, ORANGEFS_O_WRITE, ORANGEFS_O_READ,
747 ORANGEFS_G_EXECUTE, ORANGEFS_G_WRITE, ORANGEFS_G_READ,
748 ORANGEFS_U_EXECUTE, ORANGEFS_U_WRITE, ORANGEFS_U_READ,
749 ORANGEFS_G_SGID, ORANGEFS_U_SUID
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400750 };
751
752 for (i = 0; i < NUM_MODES; i++)
753 if (mode & modes[i])
Yi Liu8bb8aef2015-11-24 15:12:14 -0500754 ret |= orangefs_modes[i];
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400755
756 return ret;
757}
758#undef NUM_MODES
759
760/*
761 * After obtaining a string representation of the client's debug
762 * keywords and their associated masks, this function is called to build an
763 * array of these values.
764 */
765int orangefs_prepare_cdm_array(char *debug_array_string)
766{
767 int i;
768 int rc = -EINVAL;
769 char *cds_head = NULL;
770 char *cds_delimiter = NULL;
771 int keyword_len = 0;
772
773 gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);
774
775 /*
776 * figure out how many elements the cdm_array needs.
777 */
778 for (i = 0; i < strlen(debug_array_string); i++)
779 if (debug_array_string[i] == '\n')
780 cdm_element_count++;
781
782 if (!cdm_element_count) {
783 pr_info("No elements in client debug array string!\n");
784 goto out;
785 }
786
787 cdm_array =
788 kzalloc(cdm_element_count * sizeof(struct client_debug_mask),
789 GFP_KERNEL);
790 if (!cdm_array) {
791 pr_info("malloc failed for cdm_array!\n");
792 rc = -ENOMEM;
793 goto out;
794 }
795
796 cds_head = debug_array_string;
797
798 for (i = 0; i < cdm_element_count; i++) {
799 cds_delimiter = strchr(cds_head, '\n');
800 *cds_delimiter = '\0';
801
802 keyword_len = strcspn(cds_head, " ");
803
804 cdm_array[i].keyword = kzalloc(keyword_len + 1, GFP_KERNEL);
805 if (!cdm_array[i].keyword) {
806 rc = -ENOMEM;
807 goto out;
808 }
809
810 sscanf(cds_head,
811 "%s %llx %llx",
812 cdm_array[i].keyword,
813 (unsigned long long *)&(cdm_array[i].mask1),
814 (unsigned long long *)&(cdm_array[i].mask2));
815
Yi Liu8bb8aef2015-11-24 15:12:14 -0500816 if (!strcmp(cdm_array[i].keyword, ORANGEFS_VERBOSE))
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400817 client_verbose_index = i;
818
Yi Liu8bb8aef2015-11-24 15:12:14 -0500819 if (!strcmp(cdm_array[i].keyword, ORANGEFS_ALL))
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400820 client_all_index = i;
821
822 cds_head = cds_delimiter + 1;
823 }
824
825 rc = cdm_element_count;
826
827 gossip_debug(GOSSIP_UTILS_DEBUG, "%s: rc:%d:\n", __func__, rc);
828
829out:
830
831 return rc;
832
833}
834
835/*
836 * /sys/kernel/debug/orangefs/debug-help can be catted to
837 * see all the available kernel and client debug keywords.
838 *
839 * When the kernel boots, we have no idea what keywords the
840 * client supports, nor their associated masks.
841 *
842 * We pass through this function once at boot and stamp a
843 * boilerplate "we don't know" message for the client in the
844 * debug-help file. We pass through here again when the client
845 * starts and then we can fill out the debug-help file fully.
846 *
847 * The client might be restarted any number of times between
848 * reboots, we only build the debug-help file the first time.
849 */
850int orangefs_prepare_debugfs_help_string(int at_boot)
851{
852 int rc = -EINVAL;
853 int i;
854 int byte_count = 0;
855 char *client_title = "Client Debug Keywords:\n";
856 char *kernel_title = "Kernel Debug Keywords:\n";
857
858 gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);
859
860 if (at_boot) {
861 byte_count += strlen(HELP_STRING_UNINITIALIZED);
862 client_title = HELP_STRING_UNINITIALIZED;
863 } else {
864 /*
865 * fill the client keyword/mask array and remember
866 * how many elements there were.
867 */
868 cdm_element_count =
869 orangefs_prepare_cdm_array(client_debug_array_string);
870 if (cdm_element_count <= 0)
871 goto out;
872
873 /* Count the bytes destined for debug_help_string. */
874 byte_count += strlen(client_title);
875
876 for (i = 0; i < cdm_element_count; i++) {
877 byte_count += strlen(cdm_array[i].keyword + 2);
878 if (byte_count >= DEBUG_HELP_STRING_SIZE) {
879 pr_info("%s: overflow 1!\n", __func__);
880 goto out;
881 }
882 }
883
884 gossip_debug(GOSSIP_UTILS_DEBUG,
885 "%s: cdm_element_count:%d:\n",
886 __func__,
887 cdm_element_count);
888 }
889
890 byte_count += strlen(kernel_title);
891 for (i = 0; i < num_kmod_keyword_mask_map; i++) {
892 byte_count +=
893 strlen(s_kmod_keyword_mask_map[i].keyword + 2);
894 if (byte_count >= DEBUG_HELP_STRING_SIZE) {
895 pr_info("%s: overflow 2!\n", __func__);
896 goto out;
897 }
898 }
899
900 /* build debug_help_string. */
901 debug_help_string = kzalloc(DEBUG_HELP_STRING_SIZE, GFP_KERNEL);
902 if (!debug_help_string) {
903 rc = -ENOMEM;
904 goto out;
905 }
906
907 strcat(debug_help_string, client_title);
908
909 if (!at_boot) {
910 for (i = 0; i < cdm_element_count; i++) {
911 strcat(debug_help_string, "\t");
912 strcat(debug_help_string, cdm_array[i].keyword);
913 strcat(debug_help_string, "\n");
914 }
915 }
916
917 strcat(debug_help_string, "\n");
918 strcat(debug_help_string, kernel_title);
919
920 for (i = 0; i < num_kmod_keyword_mask_map; i++) {
921 strcat(debug_help_string, "\t");
922 strcat(debug_help_string, s_kmod_keyword_mask_map[i].keyword);
923 strcat(debug_help_string, "\n");
924 }
925
926 rc = 0;
927
928out:
929
930 return rc;
931
932}
933
934/*
935 * kernel = type 0
936 * client = type 1
937 */
938void debug_mask_to_string(void *mask, int type)
939{
940 int i;
941 int len = 0;
942 char *debug_string;
943 int element_count = 0;
944
945 gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);
946
947 if (type) {
948 debug_string = client_debug_string;
949 element_count = cdm_element_count;
950 } else {
951 debug_string = kernel_debug_string;
952 element_count = num_kmod_keyword_mask_map;
953 }
954
Yi Liu8bb8aef2015-11-24 15:12:14 -0500955 memset(debug_string, 0, ORANGEFS_MAX_DEBUG_STRING_LEN);
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400956
957 /*
958 * Some keywords, like "all" or "verbose", are amalgams of
959 * numerous other keywords. Make a special check for those
960 * before grinding through the whole mask only to find out
961 * later...
962 */
963 if (check_amalgam_keyword(mask, type))
964 goto out;
965
966 /* Build the debug string. */
967 for (i = 0; i < element_count; i++)
968 if (type)
969 do_c_string(mask, i);
970 else
971 do_k_string(mask, i);
972
973 len = strlen(debug_string);
974
975 if ((len) && (type))
976 client_debug_string[len - 1] = '\0';
977 else if (len)
978 kernel_debug_string[len - 1] = '\0';
979 else if (type)
980 strcpy(client_debug_string, "none");
981 else
982 strcpy(kernel_debug_string, "none");
983
984out:
985gossip_debug(GOSSIP_UTILS_DEBUG, "%s: string:%s:\n", __func__, debug_string);
986
987 return;
988
989}
990
991void do_k_string(void *k_mask, int index)
992{
993 __u64 *mask = (__u64 *) k_mask;
994
995 if (keyword_is_amalgam((char *) s_kmod_keyword_mask_map[index].keyword))
Mike Marshall54804942015-10-05 13:44:24 -0400996 goto out;
Mike Marshallf7be4ee2015-07-17 10:38:14 -0400997
998 if (*mask & s_kmod_keyword_mask_map[index].mask_val) {
999 if ((strlen(kernel_debug_string) +
1000 strlen(s_kmod_keyword_mask_map[index].keyword))
Yi Liu8bb8aef2015-11-24 15:12:14 -05001001 < ORANGEFS_MAX_DEBUG_STRING_LEN - 1) {
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001002 strcat(kernel_debug_string,
1003 s_kmod_keyword_mask_map[index].keyword);
1004 strcat(kernel_debug_string, ",");
1005 } else {
1006 gossip_err("%s: overflow!\n", __func__);
Yi Liu8bb8aef2015-11-24 15:12:14 -05001007 strcpy(kernel_debug_string, ORANGEFS_ALL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001008 goto out;
1009 }
1010 }
1011
1012out:
1013
1014 return;
1015}
1016
1017void do_c_string(void *c_mask, int index)
1018{
1019 struct client_debug_mask *mask = (struct client_debug_mask *) c_mask;
1020
1021 if (keyword_is_amalgam(cdm_array[index].keyword))
1022 goto out;
1023
1024 if ((mask->mask1 & cdm_array[index].mask1) ||
1025 (mask->mask2 & cdm_array[index].mask2)) {
1026 if ((strlen(client_debug_string) +
1027 strlen(cdm_array[index].keyword) + 1)
Yi Liu8bb8aef2015-11-24 15:12:14 -05001028 < ORANGEFS_MAX_DEBUG_STRING_LEN - 2) {
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001029 strcat(client_debug_string,
1030 cdm_array[index].keyword);
1031 strcat(client_debug_string, ",");
1032 } else {
1033 gossip_err("%s: overflow!\n", __func__);
Yi Liu8bb8aef2015-11-24 15:12:14 -05001034 strcpy(client_debug_string, ORANGEFS_ALL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001035 goto out;
1036 }
1037 }
1038out:
1039 return;
1040}
1041
1042int keyword_is_amalgam(char *keyword)
1043{
1044 int rc = 0;
1045
Yi Liu8bb8aef2015-11-24 15:12:14 -05001046 if ((!strcmp(keyword, ORANGEFS_ALL)) || (!strcmp(keyword, ORANGEFS_VERBOSE)))
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001047 rc = 1;
1048
1049 return rc;
1050}
1051
1052/*
1053 * kernel = type 0
1054 * client = type 1
1055 *
1056 * return 1 if we found an amalgam.
1057 */
1058int check_amalgam_keyword(void *mask, int type)
1059{
1060 __u64 *k_mask;
1061 struct client_debug_mask *c_mask;
1062 int k_all_index = num_kmod_keyword_mask_map - 1;
1063 int rc = 0;
1064
1065 if (type) {
1066 c_mask = (struct client_debug_mask *) mask;
1067
1068 if ((c_mask->mask1 == cdm_array[client_all_index].mask1) &&
1069 (c_mask->mask2 == cdm_array[client_all_index].mask2)) {
Yi Liu8bb8aef2015-11-24 15:12:14 -05001070 strcpy(client_debug_string, ORANGEFS_ALL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001071 rc = 1;
1072 goto out;
1073 }
1074
1075 if ((c_mask->mask1 == cdm_array[client_verbose_index].mask1) &&
1076 (c_mask->mask2 == cdm_array[client_verbose_index].mask2)) {
Yi Liu8bb8aef2015-11-24 15:12:14 -05001077 strcpy(client_debug_string, ORANGEFS_VERBOSE);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001078 rc = 1;
1079 goto out;
1080 }
1081
1082 } else {
1083 k_mask = (__u64 *) mask;
1084
1085 if (*k_mask >= s_kmod_keyword_mask_map[k_all_index].mask_val) {
Yi Liu8bb8aef2015-11-24 15:12:14 -05001086 strcpy(kernel_debug_string, ORANGEFS_ALL);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001087 rc = 1;
1088 goto out;
1089 }
1090 }
1091
1092out:
1093
1094 return rc;
1095}
1096
1097/*
1098 * kernel = type 0
1099 * client = type 1
1100 */
1101void debug_string_to_mask(char *debug_string, void *mask, int type)
1102{
1103 char *unchecked_keyword;
1104 int i;
1105 char *strsep_fodder = kstrdup(debug_string, GFP_KERNEL);
Mike Marshalleeaa3d42015-07-29 13:36:37 -04001106 char *original_pointer;
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001107 int element_count = 0;
1108 struct client_debug_mask *c_mask;
1109 __u64 *k_mask;
1110
1111 gossip_debug(GOSSIP_UTILS_DEBUG, "%s: start\n", __func__);
1112
1113 if (type) {
1114 c_mask = (struct client_debug_mask *)mask;
1115 element_count = cdm_element_count;
1116 } else {
1117 k_mask = (__u64 *)mask;
1118 *k_mask = 0;
1119 element_count = num_kmod_keyword_mask_map;
1120 }
1121
Mike Marshalleeaa3d42015-07-29 13:36:37 -04001122 original_pointer = strsep_fodder;
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001123 while ((unchecked_keyword = strsep(&strsep_fodder, ",")))
1124 if (strlen(unchecked_keyword)) {
1125 for (i = 0; i < element_count; i++)
1126 if (type)
1127 do_c_mask(i,
1128 unchecked_keyword,
1129 &c_mask);
1130 else
1131 do_k_mask(i,
1132 unchecked_keyword,
1133 &k_mask);
1134 }
1135
Mike Marshalleeaa3d42015-07-29 13:36:37 -04001136 kfree(original_pointer);
Mike Marshallf7be4ee2015-07-17 10:38:14 -04001137}
1138
1139void do_c_mask(int i,
1140 char *unchecked_keyword,
1141 struct client_debug_mask **sane_mask)
1142{
1143
1144 if (!strcmp(cdm_array[i].keyword, unchecked_keyword)) {
1145 (**sane_mask).mask1 = (**sane_mask).mask1 | cdm_array[i].mask1;
1146 (**sane_mask).mask2 = (**sane_mask).mask2 | cdm_array[i].mask2;
1147 }
1148}
1149
1150void do_k_mask(int i, char *unchecked_keyword, __u64 **sane_mask)
1151{
1152
1153 if (!strcmp(s_kmod_keyword_mask_map[i].keyword, unchecked_keyword))
1154 **sane_mask = (**sane_mask) |
1155 s_kmod_keyword_mask_map[i].mask_val;
1156}