2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* file.c
|
|
|
|
*
|
|
|
|
* PURPOSE
|
|
|
|
* File handling routines for the OSTA-UDF(tm) filesystem.
|
|
|
|
*
|
|
|
|
* COPYRIGHT
|
|
|
|
* This file is distributed under the terms of the GNU General Public
|
|
|
|
* License (GPL). Copies of the GPL can be obtained from:
|
|
|
|
* ftp://prep.ai.mit.edu/pub/gnu/GPL
|
|
|
|
* Each contributing author retains all rights to their own work.
|
|
|
|
*
|
|
|
|
* (C) 1998-1999 Dave Boynton
|
|
|
|
* (C) 1998-2004 Ben Fennema
|
|
|
|
* (C) 1999-2000 Stelias Computing Inc
|
|
|
|
*
|
|
|
|
* HISTORY
|
|
|
|
*
|
|
|
|
* 10/02/98 dgb Attempt to integrate into udf.o
|
|
|
|
* 10/07/98 Switched to using generic_readpage, etc., like isofs
|
|
|
|
* And it works!
|
|
|
|
* 12/06/98 blf Added udf_file_read. uses generic_file_read for all cases but
|
|
|
|
* ICBTAG_FLAG_AD_IN_ICB.
|
|
|
|
* 04/06/99 64 bit file handling on 32 bit systems taken from ext2 file.c
|
|
|
|
* 05/12/99 Preliminary file write support
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "udfdecl.h"
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <asm/uaccess.h>
|
|
|
|
#include <linux/kernel.h>
|
2007-07-21 13:37:18 +02:00
|
|
|
#include <linux/string.h> /* memset */
|
2006-01-11 21:17:46 +01:00
|
|
|
#include <linux/capability.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/buffer_head.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/aio.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#include "udf_i.h"
|
|
|
|
#include "udf_sb.h"
|
|
|
|
|
2012-09-05 15:48:23 +02:00
|
|
|
static void __udf_adinicb_readpage(struct page *page)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode *inode = page->mapping->host;
|
|
|
|
char *kaddr;
|
2008-02-08 13:20:44 +01:00
|
|
|
struct udf_inode_info *iinfo = UDF_I(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
kaddr = kmap(page);
|
2008-02-08 13:20:44 +01:00
|
|
|
memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size);
|
2012-09-05 15:48:23 +02:00
|
|
|
memset(kaddr + inode->i_size, 0, PAGE_CACHE_SIZE - inode->i_size);
|
2005-04-17 00:20:36 +02:00
|
|
|
flush_dcache_page(page);
|
|
|
|
SetPageUptodate(page);
|
|
|
|
kunmap(page);
|
2012-09-05 15:48:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static int udf_adinicb_readpage(struct file *file, struct page *page)
|
|
|
|
{
|
|
|
|
BUG_ON(!PageLocked(page));
|
|
|
|
__udf_adinicb_readpage(page);
|
2005-04-17 00:20:36 +02:00
|
|
|
unlock_page(page);
|
2007-07-21 13:37:18 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-02-08 13:20:36 +01:00
|
|
|
static int udf_adinicb_writepage(struct page *page,
|
|
|
|
struct writeback_control *wbc)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode *inode = page->mapping->host;
|
|
|
|
char *kaddr;
|
2008-02-08 13:20:44 +01:00
|
|
|
struct udf_inode_info *iinfo = UDF_I(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-05-01 17:59:01 +02:00
|
|
|
BUG_ON(!PageLocked(page));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
kaddr = kmap(page);
|
2008-02-08 13:20:44 +01:00
|
|
|
memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
|
2005-04-17 00:20:36 +02:00
|
|
|
mark_inode_dirty(inode);
|
|
|
|
SetPageUptodate(page);
|
|
|
|
kunmap(page);
|
|
|
|
unlock_page(page);
|
2007-07-21 13:37:18 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-05 15:48:23 +02:00
|
|
|
static int udf_adinicb_write_begin(struct file *file,
|
|
|
|
struct address_space *mapping, loff_t pos,
|
|
|
|
unsigned len, unsigned flags, struct page **pagep,
|
|
|
|
void **fsdata)
|
|
|
|
{
|
|
|
|
struct page *page;
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(pos >= PAGE_CACHE_SIZE))
|
|
|
|
return -EIO;
|
|
|
|
page = grab_cache_page_write_begin(mapping, 0, flags);
|
|
|
|
if (!page)
|
|
|
|
return -ENOMEM;
|
|
|
|
*pagep = page;
|
|
|
|
|
|
|
|
if (!PageUptodate(page) && len != PAGE_CACHE_SIZE)
|
|
|
|
__udf_adinicb_readpage(page);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-16 10:25:20 +02:00
|
|
|
static int udf_adinicb_write_end(struct file *file,
|
|
|
|
struct address_space *mapping,
|
|
|
|
loff_t pos, unsigned len, unsigned copied,
|
|
|
|
struct page *page, void *fsdata)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-16 10:25:20 +02:00
|
|
|
struct inode *inode = mapping->host;
|
|
|
|
unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
|
|
|
|
char *kaddr;
|
2008-02-08 13:20:44 +01:00
|
|
|
struct udf_inode_info *iinfo = UDF_I(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2011-11-25 16:14:36 +01:00
|
|
|
kaddr = kmap_atomic(page);
|
2008-02-08 13:20:44 +01:00
|
|
|
memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr + offset,
|
2007-10-16 10:25:20 +02:00
|
|
|
kaddr + offset, copied);
|
2011-11-25 16:14:36 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2007-10-16 10:25:20 +02:00
|
|
|
|
|
|
|
return simple_write_end(file, mapping, pos, len, copied, page, fsdata);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2012-09-05 18:44:31 +02:00
|
|
|
static ssize_t udf_adinicb_direct_IO(int rw, struct kiocb *iocb,
|
|
|
|
const struct iovec *iov,
|
|
|
|
loff_t offset, unsigned long nr_segs)
|
|
|
|
{
|
|
|
|
/* Fallback to buffered I/O. */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-06-28 13:26:44 +02:00
|
|
|
const struct address_space_operations udf_adinicb_aops = {
|
2007-07-21 13:37:18 +02:00
|
|
|
.readpage = udf_adinicb_readpage,
|
|
|
|
.writepage = udf_adinicb_writepage,
|
2012-09-05 15:48:23 +02:00
|
|
|
.write_begin = udf_adinicb_write_begin,
|
|
|
|
.write_end = udf_adinicb_write_end,
|
2012-09-05 18:44:31 +02:00
|
|
|
.direct_IO = udf_adinicb_direct_IO,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2006-10-01 08:28:48 +02:00
|
|
|
static ssize_t udf_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
|
2007-07-19 10:47:43 +02:00
|
|
|
unsigned long nr_segs, loff_t ppos)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
ssize_t retval;
|
2006-10-01 08:28:48 +02:00
|
|
|
struct file *file = iocb->ki_filp;
|
2013-01-23 23:07:38 +01:00
|
|
|
struct inode *inode = file_inode(file);
|
2005-04-17 00:20:36 +02:00
|
|
|
int err, pos;
|
2013-05-10 00:03:42 +02:00
|
|
|
size_t count = iocb->ki_nbytes;
|
2008-02-08 13:20:44 +01:00
|
|
|
struct udf_inode_info *iinfo = UDF_I(inode);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2010-11-16 14:33:48 +01:00
|
|
|
down_write(&iinfo->i_data_sem);
|
2008-02-08 13:20:44 +01:00
|
|
|
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (file->f_flags & O_APPEND)
|
|
|
|
pos = inode->i_size;
|
|
|
|
else
|
2006-10-01 08:28:48 +02:00
|
|
|
pos = ppos;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-02-08 13:20:36 +01:00
|
|
|
if (inode->i_sb->s_blocksize <
|
|
|
|
(udf_file_entry_alloc_offset(inode) +
|
2007-07-21 13:37:18 +02:00
|
|
|
pos + count)) {
|
2010-10-22 00:30:26 +02:00
|
|
|
err = udf_expand_file_adinicb(inode);
|
|
|
|
if (err) {
|
2005-04-17 00:20:36 +02:00
|
|
|
udf_debug("udf_expand_adinicb: err=%d\n", err);
|
|
|
|
return err;
|
|
|
|
}
|
2007-07-19 10:47:43 +02:00
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
if (pos + count > inode->i_size)
|
2008-02-08 13:20:44 +01:00
|
|
|
iinfo->i_lenAlloc = pos + count;
|
2005-04-17 00:20:36 +02:00
|
|
|
else
|
2008-02-08 13:20:44 +01:00
|
|
|
iinfo->i_lenAlloc = inode->i_size;
|
2011-12-10 02:30:48 +01:00
|
|
|
up_write(&iinfo->i_data_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2011-12-10 02:30:48 +01:00
|
|
|
} else
|
|
|
|
up_write(&iinfo->i_data_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2006-10-01 08:28:48 +02:00
|
|
|
retval = generic_file_aio_write(iocb, iov, nr_segs, ppos);
|
2005-04-17 00:20:36 +02:00
|
|
|
if (retval > 0)
|
|
|
|
mark_inode_dirty(inode);
|
2007-07-21 13:37:18 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2010-05-05 15:15:39 +02:00
|
|
|
long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2013-01-23 23:07:38 +01:00
|
|
|
struct inode *inode = file_inode(filp);
|
2007-07-21 13:37:18 +02:00
|
|
|
long old_block, new_block;
|
2005-04-17 00:20:36 +02:00
|
|
|
int result = -EINVAL;
|
|
|
|
|
2011-06-19 17:49:08 +02:00
|
|
|
if (inode_permission(inode, MAY_READ) != 0) {
|
2010-05-05 15:15:39 +02:00
|
|
|
udf_debug("no permission to access inode %lu\n", inode->i_ino);
|
|
|
|
result = -EPERM;
|
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-07-19 10:47:43 +02:00
|
|
|
if (!arg) {
|
2005-04-17 00:20:36 +02:00
|
|
|
udf_debug("invalid argument to udf_ioctl\n");
|
2010-05-05 15:15:39 +02:00
|
|
|
result = -EINVAL;
|
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-07-19 10:47:43 +02:00
|
|
|
switch (cmd) {
|
|
|
|
case UDF_GETVOLIDENT:
|
2008-02-08 13:20:36 +01:00
|
|
|
if (copy_to_user((char __user *)arg,
|
|
|
|
UDF_SB(inode->i_sb)->s_volume_ident, 32))
|
2010-05-05 15:15:39 +02:00
|
|
|
result = -EFAULT;
|
2008-02-08 13:20:36 +01:00
|
|
|
else
|
2010-05-05 15:15:39 +02:00
|
|
|
result = 0;
|
|
|
|
goto out;
|
2007-07-19 10:47:43 +02:00
|
|
|
case UDF_RELOCATE_BLOCKS:
|
2010-05-05 15:15:39 +02:00
|
|
|
if (!capable(CAP_SYS_ADMIN)) {
|
2013-02-20 03:13:55 +01:00
|
|
|
result = -EPERM;
|
2010-05-05 15:15:39 +02:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (get_user(old_block, (long __user *)arg)) {
|
|
|
|
result = -EFAULT;
|
|
|
|
goto out;
|
|
|
|
}
|
2008-02-08 13:20:36 +01:00
|
|
|
result = udf_relocate_blocks(inode->i_sb,
|
|
|
|
old_block, &new_block);
|
|
|
|
if (result == 0)
|
2007-07-21 13:37:18 +02:00
|
|
|
result = put_user(new_block, (long __user *)arg);
|
2010-05-05 15:15:39 +02:00
|
|
|
goto out;
|
2007-07-19 10:47:43 +02:00
|
|
|
case UDF_GETEASIZE:
|
2008-02-08 13:20:42 +01:00
|
|
|
result = put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
|
2010-05-05 15:15:39 +02:00
|
|
|
goto out;
|
2007-07-19 10:47:43 +02:00
|
|
|
case UDF_GETEABLOCK:
|
2008-02-08 13:20:42 +01:00
|
|
|
result = copy_to_user((char __user *)arg,
|
|
|
|
UDF_I(inode)->i_ext.i_data,
|
|
|
|
UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
|
2010-05-05 15:15:39 +02:00
|
|
|
goto out;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2010-05-05 15:15:39 +02:00
|
|
|
out:
|
2005-04-17 00:20:36 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-07-19 10:47:43 +02:00
|
|
|
static int udf_release_file(struct inode *inode, struct file *filp)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-07-19 10:47:43 +02:00
|
|
|
if (filp->f_mode & FMODE_WRITE) {
|
2010-11-16 18:40:47 +01:00
|
|
|
down_write(&UDF_I(inode)->i_data_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
udf_discard_prealloc(inode);
|
2009-12-03 13:39:28 +01:00
|
|
|
udf_truncate_tail_extent(inode);
|
2010-11-16 18:40:47 +01:00
|
|
|
up_write(&UDF_I(inode)->i_data_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-28 11:56:42 +02:00
|
|
|
const struct file_operations udf_file_operations = {
|
2007-07-21 13:37:18 +02:00
|
|
|
.read = do_sync_read,
|
|
|
|
.aio_read = generic_file_aio_read,
|
2010-05-05 15:15:39 +02:00
|
|
|
.unlocked_ioctl = udf_ioctl,
|
2010-05-19 16:28:56 +02:00
|
|
|
.open = generic_file_open,
|
2007-07-21 13:37:18 +02:00
|
|
|
.mmap = generic_file_mmap,
|
|
|
|
.write = do_sync_write,
|
|
|
|
.aio_write = udf_file_aio_write,
|
|
|
|
.release = udf_release_file,
|
2010-05-26 17:53:41 +02:00
|
|
|
.fsync = generic_file_fsync,
|
2007-07-21 13:37:18 +02:00
|
|
|
.splice_read = generic_file_splice_read,
|
2008-09-08 19:44:17 +02:00
|
|
|
.llseek = generic_file_llseek,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2010-06-04 11:29:59 +02:00
|
|
|
static int udf_setattr(struct dentry *dentry, struct iattr *attr)
|
|
|
|
{
|
|
|
|
struct inode *inode = dentry->d_inode;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = inode_change_ok(inode, attr);
|
|
|
|
if (error)
|
|
|
|
return error;
|
2010-06-04 11:30:02 +02:00
|
|
|
|
|
|
|
if ((attr->ia_valid & ATTR_SIZE) &&
|
|
|
|
attr->ia_size != i_size_read(inode)) {
|
2010-10-22 00:30:26 +02:00
|
|
|
error = udf_setsize(inode, attr->ia_size);
|
2010-06-04 11:30:02 +02:00
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setattr_copy(inode, attr);
|
|
|
|
mark_inode_dirty(inode);
|
|
|
|
return 0;
|
2010-06-04 11:29:59 +02:00
|
|
|
}
|
|
|
|
|
2007-02-12 09:55:40 +01:00
|
|
|
const struct inode_operations udf_file_inode_operations = {
|
2010-06-04 11:29:59 +02:00
|
|
|
.setattr = udf_setattr,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|