Release 4.11 fs/udf/file.c
/*
* 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 <linux/uaccess.h>
#include <linux/kernel.h>
#include <linux/string.h> /* memset */
#include <linux/capability.h>
#include <linux/errno.h>
#include <linux/pagemap.h>
#include <linux/uio.h>
#include "udf_i.h"
#include "udf_sb.h"
static void __udf_adinicb_readpage(struct page *page)
{
struct inode *inode = page->mapping->host;
char *kaddr;
struct udf_inode_info *iinfo = UDF_I(inode);
kaddr = kmap(page);
memcpy(kaddr, iinfo->i_ext.i_data + iinfo->i_lenEAttr, inode->i_size);
memset(kaddr + inode->i_size, 0, PAGE_SIZE - inode->i_size);
flush_dcache_page(page);
SetPageUptodate(page);
kunmap(page);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 54 | 57.45% | 5 | 50.00% |
Jan Kara | 19 | 20.21% | 1 | 10.00% |
Marcin Ślusarz | 18 | 19.15% | 2 | 20.00% |
Ben Fennema | 2 | 2.13% | 1 | 10.00% |
Kirill A. Shutemov | 1 | 1.06% | 1 | 10.00% |
Total | 94 | 100.00% | 10 | 100.00% |
static int udf_adinicb_readpage(struct file *file, struct page *page)
{
BUG_ON(!PageLocked(page));
__udf_adinicb_readpage(page);
unlock_page(page);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Kara | 29 | 76.32% | 1 | 20.00% |
Linus Torvalds (pre-git) | 7 | 18.42% | 2 | 40.00% |
Ben Fennema | 1 | 2.63% | 1 | 20.00% |
Andrew Morton | 1 | 2.63% | 1 | 20.00% |
Total | 38 | 100.00% | 5 | 100.00% |
static int udf_adinicb_writepage(struct page *page,
struct writeback_control *wbc)
{
struct inode *inode = page->mapping->host;
char *kaddr;
struct udf_inode_info *iinfo = UDF_I(inode);
BUG_ON(!PageLocked(page));
kaddr = kmap(page);
memcpy(iinfo->i_ext.i_data + iinfo->i_lenEAttr, kaddr, inode->i_size);
mark_inode_dirty(inode);
SetPageUptodate(page);
kunmap(page);
unlock_page(page);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 65 | 65.66% | 4 | 36.36% |
Marcin Ślusarz | 18 | 18.18% | 2 | 18.18% |
Andrew Morton | 6 | 6.06% | 2 | 18.18% |
Ben Fennema | 4 | 4.04% | 1 | 9.09% |
Linus Torvalds | 4 | 4.04% | 1 | 9.09% |
Matt Mackall | 2 | 2.02% | 1 | 9.09% |
Total | 99 | 100.00% | 11 | 100.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_SIZE))
return -EIO;
page = grab_cache_page_write_begin(mapping, 0, flags);
if (!page)
return -ENOMEM;
*pagep = page;
if (!PageUptodate(page))
__udf_adinicb_readpage(page);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jan Kara | 94 | 98.95% | 1 | 50.00% |
Kirill A. Shutemov | 1 | 1.05% | 1 | 50.00% |
Total | 95 | 100.00% | 2 | 100.00% |
static ssize_t udf_adinicb_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
{
/* Fallback to buffered I/O. */
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ian Abbott | 18 | 90.00% | 1 | 50.00% |
Al Viro | 2 | 10.00% | 1 | 50.00% |
Total | 20 | 100.00% | 2 | 100.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)
{
struct inode *inode = page->mapping->host;
loff_t last_pos = pos + copied;
if (last_pos > inode->i_size)
i_size_write(inode, last_pos);
set_page_dirty(page);
unlock_page(page);
put_page(page);
return copied;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 85 | 100.00% | 1 | 100.00% |
Total | 85 | 100.00% | 1 | 100.00% |
const struct address_space_operations udf_adinicb_aops = {
.readpage = udf_adinicb_readpage,
.writepage = udf_adinicb_writepage,
.write_begin = udf_adinicb_write_begin,
.write_end = udf_adinicb_write_end,
.direct_IO = udf_adinicb_direct_IO,
};
static ssize_t udf_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
{
ssize_t retval;
struct file *file = iocb->ki_filp;
struct inode *inode = file_inode(file);
struct udf_inode_info *iinfo = UDF_I(inode);
int err;
inode_lock(inode);
retval = generic_write_checks(iocb, from);
if (retval <= 0)
goto out;
down_write(&iinfo->i_data_sem);
if (iinfo->i_alloc_type == ICBTAG_FLAG_AD_IN_ICB) {
loff_t end = iocb->ki_pos + iov_iter_count(from);
if (inode->i_sb->s_blocksize <
(udf_file_entry_alloc_offset(inode) + end)) {
err = udf_expand_file_adinicb(inode);
if (err) {
inode_unlock(inode);
udf_debug("udf_expand_adinicb: err=%d\n", err);
return err;
}
} else {
iinfo->i_lenAlloc = max(end, inode->i_size);
up_write(&iinfo->i_data_sem);
}
} else
up_write(&iinfo->i_data_sem);
retval = __generic_file_write_iter(iocb, from);
out:
inode_unlock(inode);
if (retval > 0) {
mark_inode_dirty(inode);
retval = generic_write_sync(iocb, retval);
}
return retval;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 93 | 41.33% | 5 | 23.81% |
Al Viro | 52 | 23.11% | 6 | 28.57% |
Jan Kara | 49 | 21.78% | 4 | 19.05% |
Marcin Ślusarz | 15 | 6.67% | 2 | 9.52% |
Badari Pulavarty | 13 | 5.78% | 1 | 4.76% |
Christoph Hellwig | 2 | 0.89% | 2 | 9.52% |
Ben Fennema | 1 | 0.44% | 1 | 4.76% |
Total | 225 | 100.00% | 21 | 100.00% |
long udf_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
struct inode *inode = file_inode(filp);
long old_block, new_block;
int result;
if (inode_permission(inode, MAY_READ) != 0) {
udf_debug("no permission to access inode %lu\n", inode->i_ino);
return -EPERM;
}
if (!arg && ((cmd == UDF_GETVOLIDENT) || (cmd == UDF_GETEASIZE) ||
(cmd == UDF_RELOCATE_BLOCKS) || (cmd == UDF_GETEABLOCK))) {
udf_debug("invalid argument to udf_ioctl\n");
return -EINVAL;
}
switch (cmd) {
case UDF_GETVOLIDENT:
if (copy_to_user((char __user *)arg,
UDF_SB(inode->i_sb)->s_volume_ident, 32))
return -EFAULT;
return 0;
case UDF_RELOCATE_BLOCKS:
if (!capable(CAP_SYS_ADMIN))
return -EPERM;
if (get_user(old_block, (long __user *)arg))
return -EFAULT;
result = udf_relocate_blocks(inode->i_sb,
old_block, &new_block);
if (result == 0)
result = put_user(new_block, (long __user *)arg);
return result;
case UDF_GETEASIZE:
return put_user(UDF_I(inode)->i_lenEAttr, (int __user *)arg);
case UDF_GETEABLOCK:
return copy_to_user((char __user *)arg,
UDF_I(inode)->i_ext.i_data,
UDF_I(inode)->i_lenEAttr) ? -EFAULT : 0;
default:
return -ENOIOCTLCMD;
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 114 | 41.16% | 2 | 12.50% |
Linus Torvalds | 60 | 21.66% | 2 | 12.50% |
Fabian Frederick | 51 | 18.41% | 2 | 12.50% |
Marcin Ślusarz | 21 | 7.58% | 3 | 18.75% |
Al Viro | 10 | 3.61% | 3 | 18.75% |
Cyrill V. Gorcunov | 9 | 3.25% | 1 | 6.25% |
John Kacur | 8 | 2.89% | 1 | 6.25% |
Ben Fennema | 3 | 1.08% | 1 | 6.25% |
Zhao Hongjiang | 1 | 0.36% | 1 | 6.25% |
Total | 277 | 100.00% | 16 | 100.00% |
static int udf_release_file(struct inode *inode, struct file *filp)
{
if (filp->f_mode & FMODE_WRITE &&
atomic_read(&inode->i_writecount) == 1) {
/*
* Grab i_mutex to avoid races with writes changing i_size
* while we are running.
*/
inode_lock(inode);
down_write(&UDF_I(inode)->i_data_sem);
udf_discard_prealloc(inode);
udf_truncate_tail_extent(inode);
up_write(&UDF_I(inode)->i_data_sem);
inode_unlock(inode);
}
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 36 | 43.90% | 2 | 28.57% |
Jan Kara | 24 | 29.27% | 3 | 42.86% |
Alessio Igor Bogani | 20 | 24.39% | 1 | 14.29% |
Al Viro | 2 | 2.44% | 1 | 14.29% |
Total | 82 | 100.00% | 7 | 100.00% |
const struct file_operations udf_file_operations = {
.read_iter = generic_file_read_iter,
.unlocked_ioctl = udf_ioctl,
.open = generic_file_open,
.mmap = generic_file_mmap,
.write_iter = udf_file_write_iter,
.release = udf_release_file,
.fsync = generic_file_fsync,
.splice_read = generic_file_splice_read,
.llseek = generic_file_llseek,
};
static int udf_setattr(struct dentry *dentry, struct iattr *attr)
{
struct inode *inode = d_inode(dentry);
int error;
error = setattr_prepare(dentry, attr);
if (error)
return error;
if ((attr->ia_valid & ATTR_SIZE) &&
attr->ia_size != i_size_read(inode)) {
error = udf_setsize(inode, attr->ia_size);
if (error)
return error;
}
setattr_copy(inode, attr);
mark_inode_dirty(inode);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 93 | 93.94% | 2 | 40.00% |
Jan Kara | 3 | 3.03% | 2 | 40.00% |
David Howells | 3 | 3.03% | 1 | 20.00% |
Total | 99 | 100.00% | 5 | 100.00% |
const struct inode_operations udf_file_inode_operations = {
.setattr = udf_setattr,
};
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 436 | 35.02% | 9 | 12.68% |
Jan Kara | 220 | 17.67% | 10 | 14.08% |
Al Viro | 156 | 12.53% | 11 | 15.49% |
Christoph Hellwig | 108 | 8.67% | 10 | 14.08% |
Marcin Ślusarz | 72 | 5.78% | 4 | 5.63% |
Linus Torvalds | 64 | 5.14% | 3 | 4.23% |
Fabian Frederick | 52 | 4.18% | 3 | 4.23% |
Art Haas | 23 | 1.85% | 1 | 1.41% |
Ian Abbott | 23 | 1.85% | 1 | 1.41% |
Alessio Igor Bogani | 20 | 1.61% | 1 | 1.41% |
Badari Pulavarty | 15 | 1.20% | 1 | 1.41% |
Ben Fennema | 11 | 0.88% | 2 | 2.82% |
John Kacur | 9 | 0.72% | 1 | 1.41% |
Cyrill V. Gorcunov | 9 | 0.72% | 1 | 1.41% |
Andrew Morton | 7 | 0.56% | 2 | 2.82% |
Randy Dunlap | 3 | 0.24% | 1 | 1.41% |
David Howells | 3 | 0.24% | 1 | 1.41% |
Nicholas Piggin | 2 | 0.16% | 1 | 1.41% |
Jens Axboe | 2 | 0.16% | 1 | 1.41% |
Arjan van de Ven | 2 | 0.16% | 2 | 2.82% |
Kirill A. Shutemov | 2 | 0.16% | 1 | 1.41% |
Alexey Dobriyan | 2 | 0.16% | 1 | 1.41% |
Matt Mackall | 2 | 0.16% | 1 | 1.41% |
Zhao Hongjiang | 1 | 0.08% | 1 | 1.41% |
Adrian Bunk | 1 | 0.08% | 1 | 1.41% |
Total | 1245 | 100.00% | 71 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.