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