Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) 2001 Clemson University and The University of Chicago |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 4 | * Copyright 2018 Omnibond Systems, L.L.C. |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 5 | * |
| 6 | * See COPYING in top-level directory. |
| 7 | */ |
Jérémy Lefaure | 296200d | 2017-10-01 15:30:48 -0400 | [diff] [blame] | 8 | #include <linux/kernel.h> |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 9 | #include "protocol.h" |
Mike Marshall | 575e946 | 2015-12-04 12:56:14 -0500 | [diff] [blame] | 10 | #include "orangefs-kernel.h" |
| 11 | #include "orangefs-dev-proto.h" |
| 12 | #include "orangefs-bufmap.h" |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 13 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 14 | __s32 fsid_of_op(struct orangefs_kernel_op_s *op) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 15 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 16 | __s32 fsid = ORANGEFS_FS_ID_NULL; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 17 | |
| 18 | if (op) { |
| 19 | switch (op->upcall.type) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 20 | case ORANGEFS_VFS_OP_FILE_IO: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 21 | fsid = op->upcall.req.io.refn.fs_id; |
| 22 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 23 | case ORANGEFS_VFS_OP_LOOKUP: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 24 | fsid = op->upcall.req.lookup.parent_refn.fs_id; |
| 25 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 26 | case ORANGEFS_VFS_OP_CREATE: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 27 | fsid = op->upcall.req.create.parent_refn.fs_id; |
| 28 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 29 | case ORANGEFS_VFS_OP_GETATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 30 | fsid = op->upcall.req.getattr.refn.fs_id; |
| 31 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 32 | case ORANGEFS_VFS_OP_REMOVE: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 33 | fsid = op->upcall.req.remove.parent_refn.fs_id; |
| 34 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 35 | case ORANGEFS_VFS_OP_MKDIR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 36 | fsid = op->upcall.req.mkdir.parent_refn.fs_id; |
| 37 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 38 | case ORANGEFS_VFS_OP_READDIR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 39 | fsid = op->upcall.req.readdir.refn.fs_id; |
| 40 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 41 | case ORANGEFS_VFS_OP_SETATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 42 | fsid = op->upcall.req.setattr.refn.fs_id; |
| 43 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 44 | case ORANGEFS_VFS_OP_SYMLINK: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 45 | fsid = op->upcall.req.sym.parent_refn.fs_id; |
| 46 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 47 | case ORANGEFS_VFS_OP_RENAME: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 48 | fsid = op->upcall.req.rename.old_parent_refn.fs_id; |
| 49 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 50 | case ORANGEFS_VFS_OP_STATFS: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 51 | fsid = op->upcall.req.statfs.fs_id; |
| 52 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 53 | case ORANGEFS_VFS_OP_TRUNCATE: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 54 | fsid = op->upcall.req.truncate.refn.fs_id; |
| 55 | break; |
Martin Brandenburg | 6eaff8c | 2016-08-02 14:31:05 -0400 | [diff] [blame] | 56 | case ORANGEFS_VFS_OP_RA_FLUSH: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 57 | fsid = op->upcall.req.ra_cache_flush.refn.fs_id; |
| 58 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 59 | case ORANGEFS_VFS_OP_FS_UMOUNT: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 60 | fsid = op->upcall.req.fs_umount.fs_id; |
| 61 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 62 | case ORANGEFS_VFS_OP_GETXATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 63 | fsid = op->upcall.req.getxattr.refn.fs_id; |
| 64 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 65 | case ORANGEFS_VFS_OP_SETXATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 66 | fsid = op->upcall.req.setxattr.refn.fs_id; |
| 67 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 68 | case ORANGEFS_VFS_OP_LISTXATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 69 | fsid = op->upcall.req.listxattr.refn.fs_id; |
| 70 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 71 | case ORANGEFS_VFS_OP_REMOVEXATTR: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 72 | fsid = op->upcall.req.removexattr.refn.fs_id; |
| 73 | break; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 74 | case ORANGEFS_VFS_OP_FSYNC: |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 75 | fsid = op->upcall.req.fsync.refn.fs_id; |
| 76 | break; |
| 77 | default: |
| 78 | break; |
| 79 | } |
| 80 | } |
| 81 | return fsid; |
| 82 | } |
| 83 | |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 84 | static int orangefs_inode_flags(struct ORANGEFS_sys_attr_s *attrs) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 85 | { |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 86 | int flags = 0; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 87 | if (attrs->flags & ORANGEFS_IMMUTABLE_FL) |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 88 | flags |= S_IMMUTABLE; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 89 | else |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 90 | flags &= ~S_IMMUTABLE; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 91 | if (attrs->flags & ORANGEFS_APPEND_FL) |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 92 | flags |= S_APPEND; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 93 | else |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 94 | flags &= ~S_APPEND; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 95 | if (attrs->flags & ORANGEFS_NOATIME_FL) |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 96 | flags |= S_NOATIME; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 97 | else |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 98 | flags &= ~S_NOATIME; |
| 99 | return flags; |
| 100 | } |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 101 | |
Martin Brandenburg | 394f647 | 2016-01-25 15:33:39 -0500 | [diff] [blame] | 102 | static int orangefs_inode_perms(struct ORANGEFS_sys_attr_s *attrs) |
| 103 | { |
| 104 | int perm_mode = 0; |
| 105 | |
| 106 | if (attrs->perms & ORANGEFS_O_EXECUTE) |
| 107 | perm_mode |= S_IXOTH; |
| 108 | if (attrs->perms & ORANGEFS_O_WRITE) |
| 109 | perm_mode |= S_IWOTH; |
| 110 | if (attrs->perms & ORANGEFS_O_READ) |
| 111 | perm_mode |= S_IROTH; |
| 112 | |
| 113 | if (attrs->perms & ORANGEFS_G_EXECUTE) |
| 114 | perm_mode |= S_IXGRP; |
| 115 | if (attrs->perms & ORANGEFS_G_WRITE) |
| 116 | perm_mode |= S_IWGRP; |
| 117 | if (attrs->perms & ORANGEFS_G_READ) |
| 118 | perm_mode |= S_IRGRP; |
| 119 | |
| 120 | if (attrs->perms & ORANGEFS_U_EXECUTE) |
| 121 | perm_mode |= S_IXUSR; |
| 122 | if (attrs->perms & ORANGEFS_U_WRITE) |
| 123 | perm_mode |= S_IWUSR; |
| 124 | if (attrs->perms & ORANGEFS_U_READ) |
| 125 | perm_mode |= S_IRUSR; |
| 126 | |
| 127 | if (attrs->perms & ORANGEFS_G_SGID) |
| 128 | perm_mode |= S_ISGID; |
| 129 | if (attrs->perms & ORANGEFS_U_SUID) |
| 130 | perm_mode |= S_ISUID; |
| 131 | |
| 132 | return perm_mode; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 133 | } |
| 134 | |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 135 | /* |
| 136 | * NOTE: in kernel land, we never use the sys_attr->link_target for |
| 137 | * anything, so don't bother copying it into the sys_attr object here. |
| 138 | */ |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 139 | static inline void copy_attributes_from_inode(struct inode *inode, |
| 140 | struct ORANGEFS_sys_attr_s *attrs) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 141 | { |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 142 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 143 | attrs->mask = 0; |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 144 | if (orangefs_inode->attr_valid & ATTR_UID) { |
| 145 | attrs->owner = from_kuid(&init_user_ns, inode->i_uid); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 146 | attrs->mask |= ORANGEFS_ATTR_SYS_UID; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 147 | gossip_debug(GOSSIP_UTILS_DEBUG, "(UID) %d\n", attrs->owner); |
| 148 | } |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 149 | if (orangefs_inode->attr_valid & ATTR_GID) { |
| 150 | attrs->group = from_kgid(&init_user_ns, inode->i_gid); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 151 | attrs->mask |= ORANGEFS_ATTR_SYS_GID; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 152 | gossip_debug(GOSSIP_UTILS_DEBUG, "(GID) %d\n", attrs->group); |
| 153 | } |
| 154 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 155 | if (orangefs_inode->attr_valid & ATTR_ATIME) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 156 | attrs->mask |= ORANGEFS_ATTR_SYS_ATIME; |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 157 | if (orangefs_inode->attr_valid & ATTR_ATIME_SET) { |
| 158 | attrs->atime = (time64_t)inode->i_atime.tv_sec; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 159 | attrs->mask |= ORANGEFS_ATTR_SYS_ATIME_SET; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 160 | } |
| 161 | } |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 162 | if (orangefs_inode->attr_valid & ATTR_MTIME) { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 163 | attrs->mask |= ORANGEFS_ATTR_SYS_MTIME; |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 164 | if (orangefs_inode->attr_valid & ATTR_MTIME_SET) { |
| 165 | attrs->mtime = (time64_t)inode->i_mtime.tv_sec; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 166 | attrs->mask |= ORANGEFS_ATTR_SYS_MTIME_SET; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 167 | } |
| 168 | } |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 169 | if (orangefs_inode->attr_valid & ATTR_CTIME) |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 170 | attrs->mask |= ORANGEFS_ATTR_SYS_CTIME; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 171 | |
| 172 | /* |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 173 | * ORANGEFS cannot set size with a setattr operation. Probably not |
| 174 | * likely to be requested through the VFS, but just in case, don't |
| 175 | * worry about ATTR_SIZE |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 176 | */ |
| 177 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 178 | if (orangefs_inode->attr_valid & ATTR_MODE) { |
| 179 | attrs->perms = ORANGEFS_util_translate_mode(inode->i_mode); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 180 | attrs->mask |= ORANGEFS_ATTR_SYS_PERM; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 181 | } |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 182 | } |
| 183 | |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 184 | static int orangefs_inode_type(enum orangefs_ds_type objtype) |
| 185 | { |
| 186 | if (objtype == ORANGEFS_TYPE_METAFILE) |
| 187 | return S_IFREG; |
| 188 | else if (objtype == ORANGEFS_TYPE_DIRECTORY) |
| 189 | return S_IFDIR; |
| 190 | else if (objtype == ORANGEFS_TYPE_SYMLINK) |
| 191 | return S_IFLNK; |
| 192 | else |
| 193 | return -1; |
| 194 | } |
| 195 | |
Martin Brandenburg | 4d0cac7 | 2018-01-26 14:07:14 -0500 | [diff] [blame] | 196 | static void orangefs_make_bad_inode(struct inode *inode) |
| 197 | { |
| 198 | if (is_root_handle(inode)) { |
| 199 | /* |
| 200 | * if this occurs, the pvfs2-client-core was killed but we |
| 201 | * can't afford to lose the inode operations and such |
| 202 | * associated with the root handle in any case. |
| 203 | */ |
| 204 | gossip_debug(GOSSIP_UTILS_DEBUG, |
| 205 | "*** NOT making bad root inode %pU\n", |
| 206 | get_khandle_from_ino(inode)); |
| 207 | } else { |
| 208 | gossip_debug(GOSSIP_UTILS_DEBUG, |
| 209 | "*** making bad inode %pU\n", |
| 210 | get_khandle_from_ino(inode)); |
| 211 | make_bad_inode(inode); |
| 212 | } |
| 213 | } |
| 214 | |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 215 | static int orangefs_inode_is_stale(struct inode *inode, |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 216 | struct ORANGEFS_sys_attr_s *attrs, char *link_target) |
| 217 | { |
| 218 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 219 | int type = orangefs_inode_type(attrs->objtype); |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 220 | /* |
| 221 | * If the inode type or symlink target have changed then this |
| 222 | * inode is stale. |
| 223 | */ |
Al Viro | e89f00d | 2021-02-13 23:03:20 -0500 | [diff] [blame] | 224 | if (type == -1 || inode_wrong_type(inode, type)) { |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 225 | orangefs_make_bad_inode(inode); |
| 226 | return 1; |
| 227 | } |
| 228 | if (type == S_IFLNK && strncmp(orangefs_inode->link_target, |
| 229 | link_target, ORANGEFS_NAME_MAX)) { |
| 230 | orangefs_make_bad_inode(inode); |
| 231 | return 1; |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 232 | } |
| 233 | return 0; |
| 234 | } |
| 235 | |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 236 | int orangefs_inode_getattr(struct inode *inode, int flags) |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 237 | { |
| 238 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 239 | struct orangefs_kernel_op_s *new_op; |
Martin Brandenburg | 9f8fd53 | 2018-05-31 16:36:59 +0000 | [diff] [blame] | 240 | loff_t inode_size; |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 241 | int ret, type; |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 242 | |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 243 | gossip_debug(GOSSIP_UTILS_DEBUG, "%s: called on inode %pU flags %d\n", |
| 244 | __func__, get_khandle_from_ino(inode), flags); |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 245 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 246 | again: |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 247 | spin_lock(&inode->i_lock); |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 248 | /* Must have all the attributes in the mask and be within cache time. */ |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 249 | if ((!flags && time_before(jiffies, orangefs_inode->getattr_time)) || |
Martin Brandenburg | 85ac799 | 2018-02-22 18:10:43 +0000 | [diff] [blame] | 250 | orangefs_inode->attr_valid || inode->i_state & I_DIRTY_PAGES) { |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 251 | if (orangefs_inode->attr_valid) { |
| 252 | spin_unlock(&inode->i_lock); |
| 253 | write_inode_now(inode, 1); |
| 254 | goto again; |
| 255 | } |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 256 | spin_unlock(&inode->i_lock); |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 257 | return 0; |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 258 | } |
| 259 | spin_unlock(&inode->i_lock); |
Martin Brandenburg | 71680c1 | 2016-06-09 16:32:38 -0400 | [diff] [blame] | 260 | |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 261 | new_op = op_alloc(ORANGEFS_VFS_OP_GETATTR); |
| 262 | if (!new_op) |
| 263 | return -ENOMEM; |
| 264 | new_op->upcall.req.getattr.refn = orangefs_inode->refn; |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 265 | /* |
| 266 | * Size is the hardest attribute to get. The incremental cost of any |
| 267 | * other attribute is essentially zero. |
| 268 | */ |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 269 | if (flags) |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 270 | new_op->upcall.req.getattr.mask = ORANGEFS_ATTR_SYS_ALL_NOHINT; |
| 271 | else |
| 272 | new_op->upcall.req.getattr.mask = |
| 273 | ORANGEFS_ATTR_SYS_ALL_NOHINT & ~ORANGEFS_ATTR_SYS_SIZE; |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 274 | |
| 275 | ret = service_operation(new_op, __func__, |
| 276 | get_interruptible_flag(inode)); |
| 277 | if (ret != 0) |
| 278 | goto out; |
| 279 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 280 | again2: |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 281 | spin_lock(&inode->i_lock); |
| 282 | /* Must have all the attributes in the mask and be within cache time. */ |
| 283 | if ((!flags && time_before(jiffies, orangefs_inode->getattr_time)) || |
Martin Brandenburg | 85ac799 | 2018-02-22 18:10:43 +0000 | [diff] [blame] | 284 | orangefs_inode->attr_valid || inode->i_state & I_DIRTY_PAGES) { |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 285 | if (orangefs_inode->attr_valid) { |
| 286 | spin_unlock(&inode->i_lock); |
| 287 | write_inode_now(inode, 1); |
| 288 | goto again2; |
| 289 | } |
Martin Brandenburg | 85ac799 | 2018-02-22 18:10:43 +0000 | [diff] [blame] | 290 | if (inode->i_state & I_DIRTY_PAGES) { |
| 291 | ret = 0; |
| 292 | goto out_unlock; |
| 293 | } |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 294 | gossip_debug(GOSSIP_UTILS_DEBUG, "%s: in cache or dirty\n", |
| 295 | __func__); |
| 296 | ret = 0; |
| 297 | goto out_unlock; |
| 298 | } |
| 299 | |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 300 | if (!(flags & ORANGEFS_GETATTR_NEW)) { |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 301 | ret = orangefs_inode_is_stale(inode, |
| 302 | &new_op->downcall.resp.getattr.attributes, |
| 303 | new_op->downcall.resp.getattr.link_target); |
| 304 | if (ret) { |
| 305 | ret = -ESTALE; |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 306 | goto out_unlock; |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 307 | } |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 308 | } |
| 309 | |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 310 | type = orangefs_inode_type(new_op-> |
| 311 | downcall.resp.getattr.attributes.objtype); |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 312 | switch (type) { |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 313 | case S_IFREG: |
| 314 | inode->i_flags = orangefs_inode_flags(&new_op-> |
| 315 | downcall.resp.getattr.attributes); |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 316 | if (flags) { |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 317 | inode_size = (loff_t)new_op-> |
| 318 | downcall.resp.getattr.attributes.size; |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 319 | inode->i_size = inode_size; |
Martin Brandenburg | 9f8fd53 | 2018-05-31 16:36:59 +0000 | [diff] [blame] | 320 | inode->i_blkbits = ffs(new_op->downcall.resp.getattr. |
| 321 | attributes.blksize); |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 322 | inode->i_bytes = inode_size; |
| 323 | inode->i_blocks = |
Martin Brandenburg | 9f8fd53 | 2018-05-31 16:36:59 +0000 | [diff] [blame] | 324 | (inode_size + 512 - inode_size % 512)/512; |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 325 | } |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 326 | break; |
| 327 | case S_IFDIR: |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 328 | if (flags) { |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 329 | inode->i_size = PAGE_SIZE; |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 330 | inode_set_bytes(inode, inode->i_size); |
Martin Brandenburg | 68a24a6 | 2017-04-25 15:38:03 -0400 | [diff] [blame] | 331 | } |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 332 | set_nlink(inode, 1); |
| 333 | break; |
| 334 | case S_IFLNK: |
Martin Brandenburg | 8b60785 | 2018-02-07 18:44:50 +0000 | [diff] [blame] | 335 | if (flags & ORANGEFS_GETATTR_NEW) { |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 336 | inode->i_size = (loff_t)strlen(new_op-> |
| 337 | downcall.resp.getattr.link_target); |
Martin Brandenburg | 2eacea7 | 2016-04-08 13:33:21 -0400 | [diff] [blame] | 338 | ret = strscpy(orangefs_inode->link_target, |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 339 | new_op->downcall.resp.getattr.link_target, |
| 340 | ORANGEFS_NAME_MAX); |
Martin Brandenburg | 2eacea7 | 2016-04-08 13:33:21 -0400 | [diff] [blame] | 341 | if (ret == -E2BIG) { |
| 342 | ret = -EIO; |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 343 | goto out_unlock; |
Martin Brandenburg | 2eacea7 | 2016-04-08 13:33:21 -0400 | [diff] [blame] | 344 | } |
Martin Brandenburg | e8da254 | 2016-03-18 14:20:15 -0400 | [diff] [blame] | 345 | inode->i_link = orangefs_inode->link_target; |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 346 | } |
| 347 | break; |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 348 | /* i.e. -1 */ |
| 349 | default: |
| 350 | /* XXX: ESTALE? This is what is done if it is not new. */ |
| 351 | orangefs_make_bad_inode(inode); |
| 352 | ret = -ESTALE; |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 353 | goto out_unlock; |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 354 | } |
| 355 | |
| 356 | inode->i_uid = make_kuid(&init_user_ns, new_op-> |
| 357 | downcall.resp.getattr.attributes.owner); |
| 358 | inode->i_gid = make_kgid(&init_user_ns, new_op-> |
| 359 | downcall.resp.getattr.attributes.group); |
| 360 | inode->i_atime.tv_sec = (time64_t)new_op-> |
| 361 | downcall.resp.getattr.attributes.atime; |
| 362 | inode->i_mtime.tv_sec = (time64_t)new_op-> |
| 363 | downcall.resp.getattr.attributes.mtime; |
| 364 | inode->i_ctime.tv_sec = (time64_t)new_op-> |
| 365 | downcall.resp.getattr.attributes.ctime; |
| 366 | inode->i_atime.tv_nsec = 0; |
| 367 | inode->i_mtime.tv_nsec = 0; |
| 368 | inode->i_ctime.tv_nsec = 0; |
| 369 | |
| 370 | /* special case: mark the root inode as sticky */ |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 371 | inode->i_mode = type | (is_root_handle(inode) ? S_ISVTX : 0) | |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 372 | orangefs_inode_perms(&new_op->downcall.resp.getattr.attributes); |
| 373 | |
Martin Brandenburg | 1d50361 | 2016-08-16 11:38:14 -0400 | [diff] [blame] | 374 | orangefs_inode->getattr_time = jiffies + |
| 375 | orangefs_getattr_timeout_msecs*HZ/1000; |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 376 | ret = 0; |
Martin Brandenburg | 5e4f606 | 2018-02-12 17:04:57 +0000 | [diff] [blame] | 377 | out_unlock: |
| 378 | spin_unlock(&inode->i_lock); |
Martin Brandenburg | 3c9cf98 | 2016-03-15 11:28:20 -0400 | [diff] [blame] | 379 | out: |
| 380 | op_release(new_op); |
| 381 | return ret; |
| 382 | } |
| 383 | |
Martin Brandenburg | 5859d77 | 2016-03-17 15:15:16 -0400 | [diff] [blame] | 384 | int orangefs_inode_check_changed(struct inode *inode) |
| 385 | { |
| 386 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 387 | struct orangefs_kernel_op_s *new_op; |
| 388 | int ret; |
| 389 | |
| 390 | gossip_debug(GOSSIP_UTILS_DEBUG, "%s: called on inode %pU\n", __func__, |
| 391 | get_khandle_from_ino(inode)); |
| 392 | |
| 393 | new_op = op_alloc(ORANGEFS_VFS_OP_GETATTR); |
| 394 | if (!new_op) |
| 395 | return -ENOMEM; |
| 396 | new_op->upcall.req.getattr.refn = orangefs_inode->refn; |
| 397 | new_op->upcall.req.getattr.mask = ORANGEFS_ATTR_SYS_TYPE | |
| 398 | ORANGEFS_ATTR_SYS_LNK_TARGET; |
| 399 | |
| 400 | ret = service_operation(new_op, __func__, |
| 401 | get_interruptible_flag(inode)); |
| 402 | if (ret != 0) |
| 403 | goto out; |
| 404 | |
Martin Brandenburg | 480e5ae | 2018-02-06 14:01:25 +0000 | [diff] [blame] | 405 | ret = orangefs_inode_is_stale(inode, |
Martin Brandenburg | 2666263 | 2016-03-17 16:01:52 -0400 | [diff] [blame] | 406 | &new_op->downcall.resp.getattr.attributes, |
| 407 | new_op->downcall.resp.getattr.link_target); |
Martin Brandenburg | 5859d77 | 2016-03-17 15:15:16 -0400 | [diff] [blame] | 408 | out: |
| 409 | op_release(new_op); |
| 410 | return ret; |
| 411 | } |
| 412 | |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 413 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 414 | * issues a orangefs setattr request to make sure the new attribute values |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 415 | * take effect if successful. returns 0 on success; -errno otherwise |
| 416 | */ |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 417 | int orangefs_inode_setattr(struct inode *inode) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 418 | { |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 419 | struct orangefs_inode_s *orangefs_inode = ORANGEFS_I(inode); |
| 420 | struct orangefs_kernel_op_s *new_op; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 421 | int ret; |
| 422 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 423 | new_op = op_alloc(ORANGEFS_VFS_OP_SETATTR); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 424 | if (!new_op) |
| 425 | return -ENOMEM; |
| 426 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 427 | spin_lock(&inode->i_lock); |
| 428 | new_op->upcall.uid = from_kuid(&init_user_ns, orangefs_inode->attr_uid); |
| 429 | new_op->upcall.gid = from_kgid(&init_user_ns, orangefs_inode->attr_gid); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 430 | new_op->upcall.req.setattr.refn = orangefs_inode->refn; |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 431 | copy_attributes_from_inode(inode, |
| 432 | &new_op->upcall.req.setattr.attributes); |
| 433 | orangefs_inode->attr_valid = 0; |
Martin Brandenburg | 8a88bbc | 2018-02-22 18:15:56 +0000 | [diff] [blame] | 434 | if (!new_op->upcall.req.setattr.attributes.mask) { |
| 435 | spin_unlock(&inode->i_lock); |
| 436 | op_release(new_op); |
| 437 | return 0; |
| 438 | } |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 439 | spin_unlock(&inode->i_lock); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 440 | |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 441 | ret = service_operation(new_op, __func__, |
Martin Brandenburg | 0dcac0f | 2018-02-15 19:38:01 +0000 | [diff] [blame] | 442 | get_interruptible_flag(inode) | ORANGEFS_OP_WRITEBACK); |
Martin Brandenburg | afd9fb2 | 2018-02-13 20:13:46 +0000 | [diff] [blame] | 443 | gossip_debug(GOSSIP_UTILS_DEBUG, |
| 444 | "orangefs_inode_setattr: returning %d\n", ret); |
| 445 | if (ret) |
| 446 | orangefs_make_bad_inode(inode); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 447 | |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 448 | op_release(new_op); |
| 449 | |
Martin Brandenburg | a55f2d8 | 2017-11-07 15:01:40 -0500 | [diff] [blame] | 450 | if (ret == 0) |
Martin Brandenburg | 8bbb20a | 2016-07-28 14:46:36 -0400 | [diff] [blame] | 451 | orangefs_inode->getattr_time = jiffies - 1; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 452 | return ret; |
| 453 | } |
| 454 | |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 455 | /* |
| 456 | * The following is a very dirty hack that is now a permanent part of the |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 457 | * ORANGEFS protocol. See protocol.h for more error definitions. |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 458 | */ |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 459 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 460 | /* The order matches include/orangefs-types.h in the OrangeFS source. */ |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 461 | static int PINT_errno_mapping[] = { |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 462 | 0, EPERM, ENOENT, EINTR, EIO, ENXIO, EBADF, EAGAIN, ENOMEM, |
| 463 | EFAULT, EBUSY, EEXIST, ENODEV, ENOTDIR, EISDIR, EINVAL, EMFILE, |
| 464 | EFBIG, ENOSPC, EROFS, EMLINK, EPIPE, EDEADLK, ENAMETOOLONG, |
| 465 | ENOLCK, ENOSYS, ENOTEMPTY, ELOOP, EWOULDBLOCK, ENOMSG, EUNATCH, |
| 466 | EBADR, EDEADLOCK, ENODATA, ETIME, ENONET, EREMOTE, ECOMM, |
| 467 | EPROTO, EBADMSG, EOVERFLOW, ERESTART, EMSGSIZE, EPROTOTYPE, |
| 468 | ENOPROTOOPT, EPROTONOSUPPORT, EOPNOTSUPP, EADDRINUSE, |
| 469 | EADDRNOTAVAIL, ENETDOWN, ENETUNREACH, ENETRESET, ENOBUFS, |
| 470 | ETIMEDOUT, ECONNREFUSED, EHOSTDOWN, EHOSTUNREACH, EALREADY, |
| 471 | EACCES, ECONNRESET, ERANGE |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 472 | }; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 473 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 474 | int orangefs_normalize_to_errno(__s32 error_code) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 475 | { |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 476 | __u32 i; |
| 477 | |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 478 | /* Success */ |
| 479 | if (error_code == 0) { |
| 480 | return 0; |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 481 | /* |
| 482 | * This shouldn't ever happen. If it does it should be fixed on the |
| 483 | * server. |
| 484 | */ |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 485 | } else if (error_code > 0) { |
Masanari Iida | bc8282a | 2018-01-16 00:18:36 +0900 | [diff] [blame] | 486 | gossip_err("orangefs: error status received.\n"); |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 487 | gossip_err("orangefs: assuming error code is inverted.\n"); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 488 | error_code = -error_code; |
| 489 | } |
| 490 | |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 491 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 492 | * XXX: This is very bad since error codes from ORANGEFS may not be |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 493 | * suitable for return into userspace. |
| 494 | */ |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 495 | |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 496 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 497 | * Convert ORANGEFS error values into errno values suitable for return |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 498 | * from the kernel. |
| 499 | */ |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 500 | if ((-error_code) & ORANGEFS_NON_ERRNO_ERROR_BIT) { |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 501 | if (((-error_code) & |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 502 | (ORANGEFS_ERROR_NUMBER_BITS|ORANGEFS_NON_ERRNO_ERROR_BIT| |
| 503 | ORANGEFS_ERROR_BIT)) == ORANGEFS_ECANCEL) { |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 504 | /* |
| 505 | * cancellation error codes generally correspond to |
| 506 | * a timeout from the client's perspective |
| 507 | */ |
| 508 | error_code = -ETIMEDOUT; |
| 509 | } else { |
| 510 | /* assume a default error code */ |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 511 | gossip_err("%s: bad error code :%d:.\n", |
| 512 | __func__, |
| 513 | error_code); |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 514 | error_code = -EINVAL; |
| 515 | } |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 516 | |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 517 | /* Convert ORANGEFS encoded errno values into regular errno values. */ |
| 518 | } else if ((-error_code) & ORANGEFS_ERROR_BIT) { |
| 519 | i = (-error_code) & ~(ORANGEFS_ERROR_BIT|ORANGEFS_ERROR_CLASS_BITS); |
Jérémy Lefaure | 296200d | 2017-10-01 15:30:48 -0400 | [diff] [blame] | 520 | if (i < ARRAY_SIZE(PINT_errno_mapping)) |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 521 | error_code = -PINT_errno_mapping[i]; |
| 522 | else |
| 523 | error_code = -EINVAL; |
| 524 | |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 525 | /* |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 526 | * Only ORANGEFS protocol error codes should ever come here. Otherwise |
Mike Marshall | 5480494 | 2015-10-05 13:44:24 -0400 | [diff] [blame] | 527 | * there is a bug somewhere. |
| 528 | */ |
Martin Brandenburg | 894ac43 | 2015-10-02 12:11:19 -0400 | [diff] [blame] | 529 | } else { |
Mike Marshall | 95f5f88 | 2018-05-11 17:11:48 -0400 | [diff] [blame] | 530 | gossip_err("%s: unknown error code.\n", __func__); |
Mike Marshall | cf546ab | 2018-01-25 14:43:28 -0500 | [diff] [blame] | 531 | error_code = -EINVAL; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 532 | } |
| 533 | return error_code; |
| 534 | } |
| 535 | |
| 536 | #define NUM_MODES 11 |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 537 | __s32 ORANGEFS_util_translate_mode(int mode) |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 538 | { |
| 539 | int ret = 0; |
| 540 | int i = 0; |
| 541 | static int modes[NUM_MODES] = { |
| 542 | S_IXOTH, S_IWOTH, S_IROTH, |
| 543 | S_IXGRP, S_IWGRP, S_IRGRP, |
| 544 | S_IXUSR, S_IWUSR, S_IRUSR, |
| 545 | S_ISGID, S_ISUID |
| 546 | }; |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 547 | static int orangefs_modes[NUM_MODES] = { |
| 548 | ORANGEFS_O_EXECUTE, ORANGEFS_O_WRITE, ORANGEFS_O_READ, |
| 549 | ORANGEFS_G_EXECUTE, ORANGEFS_G_WRITE, ORANGEFS_G_READ, |
| 550 | ORANGEFS_U_EXECUTE, ORANGEFS_U_WRITE, ORANGEFS_U_READ, |
| 551 | ORANGEFS_G_SGID, ORANGEFS_U_SUID |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 552 | }; |
| 553 | |
| 554 | for (i = 0; i < NUM_MODES; i++) |
| 555 | if (mode & modes[i]) |
Yi Liu | 8bb8aef | 2015-11-24 15:12:14 -0500 | [diff] [blame] | 556 | ret |= orangefs_modes[i]; |
Mike Marshall | f7be4ee | 2015-07-17 10:38:14 -0400 | [diff] [blame] | 557 | |
| 558 | return ret; |
| 559 | } |
| 560 | #undef NUM_MODES |