Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / fs / ocfs2 / inode.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * inode.c
5  *
6  * vfs' aops, fops, dops and iops
7  *
8  * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  * General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public
21  * License along with this program; if not, write to the
22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  * Boston, MA 021110-1307, USA.
24  */
25
26 #include <linux/fs.h>
27 #include <linux/types.h>
28 #include <linux/slab.h>
29 #include <linux/highmem.h>
30 #include <linux/pagemap.h>
31 #include <linux/smp_lock.h>
32
33 #include <asm/byteorder.h>
34
35 #define MLOG_MASK_PREFIX ML_INODE
36 #include <cluster/masklog.h>
37
38 #include "ocfs2.h"
39
40 #include "alloc.h"
41 #include "dlmglue.h"
42 #include "extent_map.h"
43 #include "file.h"
44 #include "heartbeat.h"
45 #include "inode.h"
46 #include "journal.h"
47 #include "namei.h"
48 #include "suballoc.h"
49 #include "super.h"
50 #include "symlink.h"
51 #include "sysfile.h"
52 #include "uptodate.h"
53 #include "vote.h"
54
55 #include "buffer_head_io.h"
56
57 #define OCFS2_FI_FLAG_NOWAIT    0x1
58 #define OCFS2_FI_FLAG_DELETE    0x2
59 struct ocfs2_find_inode_args
60 {
61         u64             fi_blkno;
62         unsigned long   fi_ino;
63         unsigned int    fi_flags;
64 };
65
66 static int ocfs2_read_locked_inode(struct inode *inode,
67                                    struct ocfs2_find_inode_args *args);
68 static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
69 static int ocfs2_find_actor(struct inode *inode, void *opaque);
70 static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
71                                     struct inode *inode,
72                                     struct buffer_head *fe_bh);
73
74 struct inode *ocfs2_ilookup_for_vote(struct ocfs2_super *osb,
75                                      u64 blkno,
76                                      int delete_vote)
77 {
78         struct ocfs2_find_inode_args args;
79
80         /* ocfs2_ilookup_for_vote should *only* be called from the
81          * vote thread */
82         BUG_ON(current != osb->vote_task);
83
84         args.fi_blkno = blkno;
85         args.fi_flags = OCFS2_FI_FLAG_NOWAIT;
86         if (delete_vote)
87                 args.fi_flags |= OCFS2_FI_FLAG_DELETE;
88         args.fi_ino = ino_from_blkno(osb->sb, blkno);
89         return ilookup5(osb->sb, args.fi_ino, ocfs2_find_actor, &args);
90 }
91
92 struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno)
93 {
94         struct inode *inode = NULL;
95         struct super_block *sb = osb->sb;
96         struct ocfs2_find_inode_args args;
97
98         mlog_entry("(blkno = %llu)\n", (unsigned long long)blkno);
99
100         /* Ok. By now we've either got the offsets passed to us by the
101          * caller, or we just pulled them off the bh. Lets do some
102          * sanity checks to make sure they're OK. */
103         if (blkno == 0) {
104                 inode = ERR_PTR(-EINVAL);
105                 mlog_errno(PTR_ERR(inode));
106                 goto bail;
107         }
108
109         args.fi_blkno = blkno;
110         args.fi_flags = 0;
111         args.fi_ino = ino_from_blkno(sb, blkno);
112
113         inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
114                              ocfs2_init_locked_inode, &args);
115         /* inode was *not* in the inode cache. 2.6.x requires
116          * us to do our own read_inode call and unlock it
117          * afterwards. */
118         if (inode && inode->i_state & I_NEW) {
119                 mlog(0, "Inode was not in inode cache, reading it.\n");
120                 ocfs2_read_locked_inode(inode, &args);
121                 unlock_new_inode(inode);
122         }
123         if (inode == NULL) {
124                 inode = ERR_PTR(-ENOMEM);
125                 mlog_errno(PTR_ERR(inode));
126                 goto bail;
127         }
128         if (is_bad_inode(inode)) {
129                 iput(inode);
130                 inode = ERR_PTR(-ESTALE);
131                 mlog_errno(PTR_ERR(inode));
132                 goto bail;
133         }
134
135 bail:
136         if (!IS_ERR(inode)) {
137                 mlog(0, "returning inode with number %llu\n",
138                      (unsigned long long)OCFS2_I(inode)->ip_blkno);
139                 mlog_exit_ptr(inode);
140         } else
141                 mlog_errno(PTR_ERR(inode));
142
143         return inode;
144 }
145
146
147 /*
148  * here's how inodes get read from disk:
149  * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
150  * found? : return the in-memory inode
151  * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
152  */
153
154 static int ocfs2_find_actor(struct inode *inode, void *opaque)
155 {
156         struct ocfs2_find_inode_args *args = NULL;
157         struct ocfs2_inode_info *oi = OCFS2_I(inode);
158         int ret = 0;
159
160         mlog_entry("(0x%p, %lu, 0x%p)\n", inode, inode->i_ino, opaque);
161
162         args = opaque;
163
164         mlog_bug_on_msg(!inode, "No inode in find actor!\n");
165
166         if (oi->ip_blkno != args->fi_blkno)
167                 goto bail;
168
169         /* OCFS2_FI_FLAG_NOWAIT is *only* set from
170          * ocfs2_ilookup_for_vote which won't create an inode for one
171          * that isn't found. The vote thread which doesn't want to get
172          * an inode which is in the process of going away - otherwise
173          * the call to __wait_on_freeing_inode in find_inode_fast will
174          * cause it to deadlock on an inode which may be waiting on a
175          * vote (or lock release) in delete_inode */
176         if ((args->fi_flags & OCFS2_FI_FLAG_NOWAIT) &&
177             (inode->i_state & (I_FREEING|I_CLEAR))) {
178                 /* As stated above, we're not going to return an
179                  * inode.  In the case of a delete vote, the voting
180                  * code is going to signal the other node to go
181                  * ahead. Mark that state here, so this freeing inode
182                  * has the state when it gets to delete_inode. */
183                 if (args->fi_flags & OCFS2_FI_FLAG_DELETE) {
184                         spin_lock(&oi->ip_lock);
185                         ocfs2_mark_inode_remotely_deleted(inode);
186                         spin_unlock(&oi->ip_lock);
187                 }
188                 goto bail;
189         }
190
191         ret = 1;
192 bail:
193         mlog_exit(ret);
194         return ret;
195 }
196
197 /*
198  * initialize the new inode, but don't do anything that would cause
199  * us to sleep.
200  * return 0 on success, 1 on failure
201  */
202 static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
203 {
204         struct ocfs2_find_inode_args *args = opaque;
205
206         mlog_entry("inode = %p, opaque = %p\n", inode, opaque);
207
208         inode->i_ino = args->fi_ino;
209         OCFS2_I(inode)->ip_blkno = args->fi_blkno;
210
211         mlog_exit(0);
212         return 0;
213 }
214
215 int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
216                          int create_ino)
217 {
218         struct super_block *sb;
219         struct ocfs2_super *osb;
220         int status = -EINVAL;
221
222         mlog_entry("(0x%p, size:%llu)\n", inode,
223                    (unsigned long long)fe->i_size);
224
225         sb = inode->i_sb;
226         osb = OCFS2_SB(sb);
227
228         /* this means that read_inode cannot create a superblock inode
229          * today.  change if needed. */
230         if (!OCFS2_IS_VALID_DINODE(fe) ||
231             !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
232                 mlog(ML_ERROR, "Invalid dinode: i_ino=%lu, i_blkno=%llu, "
233                      "signature = %.*s, flags = 0x%x\n",
234                      inode->i_ino,
235                      (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
236                      fe->i_signature, le32_to_cpu(fe->i_flags));
237                 goto bail;
238         }
239
240         if (le32_to_cpu(fe->i_fs_generation) != osb->fs_generation) {
241                 mlog(ML_ERROR, "file entry generation does not match "
242                      "superblock! osb->fs_generation=%x, "
243                      "fe->i_fs_generation=%x\n",
244                      osb->fs_generation, le32_to_cpu(fe->i_fs_generation));
245                 goto bail;
246         }
247
248         inode->i_version = 1;
249         inode->i_generation = le32_to_cpu(fe->i_generation);
250         inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
251         inode->i_mode = le16_to_cpu(fe->i_mode);
252         inode->i_uid = le32_to_cpu(fe->i_uid);
253         inode->i_gid = le32_to_cpu(fe->i_gid);
254
255         /* Fast symlinks will have i_size but no allocated clusters. */
256         if (S_ISLNK(inode->i_mode) && !fe->i_clusters)
257                 inode->i_blocks = 0;
258         else
259                 inode->i_blocks =
260                         ocfs2_align_bytes_to_sectors(le64_to_cpu(fe->i_size));
261         inode->i_mapping->a_ops = &ocfs2_aops;
262         inode->i_flags |= S_NOATIME;
263         inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
264         inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
265         inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
266         inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
267         inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
268         inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
269
270         if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
271                 mlog(ML_ERROR,
272                      "ip_blkno %llu != i_blkno %llu!\n",
273                      (unsigned long long)OCFS2_I(inode)->ip_blkno,
274                      (unsigned long long)fe->i_blkno);
275
276         OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
277         OCFS2_I(inode)->ip_orphaned_slot = OCFS2_INVALID_SLOT;
278
279         if (create_ino)
280                 inode->i_ino = ino_from_blkno(inode->i_sb,
281                                le64_to_cpu(fe->i_blkno));
282
283         mlog(0, "blkno = %llu, ino = %lu, create_ino = %s\n",
284              (unsigned long long)fe->i_blkno, inode->i_ino, create_ino ? "true" : "false");
285
286         inode->i_nlink = le16_to_cpu(fe->i_links_count);
287
288         if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
289                 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
290                 mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino);
291         } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
292                 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
293         } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
294                 mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino);
295                 /* we can't actually hit this as read_inode can't
296                  * handle superblocks today ;-) */
297                 BUG();
298         }
299
300         switch (inode->i_mode & S_IFMT) {
301             case S_IFREG:
302                     inode->i_fop = &ocfs2_fops;
303                     inode->i_op = &ocfs2_file_iops;
304                     i_size_write(inode, le64_to_cpu(fe->i_size));
305                     break;
306             case S_IFDIR:
307                     inode->i_op = &ocfs2_dir_iops;
308                     inode->i_fop = &ocfs2_dops;
309                     i_size_write(inode, le64_to_cpu(fe->i_size));
310                     break;
311             case S_IFLNK:
312                     if (ocfs2_inode_is_fast_symlink(inode))
313                         inode->i_op = &ocfs2_fast_symlink_inode_operations;
314                     else
315                         inode->i_op = &ocfs2_symlink_inode_operations;
316                     i_size_write(inode, le64_to_cpu(fe->i_size));
317                     break;
318             default:
319                     inode->i_op = &ocfs2_special_file_iops;
320                     init_special_inode(inode, inode->i_mode,
321                                        inode->i_rdev);
322                     break;
323         }
324
325         ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
326                                   OCFS2_LOCK_TYPE_RW, inode);
327         ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
328                                   OCFS2_LOCK_TYPE_META, inode);
329         ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_data_lockres,
330                                   OCFS2_LOCK_TYPE_DATA, inode);
331
332         status = 0;
333 bail:
334         mlog_exit(status);
335         return status;
336 }
337
338 static int ocfs2_read_locked_inode(struct inode *inode,
339                                    struct ocfs2_find_inode_args *args)
340 {
341         struct super_block *sb;
342         struct ocfs2_super *osb;
343         struct ocfs2_dinode *fe;
344         struct buffer_head *bh = NULL;
345         int status;
346         int sysfile = 0;
347
348         mlog_entry("(0x%p, 0x%p)\n", inode, args);
349
350         status = -EINVAL;
351         if (inode == NULL || inode->i_sb == NULL) {
352                 mlog(ML_ERROR, "bad inode\n");
353                 goto bail;
354         }
355         sb = inode->i_sb;
356         osb = OCFS2_SB(sb);
357
358         if (!args) {
359                 mlog(ML_ERROR, "bad inode args\n");
360                 make_bad_inode(inode);
361                 goto bail;
362         }
363
364         /* Read the FE off disk. This is safe because the kernel only
365          * does one read_inode2 for a new inode, and if it doesn't
366          * exist yet then nobody can be working on it! */
367         status = ocfs2_read_block(osb, args->fi_blkno, &bh, 0, NULL);
368         if (status < 0) {
369                 mlog_errno(status);
370                 make_bad_inode(inode);
371                 goto bail;
372         }
373
374         fe = (struct ocfs2_dinode *) bh->b_data;
375         if (!OCFS2_IS_VALID_DINODE(fe)) {
376                 mlog(ML_ERROR, "Invalid dinode #%llu: signature = %.*s\n",
377                      (unsigned long long)fe->i_blkno, 7, fe->i_signature);
378                 make_bad_inode(inode);
379                 goto bail;
380         }
381
382         if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL))
383                 sysfile = 1;
384
385         if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
386             S_ISBLK(le16_to_cpu(fe->i_mode)))
387                 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
388
389         status = -EINVAL;
390         if (ocfs2_populate_inode(inode, fe, 0) < 0) {
391                 mlog(ML_ERROR, "populate failed! i_blkno=%llu, i_ino=%lu\n",
392                      (unsigned long long)fe->i_blkno, inode->i_ino);
393                 make_bad_inode(inode);
394                 goto bail;
395         }
396
397         BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
398
399         if (sysfile)
400                OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
401
402         status = 0;
403
404 bail:
405         if (args && bh)
406                 brelse(bh);
407
408         mlog_exit(status);
409         return status;
410 }
411
412 void ocfs2_sync_blockdev(struct super_block *sb)
413 {
414         sync_blockdev(sb->s_bdev);
415 }
416
417 static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
418                                      struct inode *inode,
419                                      struct buffer_head *fe_bh)
420 {
421         int status = 0;
422         struct ocfs2_journal_handle *handle = NULL;
423         struct ocfs2_truncate_context *tc = NULL;
424         struct ocfs2_dinode *fe;
425
426         mlog_entry_void();
427
428         fe = (struct ocfs2_dinode *) fe_bh->b_data;
429
430         /* zero allocation, zero truncate :) */
431         if (!fe->i_clusters)
432                 goto bail;
433
434         handle = ocfs2_start_trans(osb, handle, OCFS2_INODE_UPDATE_CREDITS);
435         if (IS_ERR(handle)) {
436                 status = PTR_ERR(handle);
437                 handle = NULL;
438                 mlog_errno(status);
439                 goto bail;
440         }
441
442         status = ocfs2_set_inode_size(handle, inode, fe_bh, 0ULL);
443         if (status < 0) {
444                 mlog_errno(status);
445                 goto bail;
446         }
447
448         ocfs2_commit_trans(handle);
449         handle = NULL;
450
451         status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
452         if (status < 0) {
453                 mlog_errno(status);
454                 goto bail;
455         }
456
457         status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
458         if (status < 0) {
459                 mlog_errno(status);
460                 goto bail;
461         }
462 bail:
463         if (handle)
464                 ocfs2_commit_trans(handle);
465
466         mlog_exit(status);
467         return status;
468 }
469
470 static int ocfs2_remove_inode(struct inode *inode,
471                               struct buffer_head *di_bh,
472                               struct inode *orphan_dir_inode,
473                               struct buffer_head *orphan_dir_bh)
474 {
475         int status;
476         struct inode *inode_alloc_inode = NULL;
477         struct buffer_head *inode_alloc_bh = NULL;
478         struct ocfs2_journal_handle *handle;
479         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
480         struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
481
482         inode_alloc_inode =
483                 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
484                                             le16_to_cpu(di->i_suballoc_slot));
485         if (!inode_alloc_inode) {
486                 status = -EEXIST;
487                 mlog_errno(status);
488                 goto bail;
489         }
490
491         mutex_lock(&inode_alloc_inode->i_mutex);
492         status = ocfs2_meta_lock(inode_alloc_inode, NULL, &inode_alloc_bh, 1);
493         if (status < 0) {
494                 mutex_unlock(&inode_alloc_inode->i_mutex);
495
496                 mlog_errno(status);
497                 goto bail;
498         }
499
500         handle = ocfs2_start_trans(osb, NULL, OCFS2_DELETE_INODE_CREDITS);
501         if (IS_ERR(handle)) {
502                 status = PTR_ERR(handle);
503                 mlog_errno(status);
504                 goto bail_unlock;
505         }
506
507         status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
508                                   orphan_dir_bh);
509         if (status < 0) {
510                 mlog_errno(status);
511                 goto bail_commit;
512         }
513
514         /* set the inodes dtime */
515         status = ocfs2_journal_access(handle, inode, di_bh,
516                                       OCFS2_JOURNAL_ACCESS_WRITE);
517         if (status < 0) {
518                 mlog_errno(status);
519                 goto bail_commit;
520         }
521
522         di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
523         le32_and_cpu(&di->i_flags, ~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
524
525         status = ocfs2_journal_dirty(handle, di_bh);
526         if (status < 0) {
527                 mlog_errno(status);
528                 goto bail_commit;
529         }
530
531         ocfs2_remove_from_cache(inode, di_bh);
532
533         status = ocfs2_free_dinode(handle, inode_alloc_inode,
534                                    inode_alloc_bh, di);
535         if (status < 0)
536                 mlog_errno(status);
537
538 bail_commit:
539         ocfs2_commit_trans(handle);
540 bail_unlock:
541         ocfs2_meta_unlock(inode_alloc_inode, 1);
542         mutex_unlock(&inode_alloc_inode->i_mutex);
543         brelse(inode_alloc_bh);
544 bail:
545         iput(inode_alloc_inode);
546
547         return status;
548 }
549
550 /* 
551  * Serialize with orphan dir recovery. If the process doing
552  * recovery on this orphan dir does an iget() with the dir
553  * i_mutex held, we'll deadlock here. Instead we detect this
554  * and exit early - recovery will wipe this inode for us.
555  */
556 static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
557                                              int slot)
558 {
559         int ret = 0;
560
561         spin_lock(&osb->osb_lock);
562         if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
563                 mlog(0, "Recovery is happening on orphan dir %d, will skip "
564                      "this inode\n", slot);
565                 ret = -EDEADLK;
566                 goto out;
567         }
568         /* This signals to the orphan recovery process that it should
569          * wait for us to handle the wipe. */
570         osb->osb_orphan_wipes[slot]++;
571 out:
572         spin_unlock(&osb->osb_lock);
573         return ret;
574 }
575
576 static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
577                                          int slot)
578 {
579         spin_lock(&osb->osb_lock);
580         osb->osb_orphan_wipes[slot]--;
581         spin_unlock(&osb->osb_lock);
582
583         wake_up(&osb->osb_wipe_event);
584 }
585
586 static int ocfs2_wipe_inode(struct inode *inode,
587                             struct buffer_head *di_bh)
588 {
589         int status, orphaned_slot;
590         struct inode *orphan_dir_inode = NULL;
591         struct buffer_head *orphan_dir_bh = NULL;
592         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
593
594         /* We've already voted on this so it should be readonly - no
595          * spinlock needed. */
596         orphaned_slot = OCFS2_I(inode)->ip_orphaned_slot;
597
598         status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
599         if (status)
600                 return status;
601
602         orphan_dir_inode = ocfs2_get_system_file_inode(osb,
603                                                        ORPHAN_DIR_SYSTEM_INODE,
604                                                        orphaned_slot);
605         if (!orphan_dir_inode) {
606                 status = -EEXIST;
607                 mlog_errno(status);
608                 goto bail;
609         }
610
611         /* Lock the orphan dir. The lock will be held for the entire
612          * delete_inode operation. We do this now to avoid races with
613          * recovery completion on other nodes. */
614         mutex_lock(&orphan_dir_inode->i_mutex);
615         status = ocfs2_meta_lock(orphan_dir_inode, NULL, &orphan_dir_bh, 1);
616         if (status < 0) {
617                 mutex_unlock(&orphan_dir_inode->i_mutex);
618
619                 mlog_errno(status);
620                 goto bail;
621         }
622
623         /* we do this while holding the orphan dir lock because we
624          * don't want recovery being run from another node to vote for
625          * an inode delete on us -- this will result in two nodes
626          * truncating the same file! */
627         status = ocfs2_truncate_for_delete(osb, inode, di_bh);
628         if (status < 0) {
629                 mlog_errno(status);
630                 goto bail_unlock_dir;
631         }
632
633         status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
634                                     orphan_dir_bh);
635         if (status < 0)
636                 mlog_errno(status);
637
638 bail_unlock_dir:
639         ocfs2_meta_unlock(orphan_dir_inode, 1);
640         mutex_unlock(&orphan_dir_inode->i_mutex);
641         brelse(orphan_dir_bh);
642 bail:
643         iput(orphan_dir_inode);
644         ocfs2_signal_wipe_completion(osb, orphaned_slot);
645
646         return status;
647 }
648
649 /* There is a series of simple checks that should be done before a
650  * vote is even considered. Encapsulate those in this function. */
651 static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
652 {
653         int ret = 0;
654         struct ocfs2_inode_info *oi = OCFS2_I(inode);
655         struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
656
657         /* We shouldn't be getting here for the root directory
658          * inode.. */
659         if (inode == osb->root_inode) {
660                 mlog(ML_ERROR, "Skipping delete of root inode.\n");
661                 goto bail;
662         }
663
664         /* If we're coming from process_vote we can't go into our own
665          * voting [hello, deadlock city!], so unforuntately we just
666          * have to skip deleting this guy. That's OK though because
667          * the node who's doing the actual deleting should handle it
668          * anyway. */
669         if (current == osb->vote_task) {
670                 mlog(0, "Skipping delete of %lu because we're currently "
671                      "in process_vote\n", inode->i_ino);
672                 goto bail;
673         }
674
675         spin_lock(&oi->ip_lock);
676         /* OCFS2 *never* deletes system files. This should technically
677          * never get here as system file inodes should always have a
678          * positive link count. */
679         if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
680                 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
681                      (unsigned long long)oi->ip_blkno);
682                 goto bail_unlock;
683         }
684
685         /* If we have voted "yes" on the wipe of this inode for
686          * another node, it will be marked here so we can safely skip
687          * it. Recovery will cleanup any inodes we might inadvertantly
688          * skip here. */
689         if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
690                 mlog(0, "Skipping delete of %lu because another node "
691                      "has done this for us.\n", inode->i_ino);
692                 goto bail_unlock;
693         }
694
695         ret = 1;
696 bail_unlock:
697         spin_unlock(&oi->ip_lock);
698 bail:
699         return ret;
700 }
701
702 /* Query the cluster to determine whether we should wipe an inode from
703  * disk or not.
704  *
705  * Requires the inode to have the cluster lock. */
706 static int ocfs2_query_inode_wipe(struct inode *inode,
707                                   struct buffer_head *di_bh,
708                                   int *wipe)
709 {
710         int status = 0;
711         struct ocfs2_inode_info *oi = OCFS2_I(inode);
712         struct ocfs2_dinode *di;
713
714         *wipe = 0;
715
716         /* While we were waiting for the cluster lock in
717          * ocfs2_delete_inode, another node might have asked to delete
718          * the inode. Recheck our flags to catch this. */
719         if (!ocfs2_inode_is_valid_to_delete(inode)) {
720                 mlog(0, "Skipping delete of %llu because flags changed\n",
721                      (unsigned long long)oi->ip_blkno);
722                 goto bail;
723         }
724
725         /* Now that we have an up to date inode, we can double check
726          * the link count. */
727         if (inode->i_nlink) {
728                 mlog(0, "Skipping delete of %llu because nlink = %u\n",
729                      (unsigned long long)oi->ip_blkno, inode->i_nlink);
730                 goto bail;
731         }
732
733         /* Do some basic inode verification... */
734         di = (struct ocfs2_dinode *) di_bh->b_data;
735         if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
736                 /* for lack of a better error? */
737                 status = -EEXIST;
738                 mlog(ML_ERROR,
739                      "Inode %llu (on-disk %llu) not orphaned! "
740                      "Disk flags  0x%x, inode flags 0x%x\n",
741                      (unsigned long long)oi->ip_blkno,
742                      (unsigned long long)di->i_blkno, di->i_flags,
743                      oi->ip_flags);
744                 goto bail;
745         }
746
747         /* has someone already deleted us?! baaad... */
748         if (di->i_dtime) {
749                 status = -EEXIST;
750                 mlog_errno(status);
751                 goto bail;
752         }
753
754         status = ocfs2_request_delete_vote(inode);
755         /* -EBUSY means that other nodes are still using the
756          * inode. We're done here though, so avoid doing anything on
757          * disk and let them worry about deleting it. */
758         if (status == -EBUSY) {
759                 status = 0;
760                 mlog(0, "Skipping delete of %llu because it is in use on"
761                      "other nodes\n", (unsigned long long)oi->ip_blkno);
762                 goto bail;
763         }
764         if (status < 0) {
765                 mlog_errno(status);
766                 goto bail;
767         }
768
769         spin_lock(&oi->ip_lock);
770         if (oi->ip_orphaned_slot == OCFS2_INVALID_SLOT) {
771                 /* Nobody knew which slot this inode was orphaned
772                  * into. This may happen during node death and
773                  * recovery knows how to clean it up so we can safely
774                  * ignore this inode for now on. */
775                 mlog(0, "Nobody knew where inode %llu was orphaned!\n",
776                      (unsigned long long)oi->ip_blkno);
777         } else {
778                 *wipe = 1;
779
780                 mlog(0, "Inode %llu is ok to wipe from orphan dir %d\n",
781                      (unsigned long long)oi->ip_blkno, oi->ip_orphaned_slot);
782         }
783         spin_unlock(&oi->ip_lock);
784
785 bail:
786         return status;
787 }
788
789 /* Support function for ocfs2_delete_inode. Will help us keep the
790  * inode data in a consistent state for clear_inode. Always truncates
791  * pages, optionally sync's them first. */
792 static void ocfs2_cleanup_delete_inode(struct inode *inode,
793                                        int sync_data)
794 {
795         mlog(0, "Cleanup inode %llu, sync = %d\n",
796              (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
797         if (sync_data)
798                 write_inode_now(inode, 1);
799         truncate_inode_pages(&inode->i_data, 0);
800 }
801
802 void ocfs2_delete_inode(struct inode *inode)
803 {
804         int wipe, status;
805         sigset_t blocked, oldset;
806         struct buffer_head *di_bh = NULL;
807
808         mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
809
810         if (is_bad_inode(inode)) {
811                 mlog(0, "Skipping delete of bad inode\n");
812                 goto bail;
813         }
814
815         if (!ocfs2_inode_is_valid_to_delete(inode)) {
816                 /* It's probably not necessary to truncate_inode_pages
817                  * here but we do it for safety anyway (it will most
818                  * likely be a no-op anyway) */
819                 ocfs2_cleanup_delete_inode(inode, 0);
820                 goto bail;
821         }
822
823         /* We want to block signals in delete_inode as the lock and
824          * messaging paths may return us -ERESTARTSYS. Which would
825          * cause us to exit early, resulting in inodes being orphaned
826          * forever. */
827         sigfillset(&blocked);
828         status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
829         if (status < 0) {
830                 mlog_errno(status);
831                 ocfs2_cleanup_delete_inode(inode, 1);
832                 goto bail;
833         }
834
835         /* Lock down the inode. This gives us an up to date view of
836          * it's metadata (for verification), and allows us to
837          * serialize delete_inode votes. 
838          *
839          * Even though we might be doing a truncate, we don't take the
840          * allocation lock here as it won't be needed - nobody will
841          * have the file open.
842          */
843         status = ocfs2_meta_lock(inode, NULL, &di_bh, 1);
844         if (status < 0) {
845                 if (status != -ENOENT)
846                         mlog_errno(status);
847                 ocfs2_cleanup_delete_inode(inode, 0);
848                 goto bail_unblock;
849         }
850
851         /* Query the cluster. This will be the final decision made
852          * before we go ahead and wipe the inode. */
853         status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
854         if (!wipe || status < 0) {
855                 /* Error and inode busy vote both mean we won't be
856                  * removing the inode, so they take almost the same
857                  * path. */
858                 if (status < 0)
859                         mlog_errno(status);
860
861                 /* Someone in the cluster has voted to not wipe this
862                  * inode, or it was never completely orphaned. Write
863                  * out the pages and exit now. */
864                 ocfs2_cleanup_delete_inode(inode, 1);
865                 goto bail_unlock_inode;
866         }
867
868         ocfs2_cleanup_delete_inode(inode, 0);
869
870         status = ocfs2_wipe_inode(inode, di_bh);
871         if (status < 0) {
872                 if (status != -EDEADLK)
873                         mlog_errno(status);
874                 goto bail_unlock_inode;
875         }
876
877         /* Mark the inode as successfully deleted. This is important
878          * for ocfs2_clear_inode as it will check this flag and skip
879          * any checkpointing work */
880         OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
881
882 bail_unlock_inode:
883         ocfs2_meta_unlock(inode, 1);
884         brelse(di_bh);
885 bail_unblock:
886         status = sigprocmask(SIG_SETMASK, &oldset, NULL);
887         if (status < 0)
888                 mlog_errno(status);
889 bail:
890         clear_inode(inode);
891         mlog_exit_void();
892 }
893
894 void ocfs2_clear_inode(struct inode *inode)
895 {
896         int status;
897         struct ocfs2_inode_info *oi = OCFS2_I(inode);
898
899         mlog_entry_void();
900
901         if (!inode)
902                 goto bail;
903
904         mlog(0, "Clearing inode: %llu, nlink = %u\n",
905              (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
906
907         mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
908                         "Inode=%lu\n", inode->i_ino);
909
910         /* Do these before all the other work so that we don't bounce
911          * the vote thread while waiting to destroy the locks. */
912         ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
913         ocfs2_mark_lockres_freeing(&oi->ip_meta_lockres);
914         ocfs2_mark_lockres_freeing(&oi->ip_data_lockres);
915
916         /* We very well may get a clear_inode before all an inodes
917          * metadata has hit disk. Of course, we can't drop any cluster
918          * locks until the journal has finished with it. The only
919          * exception here are successfully wiped inodes - their
920          * metadata can now be considered to be part of the system
921          * inodes from which it came. */
922         if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
923                 ocfs2_checkpoint_inode(inode);
924
925         mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
926                         "Clear inode of %llu, inode has io markers\n",
927                         (unsigned long long)oi->ip_blkno);
928
929         ocfs2_extent_map_drop(inode, 0);
930         ocfs2_extent_map_init(inode);
931
932         status = ocfs2_drop_inode_locks(inode);
933         if (status < 0)
934                 mlog_errno(status);
935
936         ocfs2_lock_res_free(&oi->ip_rw_lockres);
937         ocfs2_lock_res_free(&oi->ip_meta_lockres);
938         ocfs2_lock_res_free(&oi->ip_data_lockres);
939
940         ocfs2_metadata_cache_purge(inode);
941
942         mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
943                         "Clear inode of %llu, inode has %u cache items\n",
944                         (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
945
946         mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
947                         "Clear inode of %llu, inode has a bad flag\n",
948                         (unsigned long long)oi->ip_blkno);
949
950         mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
951                         "Clear inode of %llu, inode is locked\n",
952                         (unsigned long long)oi->ip_blkno);
953
954         mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
955                         "Clear inode of %llu, io_mutex is locked\n",
956                         (unsigned long long)oi->ip_blkno);
957         mutex_unlock(&oi->ip_io_mutex);
958
959         /*
960          * down_trylock() returns 0, down_write_trylock() returns 1
961          * kernel 1, world 0
962          */
963         mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
964                         "Clear inode of %llu, alloc_sem is locked\n",
965                         (unsigned long long)oi->ip_blkno);
966         up_write(&oi->ip_alloc_sem);
967
968         mlog_bug_on_msg(oi->ip_open_count,
969                         "Clear inode of %llu has open count %d\n",
970                         (unsigned long long)oi->ip_blkno, oi->ip_open_count);
971         mlog_bug_on_msg(!list_empty(&oi->ip_handle_list),
972                         "Clear inode of %llu has non empty handle list\n",
973                         (unsigned long long)oi->ip_blkno);
974         mlog_bug_on_msg(oi->ip_handle,
975                         "Clear inode of %llu has non empty handle pointer\n",
976                         (unsigned long long)oi->ip_blkno);
977
978         /* Clear all other flags. */
979         oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
980         oi->ip_created_trans = 0;
981         oi->ip_last_trans = 0;
982         oi->ip_dir_start_lookup = 0;
983         oi->ip_blkno = 0ULL;
984
985 bail:
986         mlog_exit_void();
987 }
988
989 /* Called under inode_lock, with no more references on the
990  * struct inode, so it's safe here to check the flags field
991  * and to manipulate i_nlink without any other locks. */
992 void ocfs2_drop_inode(struct inode *inode)
993 {
994         struct ocfs2_inode_info *oi = OCFS2_I(inode);
995
996         mlog_entry_void();
997
998         mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
999              (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
1000
1001         /* Testing ip_orphaned_slot here wouldn't work because we may
1002          * not have gotten a delete_inode vote from any other nodes
1003          * yet. */
1004         if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED) {
1005                 mlog(0, "Inode was orphaned on another node, clearing nlink.\n");
1006                 inode->i_nlink = 0;
1007         }
1008
1009         generic_drop_inode(inode);
1010
1011         mlog_exit_void();
1012 }
1013
1014 /*
1015  * TODO: this should probably be merged into ocfs2_get_block
1016  *
1017  * However, you now need to pay attention to the cont_prepare_write()
1018  * stuff in ocfs2_get_block (that is, ocfs2_get_block pretty much
1019  * expects never to extend).
1020  */
1021 struct buffer_head *ocfs2_bread(struct inode *inode,
1022                                 int block, int *err, int reada)
1023 {
1024         struct buffer_head *bh = NULL;
1025         int tmperr;
1026         u64 p_blkno;
1027         int readflags = OCFS2_BH_CACHED;
1028
1029 #if 0
1030         /* only turn this on if we know we can deal with read_block
1031          * returning nothing */
1032         if (reada)
1033                 readflags |= OCFS2_BH_READAHEAD;
1034 #endif
1035
1036         if (((u64)block << inode->i_sb->s_blocksize_bits) >=
1037             i_size_read(inode)) {
1038                 BUG_ON(!reada);
1039                 return NULL;
1040         }
1041
1042         tmperr = ocfs2_extent_map_get_blocks(inode, block, 1,
1043                                              &p_blkno, NULL);
1044         if (tmperr < 0) {
1045                 mlog_errno(tmperr);
1046                 goto fail;
1047         }
1048
1049         tmperr = ocfs2_read_block(OCFS2_SB(inode->i_sb), p_blkno, &bh,
1050                                   readflags, inode);
1051         if (tmperr < 0)
1052                 goto fail;
1053
1054         tmperr = 0;
1055
1056         *err = 0;
1057         return bh;
1058
1059 fail:
1060         if (bh) {
1061                 brelse(bh);
1062                 bh = NULL;
1063         }
1064         *err = -EIO;
1065         return NULL;
1066 }
1067
1068 /*
1069  * This is called from our getattr.
1070  */
1071 int ocfs2_inode_revalidate(struct dentry *dentry)
1072 {
1073         struct inode *inode = dentry->d_inode;
1074         int status = 0;
1075
1076         mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1077                    inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
1078
1079         if (!inode) {
1080                 mlog(0, "eep, no inode!\n");
1081                 status = -ENOENT;
1082                 goto bail;
1083         }
1084
1085         spin_lock(&OCFS2_I(inode)->ip_lock);
1086         if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1087                 spin_unlock(&OCFS2_I(inode)->ip_lock);
1088                 mlog(0, "inode deleted!\n");
1089                 status = -ENOENT;
1090                 goto bail;
1091         }
1092         spin_unlock(&OCFS2_I(inode)->ip_lock);
1093
1094         /* Let ocfs2_meta_lock do the work of updating our struct
1095          * inode for us. */
1096         status = ocfs2_meta_lock(inode, NULL, NULL, 0);
1097         if (status < 0) {
1098                 if (status != -ENOENT)
1099                         mlog_errno(status);
1100                 goto bail;
1101         }
1102         ocfs2_meta_unlock(inode, 0);
1103 bail:
1104         mlog_exit(status);
1105
1106         return status;
1107 }
1108
1109 /*
1110  * Updates a disk inode from a
1111  * struct inode.
1112  * Only takes ip_lock.
1113  */
1114 int ocfs2_mark_inode_dirty(struct ocfs2_journal_handle *handle,
1115                            struct inode *inode,
1116                            struct buffer_head *bh)
1117 {
1118         int status;
1119         struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1120
1121         mlog_entry("(inode %llu)\n",
1122                    (unsigned long long)OCFS2_I(inode)->ip_blkno);
1123
1124         status = ocfs2_journal_access(handle, inode, bh,
1125                                       OCFS2_JOURNAL_ACCESS_WRITE);
1126         if (status < 0) {
1127                 mlog_errno(status);
1128                 goto leave;
1129         }
1130
1131         spin_lock(&OCFS2_I(inode)->ip_lock);
1132         fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
1133         spin_unlock(&OCFS2_I(inode)->ip_lock);
1134
1135         fe->i_size = cpu_to_le64(i_size_read(inode));
1136         fe->i_links_count = cpu_to_le16(inode->i_nlink);
1137         fe->i_uid = cpu_to_le32(inode->i_uid);
1138         fe->i_gid = cpu_to_le32(inode->i_gid);
1139         fe->i_mode = cpu_to_le16(inode->i_mode);
1140         fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1141         fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1142         fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1143         fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1144         fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1145         fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1146
1147         status = ocfs2_journal_dirty(handle, bh);
1148         if (status < 0)
1149                 mlog_errno(status);
1150
1151         status = 0;
1152 leave:
1153
1154         mlog_exit(status);
1155         return status;
1156 }
1157
1158 /*
1159  *
1160  * Updates a struct inode from a disk inode.
1161  * does no i/o, only takes ip_lock.
1162  */
1163 void ocfs2_refresh_inode(struct inode *inode,
1164                          struct ocfs2_dinode *fe)
1165 {
1166         spin_lock(&OCFS2_I(inode)->ip_lock);
1167
1168         OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
1169         i_size_write(inode, le64_to_cpu(fe->i_size));
1170         inode->i_nlink = le16_to_cpu(fe->i_links_count);
1171         inode->i_uid = le32_to_cpu(fe->i_uid);
1172         inode->i_gid = le32_to_cpu(fe->i_gid);
1173         inode->i_mode = le16_to_cpu(fe->i_mode);
1174         if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1175                 inode->i_blocks = 0;
1176         else
1177                 inode->i_blocks = ocfs2_align_bytes_to_sectors(i_size_read(inode));
1178         inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1179         inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1180         inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1181         inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1182         inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1183         inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1184
1185         spin_unlock(&OCFS2_I(inode)->ip_lock);
1186 }