Whamcloud - gitweb
b349bc80d47c6f07e52f6cbb1bc7e9c6824501ac
[fs/lustre-release.git] / lustre / llite / namei.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * This code is issued under the GNU General Public License.
5  * See the file COPYING in this distribution
6  *
7  * Copyright (C) 1992, 1993, 1994, 1995
8  * Remy Card (card@masi.ibp.fr)
9  * Laboratoire MASI - Institut Blaise Pascal
10  * Universite Pierre et Marie Curie (Paris VI)
11  *
12  *  from
13  *
14  *  linux/fs/ext2/namei.c
15  *
16  *  Copyright (C) 1991, 1992  Linus Torvalds
17  *
18  *  Big-endian to little-endian byte-swapping/bitmaps by
19  *        David S. Miller (davem@caip.rutgers.edu), 1995
20  *  Directory entry file type support and forward compatibility hooks
21  *      for B-tree directories by Theodore Ts'o (tytso@mit.edu), 1998
22  *
23  *  Changes for use in OBDFS
24  *  Copyright (c) 1999, Seagate Technology Inc.
25  *  Copyright (C) 2001, Cluster File Systems, Inc.
26  *                       Rewritten based on recent ext2 page cache use.
27  *
28  */
29
30 #include <linux/fs.h>
31 #include <linux/sched.h>
32 #include <linux/mm.h>
33 #include <linux/smp_lock.h>
34 #include <linux/quotaops.h>
35 #include <linux/highmem.h>
36 #include <linux/pagemap.h>
37
38 #define DEBUG_SUBSYSTEM S_LLITE
39
40 #include <linux/obd_support.h>
41 #include <linux/lustre_lite.h>
42 #include <linux/lustre_dlm.h>
43
44 extern struct address_space_operations ll_aops;
45
46 /* from super.c */
47 extern void ll_change_inode(struct inode *inode);
48 extern int ll_setattr(struct dentry *de, struct iattr *attr);
49
50 /* from dir.c */
51 extern int ll_add_link (struct dentry *dentry, struct inode *inode);
52 obd_id ll_inode_by_name(struct inode * dir, struct dentry *dentry, int *typ);
53 int ext2_make_empty(struct inode *inode, struct inode *parent);
54 struct ext2_dir_entry_2 * ext2_find_entry (struct inode * dir,
55                    struct dentry *dentry, struct page ** res_page);
56 int ext2_delete_entry (struct ext2_dir_entry_2 * dir, struct page * page );
57 int ext2_empty_dir (struct inode * inode);
58 struct ext2_dir_entry_2 * ext2_dotdot (struct inode *dir, struct page **p);
59 void ext2_set_link(struct inode *dir, struct ext2_dir_entry_2 *de,
60                    struct page *page, struct inode *inode);
61
62 /*
63  * Couple of helper functions - make the code slightly cleaner.
64  */
65 static inline void ext2_inc_count(struct inode *inode)
66 {
67         inode->i_nlink++;
68 }
69
70 /* postpone the disk update until the inode really goes away */
71 static inline void ext2_dec_count(struct inode *inode)
72 {
73         inode->i_nlink--;
74 }
75 static inline int ext2_add_nondir(struct dentry *dentry, struct inode *inode)
76 {
77         int err;
78         err = ll_add_link(dentry, inode);
79         if (!err) {
80                 d_instantiate(dentry, inode);
81                 return 0;
82         }
83         ext2_dec_count(inode);
84         iput(inode);
85         return err;
86 }
87
88 /* methods */
89
90 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
91 static int ll_find_inode(struct inode *inode, unsigned long ino, void *opaque)
92 #else
93 static int ll_test_inode(struct inode *inode, void *opaque)
94 #endif
95 {
96         struct ll_read_inode2_cookie *lic = opaque;
97         struct mds_body *body = lic->lic_body;
98
99         if (inode->i_generation != lic->lic_body->generation)
100                 return 0;
101
102         /* Apply the attributes in 'opaque' to this inode */
103         ll_update_inode(inode, body);
104
105         return 1;
106 }
107
108 extern struct dentry_operations ll_d_ops;
109
110 int ll_unlock(__u32 mode, struct lustre_handle *lockh)
111 {
112         ENTRY;
113
114         ldlm_lock_decref(lockh, mode);
115
116         RETURN(0);
117 }
118
119 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
120 extern int ll_read_inode2(struct inode *inode, void *opaque);
121 struct inode *ll_iget(struct super_block *sb, ino_t hash,
122                       struct ll_read_inode2_cookie *lic)
123 {
124         struct inode *inode;
125
126         LASSERT(hash != 0);
127         inode = iget5_locked(sb, hash, ll_test_inode, ll_read_inode2, lic);
128
129         if (!inode)
130                 return ERR_PTR(-ENOMEM);
131
132         if (inode->i_state & I_NEW)
133                 unlock_new_inode(inode);
134
135         // XXX Coda always fills inodes, should Lustre?
136         return inode;
137 }
138 #else
139 struct inode *ll_iget(struct super_block *sb, ino_t hash,
140                       struct ll_read_inode2_cookie *lic)
141 {
142         struct inode *inode;
143         LASSERT(hash != 0);
144         inode = iget4(sb, hash, ll_find_inode, lic);
145         return inode;
146 }
147 #endif
148
149 static int ll_intent_to_lock_mode(struct lookup_intent *it)
150 {
151         /* CREAT needs to be tested before open (both could be set) */
152         if ((it->it_op & (IT_CREAT | IT_MKDIR | IT_SETATTR | IT_MKNOD))) {
153                 return LCK_PW;
154         } else if (it->it_op & (IT_READDIR | IT_GETATTR | IT_OPEN | IT_UNLINK |
155                                 IT_RMDIR | IT_RENAME | IT_RENAME2 | IT_READLINK|
156                                 IT_LINK | IT_LINK2 | IT_LOOKUP | IT_SYMLINK)) {
157                 return LCK_PR;
158         }
159
160         LBUG();
161         RETURN(-EINVAL);
162 }
163
164 #define LL_LOOKUP_POSITIVE 1
165 #define LL_LOOKUP_NEGATIVE 2
166
167 int ll_intent_lock(struct inode *parent, struct dentry **de,
168                    struct lookup_intent *it,
169                    intent_finish_cb intent_finish)
170 {
171         struct dentry *dentry = *de;
172         struct ll_sb_info *sbi = ll_i2sbi(parent);
173         struct lustre_handle lockh;
174         struct lookup_intent lookup_it = { .it_op = IT_LOOKUP };
175         struct ptlrpc_request *request = NULL;
176         char *data = NULL;
177         int rc, lock_mode, datalen = 0, offset, flag = LL_LOOKUP_POSITIVE;
178         obd_id ino = 0;
179
180         ENTRY;
181
182         if (it == NULL)
183                 it = &lookup_it;
184
185         CDEBUG(D_INFO, "name: %*s, intent: %s\n", dentry->d_name.len,
186                dentry->d_name.name, ldlm_it2str(it->it_op));
187
188         if (dentry->d_name.len > EXT2_NAME_LEN)
189                 RETURN(-ENAMETOOLONG);
190
191         lock_mode = ll_intent_to_lock_mode(it);
192         if (it->it_op & IT_SYMLINK) {
193                 data = it->it_data;
194                 datalen = strlen(data) + 1;
195                 it->it_data = NULL;
196         }
197
198         rc = mdc_enqueue(&sbi->ll_mdc_conn, LDLM_PLAIN, it, lock_mode, parent,
199                          dentry, &lockh, data, datalen, parent,sizeof(*parent));
200         if (rc < 0)
201                 RETURN(rc);
202         memcpy(it->it_lock_handle, &lockh, sizeof(lockh));
203
204         request = (struct ptlrpc_request *)it->it_data;
205         /* it_disposition == 1 indicates that the server performed the
206          * intent on our behalf. */
207         if (it->it_disposition) {
208                 struct mds_body *mds_body;
209                 int mode;
210                 obd_flag valid;
211
212                 /* This long block is all about fixing up the local
213                  * state so that it is correct as of the moment
214                  * _before_ the operation was applied; that way, the
215                  * VFS will think that everything is normal and call
216                  * Lustre's regular FS function.
217                  *
218                  * If we're performing a creation, that means that unless the
219                  * creation failed with EEXIST, we should fake up a negative
220                  * dentry.  Likewise for the target of a hard link.
221                  *
222                  * For everything else, we want to lookup to succeed. */
223
224                 /* One additional note: we add an extra reference to
225                  * the request because we need to keep it around until
226                  * ll_create gets called.  For anything else which
227                  * results in LL_LOOKUP_POSITIVE, we can do the iget()
228                  * immediately with the contents of the reply (in the
229                  * intent_finish callback).  In the create case,
230                  * however, we need to wait until ll_create_node to do
231                  * the iget() or the VFS will abort with -EEXISTS.
232                  */
233
234                 offset = 1;
235                 mds_body = lustre_msg_buf(request->rq_repmsg, offset);
236                 ino = mds_body->fid1.id;
237                 mode = mds_body->mode;
238
239                 if (it->it_op & (IT_CREAT | IT_MKDIR | IT_SYMLINK | IT_MKNOD)) {
240                         mdc_store_inode_generation(request, 2, 1);
241                         /* For create ops, we want the lookup to be negative,
242                          * unless the create failed in a way that indicates
243                          * that the file is already there */
244                         if (it->it_status != -EEXIST) {
245                                 atomic_inc(&request->rq_refcount);
246                                 GOTO(out, flag = LL_LOOKUP_NEGATIVE);
247                         }
248                         /*
249                          * Fall through to update attibutes: it may already
250                          * have appeared in the namespace of another client
251                          */
252                 } else if (it->it_op & (IT_GETATTR | IT_SETATTR | IT_LOOKUP |
253                                         IT_READLINK)) {
254                         /* For check ops, we want the lookup to succeed */
255                         it->it_data = NULL;
256                         if (it->it_status)
257                                 GOTO(out, flag = LL_LOOKUP_NEGATIVE);
258                         /* Fall through to update attibutes. */
259                 } else if (it->it_op & (IT_RENAME | IT_LINK)) {
260                         /* For rename, we want the source lookup to succeed */
261                         if (it->it_status) {
262                                 it->it_data = NULL;
263                                 GOTO(drop_req, rc = it->it_status);
264                         }
265                         /* Fall through to update attibutes. */
266                 } else if (it->it_op & (IT_UNLINK | IT_RMDIR)) {
267                         /* For remove ops, we want the lookup to succeed unless
268                          * the file truly doesn't exist */
269                         it->it_data = NULL;
270                         if (it->it_status == -ENOENT)
271                                 GOTO(out, flag = LL_LOOKUP_NEGATIVE);
272                         /* No point in updating attributes that we're about to
273                          * unlink.  -phil */
274                         GOTO(out, flag = LL_LOOKUP_POSITIVE);
275                 } else if (it->it_op == IT_OPEN) {
276                         it->it_data = NULL;
277                         if (it->it_status && it->it_status != -EEXIST)
278                                 GOTO(out, flag = LL_LOOKUP_NEGATIVE);
279                         /* Fall through to update attibutes. */
280                 } else if (it->it_op & (IT_RENAME2 | IT_LINK2)) {
281                         it->it_data = NULL;
282                         /* This means the target lookup is negative */
283                         if (mds_body->valid == 0)
284                                 GOTO(out, flag = LL_LOOKUP_NEGATIVE);
285                         /* XXX bug 289: should we maybe fall through here? -p */
286                         GOTO(out, flag = LL_LOOKUP_POSITIVE);
287                 }
288
289                 /* Do a getattr now that we have the lock */
290                 valid = OBD_MD_FLNOTOBD;
291                 if (it->it_op == IT_READLINK) {
292                         datalen = mds_body->size;
293                         valid |= OBD_MD_LINKNAME;
294                 } else if (S_ISREG(mode)) {
295                         datalen = obd_size_wiremd(&sbi->ll_osc_conn, NULL);
296                         valid |= OBD_MD_FLEASIZE;
297                 }
298                 ptlrpc_req_finished(request);
299                 request = NULL;
300                 rc = mdc_getattr(&sbi->ll_mdc_conn, ino, mode,
301                                  valid, datalen, &request);
302                 if (rc) {
303                         CERROR("failure %d inode "LPX64"\n", rc, ino);
304                         GOTO(drop_req, rc = -abs(rc));
305                 }
306                 offset = 0;
307         } else {
308                 struct ll_inode_info *lli = ll_i2info(parent);
309                 obd_flag valid;
310                 int mode;
311
312                 LBUG(); /* For the moment, no non-intent locks */
313
314                 /* it_disposition == 0 indicates that it just did a simple lock
315                  * request, for which we are very thankful.  move along with
316                  * the local lookup then. */
317
318                 memcpy(&lli->lli_intent_lock_handle, &lockh, sizeof(lockh));
319                 offset = 0;
320
321                 ino = ll_inode_by_name(parent, dentry, &mode);
322                 if (!ino) {
323                         CERROR("inode %*s not found by name\n",
324                                dentry->d_name.len, dentry->d_name.name);
325                         GOTO(drop_lock, rc = -ENOENT);
326                 }
327
328                 valid = OBD_MD_FLNOTOBD;
329
330                 if (S_ISREG(mode)) {
331                         datalen = obd_size_wiremd(&sbi->ll_osc_conn, NULL),
332                         valid |= OBD_MD_FLEASIZE;
333                 }
334
335                 rc = mdc_getattr(&sbi->ll_mdc_conn, ino, mode, valid,
336                                  datalen, &request);
337                 if (rc) {
338                         CERROR("failure %d inode "LPX64"\n", rc, ino);
339                         GOTO(drop_req, rc = -abs(rc));
340                 }
341         }
342
343         EXIT;
344  out:
345         if (intent_finish != NULL) {
346                 rc = intent_finish(flag, request, de, it, offset, ino);
347                 dentry = *de; /* intent_finish may change *de */
348         } else {
349                 ptlrpc_req_finished(request);
350         }
351
352         if (it->it_disposition && it->it_op & (IT_RENAME | IT_LINK))
353                 it->it_data = dentry;
354
355         /* this places the intent in the dentry so that the vfs_xxx
356          *  operation can lay its hands on it; but that is not 
357          *  always needed...
358          */
359         if ( // it->it_status == 0 && 
360             it->it_op != IT_RENAME2 && 
361             it->it_op != IT_SETATTR &&
362             it->it_op != IT_GETATTR &&
363             it->it_op != IT_READDIR &&
364             it->it_op != IT_LOOKUP) {
365                 LL_SAVE_INTENT(dentry, it);
366         } else {
367                 CDEBUG(D_DENTRY,
368                        "D_IT dentry %p fsdata %p intent: %s status %d\n",
369                        dentry, ll_d2d(dentry), ldlm_it2str(it->it_op),
370                        it->it_status);
371         }
372
373         if (rc < 0 || it->it_op == IT_LOOKUP)
374                 ll_intent_release(dentry, it);
375
376         RETURN(rc);
377
378  drop_req:
379         ptlrpc_free_req(request);
380  drop_lock:
381 #warning FIXME: must release lock here
382         RETURN(rc);
383 }
384
385 /* Search "inode"'s alias list for a dentry that has the same name and parent as
386  * de.  If found, return it.  If not found, return de. */
387 struct dentry *ll_find_alias(struct inode *inode, struct dentry *de)
388 {
389         struct list_head *tmp;
390
391         spin_lock(&dcache_lock);
392         list_for_each(tmp, &inode->i_dentry) {
393                 struct dentry *dentry = list_entry(tmp, struct dentry, d_alias);
394
395                 /* We are called here with 'de' already on the aliases list. */
396                 if (dentry == de) { 
397                         CERROR("whoops\n");
398                         continue;
399                 }
400
401                 if (dentry->d_parent != de->d_parent)
402                         continue;
403
404                 if (dentry->d_name.len != de->d_name.len)
405                         continue;
406
407                 if (memcmp(dentry->d_name.name, de->d_name.name,
408                            de->d_name.len) != 0)
409                         continue;
410
411                 if (!list_empty(&dentry->d_lru))
412                         list_del_init(&dentry->d_lru);
413
414                 list_del_init(&dentry->d_hash);
415                 spin_unlock(&dcache_lock);
416                 d_rehash(dentry);
417                 atomic_inc(&dentry->d_count);
418                 iput(inode);
419                 return dentry;
420         }
421
422         spin_unlock(&dcache_lock);
423
424         return de;
425 }
426
427 static int
428 lookup2_finish(int flag, struct ptlrpc_request *request, struct dentry **de,
429                struct lookup_intent *it, int offset, obd_id ino)
430 {
431         struct dentry *dentry = *de, *saved = *de;
432         struct inode *inode = NULL;
433         struct ll_read_inode2_cookie lic = {.lic_body = NULL, .lic_lmm = NULL};
434
435         if (flag == LL_LOOKUP_POSITIVE) {
436                 ENTRY;
437                 lic.lic_body = lustre_msg_buf(request->rq_repmsg, offset);
438
439                 if (S_ISREG(lic.lic_body->mode) &&
440                     lic.lic_body->valid & OBD_MD_FLEASIZE) {
441                         LASSERT(request->rq_repmsg->bufcount > offset);
442                         lic.lic_lmm = lustre_msg_buf(request->rq_repmsg,
443                                                      offset + 1);
444                 } else {
445                         lic.lic_lmm = NULL;
446                 }
447
448                 /* No rpc's happen during iget4, -ENOMEM's are possible */
449                 inode = ll_iget(dentry->d_sb, ino, &lic);
450                 if (!inode) {
451                         /* XXX make sure that request is freed in this case;
452                          * I think it is, but double-check refcounts. -phil */
453                         RETURN(-ENOMEM);
454                 }
455
456                 dentry = *de = ll_find_alias(inode, dentry);
457
458                 /* We asked for a lock on the directory, and may have been
459                  * granted a lock on the inode.  Just in case, fixup the data
460                  * pointer. */
461                 ldlm_lock_set_data((struct lustre_handle *)it->it_lock_handle,
462                                    inode, sizeof(*inode));
463
464                 EXIT;
465         } else {
466                 ENTRY;
467         }
468
469         ptlrpc_req_finished(request);
470
471         dentry->d_op = &ll_d_ops;
472         if (ll_d2d(dentry) == NULL) {
473                 ll_set_dd(dentry);
474         }
475
476         if (dentry == saved)
477                 d_add(dentry, inode);
478
479         RETURN(0);
480 }
481
482 static struct dentry *ll_lookup2(struct inode *parent, struct dentry *dentry,
483                                  struct lookup_intent *it)
484 {
485         struct dentry *save = dentry;
486         int rc;
487
488         rc = ll_intent_lock(parent, &dentry, it, lookup2_finish);
489         if (rc < 0) {
490                 CERROR("ll_intent_lock: %d\n", rc);
491                 return ERR_PTR(rc);
492         }
493
494         if (dentry == save)
495                 return NULL;
496         else
497                 return dentry;
498 }
499
500 static struct inode *ll_create_node(struct inode *dir, const char *name,
501                                     int namelen, const void *data, int datalen,
502                                     int mode, __u64 extra,
503                                     struct lookup_intent *it)
504 {
505         struct inode *inode;
506         struct ptlrpc_request *request = NULL;
507         struct mds_body *body;
508         time_t time = CURRENT_TIME;
509         struct ll_sb_info *sbi = ll_i2sbi(dir);
510         struct ll_read_inode2_cookie lic = { .lic_lmm = NULL, };
511         ENTRY;
512
513         if (it && it->it_disposition) {
514                 int rc = it->it_status;
515                 if (rc) {
516                         CERROR("error creating MDS inode for %*s: rc = %d\n",
517                                namelen, name, rc);
518                         RETURN(ERR_PTR(rc));
519                 }
520                 ll_invalidate_inode_pages(dir);
521                 request = it->it_data;
522                 body = lustre_msg_buf(request->rq_repmsg, 1);
523         } else {
524                 int gid = current->fsgid;
525                 int rc;
526
527                 if (dir->i_mode & S_ISGID) {
528                         gid = dir->i_gid;
529                         if (S_ISDIR(mode))
530                                 mode |= S_ISGID;
531                 }
532
533                 rc = mdc_create(&sbi->ll_mdc_conn, dir, name, namelen,
534                                 data, datalen, mode, current->fsuid, gid,
535                                 time, extra, &request);
536                 if (rc) {
537                         inode = ERR_PTR(rc);
538                         GOTO(out, rc);
539                 }
540                 body = lustre_msg_buf(request->rq_repmsg, 0);
541         }
542
543         lic.lic_body = body;
544
545         inode = ll_iget(dir->i_sb, body->ino, &lic);
546         if (IS_ERR(inode)) {
547                 int rc = PTR_ERR(inode);
548                 CERROR("new_inode -fatal: rc %d\n", rc);
549                 LBUG();
550                 GOTO(out, rc);
551         }
552
553         if (!list_empty(&inode->i_dentry)) {
554                 CERROR("new_inode -fatal: inode %d, ct %d lnk %d\n",
555                        body->ino, atomic_read(&inode->i_count),
556                        inode->i_nlink);
557                 iput(inode);
558                 LBUG();
559                 inode = ERR_PTR(-EIO);
560                 GOTO(out, -EIO);
561         }
562
563         if (it && it->it_disposition) {
564                 /* We asked for a lock on the directory, but were
565                  * granted a lock on the inode.  Since we finally have
566                  * an inode pointer, stuff it in the lock. */
567                 ldlm_lock_set_data((struct lustre_handle *)it->it_lock_handle,
568                                    inode, sizeof(*inode));
569         }
570
571         EXIT;
572  out:
573         ptlrpc_req_finished(request);
574         return inode;
575 }
576
577 static int ll_mdc_unlink(struct inode *dir, struct inode *child, __u32 mode,
578                          const char *name, int len)
579 {
580         struct ptlrpc_request *request = NULL;
581         struct ll_sb_info *sbi = ll_i2sbi(dir);
582         int err;
583
584         ENTRY;
585
586         err = mdc_unlink(&sbi->ll_mdc_conn, dir, child, mode, name, len,
587                          &request);
588         ptlrpc_req_finished(request);
589
590         RETURN(err);
591 }
592
593 int ll_mdc_link(struct dentry *src, struct inode *dir,
594                 const char *name, int len)
595 {
596         struct ptlrpc_request *request = NULL;
597         int err;
598         struct ll_sb_info *sbi = ll_i2sbi(dir);
599
600         ENTRY;
601
602         err = mdc_link(&sbi->ll_mdc_conn, src, dir, name, len, &request);
603         ptlrpc_req_finished(request);
604
605         RETURN(err);
606 }
607
608 int ll_mdc_rename(struct inode *src, struct inode *tgt,
609                   struct dentry *old, struct dentry *new)
610 {
611         struct ptlrpc_request *request = NULL;
612         struct ll_sb_info *sbi = ll_i2sbi(src);
613         int err;
614
615         ENTRY;
616
617         err = mdc_rename(&sbi->ll_mdc_conn, src, tgt,
618                          old->d_name.name, old->d_name.len,
619                          new->d_name.name, new->d_name.len, &request);
620         ptlrpc_req_finished(request);
621
622         RETURN(err);
623 }
624
625 /*
626  * By the time this is called, we already have created the directory cache
627  * entry for the new file, but it is so far negative - it has no inode.
628  *
629  * We defer creating the OBD object(s) until open, to keep the intent and
630  * non-intent code paths similar, and also because we do not have the MDS
631  * inode number before calling ll_create_node() (which is needed for LOV),
632  * so we would need to do yet another RPC to the MDS to store the LOV EA
633  * data on the MDS.  If needed, we would pass the PACKED lmm as data and
634  * lmm_size in datalen (the MDS still has code which will handle that).
635  *
636  * If the create succeeds, we fill in the inode information
637  * with d_instantiate().
638  */
639 static int ll_create(struct inode *dir, struct dentry *dentry, int mode)
640 {
641         struct lookup_intent *it;
642         struct inode *inode;
643         int rc = 0;
644         ENTRY;
645
646         LL_GET_INTENT(dentry, it);
647
648         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
649                                NULL, 0, mode, 0, it);
650
651         if (IS_ERR(inode))
652                 RETURN(PTR_ERR(inode));
653
654         if (it && it->it_disposition) {
655                 struct ll_inode_info *lli = ll_i2info(inode);
656                 memcpy(&lli->lli_intent_lock_handle, it->it_lock_handle,
657                        sizeof(lli->lli_intent_lock_handle));
658                 d_instantiate(dentry, inode);
659         } else {
660                 /* no directory data updates when intents rule */
661                 rc = ext2_add_nondir(dentry, inode);
662         }
663
664         RETURN(rc);
665 }
666
667 static int ll_mknod(struct inode *dir, struct dentry *dentry, int mode,
668                     int rdev)
669 {
670         struct lookup_intent *it;
671         struct inode *inode;
672         int rc = 0;
673
674         LL_GET_INTENT(dentry, it);
675
676         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
677                                NULL, 0, mode, rdev, it);
678
679         if (IS_ERR(inode))
680                 RETURN(PTR_ERR(inode));
681
682         /* no directory data updates when intents rule */
683         if (it && it->it_disposition)
684                 d_instantiate(dentry, inode);
685         else
686                 rc = ext2_add_nondir(dentry, inode);
687
688         return rc;
689 }
690
691 static int ll_symlink(struct inode *dir, struct dentry *dentry,
692                       const char *symname)
693 {
694         struct lookup_intent *it;
695         unsigned l = strlen(symname) + 1;
696         struct inode *inode;
697         struct ll_inode_info *lli;
698         int err = 0;
699         ENTRY;
700
701         LL_GET_INTENT(dentry, it);
702
703         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
704                                symname, l, S_IFLNK | S_IRWXUGO, 0, it);
705         if (IS_ERR(inode))
706                 RETURN(PTR_ERR(inode));
707
708         lli = ll_i2info(inode);
709
710         OBD_ALLOC(lli->lli_symlink_name, l);
711         /* this _could_ be a non-fatal error, since the symlink is already
712          * stored on the MDS by this point, and we can re-get it in readlink.
713          */
714         if (!lli->lli_symlink_name)
715                 RETURN(-ENOMEM);
716
717         memcpy(lli->lli_symlink_name, symname, l);
718         inode->i_size = l - 1;
719
720         /* no directory data updates when intents rule */
721         if (it && it->it_disposition)
722                 d_instantiate(dentry, inode);
723         else
724                 err = ext2_add_nondir(dentry, inode);
725
726         RETURN(err);
727 }
728
729 static int ll_link(struct dentry *old_dentry, struct inode * dir,
730                    struct dentry *dentry)
731 {
732         struct lookup_intent *it;
733         struct inode *inode = old_dentry->d_inode;
734         int rc;
735
736         LL_GET_INTENT(dentry, it);
737
738         if (it && it->it_disposition) {
739                 if (it->it_status)
740                         RETURN(it->it_status);
741                 inode->i_ctime = CURRENT_TIME;
742                 ext2_inc_count(inode);
743                 atomic_inc(&inode->i_count);
744                 d_instantiate(dentry, inode);
745                 ll_invalidate_inode_pages(dir);
746                 RETURN(0);
747         }
748
749         if (S_ISDIR(inode->i_mode))
750                 return -EPERM;
751
752         if (inode->i_nlink >= EXT2_LINK_MAX)
753                 return -EMLINK;
754
755         rc = ll_mdc_link(old_dentry, dir,
756                           dentry->d_name.name, dentry->d_name.len);
757         if (rc)
758                 RETURN(rc);
759
760         inode->i_ctime = CURRENT_TIME;
761         ext2_inc_count(inode);
762         atomic_inc(&inode->i_count);
763
764         return ext2_add_nondir(dentry, inode);
765 }
766
767 static int ll_mkdir(struct inode *dir, struct dentry *dentry, int mode)
768 {
769         struct lookup_intent *it;
770         struct inode * inode;
771         int err = -EMLINK;
772         ENTRY;
773
774         LL_GET_INTENT(dentry, it);
775
776         if (dir->i_nlink >= EXT2_LINK_MAX)
777                 goto out;
778
779         ext2_inc_count(dir);
780         inode = ll_create_node(dir, dentry->d_name.name, dentry->d_name.len,
781                                NULL, 0, S_IFDIR | mode, 0, it);
782         err = PTR_ERR(inode);
783         if (IS_ERR(inode))
784                 goto out_dir;
785
786         err = ext2_make_empty(inode, dir);
787         if (err)
788                 goto out_fail;
789
790         /* no directory data updates when intents rule */
791         if (!it || !it->it_disposition) {
792                 /* XXX FIXME This code needs re-checked for non-intents */
793                 ext2_inc_count(inode);
794                 err = ll_add_link(dentry, inode);
795                 if (err)
796                         goto out_fail;
797         }
798
799         d_instantiate(dentry, inode);
800 out:
801         EXIT;
802         return err;
803
804 out_fail:
805         ext2_dec_count(inode);
806         ext2_dec_count(inode);
807         iput(inode);
808         EXIT;
809 out_dir:
810         ext2_dec_count(dir);
811         EXIT;
812         goto out;
813 }
814
815 static int ll_common_unlink(struct inode *dir, struct dentry *dentry,
816                             struct lookup_intent *it, __u32 mode)
817 {
818         struct inode *inode = dentry->d_inode;
819         struct ext2_dir_entry_2 * de;
820         struct page * page;
821         int rc = 0;
822
823         if (it && it->it_disposition) {
824                 rc = it->it_status;
825                 ll_invalidate_inode_pages(dir);
826                 if (rc)
827                         GOTO(out, rc);
828                 GOTO(out_dec, 0);
829         }
830
831         de = ext2_find_entry(dir, dentry, &page);
832         if (!de)
833                 GOTO(out, rc = -ENOENT);
834         rc = ll_mdc_unlink(dir, dentry->d_inode, mode,
835                            dentry->d_name.name, dentry->d_name.len);
836         if (rc)
837                 GOTO(out, rc);
838
839         rc = ext2_delete_entry(de, page);
840         if (rc)
841                 GOTO(out, rc);
842
843         /* AED: not sure if needed - directory lock revocation should do it
844          * in the case where the client has cached it for non-intent ops.
845          */
846         ll_invalidate_inode_pages(dir);
847
848         inode->i_ctime = dir->i_ctime;
849 out_dec:
850         ext2_dec_count(inode);
851 out:
852         return rc;
853 }
854
855 static int ll_unlink(struct inode *dir, struct dentry *dentry)
856 {
857         struct lookup_intent * it;
858
859         LL_GET_INTENT(dentry, it);
860
861         return ll_common_unlink(dir, dentry, it, S_IFREG);
862 }
863
864 static int ll_rmdir(struct inode *dir, struct dentry *dentry)
865 {
866         struct inode * inode = dentry->d_inode;
867         struct lookup_intent *it;
868         int rc;
869         ENTRY;
870
871         LL_GET_INTENT(dentry, it);
872
873         if ((!it || !it->it_disposition) && !ext2_empty_dir(inode))
874                 RETURN(-ENOTEMPTY);
875
876         rc = ll_common_unlink(dir, dentry, it, S_IFDIR);
877         if (!rc) {
878                 inode->i_size = 0;
879                 ext2_dec_count(inode);
880                 ext2_dec_count(dir);
881         }
882
883         RETURN(rc);
884 }
885
886 static int ll_rename(struct inode * old_dir, struct dentry * old_dentry,
887                      struct inode * new_dir, struct dentry * new_dentry)
888 {
889         struct lookup_intent *it;
890         struct inode * old_inode = old_dentry->d_inode;
891         struct inode * tgt_inode = new_dentry->d_inode;
892         struct page * dir_page = NULL;
893         struct ext2_dir_entry_2 * dir_de = NULL;
894         struct ext2_dir_entry_2 * old_de;
895         struct page * old_page;
896         int err;
897
898         LL_GET_INTENT(old_dentry, it);
899
900         if (it && it->it_disposition) {
901                 if (tgt_inode) {
902                         tgt_inode->i_ctime = CURRENT_TIME;
903                         tgt_inode->i_nlink--;
904                 }
905                 ll_invalidate_inode_pages(old_dir);
906                 ll_invalidate_inode_pages(new_dir);
907                 GOTO(out, err = it->it_status);
908         }
909
910         err = ll_mdc_rename(old_dir, new_dir, old_dentry, new_dentry);
911         if (err)
912                 goto out;
913
914         old_de = ext2_find_entry (old_dir, old_dentry, &old_page);
915         if (!old_de)
916                 goto out;
917
918         if (S_ISDIR(old_inode->i_mode)) {
919                 err = -EIO;
920                 dir_de = ext2_dotdot(old_inode, &dir_page);
921                 if (!dir_de)
922                         goto out_old;
923         }
924
925         if (tgt_inode) {
926                 struct page *new_page;
927                 struct ext2_dir_entry_2 *new_de;
928
929                 err = -ENOTEMPTY;
930                 if (dir_de && !ext2_empty_dir (tgt_inode))
931                         goto out_dir;
932
933                 err = -ENOENT;
934                 new_de = ext2_find_entry (new_dir, new_dentry, &new_page);
935                 if (!new_de)
936                         goto out_dir;
937                 ext2_inc_count(old_inode);
938                 ext2_set_link(new_dir, new_de, new_page, old_inode);
939                 tgt_inode->i_ctime = CURRENT_TIME;
940                 if (dir_de)
941                         tgt_inode->i_nlink--;
942                 ext2_dec_count(tgt_inode);
943         } else {
944                 if (dir_de) {
945                         err = -EMLINK;
946                         if (new_dir->i_nlink >= EXT2_LINK_MAX)
947                                 goto out_dir;
948                 }
949                 ext2_inc_count(old_inode);
950                 err = ll_add_link(new_dentry, old_inode);
951                 if (err) {
952                         ext2_dec_count(old_inode);
953                         goto out_dir;
954                 }
955                 if (dir_de)
956                         ext2_inc_count(new_dir);
957         }
958
959         ext2_delete_entry (old_de, old_page);
960         ext2_dec_count(old_inode);
961
962         if (dir_de) {
963                 ext2_set_link(old_inode, dir_de, dir_page, new_dir);
964                 ext2_dec_count(old_dir);
965         }
966         return 0;
967
968 out_dir:
969         if (dir_de) {
970                 kunmap(dir_page);
971                 page_cache_release(dir_page);
972         }
973 out_old:
974         kunmap(old_page);
975         page_cache_release(old_page);
976 out:
977         return err;
978 }
979
980 struct inode_operations ll_dir_inode_operations = {
981         create:         ll_create,
982         lookup2:        ll_lookup2,
983         link:           ll_link,
984         unlink:         ll_unlink,
985         symlink:        ll_symlink,
986         mkdir:          ll_mkdir,
987         rmdir:          ll_rmdir,
988         mknod:          ll_mknod,
989         rename:         ll_rename,
990         setattr:        ll_setattr
991 };