Whamcloud - gitweb
- module insert code moved to tests/common.sh
[fs/lustre-release.git] / lustre / llite / namei.c
1 /*
2  *
3  * This code is issued under the GNU General Public License.
4  * See the file COPYING in this distribution
5  *
6  * Copyright (C) 1992, 1993, 1994, 1995
7  * Remy Card (card@masi.ibp.fr)
8  * Laboratoire MASI - Institut Blaise Pascal
9  * Universite Pierre et Marie Curie (Paris VI)
10  *
11  *  from
12  *
13  *  linux/fs/ext2/namei.c
14  *
15  *  Copyright (C) 1991, 1992  Linus Torvalds
16  *
17  *  Big-endian to little-endian byte-swapping/bitmaps by
18  *        David S. Miller (davem@caip.rutgers.edu), 1995
19  *  Directory entry file type support and forward compatibility hooks
20  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
21  * 
22  *  Changes for use in OBDFS
23  *  Copyright (c) 1999, Seagate Technology Inc.
24  *  Copyright (C) 2001, Cluster File Systems, Inc.
25  *                       Rewritten based on recent ext2 page cache use.
26  * 
27  */
28
29 #include <linux/fs.h>
30 #include <linux/locks.h>
31 #include <linux/quotaops.h>
32
33 #define DEBUG_SUBSYSTEM S_LLIGHT
34
35 #include <linux/obd_support.h>
36 #include <linux/lustre_light.h>
37 extern struct address_space_operations ll_aops;
38
39 /* from super.c */
40 extern void ll_change_inode(struct inode *inode);
41 extern int ll_setattr(struct dentry *de, struct iattr *attr);
42
43 /* from dir.c */
44 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
45 ino_t ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
46 int ext2_make_empty(struct inode *inode, struct inode *parent);
47 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
48                    struct dentry *dentry, struct page ** res_page);
49 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
50 int ext2_empty_dir (struct inode * inode);
51 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
52 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
53                    struct page *page, struct inode *inode);
54
55 /*
56  * Couple of helper functions - make the code slightly cleaner.
57  */
58 static inline void ext2_inc_count(struct inode *inode)
59 {
60         inode->i_nlink++;
61 }
62
63 /* postpone the disk update until the inode really goes away */ 
64 static inline void ext2_dec_count(struct inode *inode)
65 {
66         inode->i_nlink--;
67 }
68
69 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
70 {
71         int err;
72         err = ll_add_link(dentry, inode);
73         if (!err) {
74                 d_instantiate(dentry, inode);
75                 return 0;
76         }
77         ext2_dec_count(inode);
78         iput(inode);
79         return err;
80 }
81
82 /* methods */
83 static struct dentry *ll_lookup(struct inode * dir, struct dentry *dentry)
84 {
85         struct ptlrpc_request *request;
86         struct inode * inode = NULL;
87         struct ll_sb_info *sbi = ll_i2sbi(dir);
88         int err;
89         int type;
90         ino_t ino;
91         
92         ENTRY;
93         if (dentry->d_name.len > EXT2_NAME_LEN)
94                 return ERR_PTR(-ENAMETOOLONG);
95
96         ino = ll_inode_by_name(dir, dentry, &type);
97         if (!ino)
98                 goto negative;
99
100         err = mdc_getattr(&sbi->ll_mds_client, ino, type,
101                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, &request);
102         if ( err ) {
103                 CERROR("obdo_fromid failed\n");
104                 EXIT;
105                 return ERR_PTR(-abs(err)); 
106         }
107
108         inode = iget4(dir->i_sb, ino, NULL, request->rq_rep.mds);
109
110         ptlrpc_free_req(request);
111         if (!inode) 
112                 return ERR_PTR(-ENOMEM);
113
114  negative:
115         d_add(dentry, inode);
116         return NULL;
117 }
118
119
120 /*
121  * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
122  *
123  * `len <= EXT2_NAME_LEN' is guaranteed by caller.
124  * `de != NULL' is guaranteed by caller.
125  */
126 static inline int ext2_match (int len, const char * const name,
127                        struct ext2_dir_entry_2 * de)
128 {
129         if (len != de->name_len)
130                 return 0;
131         if (!de->inode)
132                 return 0;
133         return !memcmp(name, de->name, len);
134 }
135
136 static struct inode *ll_create_node(struct inode *dir, const char *name, 
137                                     int namelen, const char *tgt, int tgtlen, 
138                                     int mode, __u64 id)
139 {
140         struct inode *inode;
141         struct ptlrpc_request *request;
142         struct mds_rep *rep;
143         int err;
144         time_t time = CURRENT_TIME;
145         struct ll_sb_info *sbi = ll_i2sbi(dir);
146
147         ENTRY;
148
149         err = mdc_create(&sbi->ll_mds_client, dir, name, namelen, tgt, tgtlen,
150                          mode, id,  current->uid, current->gid, time, &request);
151         if (err) { 
152                 ptlrpc_free_req(request);
153                 inode = ERR_PTR(err);
154                 EXIT;
155                 goto out;
156         }
157         rep = request->rq_rep.mds;
158         rep->valid = OBD_MD_FLNOTOBD;
159
160         rep->objid = id; 
161         rep->nlink = 1;
162         rep->atime = rep->ctime = rep->mtime = time;
163         rep->mode = mode;
164         CDEBUG(D_INODE, "-- new_inode: objid %lld, ino %d, mode %o\n",
165                rep->objid, rep->ino, rep->mode); 
166
167         inode = iget4(dir->i_sb, rep->ino, NULL, rep);
168         if (IS_ERR(inode)) {
169                 CERROR("new_inode -fatal:  %ld\n", PTR_ERR(inode));
170                 inode = ERR_PTR(-EIO);
171                 EXIT;
172                 goto out;
173         }
174
175         if (!list_empty(&inode->i_dentry)) {
176                 CERROR("new_inode -fatal: aliases %d, ct %d lnk %d\n", 
177                        rep->ino, atomic_read(&inode->i_count), 
178                        inode->i_nlink);
179                 iput(inode);
180                 inode = ERR_PTR(-EIO);
181                 EXIT;
182                 goto out;
183         }
184
185         EXIT;
186  out:
187         ptlrpc_free_req(request);
188         return inode;
189 } /* ll_new_inode */
190
191 int ll_mdc_unlink(struct inode *dir, const char *name, int len)
192 {
193         struct ptlrpc_request *request;
194         int err;
195         struct ll_sb_info *sbi = ll_i2sbi(dir);
196
197         ENTRY;
198
199         err = mdc_unlink(&sbi->ll_mds_client, dir, name, len, &request);
200         ptlrpc_free_req(request);
201
202         EXIT;
203         return err;
204 }
205
206 int ll_mdc_link(struct dentry *src, struct inode *dir, 
207                 const char *name, int len)
208 {
209         struct ptlrpc_request *request;
210         int err;
211         struct ll_sb_info *sbi = ll_i2sbi(dir);
212
213         ENTRY;
214
215         err = mdc_link(&sbi->ll_mds_client, src, dir, name, len, &request);
216         ptlrpc_free_req(request);
217
218         EXIT;
219         return err;
220 }
221
222 int ll_mdc_rename(struct inode *src, struct inode *tgt, 
223                   struct dentry *old, struct dentry *new)
224 {
225         struct ptlrpc_request *request;
226         int err;
227         struct ll_sb_info *sbi = ll_i2sbi(src);
228
229         ENTRY;
230
231         err = mdc_rename(&sbi->ll_mds_client, src, tgt, 
232                          old->d_name.name, old->d_name.len, 
233                          new->d_name.name, new->d_name.len, &request);
234         ptlrpc_free_req(request);
235
236         EXIT;
237         return err;
238 }
239
240 /*
241  * By the time this is called, we already have created
242  * the directory cache entry for the new file, but it
243  * is so far negative - it has no inode.
244  *
245  * If the create succeeds, we fill in the inode information
246  * with d_instantiate(). 
247  */
248
249 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
250 {
251         int err; 
252         struct obdo oa;
253         struct inode * inode;
254
255         memset(&oa, 0, sizeof(oa)); 
256         oa.o_valid = OBD_MD_FLMODE; 
257         oa.o_mode = S_IFREG | 0600;
258         err = obd_create(ll_i2obdconn(dir), &oa);  
259         if (err) { 
260                 EXIT; 
261                 return err;
262         }
263
264         mode = mode | S_IFREG;
265         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n", 
266                dentry->d_name.name, mode, oa.o_id);
267         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
268                                NULL, 0, mode, oa.o_id);
269         err = PTR_ERR(inode);
270         if (!IS_ERR(inode)) {
271                 // XXX clean up the object
272                 inode->i_op = &ll_file_inode_operations;
273                 inode->i_fop = &ll_file_operations;
274                 inode->i_mapping->a_ops = &ll_aops;
275                 err = ext2_add_nondir(dentry, inode);
276         }
277         EXIT;
278         return err;
279 } /* ll_create */
280
281
282 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
283 {
284         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
285                                               dentry->d_name.len, NULL, 0,
286                                               mode, 0);
287         int err = PTR_ERR(inode);
288         if (!IS_ERR(inode)) {
289                 init_special_inode(inode, mode, rdev);
290                 err = ext2_add_nondir(dentry, inode);
291         }
292         return err;
293 }
294
295 static int ll_symlink (struct inode * dir, struct dentry * dentry,
296         const char * symname)
297 {
298         int err = -ENAMETOOLONG;
299         unsigned l = strlen(symname);
300         struct inode * inode;
301         struct ll_inode_info *oinfo;
302
303         if (l > LL_INLINESZ)
304                 return err;
305
306         inode = ll_create_node(dir, dentry->d_name.name, 
307                                dentry->d_name.len, symname, l,
308                                S_IFLNK | S_IRWXUGO, 0);
309         err = PTR_ERR(inode);
310         if (IS_ERR(inode))
311                 return err;
312
313         oinfo = ll_i2info(inode);
314         
315         inode->i_op = &ll_fast_symlink_inode_operations;
316         memcpy(oinfo->lli_inline, symname, l);
317         inode->i_size = l-1;
318
319         err = ext2_add_nondir(dentry, inode);
320
321         if (err) { 
322                 ext2_dec_count(inode);
323                 iput (inode);
324         }
325         return err;
326 }
327
328 static int ll_link (struct dentry * old_dentry, struct inode * dir,
329         struct dentry *dentry)
330 {
331         int err;
332         struct inode *inode = old_dentry->d_inode;
333
334         if (S_ISDIR(inode->i_mode))
335                 return -EPERM;
336
337         if (inode->i_nlink >= EXT2_LINK_MAX)
338                 return -EMLINK;
339
340         err = ll_mdc_link(old_dentry, dir, 
341                           dentry->d_name.name, dentry->d_name.len);
342         if (err) { 
343                 EXIT;
344                 return err;
345         }
346
347         inode->i_ctime = CURRENT_TIME;
348         ext2_inc_count(inode);
349         atomic_inc(&inode->i_count);
350
351         return ext2_add_nondir(dentry, inode);
352 }
353
354
355 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
356 {
357         struct inode * inode;
358         int err = -EMLINK;
359         ENTRY;
360
361         if (dir->i_nlink >= EXT2_LINK_MAX)
362                 goto out;
363
364         ext2_inc_count(dir);
365
366         inode = ll_create_node (dir, dentry->d_name.name, 
367                                 dentry->d_name.len, NULL, 0, 
368                                 S_IFDIR | mode, 0);
369         err = PTR_ERR(inode);
370         if (IS_ERR(inode))
371                 goto out_dir;
372
373         inode->i_op = &ll_dir_inode_operations;
374         inode->i_fop = &ll_dir_operations;
375         inode->i_mapping->a_ops = &ll_aops;
376         inode->i_nlink = 1;
377         ext2_inc_count(inode);
378
379         err = ext2_make_empty(inode, dir);
380         if (err)
381                 goto out_fail;
382
383         err = ll_add_link(dentry, inode);
384         if (err)
385                 goto out_fail;
386
387         d_instantiate(dentry, inode);
388 out:
389         EXIT;
390         return err;
391
392 out_fail:
393         ext2_dec_count(inode);
394         ext2_dec_count(inode);
395         iput(inode);
396         EXIT;
397 out_dir:
398         ext2_dec_count(dir);
399         EXIT;
400         goto out;
401 }
402
403 static int ll_unlink(struct inode * dir, struct dentry *dentry)
404 {
405         struct inode * inode = dentry->d_inode;
406         struct ext2_dir_entry_2 * de;
407         struct page * page;
408         int err = -ENOENT;
409
410         de = ext2_find_entry (dir, dentry, &page);
411         if (!de)
412                 goto out;
413         
414         err = ll_mdc_unlink(dir, dentry->d_name.name, dentry->d_name.len);
415         if (err) 
416                 goto out;
417
418
419         err = ext2_delete_entry (de, page);
420         if (err)
421                 goto out;
422
423         inode->i_ctime = dir->i_ctime;
424         ext2_dec_count(inode);
425         err = 0;
426 out:
427         return err;
428 }
429
430
431 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
432 {
433         struct inode * inode = dentry->d_inode;
434         int err = -ENOTEMPTY;
435
436         if (ext2_empty_dir(inode)) {
437                 err = ll_unlink(dir, dentry);
438                 if (!err) {
439                         inode->i_size = 0;
440                         ext2_dec_count(inode);
441                         ext2_dec_count(dir);
442                 }
443         }
444         return err;
445 }
446
447 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
448         struct inode * new_dir, struct dentry * new_dentry )
449 {
450         struct inode * old_inode = old_dentry->d_inode;
451         struct inode * new_inode = new_dentry->d_inode;
452         struct page * dir_page = NULL;
453         struct ext2_dir_entry_2 * dir_de = NULL;
454         struct page * old_page;
455         struct ext2_dir_entry_2 * old_de;
456         int err = -ENOENT;
457
458         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
459         if (err) 
460                 goto out;
461
462         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
463         if (!old_de)
464                 goto out;
465
466         if (S_ISDIR(old_inode->i_mode)) {
467                 err = -EIO;
468                 dir_de = ext2_dotdot(old_inode, &dir_page);
469                 if (!dir_de)
470                         goto out_old;
471         }
472
473         if (new_inode) {
474                 struct page *new_page;
475                 struct ext2_dir_entry_2 *new_de;
476
477                 err = -ENOTEMPTY;
478                 if (dir_de && !ext2_empty_dir (new_inode))
479                         goto out_dir;
480
481                 err = -ENOENT;
482                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
483                 if (!new_de)
484                         goto out_dir;
485                 ext2_inc_count(old_inode);
486                 ext2_set_link(new_dir, new_de, new_page, old_inode);
487                 new_inode->i_ctime = CURRENT_TIME;
488                 if (dir_de)
489                         new_inode->i_nlink--;
490                 ext2_dec_count(new_inode);
491         } else {
492                 if (dir_de) {
493                         err = -EMLINK;
494                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
495                                 goto out_dir;
496                 }
497                 ext2_inc_count(old_inode);
498                 err = ll_add_link(new_dentry, old_inode);
499                 if (err) {
500                         ext2_dec_count(old_inode);
501                         goto out_dir;
502                 }
503                 if (dir_de)
504                         ext2_inc_count(new_dir);
505         }
506
507         ext2_delete_entry (old_de, old_page);
508         ext2_dec_count(old_inode);
509
510         if (dir_de) {
511                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
512                 ext2_dec_count(old_dir);
513         }
514         return 0;
515
516
517 out_dir:
518         if (dir_de) {
519                 kunmap(dir_page);
520                 page_cache_release(dir_page);
521         }
522 out_old:
523         kunmap(old_page);
524         page_cache_release(old_page);
525 out:
526         return err;
527 }
528
529 struct inode_operations ll_dir_inode_operations = {
530         create:         ll_create,
531         lookup:         ll_lookup,
532         link:           ll_link,
533         unlink:         ll_unlink,
534         symlink:        ll_symlink,
535         mkdir:          ll_mkdir,
536         rmdir:          ll_rmdir,
537         mknod:          ll_mknod,
538         rename:         ll_rename,
539         setattr:        ll_setattr
540 };