]> err.no Git - linux-2.6/blob - fs/gfs2/inode.c
[GFS2] Fix recursive locking attempt with NFS
[linux-2.6] / fs / gfs2 / inode.c
1 /*
2  * Copyright (C) Sistina Software, Inc.  1997-2003 All rights reserved.
3  * Copyright (C) 2004-2006 Red Hat, Inc.  All rights reserved.
4  *
5  * This copyrighted material is made available to anyone wishing to use,
6  * modify, copy, or redistribute it subject to the terms and conditions
7  * of the GNU General Public License version 2.
8  */
9
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/posix_acl.h>
16 #include <linux/sort.h>
17 #include <linux/gfs2_ondisk.h>
18 #include <linux/crc32.h>
19 #include <linux/lm_interface.h>
20 #include <linux/security.h>
21
22 #include "gfs2.h"
23 #include "incore.h"
24 #include "acl.h"
25 #include "bmap.h"
26 #include "dir.h"
27 #include "eattr.h"
28 #include "glock.h"
29 #include "glops.h"
30 #include "inode.h"
31 #include "log.h"
32 #include "meta_io.h"
33 #include "ops_address.h"
34 #include "ops_file.h"
35 #include "ops_inode.h"
36 #include "quota.h"
37 #include "rgrp.h"
38 #include "trans.h"
39 #include "util.h"
40
41 static int iget_test(struct inode *inode, void *opaque)
42 {
43         struct gfs2_inode *ip = GFS2_I(inode);
44         struct gfs2_inum_host *inum = opaque;
45
46         if (ip->i_num.no_addr == inum->no_addr)
47                 return 1;
48
49         return 0;
50 }
51
52 static int iget_set(struct inode *inode, void *opaque)
53 {
54         struct gfs2_inode *ip = GFS2_I(inode);
55         struct gfs2_inum_host *inum = opaque;
56
57         ip->i_num = *inum;
58         inode->i_ino = inum->no_addr;
59         return 0;
60 }
61
62 struct inode *gfs2_ilookup(struct super_block *sb, struct gfs2_inum_host *inum)
63 {
64         return ilookup5(sb, (unsigned long)inum->no_formal_ino,
65                         iget_test, inum);
66 }
67
68 static struct inode *gfs2_iget(struct super_block *sb, struct gfs2_inum_host *inum)
69 {
70         return iget5_locked(sb, (unsigned long)inum->no_formal_ino,
71                      iget_test, iget_set, inum);
72 }
73
74 /**
75  * gfs2_inode_lookup - Lookup an inode
76  * @sb: The super block
77  * @inum: The inode number
78  * @type: The type of the inode
79  *
80  * Returns: A VFS inode, or an error
81  */
82
83 struct inode *gfs2_inode_lookup(struct super_block *sb, struct gfs2_inum_host *inum, unsigned int type)
84 {
85         struct inode *inode = gfs2_iget(sb, inum);
86         struct gfs2_inode *ip = GFS2_I(inode);
87         struct gfs2_glock *io_gl;
88         int error;
89
90         if (!inode)
91                 return ERR_PTR(-ENOBUFS);
92
93         if (inode->i_state & I_NEW) {
94                 struct gfs2_sbd *sdp = GFS2_SB(inode);
95                 umode_t mode = DT2IF(type);
96                 inode->i_private = ip;
97                 inode->i_mode = mode;
98
99                 if (S_ISREG(mode)) {
100                         inode->i_op = &gfs2_file_iops;
101                         inode->i_fop = &gfs2_file_fops;
102                         inode->i_mapping->a_ops = &gfs2_file_aops;
103                 } else if (S_ISDIR(mode)) {
104                         inode->i_op = &gfs2_dir_iops;
105                         inode->i_fop = &gfs2_dir_fops;
106                 } else if (S_ISLNK(mode)) {
107                         inode->i_op = &gfs2_symlink_iops;
108                 } else {
109                         inode->i_op = &gfs2_dev_iops;
110                 }
111
112                 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
113                 if (unlikely(error))
114                         goto fail;
115                 ip->i_gl->gl_object = ip;
116
117                 error = gfs2_glock_get(sdp, inum->no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
118                 if (unlikely(error))
119                         goto fail_put;
120
121                 set_bit(GIF_INVALID, &ip->i_flags);
122                 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
123                 if (unlikely(error))
124                         goto fail_iopen;
125
126                 gfs2_glock_put(io_gl);
127                 unlock_new_inode(inode);
128         }
129
130         return inode;
131 fail_iopen:
132         gfs2_glock_put(io_gl);
133 fail_put:
134         ip->i_gl->gl_object = NULL;
135         gfs2_glock_put(ip->i_gl);
136 fail:
137         iput(inode);
138         return ERR_PTR(error);
139 }
140
141 static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
142 {
143         struct gfs2_dinode_host *di = &ip->i_di;
144         const struct gfs2_dinode *str = buf;
145
146         if (ip->i_num.no_addr != be64_to_cpu(str->di_num.no_addr)) {
147                 if (gfs2_consist_inode(ip))
148                         gfs2_dinode_print(ip);
149                 return -EIO;
150         }
151         if (ip->i_num.no_formal_ino != be64_to_cpu(str->di_num.no_formal_ino))
152                 return -ESTALE;
153
154         ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
155         ip->i_inode.i_rdev = 0;
156         switch (ip->i_inode.i_mode & S_IFMT) {
157         case S_IFBLK:
158         case S_IFCHR:
159                 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
160                                            be32_to_cpu(str->di_minor));
161                 break;
162         };
163
164         ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
165         ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
166         /*
167          * We will need to review setting the nlink count here in the
168          * light of the forthcoming ro bind mount work. This is a reminder
169          * to do that.
170          */
171         ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
172         di->di_size = be64_to_cpu(str->di_size);
173         i_size_write(&ip->i_inode, di->di_size);
174         di->di_blocks = be64_to_cpu(str->di_blocks);
175         gfs2_set_inode_blocks(&ip->i_inode);
176         ip->i_inode.i_atime.tv_sec = be64_to_cpu(str->di_atime);
177         ip->i_inode.i_atime.tv_nsec = 0;
178         ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
179         ip->i_inode.i_mtime.tv_nsec = 0;
180         ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
181         ip->i_inode.i_ctime.tv_nsec = 0;
182
183         di->di_goal_meta = be64_to_cpu(str->di_goal_meta);
184         di->di_goal_data = be64_to_cpu(str->di_goal_data);
185         di->di_generation = be64_to_cpu(str->di_generation);
186
187         di->di_flags = be32_to_cpu(str->di_flags);
188         gfs2_set_inode_flags(&ip->i_inode);
189         di->di_height = be16_to_cpu(str->di_height);
190
191         di->di_depth = be16_to_cpu(str->di_depth);
192         di->di_entries = be32_to_cpu(str->di_entries);
193
194         di->di_eattr = be64_to_cpu(str->di_eattr);
195         return 0;
196 }
197
198 /**
199  * gfs2_inode_refresh - Refresh the incore copy of the dinode
200  * @ip: The GFS2 inode
201  *
202  * Returns: errno
203  */
204
205 int gfs2_inode_refresh(struct gfs2_inode *ip)
206 {
207         struct buffer_head *dibh;
208         int error;
209
210         error = gfs2_meta_inode_buffer(ip, &dibh);
211         if (error)
212                 return error;
213
214         if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
215                 brelse(dibh);
216                 return -EIO;
217         }
218
219         error = gfs2_dinode_in(ip, dibh->b_data);
220         brelse(dibh);
221         clear_bit(GIF_INVALID, &ip->i_flags);
222
223         return error;
224 }
225
226 int gfs2_dinode_dealloc(struct gfs2_inode *ip)
227 {
228         struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
229         struct gfs2_alloc *al;
230         struct gfs2_rgrpd *rgd;
231         int error;
232
233         if (ip->i_di.di_blocks != 1) {
234                 if (gfs2_consist_inode(ip))
235                         gfs2_dinode_print(ip);
236                 return -EIO;
237         }
238
239         al = gfs2_alloc_get(ip);
240
241         error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
242         if (error)
243                 goto out;
244
245         error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
246         if (error)
247                 goto out_qs;
248
249         rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
250         if (!rgd) {
251                 gfs2_consist_inode(ip);
252                 error = -EIO;
253                 goto out_rindex_relse;
254         }
255
256         error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
257                                    &al->al_rgd_gh);
258         if (error)
259                 goto out_rindex_relse;
260
261         error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
262         if (error)
263                 goto out_rg_gunlock;
264
265         gfs2_trans_add_gl(ip->i_gl);
266
267         gfs2_free_di(rgd, ip);
268
269         gfs2_trans_end(sdp);
270         clear_bit(GLF_STICKY, &ip->i_gl->gl_flags);
271
272 out_rg_gunlock:
273         gfs2_glock_dq_uninit(&al->al_rgd_gh);
274 out_rindex_relse:
275         gfs2_glock_dq_uninit(&al->al_ri_gh);
276 out_qs:
277         gfs2_quota_unhold(ip);
278 out:
279         gfs2_alloc_put(ip);
280         return error;
281 }
282
283 static int gfs2_change_nlink_i(struct gfs2_inode *ip)
284 {
285         struct gfs2_sbd *sdp = ip->i_inode.i_sb->s_fs_info;
286         struct gfs2_inode *rindex = GFS2_I(sdp->sd_rindex);
287         struct gfs2_glock *ri_gl = rindex->i_gl;
288         struct gfs2_rgrpd *rgd;
289         struct gfs2_holder ri_gh, rg_gh;
290         int existing, error;
291
292         /* if we come from rename path, we could have the lock already */
293         existing = gfs2_glock_is_locked_by_me(ri_gl);
294         if (!existing) {
295                 error = gfs2_rindex_hold(sdp, &ri_gh);
296                 if (error)
297                         goto out;
298         }
299
300         /* find the matching rgd */
301         error = -EIO;
302         rgd = gfs2_blk2rgrpd(sdp, ip->i_num.no_addr);
303         if (!rgd)
304                 goto out_norgrp;
305
306         /*
307          * Eventually we may want to move rgd(s) to a linked list
308          * and piggyback the free logic into one of gfs2 daemons
309          * to gain some performance.
310          */
311         if (!rgd->rd_gl || !gfs2_glock_is_locked_by_me(rgd->rd_gl)) {
312                 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0, &rg_gh);
313                 if (error)
314                         goto out_norgrp;
315
316                 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
317                 gfs2_glock_dq_uninit(&rg_gh);
318         }
319
320 out_norgrp:
321         if (!existing)
322                 gfs2_glock_dq_uninit(&ri_gh);
323 out:
324         return error;
325 }
326
327 /**
328  * gfs2_change_nlink - Change nlink count on inode
329  * @ip: The GFS2 inode
330  * @diff: The change in the nlink count required
331  *
332  * Returns: errno
333  */
334 int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
335 {
336         struct buffer_head *dibh;
337         u32 nlink;
338         int error;
339
340         BUG_ON(diff != 1 && diff != -1);
341         nlink = ip->i_inode.i_nlink + diff;
342
343         /* If we are reducing the nlink count, but the new value ends up being
344            bigger than the old one, we must have underflowed. */
345         if (diff < 0 && nlink > ip->i_inode.i_nlink) {
346                 if (gfs2_consist_inode(ip))
347                         gfs2_dinode_print(ip);
348                 return -EIO;
349         }
350
351         error = gfs2_meta_inode_buffer(ip, &dibh);
352         if (error)
353                 return error;
354
355         if (diff > 0)
356                 inc_nlink(&ip->i_inode);
357         else
358                 drop_nlink(&ip->i_inode);
359
360         ip->i_inode.i_ctime = CURRENT_TIME_SEC;
361
362         gfs2_trans_add_bh(ip->i_gl, dibh, 1);
363         gfs2_dinode_out(ip, dibh->b_data);
364         brelse(dibh);
365         mark_inode_dirty(&ip->i_inode);
366
367         if (ip->i_inode.i_nlink == 0)
368                 error = gfs2_change_nlink_i(ip);
369
370         return error;
371 }
372
373 struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
374 {
375         struct qstr qstr;
376         struct inode *inode;
377         gfs2_str2qstr(&qstr, name);
378         inode = gfs2_lookupi(dip, &qstr, 1, NULL);
379         /* gfs2_lookupi has inconsistent callers: vfs
380          * related routines expect NULL for no entry found,
381          * gfs2_lookup_simple callers expect ENOENT
382          * and do not check for NULL.
383          */
384         if (inode == NULL)
385                 return ERR_PTR(-ENOENT);
386         else
387                 return inode;
388 }
389
390
391 /**
392  * gfs2_lookupi - Look up a filename in a directory and return its inode
393  * @d_gh: An initialized holder for the directory glock
394  * @name: The name of the inode to look for
395  * @is_root: If 1, ignore the caller's permissions
396  * @i_gh: An uninitialized holder for the new inode glock
397  *
398  * This can be called via the VFS filldir function when NFS is doing
399  * a readdirplus and the inode which its intending to stat isn't
400  * already in cache. In this case we must not take the directory glock
401  * again, since the readdir call will have already taken that lock.
402  *
403  * Returns: errno
404  */
405
406 struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
407                            int is_root, struct nameidata *nd)
408 {
409         struct super_block *sb = dir->i_sb;
410         struct gfs2_inode *dip = GFS2_I(dir);
411         struct gfs2_holder d_gh;
412         struct gfs2_inum_host inum;
413         unsigned int type;
414         int error;
415         struct inode *inode = NULL;
416         int unlock = 0;
417
418         if (!name->len || name->len > GFS2_FNAMESIZE)
419                 return ERR_PTR(-ENAMETOOLONG);
420
421         if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
422             (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
423              dir == sb->s_root->d_inode)) {
424                 igrab(dir);
425                 return dir;
426         }
427
428         if (gfs2_glock_is_locked_by_me(dip->i_gl) == 0) {
429                 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
430                 if (error)
431                         return ERR_PTR(error);
432                 unlock = 1;
433         }
434
435         if (!is_root) {
436                 error = permission(dir, MAY_EXEC, NULL);
437                 if (error)
438                         goto out;
439         }
440
441         error = gfs2_dir_search(dir, name, &inum, &type);
442         if (error)
443                 goto out;
444
445         inode = gfs2_inode_lookup(sb, &inum, type);
446
447 out:
448         if (unlock)
449                 gfs2_glock_dq_uninit(&d_gh);
450         if (error == -ENOENT)
451                 return NULL;
452         return inode ? inode : ERR_PTR(error);
453 }
454
455 static int pick_formal_ino_1(struct gfs2_sbd *sdp, u64 *formal_ino)
456 {
457         struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
458         struct buffer_head *bh;
459         struct gfs2_inum_range_host ir;
460         int error;
461
462         error = gfs2_trans_begin(sdp, RES_DINODE, 0);
463         if (error)
464                 return error;
465         mutex_lock(&sdp->sd_inum_mutex);
466
467         error = gfs2_meta_inode_buffer(ip, &bh);
468         if (error) {
469                 mutex_unlock(&sdp->sd_inum_mutex);
470                 gfs2_trans_end(sdp);
471                 return error;
472         }
473
474         gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
475
476         if (ir.ir_length) {
477                 *formal_ino = ir.ir_start++;
478                 ir.ir_length--;
479                 gfs2_trans_add_bh(ip->i_gl, bh, 1);
480                 gfs2_inum_range_out(&ir,
481                                     bh->b_data + sizeof(struct gfs2_dinode));
482                 brelse(bh);
483                 mutex_unlock(&sdp->sd_inum_mutex);
484                 gfs2_trans_end(sdp);
485                 return 0;
486         }
487
488         brelse(bh);
489
490         mutex_unlock(&sdp->sd_inum_mutex);
491         gfs2_trans_end(sdp);
492
493         return 1;
494 }
495
496 static int pick_formal_ino_2(struct gfs2_sbd *sdp, u64 *formal_ino)
497 {
498         struct gfs2_inode *ip = GFS2_I(sdp->sd_ir_inode);
499         struct gfs2_inode *m_ip = GFS2_I(sdp->sd_inum_inode);
500         struct gfs2_holder gh;
501         struct buffer_head *bh;
502         struct gfs2_inum_range_host ir;
503         int error;
504
505         error = gfs2_glock_nq_init(m_ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
506         if (error)
507                 return error;
508
509         error = gfs2_trans_begin(sdp, 2 * RES_DINODE, 0);
510         if (error)
511                 goto out;
512         mutex_lock(&sdp->sd_inum_mutex);
513
514         error = gfs2_meta_inode_buffer(ip, &bh);
515         if (error)
516                 goto out_end_trans;
517
518         gfs2_inum_range_in(&ir, bh->b_data + sizeof(struct gfs2_dinode));
519
520         if (!ir.ir_length) {
521                 struct buffer_head *m_bh;
522                 u64 x, y;
523                 __be64 z;
524
525                 error = gfs2_meta_inode_buffer(m_ip, &m_bh);
526                 if (error)
527                         goto out_brelse;
528
529                 z = *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode));
530                 x = y = be64_to_cpu(z);
531                 ir.ir_start = x;
532                 ir.ir_length = GFS2_INUM_QUANTUM;
533                 x += GFS2_INUM_QUANTUM;
534                 if (x < y)
535                         gfs2_consist_inode(m_ip);
536                 z = cpu_to_be64(x);
537                 gfs2_trans_add_bh(m_ip->i_gl, m_bh, 1);
538                 *(__be64 *)(m_bh->b_data + sizeof(struct gfs2_dinode)) = z;
539
540                 brelse(m_bh);
541         }
542
543         *formal_ino = ir.ir_start++;
544         ir.ir_length--;
545
546         gfs2_trans_add_bh(ip->i_gl, bh, 1);
547         gfs2_inum_range_out(&ir, bh->b_data + sizeof(struct gfs2_dinode));
548
549 out_brelse:
550         brelse(bh);
551 out_end_trans:
552         mutex_unlock(&sdp->sd_inum_mutex);
553         gfs2_trans_end(sdp);
554 out:
555         gfs2_glock_dq_uninit(&gh);
556         return error;
557 }
558
559 static int pick_formal_ino(struct gfs2_sbd *sdp, u64 *inum)
560 {
561         int error;
562
563         error = pick_formal_ino_1(sdp, inum);
564         if (error <= 0)
565                 return error;
566
567         error = pick_formal_ino_2(sdp, inum);
568
569         return error;
570 }
571
572 /**
573  * create_ok - OK to create a new on-disk inode here?
574  * @dip:  Directory in which dinode is to be created
575  * @name:  Name of new dinode
576  * @mode:
577  *
578  * Returns: errno
579  */
580
581 static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
582                      unsigned int mode)
583 {
584         int error;
585
586         error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
587         if (error)
588                 return error;
589
590         /*  Don't create entries in an unlinked directory  */
591         if (!dip->i_inode.i_nlink)
592                 return -EPERM;
593
594         error = gfs2_dir_search(&dip->i_inode, name, NULL, NULL);
595         switch (error) {
596         case -ENOENT:
597                 error = 0;
598                 break;
599         case 0:
600                 return -EEXIST;
601         default:
602                 return error;
603         }
604
605         if (dip->i_di.di_entries == (u32)-1)
606                 return -EFBIG;
607         if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
608                 return -EMLINK;
609
610         return 0;
611 }
612
613 static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
614                                unsigned int *uid, unsigned int *gid)
615 {
616         if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
617             (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
618                 if (S_ISDIR(*mode))
619                         *mode |= S_ISUID;
620                 else if (dip->i_inode.i_uid != current->fsuid)
621                         *mode &= ~07111;
622                 *uid = dip->i_inode.i_uid;
623         } else
624                 *uid = current->fsuid;
625
626         if (dip->i_inode.i_mode & S_ISGID) {
627                 if (S_ISDIR(*mode))
628                         *mode |= S_ISGID;
629                 *gid = dip->i_inode.i_gid;
630         } else
631                 *gid = current->fsgid;
632 }
633
634 static int alloc_dinode(struct gfs2_inode *dip, struct gfs2_inum_host *inum,
635                         u64 *generation)
636 {
637         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
638         int error;
639
640         gfs2_alloc_get(dip);
641
642         dip->i_alloc.al_requested = RES_DINODE;
643         error = gfs2_inplace_reserve(dip);
644         if (error)
645                 goto out;
646
647         error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
648         if (error)
649                 goto out_ipreserv;
650
651         inum->no_addr = gfs2_alloc_di(dip, generation);
652
653         gfs2_trans_end(sdp);
654
655 out_ipreserv:
656         gfs2_inplace_release(dip);
657 out:
658         gfs2_alloc_put(dip);
659         return error;
660 }
661
662 /**
663  * init_dinode - Fill in a new dinode structure
664  * @dip: the directory this inode is being created in
665  * @gl: The glock covering the new inode
666  * @inum: the inode number
667  * @mode: the file permissions
668  * @uid:
669  * @gid:
670  *
671  */
672
673 static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
674                         const struct gfs2_inum_host *inum, unsigned int mode,
675                         unsigned int uid, unsigned int gid,
676                         const u64 *generation, dev_t dev)
677 {
678         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
679         struct gfs2_dinode *di;
680         struct buffer_head *dibh;
681
682         dibh = gfs2_meta_new(gl, inum->no_addr);
683         gfs2_trans_add_bh(gl, dibh, 1);
684         gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
685         gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
686         di = (struct gfs2_dinode *)dibh->b_data;
687
688         di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
689         di->di_num.no_addr = cpu_to_be64(inum->no_addr);
690         di->di_mode = cpu_to_be32(mode);
691         di->di_uid = cpu_to_be32(uid);
692         di->di_gid = cpu_to_be32(gid);
693         di->di_nlink = 0;
694         di->di_size = 0;
695         di->di_blocks = cpu_to_be64(1);
696         di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(get_seconds());
697         di->di_major = cpu_to_be32(MAJOR(dev));
698         di->di_minor = cpu_to_be32(MINOR(dev));
699         di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
700         di->di_generation = cpu_to_be64(*generation);
701         di->di_flags = 0;
702
703         if (S_ISREG(mode)) {
704                 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_JDATA) ||
705                     gfs2_tune_get(sdp, gt_new_files_jdata))
706                         di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
707                 if ((dip->i_di.di_flags & GFS2_DIF_INHERIT_DIRECTIO) ||
708                     gfs2_tune_get(sdp, gt_new_files_directio))
709                         di->di_flags |= cpu_to_be32(GFS2_DIF_DIRECTIO);
710         } else if (S_ISDIR(mode)) {
711                 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
712                                             GFS2_DIF_INHERIT_DIRECTIO);
713                 di->di_flags |= cpu_to_be32(dip->i_di.di_flags &
714                                             GFS2_DIF_INHERIT_JDATA);
715         }
716
717         di->__pad1 = 0;
718         di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
719         di->di_height = 0;
720         di->__pad2 = 0;
721         di->__pad3 = 0;
722         di->di_depth = 0;
723         di->di_entries = 0;
724         memset(&di->__pad4, 0, sizeof(di->__pad4));
725         di->di_eattr = 0;
726         memset(&di->di_reserved, 0, sizeof(di->di_reserved));
727
728         brelse(dibh);
729 }
730
731 static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
732                        unsigned int mode, const struct gfs2_inum_host *inum,
733                        const u64 *generation, dev_t dev)
734 {
735         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
736         unsigned int uid, gid;
737         int error;
738
739         munge_mode_uid_gid(dip, &mode, &uid, &gid);
740         gfs2_alloc_get(dip);
741
742         error = gfs2_quota_lock(dip, uid, gid);
743         if (error)
744                 goto out;
745
746         error = gfs2_quota_check(dip, uid, gid);
747         if (error)
748                 goto out_quota;
749
750         error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
751         if (error)
752                 goto out_quota;
753
754         init_dinode(dip, gl, inum, mode, uid, gid, generation, dev);
755         gfs2_quota_change(dip, +1, uid, gid);
756         gfs2_trans_end(sdp);
757
758 out_quota:
759         gfs2_quota_unlock(dip);
760 out:
761         gfs2_alloc_put(dip);
762         return error;
763 }
764
765 static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
766                        struct gfs2_inode *ip)
767 {
768         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
769         struct gfs2_alloc *al;
770         int alloc_required;
771         struct buffer_head *dibh;
772         int error;
773
774         al = gfs2_alloc_get(dip);
775
776         error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
777         if (error)
778                 goto fail;
779
780         error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
781         if (alloc_required < 0)
782                 goto fail;
783         if (alloc_required) {
784                 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
785                 if (error)
786                         goto fail_quota_locks;
787
788                 al->al_requested = sdp->sd_max_dirres;
789
790                 error = gfs2_inplace_reserve(dip);
791                 if (error)
792                         goto fail_quota_locks;
793
794                 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
795                                          al->al_rgd->rd_ri.ri_length +
796                                          2 * RES_DINODE +
797                                          RES_STATFS + RES_QUOTA, 0);
798                 if (error)
799                         goto fail_ipreserv;
800         } else {
801                 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
802                 if (error)
803                         goto fail_quota_locks;
804         }
805
806         error = gfs2_dir_add(&dip->i_inode, name, &ip->i_num, IF2DT(ip->i_inode.i_mode));
807         if (error)
808                 goto fail_end_trans;
809
810         error = gfs2_meta_inode_buffer(ip, &dibh);
811         if (error)
812                 goto fail_end_trans;
813         ip->i_inode.i_nlink = 1;
814         gfs2_trans_add_bh(ip->i_gl, dibh, 1);
815         gfs2_dinode_out(ip, dibh->b_data);
816         brelse(dibh);
817         return 0;
818
819 fail_end_trans:
820         gfs2_trans_end(sdp);
821
822 fail_ipreserv:
823         if (dip->i_alloc.al_rgd)
824                 gfs2_inplace_release(dip);
825
826 fail_quota_locks:
827         gfs2_quota_unlock(dip);
828
829 fail:
830         gfs2_alloc_put(dip);
831         return error;
832 }
833
834 static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
835 {
836         int err;
837         size_t len;
838         void *value;
839         char *name;
840         struct gfs2_ea_request er;
841
842         err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
843                                            &name, &value, &len);
844
845         if (err) {
846                 if (err == -EOPNOTSUPP)
847                         return 0;
848                 return err;
849         }
850
851         memset(&er, 0, sizeof(struct gfs2_ea_request));
852
853         er.er_type = GFS2_EATYPE_SECURITY;
854         er.er_name = name;
855         er.er_data = value;
856         er.er_name_len = strlen(name);
857         er.er_data_len = len;
858
859         err = gfs2_ea_set_i(ip, &er);
860
861         kfree(value);
862         kfree(name);
863
864         return err;
865 }
866
867 /**
868  * gfs2_createi - Create a new inode
869  * @ghs: An array of two holders
870  * @name: The name of the new file
871  * @mode: the permissions on the new inode
872  *
873  * @ghs[0] is an initialized holder for the directory
874  * @ghs[1] is the holder for the inode lock
875  *
876  * If the return value is not NULL, the glocks on both the directory and the new
877  * file are held.  A transaction has been started and an inplace reservation
878  * is held, as well.
879  *
880  * Returns: An inode
881  */
882
883 struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
884                            unsigned int mode, dev_t dev)
885 {
886         struct inode *inode;
887         struct gfs2_inode *dip = ghs->gh_gl->gl_object;
888         struct inode *dir = &dip->i_inode;
889         struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
890         struct gfs2_inum_host inum;
891         int error;
892         u64 generation;
893
894         if (!name->len || name->len > GFS2_FNAMESIZE)
895                 return ERR_PTR(-ENAMETOOLONG);
896
897         gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
898         error = gfs2_glock_nq(ghs);
899         if (error)
900                 goto fail;
901
902         error = create_ok(dip, name, mode);
903         if (error)
904                 goto fail_gunlock;
905
906         error = pick_formal_ino(sdp, &inum.no_formal_ino);
907         if (error)
908                 goto fail_gunlock;
909
910         error = alloc_dinode(dip, &inum, &generation);
911         if (error)
912                 goto fail_gunlock;
913
914         error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
915                                   LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
916         if (error)
917                 goto fail_gunlock;
918
919         error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev);
920         if (error)
921                 goto fail_gunlock2;
922
923         inode = gfs2_inode_lookup(dir->i_sb, &inum, IF2DT(mode));
924         if (IS_ERR(inode))
925                 goto fail_gunlock2;
926
927         error = gfs2_inode_refresh(GFS2_I(inode));
928         if (error)
929                 goto fail_iput;
930
931         error = gfs2_acl_create(dip, GFS2_I(inode));
932         if (error)
933                 goto fail_iput;
934
935         error = gfs2_security_init(dip, GFS2_I(inode));
936         if (error)
937                 goto fail_iput;
938
939         error = link_dinode(dip, name, GFS2_I(inode));
940         if (error)
941                 goto fail_iput;
942
943         if (!inode)
944                 return ERR_PTR(-ENOMEM);
945         return inode;
946
947 fail_iput:
948         iput(inode);
949 fail_gunlock2:
950         gfs2_glock_dq_uninit(ghs + 1);
951 fail_gunlock:
952         gfs2_glock_dq(ghs);
953 fail:
954         return ERR_PTR(error);
955 }
956
957 /**
958  * gfs2_rmdiri - Remove a directory
959  * @dip: The parent directory of the directory to be removed
960  * @name: The name of the directory to be removed
961  * @ip: The GFS2 inode of the directory to be removed
962  *
963  * Assumes Glocks on dip and ip are held
964  *
965  * Returns: errno
966  */
967
968 int gfs2_rmdiri(struct gfs2_inode *dip, const struct qstr *name,
969                 struct gfs2_inode *ip)
970 {
971         struct qstr dotname;
972         int error;
973
974         if (ip->i_di.di_entries != 2) {
975                 if (gfs2_consist_inode(ip))
976                         gfs2_dinode_print(ip);
977                 return -EIO;
978         }
979
980         error = gfs2_dir_del(dip, name);
981         if (error)
982                 return error;
983
984         error = gfs2_change_nlink(dip, -1);
985         if (error)
986                 return error;
987
988         gfs2_str2qstr(&dotname, ".");
989         error = gfs2_dir_del(ip, &dotname);
990         if (error)
991                 return error;
992
993         gfs2_str2qstr(&dotname, "..");
994         error = gfs2_dir_del(ip, &dotname);
995         if (error)
996                 return error;
997
998         /* It looks odd, but it really should be done twice */
999         error = gfs2_change_nlink(ip, -1);
1000         if (error)
1001                 return error;
1002
1003         error = gfs2_change_nlink(ip, -1);
1004         if (error)
1005                 return error;
1006
1007         return error;
1008 }
1009
1010 /*
1011  * gfs2_unlink_ok - check to see that a inode is still in a directory
1012  * @dip: the directory
1013  * @name: the name of the file
1014  * @ip: the inode
1015  *
1016  * Assumes that the lock on (at least) @dip is held.
1017  *
1018  * Returns: 0 if the parent/child relationship is correct, errno if it isn't
1019  */
1020
1021 int gfs2_unlink_ok(struct gfs2_inode *dip, const struct qstr *name,
1022                    struct gfs2_inode *ip)
1023 {
1024         struct gfs2_inum_host inum;
1025         unsigned int type;
1026         int error;
1027
1028         if (IS_IMMUTABLE(&ip->i_inode) || IS_APPEND(&ip->i_inode))
1029                 return -EPERM;
1030
1031         if ((dip->i_inode.i_mode & S_ISVTX) &&
1032             dip->i_inode.i_uid != current->fsuid &&
1033             ip->i_inode.i_uid != current->fsuid && !capable(CAP_FOWNER))
1034                 return -EPERM;
1035
1036         if (IS_APPEND(&dip->i_inode))
1037                 return -EPERM;
1038
1039         error = permission(&dip->i_inode, MAY_WRITE | MAY_EXEC, NULL);
1040         if (error)
1041                 return error;
1042
1043         error = gfs2_dir_search(&dip->i_inode, name, &inum, &type);
1044         if (error)
1045                 return error;
1046
1047         if (!gfs2_inum_equal(&inum, &ip->i_num))
1048                 return -ENOENT;
1049
1050         if (IF2DT(ip->i_inode.i_mode) != type) {
1051                 gfs2_consist_inode(dip);
1052                 return -EIO;
1053         }
1054
1055         return 0;
1056 }
1057
1058 /*
1059  * gfs2_ok_to_move - check if it's ok to move a directory to another directory
1060  * @this: move this
1061  * @to: to here
1062  *
1063  * Follow @to back to the root and make sure we don't encounter @this
1064  * Assumes we already hold the rename lock.
1065  *
1066  * Returns: errno
1067  */
1068
1069 int gfs2_ok_to_move(struct gfs2_inode *this, struct gfs2_inode *to)
1070 {
1071         struct inode *dir = &to->i_inode;
1072         struct super_block *sb = dir->i_sb;
1073         struct inode *tmp;
1074         struct qstr dotdot;
1075         int error = 0;
1076
1077         gfs2_str2qstr(&dotdot, "..");
1078
1079         igrab(dir);
1080
1081         for (;;) {
1082                 if (dir == &this->i_inode) {
1083                         error = -EINVAL;
1084                         break;
1085                 }
1086                 if (dir == sb->s_root->d_inode) {
1087                         error = 0;
1088                         break;
1089                 }
1090
1091                 tmp = gfs2_lookupi(dir, &dotdot, 1, NULL);
1092                 if (IS_ERR(tmp)) {
1093                         error = PTR_ERR(tmp);
1094                         break;
1095                 }
1096
1097                 iput(dir);
1098                 dir = tmp;
1099         }
1100
1101         iput(dir);
1102
1103         return error;
1104 }
1105
1106 /**
1107  * gfs2_readlinki - return the contents of a symlink
1108  * @ip: the symlink's inode
1109  * @buf: a pointer to the buffer to be filled
1110  * @len: a pointer to the length of @buf
1111  *
1112  * If @buf is too small, a piece of memory is kmalloc()ed and needs
1113  * to be freed by the caller.
1114  *
1115  * Returns: errno
1116  */
1117
1118 int gfs2_readlinki(struct gfs2_inode *ip, char **buf, unsigned int *len)
1119 {
1120         struct gfs2_holder i_gh;
1121         struct buffer_head *dibh;
1122         unsigned int x;
1123         int error;
1124
1125         gfs2_holder_init(ip->i_gl, LM_ST_SHARED, GL_ATIME, &i_gh);
1126         error = gfs2_glock_nq_atime(&i_gh);
1127         if (error) {
1128                 gfs2_holder_uninit(&i_gh);
1129                 return error;
1130         }
1131
1132         if (!ip->i_di.di_size) {
1133                 gfs2_consist_inode(ip);
1134                 error = -EIO;
1135                 goto out;
1136         }
1137
1138         error = gfs2_meta_inode_buffer(ip, &dibh);
1139         if (error)
1140                 goto out;
1141
1142         x = ip->i_di.di_size + 1;
1143         if (x > *len) {
1144                 *buf = kmalloc(x, GFP_KERNEL);
1145                 if (!*buf) {
1146                         error = -ENOMEM;
1147                         goto out_brelse;
1148                 }
1149         }
1150
1151         memcpy(*buf, dibh->b_data + sizeof(struct gfs2_dinode), x);
1152         *len = x;
1153
1154 out_brelse:
1155         brelse(dibh);
1156 out:
1157         gfs2_glock_dq_uninit(&i_gh);
1158         return error;
1159 }
1160
1161 /**
1162  * gfs2_glock_nq_atime - Acquire a hold on an inode's glock, and
1163  *       conditionally update the inode's atime
1164  * @gh: the holder to acquire
1165  *
1166  * Tests atime (access time) for gfs2_read, gfs2_readdir and gfs2_mmap
1167  * Update if the difference between the current time and the inode's current
1168  * atime is greater than an interval specified at mount.
1169  *
1170  * Returns: errno
1171  */
1172
1173 int gfs2_glock_nq_atime(struct gfs2_holder *gh)
1174 {
1175         struct gfs2_glock *gl = gh->gh_gl;
1176         struct gfs2_sbd *sdp = gl->gl_sbd;
1177         struct gfs2_inode *ip = gl->gl_object;
1178         s64 curtime, quantum = gfs2_tune_get(sdp, gt_atime_quantum);
1179         unsigned int state;
1180         int flags;
1181         int error;
1182
1183         if (gfs2_assert_warn(sdp, gh->gh_flags & GL_ATIME) ||
1184             gfs2_assert_warn(sdp, !(gh->gh_flags & GL_ASYNC)) ||
1185             gfs2_assert_warn(sdp, gl->gl_ops == &gfs2_inode_glops))
1186                 return -EINVAL;
1187
1188         state = gh->gh_state;
1189         flags = gh->gh_flags;
1190
1191         error = gfs2_glock_nq(gh);
1192         if (error)
1193                 return error;
1194
1195         if (test_bit(SDF_NOATIME, &sdp->sd_flags) ||
1196             (sdp->sd_vfs->s_flags & MS_RDONLY))
1197                 return 0;
1198
1199         curtime = get_seconds();
1200         if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
1201                 gfs2_glock_dq(gh);
1202                 gfs2_holder_reinit(LM_ST_EXCLUSIVE, gh->gh_flags & ~LM_FLAG_ANY,
1203                                    gh);
1204                 error = gfs2_glock_nq(gh);
1205                 if (error)
1206                         return error;
1207
1208                 /* Verify that atime hasn't been updated while we were
1209                    trying to get exclusive lock. */
1210
1211                 curtime = get_seconds();
1212                 if (curtime - ip->i_inode.i_atime.tv_sec >= quantum) {
1213                         struct buffer_head *dibh;
1214                         struct gfs2_dinode *di;
1215
1216                         error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1217                         if (error == -EROFS)
1218                                 return 0;
1219                         if (error)
1220                                 goto fail;
1221
1222                         error = gfs2_meta_inode_buffer(ip, &dibh);
1223                         if (error)
1224                                 goto fail_end_trans;
1225
1226                         ip->i_inode.i_atime.tv_sec = curtime;
1227
1228                         gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1229                         di = (struct gfs2_dinode *)dibh->b_data;
1230                         di->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1231                         brelse(dibh);
1232
1233                         gfs2_trans_end(sdp);
1234                 }
1235
1236                 /* If someone else has asked for the glock,
1237                    unlock and let them have it. Then reacquire
1238                    in the original state. */
1239                 if (gfs2_glock_is_blocking(gl)) {
1240                         gfs2_glock_dq(gh);
1241                         gfs2_holder_reinit(state, flags, gh);
1242                         return gfs2_glock_nq(gh);
1243                 }
1244         }
1245
1246         return 0;
1247
1248 fail_end_trans:
1249         gfs2_trans_end(sdp);
1250 fail:
1251         gfs2_glock_dq(gh);
1252         return error;
1253 }
1254
1255 static int
1256 __gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1257 {
1258         struct buffer_head *dibh;
1259         int error;
1260
1261         error = gfs2_meta_inode_buffer(ip, &dibh);
1262         if (!error) {
1263                 error = inode_setattr(&ip->i_inode, attr);
1264                 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
1265                 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
1266                 gfs2_dinode_out(ip, dibh->b_data);
1267                 brelse(dibh);
1268         }
1269         return error;
1270 }
1271
1272 /**
1273  * gfs2_setattr_simple -
1274  * @ip:
1275  * @attr:
1276  *
1277  * Called with a reference on the vnode.
1278  *
1279  * Returns: errno
1280  */
1281
1282 int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1283 {
1284         int error;
1285
1286         if (current->journal_info)
1287                 return __gfs2_setattr_simple(ip, attr);
1288
1289         error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
1290         if (error)
1291                 return error;
1292
1293         error = __gfs2_setattr_simple(ip, attr);
1294         gfs2_trans_end(GFS2_SB(&ip->i_inode));
1295         return error;
1296 }
1297