blob: 5bdae85ceef7d6ae9e7c560cb23e9bb1c09ea098 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/sysv/dir.c
3 *
4 * minix/dir.c
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 *
7 * coh/dir.c
8 * Copyright (C) 1993 Pascal Haible, Bruno Haible
9 *
10 * sysv/dir.c
11 * Copyright (C) 1993 Bruno Haible
12 *
13 * SystemV/Coherent directory handling functions
14 */
15
16#include <linux/pagemap.h>
17#include <linux/highmem.h>
Nick Piggin26a64412007-10-16 01:25:21 -070018#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "sysv.h"
20
Al Viro80886292013-05-15 18:51:49 -040021static int sysv_readdir(struct file *, struct dir_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080023const struct file_operations sysv_dir_operations = {
Al Viro5ac34552009-06-16 23:59:37 -040024 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 .read = generic_read_dir,
Al Viro3b0a3c12016-04-20 23:42:46 -040026 .iterate_shared = sysv_readdir,
Christoph Hellwig1b061d92010-05-26 17:53:41 +020027 .fsync = generic_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -070028};
29
30static inline void dir_put_page(struct page *page)
31{
32 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030033 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
Nick Piggin26a64412007-10-16 01:25:21 -070036static int dir_commit_chunk(struct page *page, loff_t pos, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Nick Piggin26a64412007-10-16 01:25:21 -070038 struct address_space *mapping = page->mapping;
39 struct inode *dir = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 int err = 0;
41
Nick Piggin26a64412007-10-16 01:25:21 -070042 block_write_end(NULL, mapping, pos, len, len, page, NULL);
43 if (pos+len > dir->i_size) {
44 i_size_write(dir, pos+len);
45 mark_inode_dirty(dir);
46 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 if (IS_DIRSYNC(dir))
48 err = write_one_page(page, 1);
49 else
50 unlock_page(page);
51 return err;
52}
53
54static struct page * dir_get_page(struct inode *dir, unsigned long n)
55{
56 struct address_space *mapping = dir->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -070057 struct page *page = read_mapping_page(mapping, n, NULL);
Nick Piggin6fe69002007-05-06 14:49:04 -070058 if (!IS_ERR(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Al Viro80886292013-05-15 18:51:49 -040063static int sysv_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
Al Viro80886292013-05-15 18:51:49 -040065 unsigned long pos = ctx->pos;
66 struct inode *inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct super_block *sb = inode->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unsigned long npages = dir_pages(inode);
Al Viro80886292013-05-15 18:51:49 -040069 unsigned offset;
70 unsigned long n;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Al Viro80886292013-05-15 18:51:49 -040072 ctx->pos = pos = (pos + SYSV_DIRSIZE-1) & ~(SYSV_DIRSIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (pos >= inode->i_size)
Al Viro80886292013-05-15 18:51:49 -040074 return 0;
75
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030076 offset = pos & ~PAGE_MASK;
77 n = pos >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 for ( ; n < npages; n++, offset = 0) {
80 char *kaddr, *limit;
81 struct sysv_dir_entry *de;
82 struct page *page = dir_get_page(inode, n);
83
84 if (IS_ERR(page))
85 continue;
86 kaddr = (char *)page_address(page);
87 de = (struct sysv_dir_entry *)(kaddr+offset);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030088 limit = kaddr + PAGE_SIZE - SYSV_DIRSIZE;
Al Viro80886292013-05-15 18:51:49 -040089 for ( ;(char*)de <= limit; de++, ctx->pos += sizeof(*de)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 char *name = de->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 if (!de->inode)
93 continue;
94
Al Viro80886292013-05-15 18:51:49 -040095 if (!dir_emit(ctx, name, strnlen(name,SYSV_NAMELEN),
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 fs16_to_cpu(SYSV_SB(sb), de->inode),
Al Viro80886292013-05-15 18:51:49 -040097 DT_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 dir_put_page(page);
Al Viro80886292013-05-15 18:51:49 -040099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101 }
102 dir_put_page(page);
103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return 0;
105}
106
107/* compare strings: name[0..len-1] (not zero-terminated) and
108 * buffer[0..] (filled with zeroes up to buffer[0..maxlen-1])
109 */
110static inline int namecompare(int len, int maxlen,
111 const char * name, const char * buffer)
112{
113 if (len < maxlen && buffer[len])
114 return 0;
115 return !memcmp(name, buffer, len);
116}
117
118/*
119 * sysv_find_entry()
120 *
121 * finds an entry in the specified directory with the wanted name. It
122 * returns the cache buffer in which the entry was found, and the entry
123 * itself (as a parameter - res_dir). It does NOT read the inode of the
124 * entry - you'll have to do that yourself if you want to.
125 */
126struct sysv_dir_entry *sysv_find_entry(struct dentry *dentry, struct page **res_page)
127{
128 const char * name = dentry->d_name.name;
129 int namelen = dentry->d_name.len;
David Howells2b0143b2015-03-17 22:25:59 +0000130 struct inode * dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 unsigned long start, n;
132 unsigned long npages = dir_pages(dir);
133 struct page *page = NULL;
134 struct sysv_dir_entry *de;
135
136 *res_page = NULL;
137
138 start = SYSV_I(dir)->i_dir_start_lookup;
139 if (start >= npages)
140 start = 0;
141 n = start;
142
143 do {
144 char *kaddr;
145 page = dir_get_page(dir, n);
146 if (!IS_ERR(page)) {
147 kaddr = (char*)page_address(page);
148 de = (struct sysv_dir_entry *) kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300149 kaddr += PAGE_SIZE - SYSV_DIRSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 for ( ; (char *) de <= kaddr ; de++) {
151 if (!de->inode)
152 continue;
153 if (namecompare(namelen, SYSV_NAMELEN,
154 name, de->name))
155 goto found;
156 }
Dan Carpenter404e7812010-04-21 12:30:32 +0200157 dir_put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 if (++n >= npages)
161 n = 0;
162 } while (n != start);
163
164 return NULL;
165
166found:
167 SYSV_I(dir)->i_dir_start_lookup = n;
168 *res_page = page;
169 return de;
170}
171
172int sysv_add_link(struct dentry *dentry, struct inode *inode)
173{
David Howells2b0143b2015-03-17 22:25:59 +0000174 struct inode *dir = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 const char * name = dentry->d_name.name;
176 int namelen = dentry->d_name.len;
177 struct page *page = NULL;
178 struct sysv_dir_entry * de;
179 unsigned long npages = dir_pages(dir);
180 unsigned long n;
181 char *kaddr;
Nick Piggin26a64412007-10-16 01:25:21 -0700182 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 int err;
184
185 /* We take care of directory expansion in the same loop */
186 for (n = 0; n <= npages; n++) {
187 page = dir_get_page(dir, n);
188 err = PTR_ERR(page);
189 if (IS_ERR(page))
190 goto out;
191 kaddr = (char*)page_address(page);
192 de = (struct sysv_dir_entry *)kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300193 kaddr += PAGE_SIZE - SYSV_DIRSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 while ((char *)de <= kaddr) {
195 if (!de->inode)
196 goto got_it;
197 err = -EEXIST;
198 if (namecompare(namelen, SYSV_NAMELEN, name, de->name))
199 goto out_page;
200 de++;
201 }
202 dir_put_page(page);
203 }
204 BUG();
205 return -EINVAL;
206
207got_it:
Nick Piggin26a64412007-10-16 01:25:21 -0700208 pos = page_offset(page) +
209 (char*)de - (char*)page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 lock_page(page);
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200211 err = sysv_prepare_chunk(page, pos, SYSV_DIRSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (err)
213 goto out_unlock;
214 memcpy (de->name, name, namelen);
215 memset (de->name + namelen, 0, SYSV_DIRSIZE - namelen - 2);
216 de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino);
Nick Piggin26a64412007-10-16 01:25:21 -0700217 err = dir_commit_chunk(page, pos, SYSV_DIRSIZE);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700218 dir->i_mtime = dir->i_ctime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 mark_inode_dirty(dir);
220out_page:
221 dir_put_page(page);
222out:
223 return err;
224out_unlock:
225 unlock_page(page);
226 goto out_page;
227}
228
229int sysv_delete_entry(struct sysv_dir_entry *de, struct page *page)
230{
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200231 struct inode *inode = page->mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 char *kaddr = (char*)page_address(page);
Nick Piggin26a64412007-10-16 01:25:21 -0700233 loff_t pos = page_offset(page) + (char *)de - kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 int err;
235
236 lock_page(page);
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200237 err = sysv_prepare_chunk(page, pos, SYSV_DIRSIZE);
Eric Sesterhennd6735bf2006-04-02 13:39:21 +0200238 BUG_ON(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 de->inode = 0;
Nick Piggin26a64412007-10-16 01:25:21 -0700240 err = dir_commit_chunk(page, pos, SYSV_DIRSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 dir_put_page(page);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700242 inode->i_ctime = inode->i_mtime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 mark_inode_dirty(inode);
244 return err;
245}
246
247int sysv_make_empty(struct inode *inode, struct inode *dir)
248{
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200249 struct page *page = grab_cache_page(inode->i_mapping, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 struct sysv_dir_entry * de;
251 char *base;
252 int err;
253
254 if (!page)
255 return -ENOMEM;
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200256 err = sysv_prepare_chunk(page, 0, 2 * SYSV_DIRSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (err) {
258 unlock_page(page);
259 goto fail;
260 }
Nick Piggin26a64412007-10-16 01:25:21 -0700261 kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 base = (char*)page_address(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300264 memset(base, 0, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 de = (struct sysv_dir_entry *) base;
267 de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino);
268 strcpy(de->name,".");
269 de++;
270 de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), dir->i_ino);
271 strcpy(de->name,"..");
272
Nick Piggin26a64412007-10-16 01:25:21 -0700273 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 err = dir_commit_chunk(page, 0, 2 * SYSV_DIRSIZE);
275fail:
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300276 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return err;
278}
279
280/*
281 * routine to check that the specified directory is empty (for rmdir)
282 */
283int sysv_empty_dir(struct inode * inode)
284{
285 struct super_block *sb = inode->i_sb;
286 struct page *page = NULL;
287 unsigned long i, npages = dir_pages(inode);
288
289 for (i = 0; i < npages; i++) {
290 char *kaddr;
291 struct sysv_dir_entry * de;
292 page = dir_get_page(inode, i);
293
294 if (IS_ERR(page))
295 continue;
296
297 kaddr = (char *)page_address(page);
298 de = (struct sysv_dir_entry *)kaddr;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300299 kaddr += PAGE_SIZE-SYSV_DIRSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 for ( ;(char *)de <= kaddr; de++) {
302 if (!de->inode)
303 continue;
304 /* check for . and .. */
305 if (de->name[0] != '.')
306 goto not_empty;
307 if (!de->name[1]) {
308 if (de->inode == cpu_to_fs16(SYSV_SB(sb),
309 inode->i_ino))
310 continue;
311 goto not_empty;
312 }
313 if (de->name[1] != '.' || de->name[2])
314 goto not_empty;
315 }
316 dir_put_page(page);
317 }
318 return 1;
319
320not_empty:
321 dir_put_page(page);
322 return 0;
323}
324
325/* Releases the page */
326void sysv_set_link(struct sysv_dir_entry *de, struct page *page,
327 struct inode *inode)
328{
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200329 struct inode *dir = page->mapping->host;
Nick Piggin26a64412007-10-16 01:25:21 -0700330 loff_t pos = page_offset(page) +
331 (char *)de-(char*)page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 int err;
333
334 lock_page(page);
Christoph Hellwigf4e420d2010-06-04 11:29:56 +0200335 err = sysv_prepare_chunk(page, pos, SYSV_DIRSIZE);
Eric Sesterhennd6735bf2006-04-02 13:39:21 +0200336 BUG_ON(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 de->inode = cpu_to_fs16(SYSV_SB(inode->i_sb), inode->i_ino);
Nick Piggin26a64412007-10-16 01:25:21 -0700338 err = dir_commit_chunk(page, pos, SYSV_DIRSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 dir_put_page(page);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700340 dir->i_mtime = dir->i_ctime = current_time(dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 mark_inode_dirty(dir);
342}
343
344struct sysv_dir_entry * sysv_dotdot (struct inode *dir, struct page **p)
345{
346 struct page *page = dir_get_page(dir, 0);
347 struct sysv_dir_entry *de = NULL;
348
349 if (!IS_ERR(page)) {
350 de = (struct sysv_dir_entry*) page_address(page) + 1;
351 *p = page;
352 }
353 return de;
354}
355
356ino_t sysv_inode_by_name(struct dentry *dentry)
357{
358 struct page *page;
359 struct sysv_dir_entry *de = sysv_find_entry (dentry, &page);
360 ino_t res = 0;
361
362 if (de) {
363 res = fs16_to_cpu(SYSV_SB(dentry->d_sb), de->inode);
364 dir_put_page(page);
365 }
366 return res;
367}