Whamcloud - gitweb
- many small makefile changes to build package conveniently.
[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("failure %d inode %ld\n", err, ino);
104                 ptlrpc_free_req(request);
105                 EXIT;
106                 return ERR_PTR(-abs(err)); 
107         }
108
109         inode = iget4(dir->i_sb, ino, NULL, request->rq_rep.mds);
110
111         ptlrpc_free_req(request);
112         if (!inode) 
113                 return ERR_PTR(-ENOMEM);
114
115  negative:
116         d_add(dentry, inode);
117         return NULL;
118 }
119
120
121 /*
122  * NOTE! unlike strncmp, ext2_match returns 1 for success, 0 for failure.
123  *
124  * `len <= EXT2_NAME_LEN' is guaranteed by caller.
125  * `de != NULL' is guaranteed by caller.
126  */
127 static inline int ext2_match (int len, const char * const name,
128                        struct ext2_dir_entry_2 * de)
129 {
130         if (len != de->name_len)
131                 return 0;
132         if (!de->inode)
133                 return 0;
134         return !memcmp(name, de->name, len);
135 }
136
137 static struct inode *ll_create_node(struct inode *dir, const char *name, 
138                                     int namelen, const char *tgt, int tgtlen, 
139                                     int mode, __u64 id)
140 {
141         struct inode *inode;
142         struct ptlrpc_request *request;
143         struct mds_rep *rep;
144         int err;
145         time_t time = CURRENT_TIME;
146         struct ll_sb_info *sbi = ll_i2sbi(dir);
147
148         ENTRY;
149
150         err = mdc_create(&sbi->ll_mds_client, dir, name, namelen, tgt, tgtlen,
151                          mode, id,  current->uid, current->gid, time, &request);
152         if (err) { 
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                 BUG();
172                 EXIT;
173                 goto out;
174         }
175
176         if (!list_empty(&inode->i_dentry)) {
177                 CERROR("new_inode -fatal: aliases %d, ct %d lnk %d\n", 
178                        rep->ino, atomic_read(&inode->i_count), 
179                        inode->i_nlink);
180                 iput(inode);
181                 BUG();
182                 inode = ERR_PTR(-EIO);
183                 EXIT;
184                 goto out;
185         }
186
187         EXIT;
188  out:
189         ptlrpc_free_req(request);
190         return inode;
191 } /* ll_new_inode */
192
193 int ll_mdc_unlink(struct inode *dir, const char *name, int len)
194 {
195         struct ptlrpc_request *request;
196         int err;
197         struct ll_sb_info *sbi = ll_i2sbi(dir);
198
199         ENTRY;
200
201         err = mdc_unlink(&sbi->ll_mds_client, dir, name, len, &request);
202         ptlrpc_free_req(request);
203
204         EXIT;
205         return err;
206 }
207
208 int ll_mdc_link(struct dentry *src, struct inode *dir, 
209                 const char *name, int len)
210 {
211         struct ptlrpc_request *request;
212         int err;
213         struct ll_sb_info *sbi = ll_i2sbi(dir);
214
215         ENTRY;
216
217         err = mdc_link(&sbi->ll_mds_client, src, dir, name, len, &request);
218         ptlrpc_free_req(request);
219
220         EXIT;
221         return err;
222 }
223
224 int ll_mdc_rename(struct inode *src, struct inode *tgt, 
225                   struct dentry *old, struct dentry *new)
226 {
227         struct ptlrpc_request *request;
228         int err;
229         struct ll_sb_info *sbi = ll_i2sbi(src);
230
231         ENTRY;
232
233         err = mdc_rename(&sbi->ll_mds_client, src, tgt, 
234                          old->d_name.name, old->d_name.len, 
235                          new->d_name.name, new->d_name.len, &request);
236         ptlrpc_free_req(request);
237
238         EXIT;
239         return err;
240 }
241
242 /*
243  * By the time this is called, we already have created
244  * the directory cache entry for the new file, but it
245  * is so far negative - it has no inode.
246  *
247  * If the create succeeds, we fill in the inode information
248  * with d_instantiate(). 
249  */
250
251 static int ll_create (struct inode * dir, struct dentry * dentry, int mode)
252 {
253         int err; 
254         struct obdo oa;
255         struct inode * inode;
256
257         memset(&oa, 0, sizeof(oa)); 
258         oa.o_valid = OBD_MD_FLMODE; 
259         oa.o_mode = S_IFREG | 0600;
260         err = obd_create(ll_i2obdconn(dir), &oa);  
261         if (err) { 
262                 EXIT; 
263                 return err;
264         }
265
266         mode = mode | S_IFREG;
267         CDEBUG(D_DENTRY, "name %s mode %o o_id %lld\n", 
268                dentry->d_name.name, mode, oa.o_id);
269         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len, 
270                                NULL, 0, mode, oa.o_id);
271         err = PTR_ERR(inode);
272         if (!IS_ERR(inode)) {
273                 // XXX clean up the object
274                 inode->i_op = &ll_file_inode_operations;
275                 inode->i_fop = &ll_file_operations;
276                 inode->i_mapping->a_ops = &ll_aops;
277                 err = ext2_add_nondir(dentry, inode);
278         }
279         EXIT;
280         return err;
281 } /* ll_create */
282
283
284 static int ll_mknod (struct inode * dir, struct dentry *dentry, int mode, int rdev)
285 {
286         struct inode * inode = ll_create_node(dir, dentry->d_name.name, 
287                                               dentry->d_name.len, NULL, 0,
288                                               mode, 0);
289         int err = PTR_ERR(inode);
290         if (!IS_ERR(inode)) {
291                 init_special_inode(inode, mode, rdev);
292                 err = ext2_add_nondir(dentry, inode);
293         }
294         return err;
295 }
296
297 static int ll_symlink (struct inode * dir, struct dentry * dentry,
298         const char * symname)
299 {
300         int err = -ENAMETOOLONG;
301         unsigned l = strlen(symname);
302         struct inode * inode;
303         struct ll_inode_info *oinfo;
304
305         if (l > LL_INLINESZ)
306                 return err;
307
308         inode = ll_create_node(dir, dentry->d_name.name, 
309                                dentry->d_name.len, symname, l,
310                                S_IFLNK | S_IRWXUGO, 0);
311         err = PTR_ERR(inode);
312         if (IS_ERR(inode))
313                 return err;
314
315         oinfo = ll_i2info(inode);
316         
317         inode->i_op = &ll_fast_symlink_inode_operations;
318         memcpy(oinfo->lli_inline, symname, l);
319         inode->i_size = l-1;
320
321         err = ext2_add_nondir(dentry, inode);
322
323         if (err) { 
324                 ext2_dec_count(inode);
325                 iput (inode);
326         }
327         return err;
328 }
329
330 static int ll_link (struct dentry * old_dentry, struct inode * dir,
331         struct dentry *dentry)
332 {
333         int err;
334         struct inode *inode = old_dentry->d_inode;
335
336         if (S_ISDIR(inode->i_mode))
337                 return -EPERM;
338
339         if (inode->i_nlink >= EXT2_LINK_MAX)
340                 return -EMLINK;
341
342         err = ll_mdc_link(old_dentry, dir, 
343                           dentry->d_name.name, dentry->d_name.len);
344         if (err) { 
345                 EXIT;
346                 return err;
347         }
348
349         inode->i_ctime = CURRENT_TIME;
350         ext2_inc_count(inode);
351         atomic_inc(&inode->i_count);
352
353         return ext2_add_nondir(dentry, inode);
354 }
355
356
357 static int ll_mkdir(struct inode * dir, struct dentry * dentry, int mode)
358 {
359         struct inode * inode;
360         int err = -EMLINK;
361         ENTRY;
362
363         if (dir->i_nlink >= EXT2_LINK_MAX)
364                 goto out;
365
366         ext2_inc_count(dir);
367
368         inode = ll_create_node (dir, dentry->d_name.name, 
369                                 dentry->d_name.len, NULL, 0, 
370                                 S_IFDIR | mode, 0);
371         err = PTR_ERR(inode);
372         if (IS_ERR(inode))
373                 goto out_dir;
374
375         inode->i_op = &ll_dir_inode_operations;
376         inode->i_fop = &ll_dir_operations;
377         inode->i_mapping->a_ops = &ll_aops;
378         inode->i_nlink = 1;
379         ext2_inc_count(inode);
380
381         err = ext2_make_empty(inode, dir);
382         if (err)
383                 goto out_fail;
384
385         err = ll_add_link(dentry, inode);
386         if (err)
387                 goto out_fail;
388
389         d_instantiate(dentry, inode);
390 out:
391         EXIT;
392         return err;
393
394 out_fail:
395         ext2_dec_count(inode);
396         ext2_dec_count(inode);
397         iput(inode);
398         EXIT;
399 out_dir:
400         ext2_dec_count(dir);
401         EXIT;
402         goto out;
403 }
404
405 static int ll_unlink(struct inode * dir, struct dentry *dentry)
406 {
407         struct inode * inode = dentry->d_inode;
408         struct ext2_dir_entry_2 * de;
409         struct page * page;
410         int err = -ENOENT;
411
412         de = ext2_find_entry (dir, dentry, &page);
413         if (!de)
414                 goto out;
415         
416         err = ll_mdc_unlink(dir, dentry->d_name.name, dentry->d_name.len);
417         if (err) 
418                 goto out;
419
420
421         err = ext2_delete_entry (de, page);
422         if (err)
423                 goto out;
424
425         inode->i_ctime = dir->i_ctime;
426         ext2_dec_count(inode);
427         err = 0;
428 out:
429         return err;
430 }
431
432
433 static int ll_rmdir (struct inode * dir, struct dentry *dentry)
434 {
435         struct inode * inode = dentry->d_inode;
436         int err = -ENOTEMPTY;
437
438         if (ext2_empty_dir(inode)) {
439                 err = ll_unlink(dir, dentry);
440                 if (!err) {
441                         inode->i_size = 0;
442                         ext2_dec_count(inode);
443                         ext2_dec_count(dir);
444                 }
445         }
446         return err;
447 }
448
449 static int ll_rename (struct inode * old_dir, struct dentry * old_dentry,
450         struct inode * new_dir, struct dentry * new_dentry )
451 {
452         struct inode * old_inode = old_dentry->d_inode;
453         struct inode * new_inode = new_dentry->d_inode;
454         struct page * dir_page = NULL;
455         struct ext2_dir_entry_2 * dir_de = NULL;
456         struct page * old_page;
457         struct ext2_dir_entry_2 * old_de;
458         int err = -ENOENT;
459
460         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry); 
461         if (err) 
462                 goto out;
463
464         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
465         if (!old_de)
466                 goto out;
467
468         if (S_ISDIR(old_inode->i_mode)) {
469                 err = -EIO;
470                 dir_de = ext2_dotdot(old_inode, &dir_page);
471                 if (!dir_de)
472                         goto out_old;
473         }
474
475         if (new_inode) {
476                 struct page *new_page;
477                 struct ext2_dir_entry_2 *new_de;
478
479                 err = -ENOTEMPTY;
480                 if (dir_de && !ext2_empty_dir (new_inode))
481                         goto out_dir;
482
483                 err = -ENOENT;
484                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
485                 if (!new_de)
486                         goto out_dir;
487                 ext2_inc_count(old_inode);
488                 ext2_set_link(new_dir, new_de, new_page, old_inode);
489                 new_inode->i_ctime = CURRENT_TIME;
490                 if (dir_de)
491                         new_inode->i_nlink--;
492                 ext2_dec_count(new_inode);
493         } else {
494                 if (dir_de) {
495                         err = -EMLINK;
496                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
497                                 goto out_dir;
498                 }
499                 ext2_inc_count(old_inode);
500                 err = ll_add_link(new_dentry, old_inode);
501                 if (err) {
502                         ext2_dec_count(old_inode);
503                         goto out_dir;
504                 }
505                 if (dir_de)
506                         ext2_inc_count(new_dir);
507         }
508
509         ext2_delete_entry (old_de, old_page);
510         ext2_dec_count(old_inode);
511
512         if (dir_de) {
513                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
514                 ext2_dec_count(old_dir);
515         }
516         return 0;
517
518
519 out_dir:
520         if (dir_de) {
521                 kunmap(dir_page);
522                 page_cache_release(dir_page);
523         }
524 out_old:
525         kunmap(old_page);
526         page_cache_release(old_page);
527 out:
528         return err;
529 }
530
531 struct inode_operations ll_dir_inode_operations = {
532         create:         ll_create,
533         lookup:         ll_lookup,
534         link:           ll_link,
535         unlink:         ll_unlink,
536         symlink:        ll_symlink,
537         mkdir:          ll_mkdir,
538         rmdir:          ll_rmdir,
539         mknod:          ll_mknod,
540         rename:         ll_rename,
541         setattr:        ll_setattr
542 };