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