Whamcloud - gitweb
WARNING: This commit breaks everything. It will be back in shape within 12
[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_LLITE
34
35 #include <linux/obd_support.h>
36 #include <linux/lustre_lite.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 int ll_find_inode(struct inode *inode, unsigned long ino, void *opaque)
84 {
85         struct mds_body *body = (struct mds_body *)opaque;
86
87         if (inode->i_generation != body->generation)
88                 return 0;
89
90         return 1;
91 }
92
93 static struct dentry *ll_lookup(struct inode * dir, struct dentry *dentry)
94 {
95         struct ptlrpc_request *request = NULL;
96         struct inode * inode = NULL;
97         struct ll_sb_info *sbi = ll_i2sbi(dir);
98         struct ll_inode_md md;
99         int err, type;
100         ino_t ino;
101
102         ENTRY;
103         if (dentry->d_name.len > EXT2_NAME_LEN)
104                 RETURN(ERR_PTR(-ENAMETOOLONG));
105
106         ino = ll_inode_by_name(dir, dentry, &type);
107         if (!ino)
108                 GOTO(negative, NULL);
109
110         err = mdc_getattr(&sbi->ll_mds_client, sbi->ll_mds_conn, ino, type,
111                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, 0, &request);
112         if (err) {
113                 CERROR("failure %d inode %ld\n", err, (long)ino);
114                 ptlrpc_free_req(request);
115                 RETURN(ERR_PTR(-abs(err)));
116         }
117
118         if (S_ISREG(type)) {
119                 if (request->rq_repmsg->bufcount < 2 ||
120                     request->rq_repmsg->buflens[1] != sizeof(struct obdo))
121                         LBUG();
122
123                 md.obdo = lustre_msg_buf(request->rq_repmsg, 1);
124         } else
125                 md.obdo = NULL;
126
127         md.body = lustre_msg_buf(request->rq_repmsg, 0);
128
129         inode = iget4(dir->i_sb, ino, ll_find_inode, &md);
130
131         ptlrpc_free_req(request);
132         if (!inode) 
133                 RETURN(ERR_PTR(-ENOMEM));
134
135         EXIT;
136  negative:
137         d_add(dentry, inode);
138         return NULL;
139 }
140
141 static struct inode *ll_create_node(struct inode *dir, const char *name, 
142                                     int namelen, const char *tgt, int tgtlen, 
143                                     int mode, __u64 extra, struct obdo *obdo)
144 {
145         struct inode *inode;
146         struct ptlrpc_request *request = NULL;
147         struct mds_body *body;
148         int err;
149         time_t time = CURRENT_TIME;
150         struct ll_sb_info *sbi = ll_i2sbi(dir);
151         struct ll_inode_md md;
152
153         ENTRY;
154
155         err = mdc_create(&sbi->ll_mds_client, sbi->ll_mds_conn, dir, name,
156                          namelen, tgt, tgtlen, mode, current->fsuid,
157                          current->fsgid, time, extra, obdo, &request);
158         if (err) { 
159                 inode = ERR_PTR(err);
160                 GOTO(out, err);
161         }
162         body = lustre_msg_buf(request->rq_repmsg, 0);
163         body->valid = (__u32)OBD_MD_FLNOTOBD;
164
165         body->nlink = 1;
166         body->atime = body->ctime = body->mtime = time;
167         body->uid = current->fsuid;
168         body->gid = current->fsgid;
169         body->mode = mode;
170
171         md.body = body;
172         md.obdo = obdo;
173
174         inode = iget4(dir->i_sb, body->ino, ll_find_inode, &md);
175         if (IS_ERR(inode)) {
176                 CERROR("new_inode -fatal:  %ld\n", PTR_ERR(inode));
177                 inode = ERR_PTR(-EIO);
178                 LBUG();
179                 GOTO(out, -EIO);
180         }
181
182         if (!list_empty(&inode->i_dentry)) {
183                 CERROR("new_inode -fatal: inode %d, ct %d lnk %d\n", 
184                        body->ino, atomic_read(&inode->i_count), 
185                        inode->i_nlink);
186                 iput(inode);
187                 LBUG();
188                 inode = ERR_PTR(-EIO);
189                 GOTO(out, -EIO);
190         }
191
192         EXIT;
193  out:
194         ptlrpc_free_req(request);
195         return inode;
196 }
197
198 int ll_mdc_unlink(struct inode *dir, struct inode *child,
199                   const char *name, int len)
200 {
201         struct ptlrpc_request *request = NULL;
202         int err;
203         struct ll_sb_info *sbi = ll_i2sbi(dir);
204
205         ENTRY;
206
207         err = mdc_unlink(&sbi->ll_mds_client, sbi->ll_mds_conn, dir, child,
208                          name, len, &request);
209         ptlrpc_free_req(request);
210
211         EXIT;
212         return err;
213 }
214
215 int ll_mdc_link(struct dentry *src, struct inode *dir, 
216                 const char *name, int len)
217 {
218         struct ptlrpc_request *request = NULL;
219         int err;
220         struct ll_sb_info *sbi = ll_i2sbi(dir);
221
222         ENTRY;
223
224         err = mdc_link(&sbi->ll_mds_client, sbi->ll_mds_conn, src, dir, name,
225                        len, &request);
226         ptlrpc_free_req(request);
227
228         EXIT;
229         return err;
230 }
231
232 int ll_mdc_rename(struct inode *src, struct inode *tgt, 
233                   struct dentry *old, struct dentry *new)
234 {
235         struct ptlrpc_request *request = NULL;
236         int err;
237         struct ll_sb_info *sbi = ll_i2sbi(src);
238
239         ENTRY;
240
241         err = mdc_rename(&sbi->ll_mds_client, sbi->ll_mds_conn, src, tgt, 
242                          old->d_name.name, old->d_name.len, 
243                          new->d_name.name, new->d_name.len, &request);
244         ptlrpc_free_req(request);
245
246         EXIT;
247         return err;
248 }
249
250 /*
251  * By the time this is called, we already have created
252  * the directory cache entry for the new file, but it
253  * is so far negative - it has no inode.
254  *
255  * If the create succeeds, we fill in the inode information
256  * with d_instantiate(). 
257  */
258
259 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
260 {
261         int err, rc;
262         struct obdo oa;
263         struct inode *inode;
264
265         memset(&oa, 0, sizeof(oa));
266         oa.o_valid = OBD_MD_FLMODE;
267         oa.o_mode = S_IFREG | 0600;
268         rc = obd_create(ll_i2obdconn(dir), &oa);
269         if (rc) {
270                 CERROR("error creating OST object: rc = %d\n", rc);
271                 RETURN(rc);
272         }
273
274         mode = mode | S_IFREG;
275         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n",
276                dentry->d_name.name, mode, (unsigned long long)oa.o_id);
277         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
278                                NULL, 0, mode, 0, &oa);
279
280         if (IS_ERR(inode)) {
281                 rc = PTR_ERR(inode);
282                 CERROR("error creating MDS object for id %Ld: rc = %d\n",
283                        (unsigned long long)oa.o_id, rc);
284                 GOTO(out_destroy, rc);
285         }
286
287         inode->i_op = &ll_file_inode_operations;
288         inode->i_fop = &ll_file_operations;
289         inode->i_mapping->a_ops = &ll_aops;
290         rc = ext2_add_nondir(dentry, inode);
291         /* XXX Handle err, but this will probably get more complex anyways */
292
293         RETURN(rc);
294
295 out_destroy:
296         err = obd_destroy(ll_i2obdconn(dir), &oa);
297         if (err)
298                 CERROR("error destroying object %Ld in error path: err = %d\n",
299                        (unsigned long long)oa.o_id, err);
300         return err;
301 } /* ll_create */
302
303
304 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode,
305                      int rdev)
306 {
307         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
308                                               dentry->d_name.len, NULL, 0,
309                                               mode, rdev, NULL);
310         int err = PTR_ERR(inode);
311         if (!IS_ERR(inode)) {
312                 init_special_inode(inode, mode, rdev);
313                 err = ext2_add_nondir(dentry, inode);
314         }
315         return err;
316 }
317
318 static int ll_symlink (struct inode * dir, struct dentry * dentry,
319         const char * symname)
320 {
321         int err = -ENAMETOOLONG;
322         unsigned l = strlen(symname);
323         struct inode * inode;
324         struct ll_inode_info *oinfo;
325
326         if (l > LL_INLINESZ)
327                 return err;
328
329         inode = ll_create_node(dir, dentry->d_name.name, 
330                                dentry->d_name.len, symname, l,
331                                S_IFLNK | S_IRWXUGO, 0, NULL);
332         err = PTR_ERR(inode);
333         if (IS_ERR(inode))
334                 return err;
335
336         oinfo = ll_i2info(inode);
337         
338         inode->i_op = &ll_fast_symlink_inode_operations;
339         memcpy(oinfo->lli_inline, symname, l);
340         inode->i_size = l-1;
341
342         err = ext2_add_nondir(dentry, inode);
343
344         if (err) { 
345                 ext2_dec_count(inode);
346                 iput (inode);
347         }
348         return err;
349 }
350
351 static int ll_link (struct dentry * old_dentry, struct inode * dir,
352         struct dentry *dentry)
353 {
354         int err;
355         struct inode *inode = old_dentry->d_inode;
356
357         if (S_ISDIR(inode->i_mode))
358                 return -EPERM;
359
360         if (inode->i_nlink >= EXT2_LINK_MAX)
361                 return -EMLINK;
362
363         err = ll_mdc_link(old_dentry, dir, 
364                           dentry->d_name.name, dentry->d_name.len);
365         if (err) { 
366                 EXIT;
367                 return err;
368         }
369
370         inode->i_ctime = CURRENT_TIME;
371         ext2_inc_count(inode);
372         atomic_inc(&inode->i_count);
373
374         return ext2_add_nondir(dentry, inode);
375 }
376
377
378 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
379 {
380         struct inode * inode;
381         int err = -EMLINK;
382         ENTRY;
383
384         if (dir->i_nlink >= EXT2_LINK_MAX)
385                 goto out;
386
387         ext2_inc_count(dir);
388
389         inode = ll_create_node (dir, dentry->d_name.name, 
390                                 dentry->d_name.len, NULL, 0, 
391                                 S_IFDIR | mode, 0, NULL);
392         err = PTR_ERR(inode);
393         if (IS_ERR(inode))
394                 goto out_dir;
395
396         inode->i_op = &ll_dir_inode_operations;
397         inode->i_fop = &ll_dir_operations;
398         inode->i_mapping->a_ops = &ll_aops;
399         inode->i_nlink = 1;
400         ext2_inc_count(inode);
401
402         err = ext2_make_empty(inode, dir);
403         if (err)
404                 goto out_fail;
405
406         err = ll_add_link(dentry, inode);
407         if (err)
408                 goto out_fail;
409
410         d_instantiate(dentry, inode);
411 out:
412         EXIT;
413         return err;
414
415 out_fail:
416         ext2_dec_count(inode);
417         ext2_dec_count(inode);
418         iput(inode);
419         EXIT;
420 out_dir:
421         ext2_dec_count(dir);
422         EXIT;
423         goto out;
424 }
425
426 static int ll_unlink(struct inode * dir, struct dentry *dentry)
427 {
428         struct inode * inode = dentry->d_inode;
429         struct ext2_dir_entry_2 * de;
430         struct page * page;
431         int err = -ENOENT;
432
433         de = ext2_find_entry (dir, dentry, &page);
434         if (!de)
435                 goto out;
436         
437         err = ll_mdc_unlink(dir, dentry->d_inode,
438                             dentry->d_name.name, dentry->d_name.len);
439         if (err) 
440                 goto out;
441
442         err = ext2_delete_entry (de, page);
443         if (err)
444                 goto out;
445
446         inode->i_ctime = dir->i_ctime;
447         ext2_dec_count(inode);
448         err = 0;
449 out:
450         return err;
451 }
452
453 static int ll_rmdir(struct inode * dir, struct dentry *dentry)
454 {
455         struct inode * inode = dentry->d_inode;
456         int err = -ENOTEMPTY;
457
458         if (ext2_empty_dir(inode)) {
459                 err = ll_unlink(dir, dentry);
460                 if (!err) {
461                         inode->i_size = 0;
462                         ext2_dec_count(inode);
463                         ext2_dec_count(dir);
464                 }
465         }
466         return err;
467 }
468
469 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
470         struct inode * new_dir, struct dentry * new_dentry )
471 {
472         struct inode * old_inode = old_dentry->d_inode;
473         struct inode * new_inode = new_dentry->d_inode;
474         struct page * dir_page = NULL;
475         struct ext2_dir_entry_2 * dir_de = NULL;
476         struct page * old_page;
477         struct ext2_dir_entry_2 * old_de;
478         int err = -ENOENT;
479
480         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
481         if (err) 
482                 goto out;
483
484         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
485         if (!old_de)
486                 goto out;
487
488         if (S_ISDIR(old_inode->i_mode)) {
489                 err = -EIO;
490                 dir_de = ext2_dotdot(old_inode, &dir_page);
491                 if (!dir_de)
492                         goto out_old;
493         }
494
495         if (new_inode) {
496                 struct page *new_page;
497                 struct ext2_dir_entry_2 *new_de;
498
499                 err = -ENOTEMPTY;
500                 if (dir_de && !ext2_empty_dir (new_inode))
501                         goto out_dir;
502
503                 err = -ENOENT;
504                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
505                 if (!new_de)
506                         goto out_dir;
507                 ext2_inc_count(old_inode);
508                 ext2_set_link(new_dir, new_de, new_page, old_inode);
509                 new_inode->i_ctime = CURRENT_TIME;
510                 if (dir_de)
511                         new_inode->i_nlink--;
512                 ext2_dec_count(new_inode);
513         } else {
514                 if (dir_de) {
515                         err = -EMLINK;
516                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
517                                 goto out_dir;
518                 }
519                 ext2_inc_count(old_inode);
520                 err = ll_add_link(new_dentry, old_inode);
521                 if (err) {
522                         ext2_dec_count(old_inode);
523                         goto out_dir;
524                 }
525                 if (dir_de)
526                         ext2_inc_count(new_dir);
527         }
528
529         ext2_delete_entry (old_de, old_page);
530         ext2_dec_count(old_inode);
531
532         if (dir_de) {
533                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
534                 ext2_dec_count(old_dir);
535         }
536         return 0;
537
538
539 out_dir:
540         if (dir_de) {
541                 kunmap(dir_page);
542                 page_cache_release(dir_page);
543         }
544 out_old:
545         kunmap(old_page);
546         page_cache_release(old_page);
547 out:
548         return err;
549 }
550
551 struct inode_operations ll_dir_inode_operations = {
552         create:         ll_create,
553         lookup:         ll_lookup,
554         link:           ll_link,
555         unlink:         ll_unlink,
556         symlink:        ll_symlink,
557         mkdir:          ll_mkdir,
558         rmdir:          ll_rmdir,
559         mknod:          ll_mknod,
560         rename:         ll_rename,
561         setattr:        ll_setattr
562 };