blob: ccf0f00030bf4652a56eb54f0d7af2c9f19a2e89 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/minix/namei.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8#include "minix.h"
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010static int add_nondir(struct dentry *dentry, struct inode *inode)
11{
12 int err = minix_add_link(dentry, inode);
13 if (!err) {
14 d_instantiate(dentry, inode);
15 return 0;
16 }
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -080017 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 iput(inode);
19 return err;
20}
21
Al Viro00cd8dd2012-06-10 17:13:09 -040022static struct dentry *minix_lookup(struct inode * dir, struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
24 struct inode * inode = NULL;
25 ino_t ino;
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 if (dentry->d_name.len > minix_sb(dir->i_sb)->s_namelen)
28 return ERR_PTR(-ENAMETOOLONG);
29
30 ino = minix_inode_by_name(dentry);
31 if (ino) {
David Howellsa90a08802008-02-07 00:15:44 -080032 inode = minix_iget(dir->i_sb, ino);
33 if (IS_ERR(inode))
34 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 }
36 d_add(dentry, inode);
37 return NULL;
38}
39
Al Viro1a67aaf2011-07-26 01:52:52 -040040static int minix_mknod(struct inode * dir, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 int error;
43 struct inode *inode;
44
45 if (!old_valid_dev(rdev))
46 return -EINVAL;
47
Dmitry Monakhov9eed1fb2010-03-04 17:32:14 +030048 inode = minix_new_inode(dir, mode, &error);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 if (inode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 minix_set_inode(inode, rdev);
52 mark_inode_dirty(inode);
53 error = add_nondir(dentry, inode);
54 }
55 return error;
56}
57
Al Viro60545d02013-06-07 01:20:27 -040058static int minix_tmpfile(struct inode *dir, struct dentry *dentry, umode_t mode)
59{
60 int error;
61 struct inode *inode = minix_new_inode(dir, mode, &error);
62 if (inode) {
63 minix_set_inode(inode, 0);
64 mark_inode_dirty(inode);
65 d_tmpfile(dentry, inode);
66 }
67 return error;
68}
69
Al Viro4acdaf22011-07-26 01:42:34 -040070static int minix_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040071 bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
73 return minix_mknod(dir, dentry, mode, 0);
74}
75
76static int minix_symlink(struct inode * dir, struct dentry *dentry,
77 const char * symname)
78{
79 int err = -ENAMETOOLONG;
80 int i = strlen(symname)+1;
81 struct inode * inode;
82
83 if (i > dir->i_sb->s_blocksize)
84 goto out;
85
Dmitry Monakhov9eed1fb2010-03-04 17:32:14 +030086 inode = minix_new_inode(dir, S_IFLNK | 0777, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (!inode)
88 goto out;
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 minix_set_inode(inode, 0);
91 err = page_symlink(inode, symname, i);
92 if (err)
93 goto out_fail;
94
95 err = add_nondir(dentry, inode);
96out:
97 return err;
98
99out_fail:
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800100 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 iput(inode);
102 goto out;
103}
104
105static int minix_link(struct dentry * old_dentry, struct inode * dir,
106 struct dentry *dentry)
107{
David Howells2b0143b2015-03-17 22:25:59 +0000108 struct inode *inode = d_inode(old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Deepa Dinamani02027d42016-09-14 07:48:05 -0700110 inode->i_ctime = current_time(inode);
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800111 inode_inc_link_count(inode);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400112 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return add_nondir(dentry, inode);
114}
115
Al Viro18bb1db2011-07-26 01:41:39 -0400116static int minix_mkdir(struct inode * dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct inode * inode;
Al Viro8de52772012-02-06 12:45:27 -0500119 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800121 inode_inc_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jorge Boncompte [DTI2]eee743f2010-09-09 16:38:19 -0700123 inode = minix_new_inode(dir, S_IFDIR | mode, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (!inode)
125 goto out_dir;
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 minix_set_inode(inode, 0);
128
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800129 inode_inc_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 err = minix_make_empty(inode, dir);
132 if (err)
133 goto out_fail;
134
135 err = minix_add_link(dentry, inode);
136 if (err)
137 goto out_fail;
138
139 d_instantiate(dentry, inode);
140out:
141 return err;
142
143out_fail:
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800144 inode_dec_link_count(inode);
145 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 iput(inode);
147out_dir:
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800148 inode_dec_link_count(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 goto out;
150}
151
152static int minix_unlink(struct inode * dir, struct dentry *dentry)
153{
154 int err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +0000155 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 struct page * page;
157 struct minix_dir_entry * de;
158
159 de = minix_find_entry(dentry, &page);
160 if (!de)
161 goto end_unlink;
162
163 err = minix_delete_entry(de, page);
164 if (err)
165 goto end_unlink;
166
167 inode->i_ctime = dir->i_ctime;
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800168 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169end_unlink:
170 return err;
171}
172
173static int minix_rmdir(struct inode * dir, struct dentry *dentry)
174{
David Howells2b0143b2015-03-17 22:25:59 +0000175 struct inode * inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 int err = -ENOTEMPTY;
177
178 if (minix_empty_dir(inode)) {
179 err = minix_unlink(dir, dentry);
180 if (!err) {
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800181 inode_dec_link_count(dir);
182 inode_dec_link_count(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
184 }
185 return err;
186}
187
188static int minix_rename(struct inode * old_dir, struct dentry *old_dentry,
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200189 struct inode * new_dir, struct dentry *new_dentry,
190 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
David Howells2b0143b2015-03-17 22:25:59 +0000192 struct inode * old_inode = d_inode(old_dentry);
193 struct inode * new_inode = d_inode(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct page * dir_page = NULL;
195 struct minix_dir_entry * dir_de = NULL;
196 struct page * old_page;
197 struct minix_dir_entry * old_de;
198 int err = -ENOENT;
199
Miklos Szeredif03b8ad2016-09-27 11:03:57 +0200200 if (flags & ~RENAME_NOREPLACE)
201 return -EINVAL;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 old_de = minix_find_entry(old_dentry, &old_page);
204 if (!old_de)
205 goto out;
206
207 if (S_ISDIR(old_inode->i_mode)) {
208 err = -EIO;
209 dir_de = minix_dotdot(old_inode, &dir_page);
210 if (!dir_de)
211 goto out_old;
212 }
213
214 if (new_inode) {
215 struct page * new_page;
216 struct minix_dir_entry * new_de;
217
218 err = -ENOTEMPTY;
219 if (dir_de && !minix_empty_dir(new_inode))
220 goto out_dir;
221
222 err = -ENOENT;
223 new_de = minix_find_entry(new_dentry, &new_page);
224 if (!new_de)
225 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 minix_set_link(new_de, new_page, old_inode);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700227 new_inode->i_ctime = current_time(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (dir_de)
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700229 drop_nlink(new_inode);
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800230 inode_dec_link_count(new_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 err = minix_add_link(new_dentry, old_inode);
Al Viro6f880492011-03-02 09:41:38 -0500233 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 goto out_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (dir_de)
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800236 inode_inc_link_count(new_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
239 minix_delete_entry(old_de, old_page);
Al Viro6f880492011-03-02 09:41:38 -0500240 mark_inode_dirty(old_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 if (dir_de) {
243 minix_set_link(dir_de, dir_page, new_dir);
Alexey Dobriyan78ec7b62006-03-23 03:00:51 -0800244 inode_dec_link_count(old_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 return 0;
247
248out_dir:
249 if (dir_de) {
250 kunmap(dir_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300251 put_page(dir_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253out_old:
254 kunmap(old_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300255 put_page(old_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256out:
257 return err;
258}
259
260/*
261 * directories can handle most operations...
262 */
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800263const struct inode_operations minix_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 .create = minix_create,
265 .lookup = minix_lookup,
266 .link = minix_link,
267 .unlink = minix_unlink,
268 .symlink = minix_symlink,
269 .mkdir = minix_mkdir,
270 .rmdir = minix_rmdir,
271 .mknod = minix_mknod,
272 .rename = minix_rename,
273 .getattr = minix_getattr,
Al Viro60545d02013-06-07 01:20:27 -0400274 .tmpfile = minix_tmpfile,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};