2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
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.
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/pagemap.h>
16 #include <linux/uio.h>
17 #include <linux/blkdev.h>
19 #include <linux/smp_lock.h>
21 #include <linux/gfs2_ondisk.h>
22 #include <linux/ext2_fs.h>
23 #include <linux/crc32.h>
24 #include <linux/lm_interface.h>
25 #include <asm/uaccess.h>
45 /* For regular, non-NFS */
47 struct gfs2_sbd
*fdr_sbd
;
50 filldir_t fdr_filldir
;
55 * Most fields left uninitialised to catch anybody who tries to
56 * use them. f_flags set to prevent file_accessed() from touching
57 * any other part of this. Its use is purely as a flag so that we
58 * know (in readpage()) whether or not do to locking.
60 struct file gfs2_internal_file_sentinel
= {
61 .f_flags
= O_NOATIME
|O_RDONLY
,
64 static int gfs2_read_actor(read_descriptor_t
*desc
, struct page
*page
,
65 unsigned long offset
, unsigned long size
)
68 unsigned long count
= desc
->count
;
74 memcpy(desc
->arg
.buf
, kaddr
+ offset
, size
);
77 desc
->count
= count
- size
;
78 desc
->written
+= size
;
79 desc
->arg
.buf
+= size
;
83 int gfs2_internal_read(struct gfs2_inode
*ip
, struct file_ra_state
*ra_state
,
84 char *buf
, loff_t
*pos
, unsigned size
)
86 struct inode
*inode
= &ip
->i_inode
;
87 read_descriptor_t desc
;
92 do_generic_mapping_read(inode
->i_mapping
, ra_state
,
93 &gfs2_internal_file_sentinel
, pos
, &desc
,
95 return desc
.written
? desc
.written
: desc
.error
;
99 * gfs2_llseek - seek to a location in a file
101 * @offset: the offset
102 * @origin: Where to seek from (SEEK_SET, SEEK_CUR, or SEEK_END)
104 * SEEK_END requires the glock for the file because it references the
107 * Returns: The new offset, or errno
110 static loff_t
gfs2_llseek(struct file
*file
, loff_t offset
, int origin
)
112 struct gfs2_inode
*ip
= GFS2_I(file
->f_mapping
->host
);
113 struct gfs2_holder i_gh
;
117 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
,
120 error
= remote_llseek(file
, offset
, origin
);
121 gfs2_glock_dq_uninit(&i_gh
);
124 error
= remote_llseek(file
, offset
, origin
);
130 * filldir_func - Report a directory entry to the caller of gfs2_dir_read()
131 * @opaque: opaque data used by the function
132 * @name: the name of the directory entry
133 * @length: the length of the name
134 * @offset: the entry's offset in the directory
135 * @inum: the inode number the entry points to
136 * @type: the type of inode the entry points to
138 * Returns: 0 on success, 1 if buffer full
141 static int filldir_func(void *opaque
, const char *name
, unsigned int length
,
142 u64 offset
, struct gfs2_inum
*inum
,
145 struct filldir_reg
*fdr
= (struct filldir_reg
*)opaque
;
146 struct gfs2_sbd
*sdp
= fdr
->fdr_sbd
;
149 error
= fdr
->fdr_filldir(fdr
->fdr_opaque
, name
, length
, offset
,
150 inum
->no_addr
, type
);
154 if (fdr
->fdr_prefetch
&& !(length
== 1 && *name
== '.')) {
155 gfs2_glock_prefetch_num(sdp
, inum
->no_addr
, &gfs2_inode_glops
,
156 LM_ST_SHARED
, LM_FLAG_TRY
| LM_FLAG_ANY
);
157 gfs2_glock_prefetch_num(sdp
, inum
->no_addr
, &gfs2_iopen_glops
,
158 LM_ST_SHARED
, LM_FLAG_TRY
);
165 * gfs2_readdir - Read directory entries from a directory
166 * @file: The directory to read from
167 * @dirent: Buffer for dirents
168 * @filldir: Function used to do the copying
173 static int gfs2_readdir(struct file
*file
, void *dirent
, filldir_t filldir
)
175 struct inode
*dir
= file
->f_mapping
->host
;
176 struct gfs2_inode
*dip
= GFS2_I(dir
);
177 struct filldir_reg fdr
;
178 struct gfs2_holder d_gh
;
179 u64 offset
= file
->f_pos
;
182 fdr
.fdr_sbd
= GFS2_SB(dir
);
183 fdr
.fdr_prefetch
= 1;
184 fdr
.fdr_filldir
= filldir
;
185 fdr
.fdr_opaque
= dirent
;
187 gfs2_holder_init(dip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &d_gh
);
188 error
= gfs2_glock_nq_atime(&d_gh
);
190 gfs2_holder_uninit(&d_gh
);
194 error
= gfs2_dir_read(dir
, &offset
, &fdr
, filldir_func
);
196 gfs2_glock_dq_uninit(&d_gh
);
198 file
->f_pos
= offset
;
205 * @table: A table of 32 u32 flags
206 * @val: a 32 bit value to convert
208 * This function can be used to convert between fsflags values and
209 * GFS2's own flags values.
211 * Returns: the converted flags
213 static u32
fsflags_cvt(const u32
*table
, u32 val
)
225 static const u32 fsflags_to_gfs2
[32] = {
227 [4] = GFS2_DIF_IMMUTABLE
,
228 [5] = GFS2_DIF_APPENDONLY
,
229 [7] = GFS2_DIF_NOATIME
,
230 [12] = GFS2_DIF_EXHASH
,
231 [14] = GFS2_DIF_JDATA
,
232 [20] = GFS2_DIF_DIRECTIO
,
235 static const u32 gfs2_to_fsflags
[32] = {
236 [gfs2fl_Sync
] = FS_SYNC_FL
,
237 [gfs2fl_Immutable
] = FS_IMMUTABLE_FL
,
238 [gfs2fl_AppendOnly
] = FS_APPEND_FL
,
239 [gfs2fl_NoAtime
] = FS_NOATIME_FL
,
240 [gfs2fl_ExHash
] = FS_INDEX_FL
,
241 [gfs2fl_Jdata
] = FS_JOURNAL_DATA_FL
,
242 [gfs2fl_Directio
] = FS_DIRECTIO_FL
,
243 [gfs2fl_InheritDirectio
] = FS_DIRECTIO_FL
,
244 [gfs2fl_InheritJdata
] = FS_JOURNAL_DATA_FL
,
247 static int gfs2_get_flags(struct file
*filp
, u32 __user
*ptr
)
249 struct inode
*inode
= filp
->f_dentry
->d_inode
;
250 struct gfs2_inode
*ip
= GFS2_I(inode
);
251 struct gfs2_holder gh
;
255 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &gh
);
256 error
= gfs2_glock_nq_m_atime(1, &gh
);
260 fsflags
= fsflags_cvt(gfs2_to_fsflags
, ip
->i_di
.di_flags
);
261 if (put_user(fsflags
, ptr
))
264 gfs2_glock_dq_m(1, &gh
);
265 gfs2_holder_uninit(&gh
);
269 /* Flags that can be set by user space */
270 #define GFS2_FLAGS_USER_SET (GFS2_DIF_JDATA| \
272 GFS2_DIF_IMMUTABLE| \
273 GFS2_DIF_APPENDONLY| \
277 GFS2_DIF_INHERIT_DIRECTIO| \
278 GFS2_DIF_INHERIT_JDATA)
281 * gfs2_set_flags - set flags on an inode
283 * @flags: The flags to set
284 * @mask: Indicates which flags are valid
287 static int do_gfs2_set_flags(struct file
*filp
, u32 reqflags
, u32 mask
)
289 struct inode
*inode
= filp
->f_dentry
->d_inode
;
290 struct gfs2_inode
*ip
= GFS2_I(inode
);
291 struct gfs2_sbd
*sdp
= GFS2_SB(inode
);
292 struct buffer_head
*bh
;
293 struct gfs2_holder gh
;
295 u32 new_flags
, flags
;
297 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_EXCLUSIVE
, 0, &gh
);
301 flags
= ip
->i_di
.di_flags
;
302 new_flags
= (flags
& ~mask
) | (reqflags
& mask
);
303 if ((new_flags
^ flags
) == 0)
306 if (S_ISDIR(inode
->i_mode
)) {
307 if ((new_flags
^ flags
) & GFS2_DIF_JDATA
)
308 new_flags
^= (GFS2_DIF_JDATA
|GFS2_DIF_INHERIT_JDATA
);
309 if ((new_flags
^ flags
) & GFS2_DIF_DIRECTIO
)
310 new_flags
^= (GFS2_DIF_DIRECTIO
|GFS2_DIF_INHERIT_DIRECTIO
);
314 if ((new_flags
^ flags
) & ~GFS2_FLAGS_USER_SET
)
318 if (IS_IMMUTABLE(inode
) && (new_flags
& GFS2_DIF_IMMUTABLE
))
320 if (IS_APPEND(inode
) && (new_flags
& GFS2_DIF_APPENDONLY
))
322 if (((new_flags
^ flags
) & GFS2_DIF_IMMUTABLE
) &&
323 !capable(CAP_LINUX_IMMUTABLE
))
325 if (!IS_IMMUTABLE(inode
)) {
326 error
= permission(inode
, MAY_WRITE
, NULL
);
331 error
= gfs2_trans_begin(sdp
, RES_DINODE
, 0);
334 error
= gfs2_meta_inode_buffer(ip
, &bh
);
337 gfs2_trans_add_bh(ip
->i_gl
, bh
, 1);
338 ip
->i_di
.di_flags
= new_flags
;
339 gfs2_dinode_out(&ip
->i_di
, bh
->b_data
);
344 gfs2_glock_dq_uninit(&gh
);
348 static int gfs2_set_flags(struct file
*filp
, u32 __user
*ptr
)
350 u32 fsflags
, gfsflags
;
351 if (get_user(fsflags
, ptr
))
353 gfsflags
= fsflags_cvt(fsflags_to_gfs2
, fsflags
);
354 return do_gfs2_set_flags(filp
, gfsflags
, ~0);
357 static long gfs2_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
360 case FS_IOC_GETFLAGS
:
361 return gfs2_get_flags(filp
, (u32 __user
*)arg
);
362 case FS_IOC_SETFLAGS
:
363 return gfs2_set_flags(filp
, (u32 __user
*)arg
);
371 * @file: The file to map
372 * @vma: The VMA which described the mapping
374 * Returns: 0 or error code
377 static int gfs2_mmap(struct file
*file
, struct vm_area_struct
*vma
)
379 struct gfs2_inode
*ip
= GFS2_I(file
->f_mapping
->host
);
380 struct gfs2_holder i_gh
;
383 gfs2_holder_init(ip
->i_gl
, LM_ST_SHARED
, GL_ATIME
, &i_gh
);
384 error
= gfs2_glock_nq_atime(&i_gh
);
386 gfs2_holder_uninit(&i_gh
);
390 /* This is VM_MAYWRITE instead of VM_WRITE because a call
391 to mprotect() can turn on VM_WRITE later. */
393 if ((vma
->vm_flags
& (VM_MAYSHARE
| VM_MAYWRITE
)) ==
394 (VM_MAYSHARE
| VM_MAYWRITE
))
395 vma
->vm_ops
= &gfs2_vm_ops_sharewrite
;
397 vma
->vm_ops
= &gfs2_vm_ops_private
;
399 gfs2_glock_dq_uninit(&i_gh
);
405 * gfs2_open - open a file
406 * @inode: the inode to open
407 * @file: the struct file for this opening
412 static int gfs2_open(struct inode
*inode
, struct file
*file
)
414 struct gfs2_inode
*ip
= GFS2_I(inode
);
415 struct gfs2_holder i_gh
;
416 struct gfs2_file
*fp
;
419 fp
= kzalloc(sizeof(struct gfs2_file
), GFP_KERNEL
);
423 mutex_init(&fp
->f_fl_mutex
);
425 gfs2_assert_warn(GFS2_SB(inode
), !file
->private_data
);
426 file
->private_data
= fp
;
428 if (S_ISREG(ip
->i_di
.di_mode
)) {
429 error
= gfs2_glock_nq_init(ip
->i_gl
, LM_ST_SHARED
, LM_FLAG_ANY
,
434 if (!(file
->f_flags
& O_LARGEFILE
) &&
435 ip
->i_di
.di_size
> MAX_NON_LFS
) {
440 /* Listen to the Direct I/O flag */
442 if (ip
->i_di
.di_flags
& GFS2_DIF_DIRECTIO
)
443 file
->f_flags
|= O_DIRECT
;
445 gfs2_glock_dq_uninit(&i_gh
);
451 gfs2_glock_dq_uninit(&i_gh
);
453 file
->private_data
= NULL
;
459 * gfs2_close - called to close a struct file
460 * @inode: the inode the struct file belongs to
461 * @file: the struct file being closed
466 static int gfs2_close(struct inode
*inode
, struct file
*file
)
468 struct gfs2_sbd
*sdp
= inode
->i_sb
->s_fs_info
;
469 struct gfs2_file
*fp
;
471 fp
= file
->private_data
;
472 file
->private_data
= NULL
;
474 if (gfs2_assert_warn(sdp
, fp
))
483 * gfs2_fsync - sync the dirty data for a file (across the cluster)
484 * @file: the file that points to the dentry (we ignore this)
485 * @dentry: the dentry that points to the inode to sync
490 static int gfs2_fsync(struct file
*file
, struct dentry
*dentry
, int datasync
)
492 struct gfs2_inode
*ip
= GFS2_I(dentry
->d_inode
);
494 gfs2_log_flush(ip
->i_gl
->gl_sbd
, ip
->i_gl
);
500 * gfs2_lock - acquire/release a posix lock on a file
501 * @file: the file pointer
502 * @cmd: either modify or retrieve lock state, possibly wait
503 * @fl: type and range of lock
508 static int gfs2_lock(struct file
*file
, int cmd
, struct file_lock
*fl
)
510 struct gfs2_inode
*ip
= GFS2_I(file
->f_mapping
->host
);
511 struct gfs2_sbd
*sdp
= GFS2_SB(file
->f_mapping
->host
);
512 struct lm_lockname name
=
513 { .ln_number
= ip
->i_num
.no_addr
,
514 .ln_type
= LM_TYPE_PLOCK
};
516 if (!(fl
->fl_flags
& FL_POSIX
))
518 if ((ip
->i_di
.di_mode
& (S_ISGID
| S_IXGRP
)) == S_ISGID
)
521 if (sdp
->sd_args
.ar_localflocks
) {
523 struct file_lock tmp
;
525 ret
= posix_test_lock(file
, fl
, &tmp
);
526 fl
->fl_type
= F_UNLCK
;
528 memcpy(fl
, &tmp
, sizeof(struct file_lock
));
531 return posix_lock_file_wait(file
, fl
);
536 return gfs2_lm_plock_get(sdp
, &name
, file
, fl
);
537 else if (fl
->fl_type
== F_UNLCK
)
538 return gfs2_lm_punlock(sdp
, &name
, file
, fl
);
540 return gfs2_lm_plock(sdp
, &name
, file
, cmd
, fl
);
543 static int do_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
545 struct gfs2_file
*fp
= file
->private_data
;
546 struct gfs2_holder
*fl_gh
= &fp
->f_fl_gh
;
547 struct gfs2_inode
*ip
= GFS2_I(file
->f_dentry
->d_inode
);
548 struct gfs2_glock
*gl
;
553 state
= (fl
->fl_type
== F_WRLCK
) ? LM_ST_EXCLUSIVE
: LM_ST_SHARED
;
554 flags
= (IS_SETLKW(cmd
) ? 0 : LM_FLAG_TRY
) | GL_EXACT
| GL_NOCACHE
;
556 mutex_lock(&fp
->f_fl_mutex
);
560 if (fl_gh
->gh_state
== state
)
563 flock_lock_file_wait(file
,
564 &(struct file_lock
){.fl_type
= F_UNLCK
});
565 gfs2_glock_dq_uninit(fl_gh
);
567 error
= gfs2_glock_get(GFS2_SB(&ip
->i_inode
),
568 ip
->i_num
.no_addr
, &gfs2_flock_glops
,
574 gfs2_holder_init(gl
, state
, flags
, fl_gh
);
577 error
= gfs2_glock_nq(fl_gh
);
579 gfs2_holder_uninit(fl_gh
);
580 if (error
== GLR_TRYFAILED
)
583 error
= flock_lock_file_wait(file
, fl
);
584 gfs2_assert_warn(GFS2_SB(&ip
->i_inode
), !error
);
588 mutex_unlock(&fp
->f_fl_mutex
);
592 static void do_unflock(struct file
*file
, struct file_lock
*fl
)
594 struct gfs2_file
*fp
= file
->private_data
;
595 struct gfs2_holder
*fl_gh
= &fp
->f_fl_gh
;
597 mutex_lock(&fp
->f_fl_mutex
);
598 flock_lock_file_wait(file
, fl
);
600 gfs2_glock_dq_uninit(fl_gh
);
601 mutex_unlock(&fp
->f_fl_mutex
);
605 * gfs2_flock - acquire/release a flock lock on a file
606 * @file: the file pointer
607 * @cmd: either modify or retrieve lock state, possibly wait
608 * @fl: type and range of lock
613 static int gfs2_flock(struct file
*file
, int cmd
, struct file_lock
*fl
)
615 struct gfs2_inode
*ip
= GFS2_I(file
->f_mapping
->host
);
616 struct gfs2_sbd
*sdp
= GFS2_SB(file
->f_mapping
->host
);
618 if (!(fl
->fl_flags
& FL_FLOCK
))
620 if ((ip
->i_di
.di_mode
& (S_ISGID
| S_IXGRP
)) == S_ISGID
)
623 if (sdp
->sd_args
.ar_localflocks
)
624 return flock_lock_file_wait(file
, fl
);
626 if (fl
->fl_type
== F_UNLCK
) {
627 do_unflock(file
, fl
);
630 return do_flock(file
, cmd
, fl
);
634 const struct file_operations gfs2_file_fops
= {
635 .llseek
= gfs2_llseek
,
636 .read
= do_sync_read
,
637 .aio_read
= generic_file_aio_read
,
638 .write
= do_sync_write
,
639 .aio_write
= generic_file_aio_write
,
640 .unlocked_ioctl
= gfs2_ioctl
,
643 .release
= gfs2_close
,
646 .sendfile
= generic_file_sendfile
,
648 .splice_read
= generic_file_splice_read
,
649 .splice_write
= generic_file_splice_write
,
652 const struct file_operations gfs2_dir_fops
= {
653 .readdir
= gfs2_readdir
,
654 .unlocked_ioctl
= gfs2_ioctl
,
656 .release
= gfs2_close
,