2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/affs/amigaffs.c
|
|
|
|
*
|
|
|
|
* (c) 1996 Hans-Joachim Widmaier - Rewritten
|
|
|
|
*
|
|
|
|
* (C) 1993 Ray Burr - Amiga FFS filesystem.
|
|
|
|
*
|
|
|
|
* Please send bug reports to: hjw@zvw.de
|
|
|
|
*/
|
|
|
|
|
2015-11-12 13:40:41 +00:00
|
|
|
#include <linux/math64.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include "affs.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for accessing Amiga-FFS structures.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* Insert a header block bh into the directory dir
|
|
|
|
* caller must hold AFFS_DIR->i_hash_lock!
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
affs_insert_hash(struct inode *dir, struct buffer_head *bh)
|
|
|
|
{
|
|
|
|
struct super_block *sb = dir->i_sb;
|
|
|
|
struct buffer_head *dir_bh;
|
|
|
|
u32 ino, hash_ino;
|
|
|
|
int offset;
|
|
|
|
|
|
|
|
ino = bh->b_blocknr;
|
|
|
|
offset = affs_hash_name(sb, AFFS_TAIL(sb, bh)->name + 1, AFFS_TAIL(sb, bh)->name[0]);
|
|
|
|
|
2015-02-17 21:46:10 +00:00
|
|
|
pr_debug("%s(dir=%lu, ino=%d)\n", __func__, dir->i_ino, ino);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
dir_bh = affs_bread(sb, dir->i_ino);
|
|
|
|
if (!dir_bh)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
hash_ino = be32_to_cpu(AFFS_HEAD(dir_bh)->table[offset]);
|
|
|
|
while (hash_ino) {
|
|
|
|
affs_brelse(dir_bh);
|
|
|
|
dir_bh = affs_bread(sb, hash_ino);
|
|
|
|
if (!dir_bh)
|
|
|
|
return -EIO;
|
|
|
|
hash_ino = be32_to_cpu(AFFS_TAIL(sb, dir_bh)->hash_chain);
|
|
|
|
}
|
|
|
|
AFFS_TAIL(sb, bh)->parent = cpu_to_be32(dir->i_ino);
|
|
|
|
AFFS_TAIL(sb, bh)->hash_chain = 0;
|
|
|
|
affs_fix_checksum(sb, bh);
|
|
|
|
|
|
|
|
if (dir->i_ino == dir_bh->b_blocknr)
|
|
|
|
AFFS_HEAD(dir_bh)->table[offset] = cpu_to_be32(ino);
|
|
|
|
else
|
|
|
|
AFFS_TAIL(sb, dir_bh)->hash_chain = cpu_to_be32(ino);
|
|
|
|
|
|
|
|
affs_adjust_checksum(dir_bh, ino);
|
|
|
|
mark_buffer_dirty_inode(dir_bh, dir);
|
|
|
|
affs_brelse(dir_bh);
|
|
|
|
|
2016-09-14 14:48:05 +00:00
|
|
|
dir->i_mtime = dir->i_ctime = current_time(dir);
|
2005-04-16 22:20:36 +00:00
|
|
|
dir->i_version++;
|
|
|
|
mark_inode_dirty(dir);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove a header block from its directory.
|
|
|
|
* caller must hold AFFS_DIR->i_hash_lock!
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
affs_remove_hash(struct inode *dir, struct buffer_head *rem_bh)
|
|
|
|
{
|
|
|
|
struct super_block *sb;
|
|
|
|
struct buffer_head *bh;
|
|
|
|
u32 rem_ino, hash_ino;
|
|
|
|
__be32 ino;
|
|
|
|
int offset, retval;
|
|
|
|
|
|
|
|
sb = dir->i_sb;
|
|
|
|
rem_ino = rem_bh->b_blocknr;
|
|
|
|
offset = affs_hash_name(sb, AFFS_TAIL(sb, rem_bh)->name+1, AFFS_TAIL(sb, rem_bh)->name[0]);
|
2015-02-17 21:46:10 +00:00
|
|
|
pr_debug("%s(dir=%lu, ino=%d, hashval=%d)\n", __func__, dir->i_ino,
|
|
|
|
rem_ino, offset);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
bh = affs_bread(sb, dir->i_ino);
|
|
|
|
if (!bh)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
retval = -ENOENT;
|
|
|
|
hash_ino = be32_to_cpu(AFFS_HEAD(bh)->table[offset]);
|
|
|
|
while (hash_ino) {
|
|
|
|
if (hash_ino == rem_ino) {
|
|
|
|
ino = AFFS_TAIL(sb, rem_bh)->hash_chain;
|
|
|
|
if (dir->i_ino == bh->b_blocknr)
|
|
|
|
AFFS_HEAD(bh)->table[offset] = ino;
|
|
|
|
else
|
|
|
|
AFFS_TAIL(sb, bh)->hash_chain = ino;
|
|
|
|
affs_adjust_checksum(bh, be32_to_cpu(ino) - hash_ino);
|
|
|
|
mark_buffer_dirty_inode(bh, dir);
|
|
|
|
AFFS_TAIL(sb, rem_bh)->parent = 0;
|
|
|
|
retval = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
affs_brelse(bh);
|
|
|
|
bh = affs_bread(sb, hash_ino);
|
|
|
|
if (!bh)
|
|
|
|
return -EIO;
|
|
|
|
hash_ino = be32_to_cpu(AFFS_TAIL(sb, bh)->hash_chain);
|
|
|
|
}
|
|
|
|
|
|
|
|
affs_brelse(bh);
|
|
|
|
|
2016-09-14 14:48:05 +00:00
|
|
|
dir->i_mtime = dir->i_ctime = current_time(dir);
|
2005-04-16 22:20:36 +00:00
|
|
|
dir->i_version++;
|
|
|
|
mark_inode_dirty(dir);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2012-06-09 17:06:09 +00:00
|
|
|
affs_fix_dcache(struct inode *inode, u32 entry_ino)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2012-06-09 17:06:09 +00:00
|
|
|
struct dentry *dentry;
|
2011-01-07 06:50:06 +00:00
|
|
|
spin_lock(&inode->i_lock);
|
2014-10-26 23:19:16 +00:00
|
|
|
hlist_for_each_entry(dentry, &inode->i_dentry, d_u.d_alias) {
|
2005-04-16 22:20:36 +00:00
|
|
|
if (entry_ino == (u32)(long)dentry->d_fsdata) {
|
2012-06-09 17:06:09 +00:00
|
|
|
dentry->d_fsdata = (void *)inode->i_ino;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-07 06:50:06 +00:00
|
|
|
spin_unlock(&inode->i_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Remove header from link chain */
|
|
|
|
|
|
|
|
static int
|
|
|
|
affs_remove_link(struct dentry *dentry)
|
|
|
|
{
|
2015-03-17 22:25:59 +00:00
|
|
|
struct inode *dir, *inode = d_inode(dentry);
|
2005-04-16 22:20:36 +00:00
|
|
|
struct super_block *sb = inode->i_sb;
|
2015-06-30 21:57:58 +00:00
|
|
|
struct buffer_head *bh, *link_bh = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
u32 link_ino, ino;
|
|
|
|
int retval;
|
|
|
|
|
2014-06-06 21:37:25 +00:00
|
|
|
pr_debug("%s(key=%ld)\n", __func__, inode->i_ino);
|
2005-04-16 22:20:36 +00:00
|
|
|
retval = -EIO;
|
|
|
|
bh = affs_bread(sb, inode->i_ino);
|
|
|
|
if (!bh)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
link_ino = (u32)(long)dentry->d_fsdata;
|
|
|
|
if (inode->i_ino == link_ino) {
|
|
|
|
/* we can't remove the head of the link, as its blocknr is still used as ino,
|
|
|
|
* so we remove the block of the first link instead.
|
|
|
|
*/
|
|
|
|
link_ino = be32_to_cpu(AFFS_TAIL(sb, bh)->link_chain);
|
|
|
|
link_bh = affs_bread(sb, link_ino);
|
|
|
|
if (!link_bh)
|
|
|
|
goto done;
|
|
|
|
|
2008-02-07 08:15:29 +00:00
|
|
|
dir = affs_iget(sb, be32_to_cpu(AFFS_TAIL(sb, link_bh)->parent));
|
|
|
|
if (IS_ERR(dir)) {
|
|
|
|
retval = PTR_ERR(dir);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto done;
|
2008-02-07 08:15:29 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
affs_lock_dir(dir);
|
2012-06-09 17:06:09 +00:00
|
|
|
/*
|
|
|
|
* if there's a dentry for that block, make it
|
|
|
|
* refer to inode itself.
|
|
|
|
*/
|
|
|
|
affs_fix_dcache(inode, link_ino);
|
2005-04-16 22:20:36 +00:00
|
|
|
retval = affs_remove_hash(dir, link_bh);
|
2008-05-09 10:35:29 +00:00
|
|
|
if (retval) {
|
|
|
|
affs_unlock_dir(dir);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto done;
|
2008-05-09 10:35:29 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
mark_buffer_dirty_inode(link_bh, inode);
|
|
|
|
|
|
|
|
memcpy(AFFS_TAIL(sb, bh)->name, AFFS_TAIL(sb, link_bh)->name, 32);
|
|
|
|
retval = affs_insert_hash(dir, bh);
|
2008-05-09 10:35:29 +00:00
|
|
|
if (retval) {
|
|
|
|
affs_unlock_dir(dir);
|
2005-04-16 22:20:36 +00:00
|
|
|
goto done;
|
2008-05-09 10:35:29 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
mark_buffer_dirty_inode(bh, inode);
|
|
|
|
|
|
|
|
affs_unlock_dir(dir);
|
|
|
|
iput(dir);
|
|
|
|
} else {
|
|
|
|
link_bh = affs_bread(sb, link_ino);
|
|
|
|
if (!link_bh)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((ino = be32_to_cpu(AFFS_TAIL(sb, bh)->link_chain)) != 0) {
|
|
|
|
if (ino == link_ino) {
|
|
|
|
__be32 ino2 = AFFS_TAIL(sb, link_bh)->link_chain;
|
|
|
|
AFFS_TAIL(sb, bh)->link_chain = ino2;
|
|
|
|
affs_adjust_checksum(bh, be32_to_cpu(ino2) - link_ino);
|
|
|
|
mark_buffer_dirty_inode(bh, inode);
|
|
|
|
retval = 0;
|
|
|
|
/* Fix the link count, if bh is a normal header block without links */
|
|
|
|
switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
|
|
|
|
case ST_LINKDIR:
|
|
|
|
case ST_LINKFILE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!AFFS_TAIL(sb, bh)->link_chain)
|
2011-10-28 12:13:29 +00:00
|
|
|
set_nlink(inode, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
affs_free_block(sb, link_ino);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
affs_brelse(bh);
|
|
|
|
bh = affs_bread(sb, ino);
|
|
|
|
if (!bh)
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
retval = -ENOENT;
|
|
|
|
done:
|
|
|
|
affs_brelse(link_bh);
|
|
|
|
affs_brelse(bh);
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
affs_empty_dir(struct inode *inode)
|
|
|
|
{
|
|
|
|
struct super_block *sb = inode->i_sb;
|
|
|
|
struct buffer_head *bh;
|
|
|
|
int retval, size;
|
|
|
|
|
|
|
|
retval = -EIO;
|
|
|
|
bh = affs_bread(sb, inode->i_ino);
|
|
|
|
if (!bh)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
retval = -ENOTEMPTY;
|
|
|
|
for (size = AFFS_SB(sb)->s_hashsize - 1; size >= 0; size--)
|
|
|
|
if (AFFS_HEAD(bh)->table[size])
|
|
|
|
goto not_empty;
|
|
|
|
retval = 0;
|
|
|
|
not_empty:
|
|
|
|
affs_brelse(bh);
|
|
|
|
done:
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Remove a filesystem object. If the object to be removed has
|
|
|
|
* links to it, one of the links must be changed to inherit
|
|
|
|
* the file or directory. As above, any inode will do.
|
|
|
|
* The buffer will not be freed. If the header is a link, the
|
|
|
|
* block will be marked as free.
|
|
|
|
* This function returns a negative error number in case of
|
|
|
|
* an error, else 0 if the inode is to be deleted or 1 if not.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
affs_remove_header(struct dentry *dentry)
|
|
|
|
{
|
|
|
|
struct super_block *sb;
|
|
|
|
struct inode *inode, *dir;
|
|
|
|
struct buffer_head *bh = NULL;
|
|
|
|
int retval;
|
|
|
|
|
2015-03-17 22:25:59 +00:00
|
|
|
dir = d_inode(dentry->d_parent);
|
2005-04-16 22:20:36 +00:00
|
|
|
sb = dir->i_sb;
|
|
|
|
|
|
|
|
retval = -ENOENT;
|
2015-03-17 22:25:59 +00:00
|
|
|
inode = d_inode(dentry);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!inode)
|
|
|
|
goto done;
|
|
|
|
|
2014-06-06 21:37:25 +00:00
|
|
|
pr_debug("%s(key=%ld)\n", __func__, inode->i_ino);
|
2005-04-16 22:20:36 +00:00
|
|
|
retval = -EIO;
|
|
|
|
bh = affs_bread(sb, (u32)(long)dentry->d_fsdata);
|
|
|
|
if (!bh)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
affs_lock_link(inode);
|
|
|
|
affs_lock_dir(dir);
|
|
|
|
switch (be32_to_cpu(AFFS_TAIL(sb, bh)->stype)) {
|
|
|
|
case ST_USERDIR:
|
|
|
|
/* if we ever want to support links to dirs
|
|
|
|
* i_hash_lock of the inode must only be
|
|
|
|
* taken after some checks
|
|
|
|
*/
|
|
|
|
affs_lock_dir(inode);
|
|
|
|
retval = affs_empty_dir(inode);
|
|
|
|
affs_unlock_dir(inode);
|
|
|
|
if (retval)
|
|
|
|
goto done_unlock;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = affs_remove_hash(dir, bh);
|
|
|
|
if (retval)
|
|
|
|
goto done_unlock;
|
|
|
|
mark_buffer_dirty_inode(bh, inode);
|
|
|
|
|
|
|
|
affs_unlock_dir(dir);
|
|
|
|
|
|
|
|
if (inode->i_nlink > 1)
|
|
|
|
retval = affs_remove_link(dentry);
|
|
|
|
else
|
2011-10-28 12:13:28 +00:00
|
|
|
clear_nlink(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
affs_unlock_link(inode);
|
2016-09-14 14:48:05 +00:00
|
|
|
inode->i_ctime = current_time(inode);
|
2005-04-16 22:20:36 +00:00
|
|
|
mark_inode_dirty(inode);
|
|
|
|
|
|
|
|
done:
|
|
|
|
affs_brelse(bh);
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
done_unlock:
|
|
|
|
affs_unlock_dir(dir);
|
|
|
|
affs_unlock_link(inode);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Checksum a block, do various consistency checks and optionally return
|
|
|
|
the blocks type number. DATA points to the block. If their pointers
|
|
|
|
are non-null, *PTYPE and *STYPE are set to the primary and secondary
|
|
|
|
block types respectively, *HASHSIZE is set to the size of the hashtable
|
|
|
|
(which lets us calculate the block size).
|
|
|
|
Returns non-zero if the block is not consistent. */
|
|
|
|
|
|
|
|
u32
|
|
|
|
affs_checksum_block(struct super_block *sb, struct buffer_head *bh)
|
|
|
|
{
|
|
|
|
__be32 *ptr = (__be32 *)bh->b_data;
|
|
|
|
u32 sum;
|
|
|
|
int bsize;
|
|
|
|
|
|
|
|
sum = 0;
|
|
|
|
for (bsize = sb->s_blocksize / sizeof(__be32); bsize > 0; bsize--)
|
|
|
|
sum += be32_to_cpu(*ptr++);
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate the checksum of a disk block and store it
|
|
|
|
* at the indicated position.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
affs_fix_checksum(struct super_block *sb, struct buffer_head *bh)
|
|
|
|
{
|
|
|
|
int cnt = sb->s_blocksize / sizeof(__be32);
|
|
|
|
__be32 *ptr = (__be32 *)bh->b_data;
|
|
|
|
u32 checksum;
|
|
|
|
__be32 *checksumptr;
|
|
|
|
|
|
|
|
checksumptr = ptr + 5;
|
|
|
|
*checksumptr = 0;
|
|
|
|
for (checksum = 0; cnt > 0; ptr++, cnt--)
|
|
|
|
checksum += be32_to_cpu(*ptr);
|
|
|
|
*checksumptr = cpu_to_be32(-checksum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-27 22:27:54 +00:00
|
|
|
affs_secs_to_datestamp(time64_t secs, struct affs_date *ds)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
u32 days;
|
|
|
|
u32 minute;
|
2015-11-12 13:40:41 +00:00
|
|
|
s32 rem;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
secs -= sys_tz.tz_minuteswest * 60 + ((8 * 365 + 2) * 24 * 60 * 60);
|
|
|
|
if (secs < 0)
|
|
|
|
secs = 0;
|
2015-11-12 13:40:41 +00:00
|
|
|
days = div_s64_rem(secs, 86400, &rem);
|
|
|
|
minute = rem / 60;
|
|
|
|
rem -= minute * 60;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
ds->days = cpu_to_be32(days);
|
|
|
|
ds->mins = cpu_to_be32(minute);
|
2015-11-12 13:40:41 +00:00
|
|
|
ds->ticks = cpu_to_be32(rem * 50);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 07:04:30 +00:00
|
|
|
umode_t
|
2017-02-27 22:27:54 +00:00
|
|
|
affs_prot_to_mode(u32 prot)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2011-07-26 07:04:30 +00:00
|
|
|
umode_t mode = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!(prot & FIBF_NOWRITE))
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0200;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!(prot & FIBF_NOREAD))
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0400;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!(prot & FIBF_NOEXECUTE))
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0100;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_GRP_WRITE)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0020;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_GRP_READ)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0040;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_GRP_EXECUTE)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0010;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_OTR_WRITE)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0002;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_OTR_READ)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0004;
|
2005-04-16 22:20:36 +00:00
|
|
|
if (prot & FIBF_OTR_EXECUTE)
|
2017-02-27 22:27:52 +00:00
|
|
|
mode |= 0001;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2017-02-27 22:27:54 +00:00
|
|
|
affs_mode_to_prot(struct inode *inode)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
u32 prot = AFFS_I(inode)->i_protect;
|
2011-07-26 07:04:30 +00:00
|
|
|
umode_t mode = inode->i_mode;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2017-02-27 22:27:52 +00:00
|
|
|
if (!(mode & 0100))
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_NOEXECUTE;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (!(mode & 0400))
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_NOREAD;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (!(mode & 0200))
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_NOWRITE;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0010)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_GRP_EXECUTE;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0040)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_GRP_READ;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0020)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_GRP_WRITE;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0001)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_OTR_EXECUTE;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0004)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_OTR_READ;
|
2017-02-27 22:27:52 +00:00
|
|
|
if (mode & 0002)
|
2005-04-16 22:20:36 +00:00
|
|
|
prot |= FIBF_OTR_WRITE;
|
|
|
|
|
|
|
|
AFFS_I(inode)->i_protect = prot;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
affs_error(struct super_block *sb, const char *function, const char *fmt, ...)
|
|
|
|
{
|
2014-12-13 00:57:49 +00:00
|
|
|
struct va_format vaf;
|
|
|
|
va_list args;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-12-13 00:57:49 +00:00
|
|
|
va_start(args, fmt);
|
|
|
|
vaf.fmt = fmt;
|
|
|
|
vaf.va = &args;
|
|
|
|
pr_crit("error (device %s): %s(): %pV\n", sb->s_id, function, &vaf);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!(sb->s_flags & MS_RDONLY))
|
2014-06-06 21:37:24 +00:00
|
|
|
pr_warn("Remounting filesystem read-only\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
sb->s_flags |= MS_RDONLY;
|
2014-12-13 00:57:49 +00:00
|
|
|
va_end(args);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
affs_warning(struct super_block *sb, const char *function, const char *fmt, ...)
|
|
|
|
{
|
2014-12-13 00:57:49 +00:00
|
|
|
struct va_format vaf;
|
|
|
|
va_list args;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-12-13 00:57:49 +00:00
|
|
|
va_start(args, fmt);
|
|
|
|
vaf.fmt = fmt;
|
|
|
|
vaf.va = &args;
|
|
|
|
pr_warn("(device %s): %s(): %pV\n", sb->s_id, function, &vaf);
|
2005-04-16 22:20:36 +00:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2014-04-07 22:39:01 +00:00
|
|
|
bool
|
|
|
|
affs_nofilenametruncate(const struct dentry *dentry)
|
|
|
|
{
|
2016-07-29 22:22:49 +00:00
|
|
|
return affs_test_opt(AFFS_SB(dentry->d_sb)->s_flags, SF_NO_TRUNCATE);
|
2014-04-07 22:39:01 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Check if the name is valid for a affs object. */
|
|
|
|
|
|
|
|
int
|
2014-04-07 22:39:01 +00:00
|
|
|
affs_check_name(const unsigned char *name, int len, bool notruncate)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2015-02-17 21:46:23 +00:00
|
|
|
if (len > AFFSNAMEMAX) {
|
2014-04-07 22:39:01 +00:00
|
|
|
if (notruncate)
|
|
|
|
return -ENAMETOOLONG;
|
2015-02-17 21:46:25 +00:00
|
|
|
len = AFFSNAMEMAX;
|
2014-04-07 22:39:01 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
if (name[i] < ' ' || name[i] == ':'
|
|
|
|
|| (name[i] > 0x7e && name[i] < 0xa0))
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function copies name to bstr, with at most 30
|
|
|
|
* characters length. The bstr will be prepended by
|
|
|
|
* a length byte.
|
|
|
|
* NOTE: The name will must be already checked by
|
|
|
|
* affs_check_name()!
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
affs_copy_name(unsigned char *bstr, struct dentry *dentry)
|
|
|
|
{
|
2015-02-17 21:46:23 +00:00
|
|
|
u32 len = min(dentry->d_name.len, AFFSNAMEMAX);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
*bstr++ = len;
|
|
|
|
memcpy(bstr, dentry->d_name.name, len);
|
|
|
|
return len;
|
|
|
|
}
|