2 * (C) 2001 Clemson University and The University of Chicago
4 * See COPYING in top-level directory.
8 * Linux VFS namei operations.
12 #include "orangefs-kernel.h"
15 * Get a newly allocated inode to go with a negative dentry.
17 static int orangefs_create(struct inode *dir,
18 struct dentry *dentry,
22 struct orangefs_inode_s *parent = ORANGEFS_I(dir);
23 struct orangefs_kernel_op_s *new_op;
27 gossip_debug(GOSSIP_NAME_DEBUG, "%s: %pd\n",
31 new_op = op_alloc(ORANGEFS_VFS_OP_CREATE);
35 new_op->upcall.req.create.parent_refn = parent->refn;
37 fill_default_sys_attrs(new_op->upcall.req.create.attributes,
38 ORANGEFS_TYPE_METAFILE, mode);
40 strncpy(new_op->upcall.req.create.d_name,
41 dentry->d_name.name, ORANGEFS_NAME_MAX);
43 ret = service_operation(new_op, __func__, get_interruptible_flag(dir));
45 gossip_debug(GOSSIP_NAME_DEBUG,
46 "%s: %pd: handle:%pU: fsid:%d: new_op:%p: ret:%d:\n",
49 &new_op->downcall.resp.create.refn.khandle,
50 new_op->downcall.resp.create.refn.fs_id,
57 inode = orangefs_new_inode(dir->i_sb, dir, S_IFREG | mode, 0,
58 &new_op->downcall.resp.create.refn);
60 gossip_err("%s: Failed to allocate inode for file :%pd:\n",
67 gossip_debug(GOSSIP_NAME_DEBUG,
68 "%s: Assigned inode :%pU: for file :%pd:\n",
70 get_khandle_from_ino(inode),
73 d_instantiate_new(dentry, inode);
74 orangefs_set_timeout(dentry);
75 ORANGEFS_I(inode)->getattr_time = jiffies - 1;
77 gossip_debug(GOSSIP_NAME_DEBUG,
78 "%s: dentry instantiated for %pd\n",
83 dir->i_mtime = dir->i_ctime = current_time(dir);
84 mark_inode_dirty_sync(dir);
88 gossip_debug(GOSSIP_NAME_DEBUG,
89 "%s: %pd: returning %d\n",
97 * Attempt to resolve an object name (dentry->d_name), parent handle, and
98 * fsid into a handle for the object.
100 static struct dentry *orangefs_lookup(struct inode *dir, struct dentry *dentry,
103 struct orangefs_inode_s *parent = ORANGEFS_I(dir);
104 struct orangefs_kernel_op_s *new_op;
110 * in theory we could skip a lookup here (if the intent is to
111 * create) in order to avoid a potentially failed lookup, but
112 * leaving it in can skip a valid lookup and try to create a file
113 * that already exists (e.g. the vfs already handles checking for
114 * -EEXIST on O_EXCL opens, which is broken if we skip this lookup
115 * in the create path)
117 gossip_debug(GOSSIP_NAME_DEBUG, "%s called on %pd\n",
120 if (dentry->d_name.len > (ORANGEFS_NAME_MAX - 1))
121 return ERR_PTR(-ENAMETOOLONG);
123 new_op = op_alloc(ORANGEFS_VFS_OP_LOOKUP);
125 return ERR_PTR(-ENOMEM);
127 new_op->upcall.req.lookup.sym_follow = ORANGEFS_LOOKUP_LINK_NO_FOLLOW;
129 gossip_debug(GOSSIP_NAME_DEBUG, "%s:%s:%d using parent %pU\n",
133 &parent->refn.khandle);
134 new_op->upcall.req.lookup.parent_refn = parent->refn;
136 strncpy(new_op->upcall.req.lookup.d_name, dentry->d_name.name,
139 gossip_debug(GOSSIP_NAME_DEBUG,
140 "%s: doing lookup on %s under %pU,%d\n",
142 new_op->upcall.req.lookup.d_name,
143 &new_op->upcall.req.lookup.parent_refn.khandle,
144 new_op->upcall.req.lookup.parent_refn.fs_id);
146 ret = service_operation(new_op, __func__, get_interruptible_flag(dir));
148 gossip_debug(GOSSIP_NAME_DEBUG,
149 "Lookup Got %pU, fsid %d (ret=%d)\n",
150 &new_op->downcall.resp.lookup.refn.khandle,
151 new_op->downcall.resp.lookup.refn.fs_id,
155 if (ret == -ENOENT) {
157 * if no inode was found, add a negative dentry to
158 * dcache anyway; if we don't, we don't hold expected
159 * lookup semantics and we most noticeably break
160 * during directory renames.
162 * however, if the operation failed or exited, do not
163 * add the dentry (e.g. in the case that a touch is
164 * issued on a file that already exists that was
165 * interrupted during this lookup -- no need to add
166 * another negative dentry for an existing file)
169 gossip_debug(GOSSIP_NAME_DEBUG,
170 "orangefs_lookup: Adding *negative* dentry "
180 /* must be a non-recoverable error */
185 orangefs_set_timeout(dentry);
187 inode = orangefs_iget(dir->i_sb, &new_op->downcall.resp.lookup.refn);
189 gossip_debug(GOSSIP_NAME_DEBUG,
190 "error %ld from iget\n", PTR_ERR(inode));
191 res = ERR_CAST(inode);
195 gossip_debug(GOSSIP_NAME_DEBUG,
197 "Found good inode [%lu] with count [%d]\n",
202 (int)atomic_read(&inode->i_count));
204 /* update dentry/inode pair into dcache */
205 res = d_splice_alias(inode, dentry);
207 gossip_debug(GOSSIP_NAME_DEBUG,
208 "Lookup success (inode ct = %d)\n",
209 (int)atomic_read(&inode->i_count));
215 /* return 0 on success; non-zero otherwise */
216 static int orangefs_unlink(struct inode *dir, struct dentry *dentry)
218 struct inode *inode = dentry->d_inode;
219 struct orangefs_inode_s *parent = ORANGEFS_I(dir);
220 struct orangefs_kernel_op_s *new_op;
223 gossip_debug(GOSSIP_NAME_DEBUG,
224 "%s: called on %pd\n"
225 " (inode %pU): Parent is %pU | fs_id %d\n",
228 get_khandle_from_ino(inode),
229 &parent->refn.khandle,
232 new_op = op_alloc(ORANGEFS_VFS_OP_REMOVE);
236 new_op->upcall.req.remove.parent_refn = parent->refn;
237 strncpy(new_op->upcall.req.remove.d_name, dentry->d_name.name,
240 ret = service_operation(new_op, "orangefs_unlink",
241 get_interruptible_flag(inode));
243 gossip_debug(GOSSIP_NAME_DEBUG,
244 "%s: service_operation returned:%d:\n",
253 SetMtimeFlag(parent);
254 dir->i_mtime = dir->i_ctime = current_time(dir);
255 mark_inode_dirty_sync(dir);
260 static int orangefs_symlink(struct inode *dir,
261 struct dentry *dentry,
264 struct orangefs_inode_s *parent = ORANGEFS_I(dir);
265 struct orangefs_kernel_op_s *new_op;
270 gossip_debug(GOSSIP_NAME_DEBUG, "%s: called\n", __func__);
275 if (strlen(symname)+1 > ORANGEFS_NAME_MAX)
276 return -ENAMETOOLONG;
278 new_op = op_alloc(ORANGEFS_VFS_OP_SYMLINK);
282 new_op->upcall.req.sym.parent_refn = parent->refn;
284 fill_default_sys_attrs(new_op->upcall.req.sym.attributes,
285 ORANGEFS_TYPE_SYMLINK,
288 strncpy(new_op->upcall.req.sym.entry_name,
291 strncpy(new_op->upcall.req.sym.target, symname, ORANGEFS_NAME_MAX);
293 ret = service_operation(new_op, __func__, get_interruptible_flag(dir));
295 gossip_debug(GOSSIP_NAME_DEBUG,
296 "Symlink Got ORANGEFS handle %pU on fsid %d (ret=%d)\n",
297 &new_op->downcall.resp.sym.refn.khandle,
298 new_op->downcall.resp.sym.refn.fs_id, ret);
301 gossip_debug(GOSSIP_NAME_DEBUG,
302 "%s: failed with error code %d\n",
307 inode = orangefs_new_inode(dir->i_sb, dir, S_IFLNK | mode, 0,
308 &new_op->downcall.resp.sym.refn);
311 ("*** Failed to allocate orangefs symlink inode\n");
312 ret = PTR_ERR(inode);
316 * This is necessary because orangefs_inode_getattr will not
317 * re-read symlink size as it is impossible for it to change.
318 * Invalidating the cache does not help. orangefs_new_inode
319 * does not set the correct size (it does not know symname).
321 inode->i_size = strlen(symname);
323 gossip_debug(GOSSIP_NAME_DEBUG,
324 "Assigned symlink inode new number of %pU\n",
325 get_khandle_from_ino(inode));
327 d_instantiate_new(dentry, inode);
328 orangefs_set_timeout(dentry);
329 ORANGEFS_I(inode)->getattr_time = jiffies - 1;
331 gossip_debug(GOSSIP_NAME_DEBUG,
332 "Inode (Symlink) %pU -> %pd\n",
333 get_khandle_from_ino(inode),
336 SetMtimeFlag(parent);
337 dir->i_mtime = dir->i_ctime = current_time(dir);
338 mark_inode_dirty_sync(dir);
345 static int orangefs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
347 struct orangefs_inode_s *parent = ORANGEFS_I(dir);
348 struct orangefs_kernel_op_s *new_op;
352 new_op = op_alloc(ORANGEFS_VFS_OP_MKDIR);
356 new_op->upcall.req.mkdir.parent_refn = parent->refn;
358 fill_default_sys_attrs(new_op->upcall.req.mkdir.attributes,
359 ORANGEFS_TYPE_DIRECTORY, mode);
361 strncpy(new_op->upcall.req.mkdir.d_name,
362 dentry->d_name.name, ORANGEFS_NAME_MAX);
364 ret = service_operation(new_op, __func__, get_interruptible_flag(dir));
366 gossip_debug(GOSSIP_NAME_DEBUG,
367 "Mkdir Got ORANGEFS handle %pU on fsid %d\n",
368 &new_op->downcall.resp.mkdir.refn.khandle,
369 new_op->downcall.resp.mkdir.refn.fs_id);
372 gossip_debug(GOSSIP_NAME_DEBUG,
373 "%s: failed with error code %d\n",
378 inode = orangefs_new_inode(dir->i_sb, dir, S_IFDIR | mode, 0,
379 &new_op->downcall.resp.mkdir.refn);
381 gossip_err("*** Failed to allocate orangefs dir inode\n");
382 ret = PTR_ERR(inode);
386 gossip_debug(GOSSIP_NAME_DEBUG,
387 "Assigned dir inode new number of %pU\n",
388 get_khandle_from_ino(inode));
390 d_instantiate_new(dentry, inode);
391 orangefs_set_timeout(dentry);
392 ORANGEFS_I(inode)->getattr_time = jiffies - 1;
394 gossip_debug(GOSSIP_NAME_DEBUG,
395 "Inode (Directory) %pU -> %pd\n",
396 get_khandle_from_ino(inode),
400 * NOTE: we have no good way to keep nlink consistent for directories
401 * across clients; keep constant at 1.
403 SetMtimeFlag(parent);
404 dir->i_mtime = dir->i_ctime = current_time(dir);
405 mark_inode_dirty_sync(dir);
411 static int orangefs_rename(struct inode *old_dir,
412 struct dentry *old_dentry,
413 struct inode *new_dir,
414 struct dentry *new_dentry,
417 struct orangefs_kernel_op_s *new_op;
423 gossip_debug(GOSSIP_NAME_DEBUG,
424 "orangefs_rename: called (%pd2 => %pd2) ct=%d\n",
425 old_dentry, new_dentry, d_count(new_dentry));
427 ORANGEFS_I(new_dentry->d_parent->d_inode)->getattr_time = jiffies - 1;
429 new_op = op_alloc(ORANGEFS_VFS_OP_RENAME);
433 new_op->upcall.req.rename.old_parent_refn = ORANGEFS_I(old_dir)->refn;
434 new_op->upcall.req.rename.new_parent_refn = ORANGEFS_I(new_dir)->refn;
436 strncpy(new_op->upcall.req.rename.d_old_name,
437 old_dentry->d_name.name,
439 strncpy(new_op->upcall.req.rename.d_new_name,
440 new_dentry->d_name.name,
443 ret = service_operation(new_op,
445 get_interruptible_flag(old_dentry->d_inode));
447 gossip_debug(GOSSIP_NAME_DEBUG,
448 "orangefs_rename: got downcall status %d\n",
451 if (new_dentry->d_inode)
452 new_dentry->d_inode->i_ctime = current_time(new_dentry->d_inode);
458 /* ORANGEFS implementation of VFS inode operations for directories */
459 const struct inode_operations orangefs_dir_inode_operations = {
460 .lookup = orangefs_lookup,
461 .get_acl = orangefs_get_acl,
462 .set_acl = orangefs_set_acl,
463 .create = orangefs_create,
464 .unlink = orangefs_unlink,
465 .symlink = orangefs_symlink,
466 .mkdir = orangefs_mkdir,
467 .rmdir = orangefs_unlink,
468 .rename = orangefs_rename,
469 .setattr = orangefs_setattr,
470 .getattr = orangefs_getattr,
471 .listxattr = orangefs_listxattr,
472 .permission = orangefs_permission,