2 * linux/fs/sysv/namei.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
8 * Copyright (C) 1993 Pascal Haible, Bruno Haible
11 * Copyright (C) 1993 Bruno Haible
12 * Copyright (C) 1997, 1998 Krzysztof G. Baranowski
15 #include <linux/pagemap.h>
16 #include <linux/smp_lock.h>
19 static inline void inc_count(struct inode *inode)
22 mark_inode_dirty(inode);
25 static inline void dec_count(struct inode *inode)
28 mark_inode_dirty(inode);
31 static int add_nondir(struct dentry *dentry, struct inode *inode)
33 int err = sysv_add_link(dentry, inode);
35 d_instantiate(dentry, inode);
43 static int sysv_hash(struct dentry *dentry, struct qstr *qstr)
45 /* Truncate the name in place, avoids having to define a compare
47 if (qstr->len > SYSV_NAMELEN) {
48 qstr->len = SYSV_NAMELEN;
49 qstr->hash = full_name_hash(qstr->name, qstr->len);
54 struct dentry_operations sysv_dentry_operations = {
58 static struct dentry *sysv_lookup(struct inode * dir, struct dentry * dentry, struct nameidata *nd)
60 struct inode * inode = NULL;
63 dentry->d_op = dir->i_sb->s_root->d_op;
64 if (dentry->d_name.len > SYSV_NAMELEN)
65 return ERR_PTR(-ENAMETOOLONG);
66 ino = sysv_inode_by_name(dentry);
69 inode = iget(dir->i_sb, ino);
71 return ERR_PTR(-EACCES);
77 static int sysv_mknod(struct inode * dir, struct dentry * dentry, int mode, dev_t rdev)
82 if (!old_valid_dev(rdev))
85 inode = sysv_new_inode(dir, mode);
89 sysv_set_inode(inode, rdev);
90 mark_inode_dirty(inode);
91 err = add_nondir(dentry, inode);
96 static int sysv_create(struct inode * dir, struct dentry * dentry, int mode, struct nameidata *nd)
98 return sysv_mknod(dir, dentry, mode, 0);
101 static int sysv_symlink(struct inode * dir, struct dentry * dentry,
102 const char * symname)
104 int err = -ENAMETOOLONG;
105 int l = strlen(symname)+1;
106 struct inode * inode;
108 if (l > dir->i_sb->s_blocksize)
111 inode = sysv_new_inode(dir, S_IFLNK|0777);
112 err = PTR_ERR(inode);
116 sysv_set_inode(inode, 0);
117 err = page_symlink(inode, symname, l);
121 mark_inode_dirty(inode);
122 err = add_nondir(dentry, inode);
132 static int sysv_link(struct dentry * old_dentry, struct inode * dir,
133 struct dentry * dentry)
135 struct inode *inode = old_dentry->d_inode;
137 if (inode->i_nlink >= SYSV_SB(inode->i_sb)->s_link_max)
140 inode->i_ctime = CURRENT_TIME_SEC;
142 atomic_inc(&inode->i_count);
144 return add_nondir(dentry, inode);
147 static int sysv_mkdir(struct inode * dir, struct dentry *dentry, int mode)
149 struct inode * inode;
152 if (dir->i_nlink >= SYSV_SB(dir->i_sb)->s_link_max)
156 inode = sysv_new_inode(dir, S_IFDIR|mode);
157 err = PTR_ERR(inode);
161 sysv_set_inode(inode, 0);
165 err = sysv_make_empty(inode, dir);
169 err = sysv_add_link(dentry, inode);
173 d_instantiate(dentry, inode);
186 static int sysv_unlink(struct inode * dir, struct dentry * dentry)
188 struct inode * inode = dentry->d_inode;
190 struct sysv_dir_entry * de;
193 de = sysv_find_entry(dentry, &page);
197 err = sysv_delete_entry (de, page);
201 inode->i_ctime = dir->i_ctime;
207 static int sysv_rmdir(struct inode * dir, struct dentry * dentry)
209 struct inode *inode = dentry->d_inode;
210 int err = -ENOTEMPTY;
212 if (sysv_empty_dir(inode)) {
213 err = sysv_unlink(dir, dentry);
224 * Anybody can rename anything with this: the permission checks are left to the
225 * higher-level routines.
227 static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry,
228 struct inode * new_dir, struct dentry * new_dentry)
230 struct inode * old_inode = old_dentry->d_inode;
231 struct inode * new_inode = new_dentry->d_inode;
232 struct page * dir_page = NULL;
233 struct sysv_dir_entry * dir_de = NULL;
234 struct page * old_page;
235 struct sysv_dir_entry * old_de;
238 old_de = sysv_find_entry(old_dentry, &old_page);
242 if (S_ISDIR(old_inode->i_mode)) {
244 dir_de = sysv_dotdot(old_inode, &dir_page);
250 struct page * new_page;
251 struct sysv_dir_entry * new_de;
254 if (dir_de && !sysv_empty_dir(new_inode))
258 new_de = sysv_find_entry(new_dentry, &new_page);
261 inc_count(old_inode);
262 sysv_set_link(new_de, new_page, old_inode);
263 new_inode->i_ctime = CURRENT_TIME_SEC;
265 new_inode->i_nlink--;
266 dec_count(new_inode);
270 if (new_dir->i_nlink >= SYSV_SB(new_dir->i_sb)->s_link_max)
273 inc_count(old_inode);
274 err = sysv_add_link(new_dentry, old_inode);
276 dec_count(old_inode);
283 sysv_delete_entry(old_de, old_page);
284 dec_count(old_inode);
287 sysv_set_link(dir_de, dir_page, new_dir);
295 page_cache_release(dir_page);
299 page_cache_release(old_page);
305 * directories can handle most operations...
307 struct inode_operations sysv_dir_inode_operations = {
308 .create = sysv_create,
309 .lookup = sysv_lookup,
311 .unlink = sysv_unlink,
312 .symlink = sysv_symlink,
316 .rename = sysv_rename,
317 .getattr = sysv_getattr,