1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/sysv/namei.c
6 * Copyright (C) 1991, 1992 Linus Torvalds
9 * Copyright (C) 1993 Pascal Haible, Bruno Haible
12 * Copyright (C) 1993 Bruno Haible
13 * Copyright (C) 1997, 1998 Krzysztof G. Baranowski
16 #include <linux/pagemap.h>
19 static int add_nondir(struct dentry *dentry, struct inode *inode)
21 int err = sysv_add_link(dentry, inode);
23 d_instantiate(dentry, inode);
26 inode_dec_link_count(inode);
31 static int sysv_hash(const struct dentry *dentry, struct qstr *qstr)
33 /* Truncate the name in place, avoids having to define a compare
35 if (qstr->len > SYSV_NAMELEN) {
36 qstr->len = SYSV_NAMELEN;
37 qstr->hash = full_name_hash(dentry, qstr->name, qstr->len);
42 const struct dentry_operations sysv_dentry_operations = {
46 static struct dentry *sysv_lookup(struct inode * dir, struct dentry * dentry, unsigned int flags)
48 struct inode * inode = NULL;
51 if (dentry->d_name.len > SYSV_NAMELEN)
52 return ERR_PTR(-ENAMETOOLONG);
53 ino = sysv_inode_by_name(dentry);
55 inode = sysv_iget(dir->i_sb, ino);
56 return d_splice_alias(inode, dentry);
59 static int sysv_mknod(struct inode * dir, struct dentry * dentry, umode_t mode, dev_t rdev)
64 if (!old_valid_dev(rdev))
67 inode = sysv_new_inode(dir, mode);
71 sysv_set_inode(inode, rdev);
72 mark_inode_dirty(inode);
73 err = add_nondir(dentry, inode);
78 static int sysv_create(struct inode * dir, struct dentry * dentry, umode_t mode, bool excl)
80 return sysv_mknod(dir, dentry, mode, 0);
83 static int sysv_symlink(struct inode * dir, struct dentry * dentry,
86 int err = -ENAMETOOLONG;
87 int l = strlen(symname)+1;
90 if (l > dir->i_sb->s_blocksize)
93 inode = sysv_new_inode(dir, S_IFLNK|0777);
98 sysv_set_inode(inode, 0);
99 err = page_symlink(inode, symname, l);
103 mark_inode_dirty(inode);
104 err = add_nondir(dentry, inode);
109 inode_dec_link_count(inode);
114 static int sysv_link(struct dentry * old_dentry, struct inode * dir,
115 struct dentry * dentry)
117 struct inode *inode = d_inode(old_dentry);
119 inode->i_ctime = current_time(inode);
120 inode_inc_link_count(inode);
123 return add_nondir(dentry, inode);
126 static int sysv_mkdir(struct inode * dir, struct dentry *dentry, umode_t mode)
128 struct inode * inode;
131 inode_inc_link_count(dir);
133 inode = sysv_new_inode(dir, S_IFDIR|mode);
134 err = PTR_ERR(inode);
138 sysv_set_inode(inode, 0);
140 inode_inc_link_count(inode);
142 err = sysv_make_empty(inode, dir);
146 err = sysv_add_link(dentry, inode);
150 d_instantiate(dentry, inode);
155 inode_dec_link_count(inode);
156 inode_dec_link_count(inode);
159 inode_dec_link_count(dir);
163 static int sysv_unlink(struct inode * dir, struct dentry * dentry)
165 struct inode * inode = d_inode(dentry);
167 struct sysv_dir_entry * de;
170 de = sysv_find_entry(dentry, &page);
174 err = sysv_delete_entry (de, page);
178 inode->i_ctime = dir->i_ctime;
179 inode_dec_link_count(inode);
184 static int sysv_rmdir(struct inode * dir, struct dentry * dentry)
186 struct inode *inode = d_inode(dentry);
187 int err = -ENOTEMPTY;
189 if (sysv_empty_dir(inode)) {
190 err = sysv_unlink(dir, dentry);
193 inode_dec_link_count(inode);
194 inode_dec_link_count(dir);
201 * Anybody can rename anything with this: the permission checks are left to the
202 * higher-level routines.
204 static int sysv_rename(struct inode * old_dir, struct dentry * old_dentry,
205 struct inode * new_dir, struct dentry * new_dentry,
208 struct inode * old_inode = d_inode(old_dentry);
209 struct inode * new_inode = d_inode(new_dentry);
210 struct page * dir_page = NULL;
211 struct sysv_dir_entry * dir_de = NULL;
212 struct page * old_page;
213 struct sysv_dir_entry * old_de;
216 if (flags & ~RENAME_NOREPLACE)
219 old_de = sysv_find_entry(old_dentry, &old_page);
223 if (S_ISDIR(old_inode->i_mode)) {
225 dir_de = sysv_dotdot(old_inode, &dir_page);
231 struct page * new_page;
232 struct sysv_dir_entry * new_de;
235 if (dir_de && !sysv_empty_dir(new_inode))
239 new_de = sysv_find_entry(new_dentry, &new_page);
242 sysv_set_link(new_de, new_page, old_inode);
243 new_inode->i_ctime = current_time(new_inode);
245 drop_nlink(new_inode);
246 inode_dec_link_count(new_inode);
248 err = sysv_add_link(new_dentry, old_inode);
252 inode_inc_link_count(new_dir);
255 sysv_delete_entry(old_de, old_page);
256 mark_inode_dirty(old_inode);
259 sysv_set_link(dir_de, dir_page, new_dir);
260 inode_dec_link_count(old_dir);
277 * directories can handle most operations...
279 const struct inode_operations sysv_dir_inode_operations = {
280 .create = sysv_create,
281 .lookup = sysv_lookup,
283 .unlink = sysv_unlink,
284 .symlink = sysv_symlink,
288 .rename = sysv_rename,
289 .getattr = sysv_getattr,