提交 bd4c625c 编写于 作者: L Linus Torvalds

reiserfs: run scripts/Lindent on reiserfs code

This was a pure indentation change, using:

	scripts/Lindent fs/reiserfs/*.c include/linux/reiserfs_*.h

to make reiserfs match the regular Linux indentation style.  As Jeff
Mahoney <jeffm@suse.com> writes:

 The ReiserFS code is a mix of a number of different coding styles, sometimes
 different even from line-to-line. Since the code has been relatively stable
 for quite some time and there are few outstanding patches to be applied, it
 is time to reformat the code to conform to the Linux style standard outlined
 in Documentation/CodingStyle.

 This patch contains the result of running scripts/Lindent against
 fs/reiserfs/*.c and include/linux/reiserfs_*.h. There are places where the
 code can be made to look better, but I'd rather keep those patches separate
 so that there isn't a subtle by-hand hand accident in the middle of a huge
 patch. To be clear: This patch is reformatting *only*.

 A number of patches may follow that continue to make the code more consistent
 with the Linux coding style.

 Hans wasn't particularly enthusiastic about these patches, but said he
 wouldn't really oppose them either.
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 7fa94c88
此差异已折叠。
...@@ -12,264 +12,286 @@ ...@@ -12,264 +12,286 @@
#include <linux/buffer_head.h> #include <linux/buffer_head.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
extern struct reiserfs_key MIN_KEY; extern struct reiserfs_key MIN_KEY;
static int reiserfs_readdir (struct file *, void *, filldir_t); static int reiserfs_readdir(struct file *, void *, filldir_t);
static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry, int datasync) ; static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry,
int datasync);
struct file_operations reiserfs_dir_operations = { struct file_operations reiserfs_dir_operations = {
.read = generic_read_dir, .read = generic_read_dir,
.readdir = reiserfs_readdir, .readdir = reiserfs_readdir,
.fsync = reiserfs_dir_fsync, .fsync = reiserfs_dir_fsync,
.ioctl = reiserfs_ioctl, .ioctl = reiserfs_ioctl,
}; };
static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry, int datasync) { static int reiserfs_dir_fsync(struct file *filp, struct dentry *dentry,
struct inode *inode = dentry->d_inode; int datasync)
int err; {
reiserfs_write_lock(inode->i_sb); struct inode *inode = dentry->d_inode;
err = reiserfs_commit_for_inode(inode) ; int err;
reiserfs_write_unlock(inode->i_sb) ; reiserfs_write_lock(inode->i_sb);
if (err < 0) err = reiserfs_commit_for_inode(inode);
return err; reiserfs_write_unlock(inode->i_sb);
return 0; if (err < 0)
return err;
return 0;
} }
#define store_ih(where,what) copy_item_head (where, what) #define store_ih(where,what) copy_item_head (where, what)
// //
static int reiserfs_readdir (struct file * filp, void * dirent, filldir_t filldir) static int reiserfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
{ {
struct inode *inode = filp->f_dentry->d_inode; struct inode *inode = filp->f_dentry->d_inode;
struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */
INITIALIZE_PATH (path_to_entry); INITIALIZE_PATH(path_to_entry);
struct buffer_head * bh; struct buffer_head *bh;
int item_num, entry_num; int item_num, entry_num;
const struct reiserfs_key * rkey; const struct reiserfs_key *rkey;
struct item_head * ih, tmp_ih; struct item_head *ih, tmp_ih;
int search_res; int search_res;
char * local_buf; char *local_buf;
loff_t next_pos; loff_t next_pos;
char small_buf[32] ; /* avoid kmalloc if we can */ char small_buf[32]; /* avoid kmalloc if we can */
struct reiserfs_dir_entry de; struct reiserfs_dir_entry de;
int ret = 0; int ret = 0;
reiserfs_write_lock(inode->i_sb); reiserfs_write_lock(inode->i_sb);
reiserfs_check_lock_depth(inode->i_sb, "readdir") ; reiserfs_check_lock_depth(inode->i_sb, "readdir");
/* form key for search the next directory entry using f_pos field of /* form key for search the next directory entry using f_pos field of
file structure */ file structure */
make_cpu_key (&pos_key, inode, (filp->f_pos) ? (filp->f_pos) : DOT_OFFSET, make_cpu_key(&pos_key, inode,
TYPE_DIRENTRY, 3); (filp->f_pos) ? (filp->f_pos) : DOT_OFFSET, TYPE_DIRENTRY,
next_pos = cpu_key_k_offset (&pos_key); 3);
next_pos = cpu_key_k_offset(&pos_key);
/* reiserfs_warning (inode->i_sb, "reiserfs_readdir 1: f_pos = %Ld", filp->f_pos);*/
/* reiserfs_warning (inode->i_sb, "reiserfs_readdir 1: f_pos = %Ld", filp->f_pos); */
path_to_entry.reada = PATH_READA;
while (1) { path_to_entry.reada = PATH_READA;
research: while (1) {
/* search the directory item, containing entry with specified key */ research:
search_res = search_by_entry_key (inode->i_sb, &pos_key, &path_to_entry, &de); /* search the directory item, containing entry with specified key */
if (search_res == IO_ERROR) { search_res =
// FIXME: we could just skip part of directory which could search_by_entry_key(inode->i_sb, &pos_key, &path_to_entry,
// not be read &de);
ret = -EIO; if (search_res == IO_ERROR) {
goto out; // FIXME: we could just skip part of directory which could
} // not be read
entry_num = de.de_entry_num; ret = -EIO;
bh = de.de_bh;
item_num = de.de_item_num;
ih = de.de_ih;
store_ih (&tmp_ih, ih);
/* we must have found item, that is item of this directory, */
RFALSE( COMP_SHORT_KEYS (&(ih->ih_key), &pos_key),
"vs-9000: found item %h does not match to dir we readdir %K",
ih, &pos_key);
RFALSE( item_num > B_NR_ITEMS (bh) - 1,
"vs-9005 item_num == %d, item amount == %d",
item_num, B_NR_ITEMS (bh));
/* and entry must be not more than number of entries in the item */
RFALSE( I_ENTRY_COUNT (ih) < entry_num,
"vs-9010: entry number is too big %d (%d)",
entry_num, I_ENTRY_COUNT (ih));
if (search_res == POSITION_FOUND || entry_num < I_ENTRY_COUNT (ih)) {
/* go through all entries in the directory item beginning from the entry, that has been found */
struct reiserfs_de_head * deh = B_I_DEH (bh, ih) + entry_num;
for (; entry_num < I_ENTRY_COUNT (ih); entry_num ++, deh ++) {
int d_reclen;
char * d_name;
off_t d_off;
ino_t d_ino;
if (!de_visible (deh))
/* it is hidden entry */
continue;
d_reclen = entry_length (bh, ih, entry_num);
d_name = B_I_DEH_ENTRY_FILE_NAME (bh, ih, deh);
if (!d_name[d_reclen - 1])
d_reclen = strlen (d_name);
if (d_reclen > REISERFS_MAX_NAME(inode->i_sb->s_blocksize)){
/* too big to send back to VFS */
continue ;
}
/* Ignore the .reiserfs_priv entry */
if (reiserfs_xattrs (inode->i_sb) &&
!old_format_only(inode->i_sb) &&
filp->f_dentry == inode->i_sb->s_root &&
REISERFS_SB(inode->i_sb)->priv_root &&
REISERFS_SB(inode->i_sb)->priv_root->d_inode &&
deh_objectid(deh) == le32_to_cpu (INODE_PKEY(REISERFS_SB(inode->i_sb)->priv_root->d_inode)->k_objectid)) {
continue;
}
d_off = deh_offset (deh);
filp->f_pos = d_off ;
d_ino = deh_objectid (deh);
if (d_reclen <= 32) {
local_buf = small_buf ;
} else {
local_buf = reiserfs_kmalloc(d_reclen, GFP_NOFS, inode->i_sb) ;
if (!local_buf) {
pathrelse (&path_to_entry);
ret = -ENOMEM ;
goto out; goto out;
}
if (item_moved (&tmp_ih, &path_to_entry)) {
reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
goto research;
}
}
// Note, that we copy name to user space via temporary
// buffer (local_buf) because filldir will block if
// user space buffer is swapped out. At that time
// entry can move to somewhere else
memcpy (local_buf, d_name, d_reclen);
if (filldir (dirent, local_buf, d_reclen, d_off, d_ino,
DT_UNKNOWN) < 0) {
if (local_buf != small_buf) {
reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ;
}
goto end;
} }
if (local_buf != small_buf) { entry_num = de.de_entry_num;
reiserfs_kfree(local_buf, d_reclen, inode->i_sb) ; bh = de.de_bh;
item_num = de.de_item_num;
ih = de.de_ih;
store_ih(&tmp_ih, ih);
/* we must have found item, that is item of this directory, */
RFALSE(COMP_SHORT_KEYS(&(ih->ih_key), &pos_key),
"vs-9000: found item %h does not match to dir we readdir %K",
ih, &pos_key);
RFALSE(item_num > B_NR_ITEMS(bh) - 1,
"vs-9005 item_num == %d, item amount == %d",
item_num, B_NR_ITEMS(bh));
/* and entry must be not more than number of entries in the item */
RFALSE(I_ENTRY_COUNT(ih) < entry_num,
"vs-9010: entry number is too big %d (%d)",
entry_num, I_ENTRY_COUNT(ih));
if (search_res == POSITION_FOUND
|| entry_num < I_ENTRY_COUNT(ih)) {
/* go through all entries in the directory item beginning from the entry, that has been found */
struct reiserfs_de_head *deh =
B_I_DEH(bh, ih) + entry_num;
for (; entry_num < I_ENTRY_COUNT(ih);
entry_num++, deh++) {
int d_reclen;
char *d_name;
off_t d_off;
ino_t d_ino;
if (!de_visible(deh))
/* it is hidden entry */
continue;
d_reclen = entry_length(bh, ih, entry_num);
d_name = B_I_DEH_ENTRY_FILE_NAME(bh, ih, deh);
if (!d_name[d_reclen - 1])
d_reclen = strlen(d_name);
if (d_reclen >
REISERFS_MAX_NAME(inode->i_sb->
s_blocksize)) {
/* too big to send back to VFS */
continue;
}
/* Ignore the .reiserfs_priv entry */
if (reiserfs_xattrs(inode->i_sb) &&
!old_format_only(inode->i_sb) &&
filp->f_dentry == inode->i_sb->s_root &&
REISERFS_SB(inode->i_sb)->priv_root &&
REISERFS_SB(inode->i_sb)->priv_root->d_inode
&& deh_objectid(deh) ==
le32_to_cpu(INODE_PKEY
(REISERFS_SB(inode->i_sb)->
priv_root->d_inode)->
k_objectid)) {
continue;
}
d_off = deh_offset(deh);
filp->f_pos = d_off;
d_ino = deh_objectid(deh);
if (d_reclen <= 32) {
local_buf = small_buf;
} else {
local_buf =
reiserfs_kmalloc(d_reclen, GFP_NOFS,
inode->i_sb);
if (!local_buf) {
pathrelse(&path_to_entry);
ret = -ENOMEM;
goto out;
}
if (item_moved(&tmp_ih, &path_to_entry)) {
reiserfs_kfree(local_buf,
d_reclen,
inode->i_sb);
goto research;
}
}
// Note, that we copy name to user space via temporary
// buffer (local_buf) because filldir will block if
// user space buffer is swapped out. At that time
// entry can move to somewhere else
memcpy(local_buf, d_name, d_reclen);
if (filldir
(dirent, local_buf, d_reclen, d_off, d_ino,
DT_UNKNOWN) < 0) {
if (local_buf != small_buf) {
reiserfs_kfree(local_buf,
d_reclen,
inode->i_sb);
}
goto end;
}
if (local_buf != small_buf) {
reiserfs_kfree(local_buf, d_reclen,
inode->i_sb);
}
// next entry should be looked for with such offset
next_pos = deh_offset(deh) + 1;
if (item_moved(&tmp_ih, &path_to_entry)) {
goto research;
}
} /* for */
} }
// next entry should be looked for with such offset if (item_num != B_NR_ITEMS(bh) - 1)
next_pos = deh_offset (deh) + 1; // end of directory has been reached
goto end;
/* item we went through is last item of node. Using right
delimiting key check is it directory end */
rkey = get_rkey(&path_to_entry, inode->i_sb);
if (!comp_le_keys(rkey, &MIN_KEY)) {
/* set pos_key to key, that is the smallest and greater
that key of the last entry in the item */
set_cpu_key_k_offset(&pos_key, next_pos);
continue;
}
if (item_moved (&tmp_ih, &path_to_entry)) { if (COMP_SHORT_KEYS(rkey, &pos_key)) {
goto research; // end of directory has been reached
goto end;
} }
} /* for */
} /* directory continues in the right neighboring block */
set_cpu_key_k_offset(&pos_key,
if (item_num != B_NR_ITEMS (bh) - 1) le_key_k_offset(KEY_FORMAT_3_5, rkey));
// end of directory has been reached
goto end; } /* while */
/* item we went through is last item of node. Using right end:
delimiting key check is it directory end */ filp->f_pos = next_pos;
rkey = get_rkey (&path_to_entry, inode->i_sb); pathrelse(&path_to_entry);
if (! comp_le_keys (rkey, &MIN_KEY)) { reiserfs_check_path(&path_to_entry);
/* set pos_key to key, that is the smallest and greater out:
that key of the last entry in the item */ reiserfs_write_unlock(inode->i_sb);
set_cpu_key_k_offset (&pos_key, next_pos); return ret;
continue;
}
if ( COMP_SHORT_KEYS (rkey, &pos_key)) {
// end of directory has been reached
goto end;
}
/* directory continues in the right neighboring block */
set_cpu_key_k_offset (&pos_key, le_key_k_offset (KEY_FORMAT_3_5, rkey));
} /* while */
end:
filp->f_pos = next_pos;
pathrelse (&path_to_entry);
reiserfs_check_path(&path_to_entry) ;
out:
reiserfs_write_unlock(inode->i_sb);
return ret;
} }
/* compose directory item containing "." and ".." entries (entries are /* compose directory item containing "." and ".." entries (entries are
not aligned to 4 byte boundary) */ not aligned to 4 byte boundary) */
/* the last four params are LE */ /* the last four params are LE */
void make_empty_dir_item_v1 (char * body, __le32 dirid, __le32 objid, void make_empty_dir_item_v1(char *body, __le32 dirid, __le32 objid,
__le32 par_dirid, __le32 par_objid) __le32 par_dirid, __le32 par_objid)
{ {
struct reiserfs_de_head * deh; struct reiserfs_de_head *deh;
memset (body, 0, EMPTY_DIR_SIZE_V1); memset(body, 0, EMPTY_DIR_SIZE_V1);
deh = (struct reiserfs_de_head *)body; deh = (struct reiserfs_de_head *)body;
/* direntry header of "." */ /* direntry header of "." */
put_deh_offset( &(deh[0]), DOT_OFFSET ); put_deh_offset(&(deh[0]), DOT_OFFSET);
/* these two are from make_le_item_head, and are are LE */ /* these two are from make_le_item_head, and are are LE */
deh[0].deh_dir_id = dirid; deh[0].deh_dir_id = dirid;
deh[0].deh_objectid = objid; deh[0].deh_objectid = objid;
deh[0].deh_state = 0; /* Endian safe if 0 */ deh[0].deh_state = 0; /* Endian safe if 0 */
put_deh_location( &(deh[0]), EMPTY_DIR_SIZE_V1 - strlen( "." )); put_deh_location(&(deh[0]), EMPTY_DIR_SIZE_V1 - strlen("."));
mark_de_visible(&(deh[0])); mark_de_visible(&(deh[0]));
/* direntry header of ".." */ /* direntry header of ".." */
put_deh_offset( &(deh[1]), DOT_DOT_OFFSET); put_deh_offset(&(deh[1]), DOT_DOT_OFFSET);
/* key of ".." for the root directory */ /* key of ".." for the root directory */
/* these two are from the inode, and are are LE */ /* these two are from the inode, and are are LE */
deh[1].deh_dir_id = par_dirid; deh[1].deh_dir_id = par_dirid;
deh[1].deh_objectid = par_objid; deh[1].deh_objectid = par_objid;
deh[1].deh_state = 0; /* Endian safe if 0 */ deh[1].deh_state = 0; /* Endian safe if 0 */
put_deh_location( &(deh[1]), deh_location( &(deh[0]) ) - strlen( ".." ) ); put_deh_location(&(deh[1]), deh_location(&(deh[0])) - strlen(".."));
mark_de_visible(&(deh[1])); mark_de_visible(&(deh[1]));
/* copy ".." and "." */ /* copy ".." and "." */
memcpy (body + deh_location( &(deh[0]) ), ".", 1); memcpy(body + deh_location(&(deh[0])), ".", 1);
memcpy (body + deh_location( &(deh[1]) ), "..", 2); memcpy(body + deh_location(&(deh[1])), "..", 2);
} }
/* compose directory item containing "." and ".." entries */ /* compose directory item containing "." and ".." entries */
void make_empty_dir_item (char * body, __le32 dirid, __le32 objid, void make_empty_dir_item(char *body, __le32 dirid, __le32 objid,
__le32 par_dirid, __le32 par_objid) __le32 par_dirid, __le32 par_objid)
{ {
struct reiserfs_de_head * deh; struct reiserfs_de_head *deh;
memset (body, 0, EMPTY_DIR_SIZE); memset(body, 0, EMPTY_DIR_SIZE);
deh = (struct reiserfs_de_head *)body; deh = (struct reiserfs_de_head *)body;
/* direntry header of "." */ /* direntry header of "." */
put_deh_offset( &(deh[0]), DOT_OFFSET ); put_deh_offset(&(deh[0]), DOT_OFFSET);
/* these two are from make_le_item_head, and are are LE */ /* these two are from make_le_item_head, and are are LE */
deh[0].deh_dir_id = dirid; deh[0].deh_dir_id = dirid;
deh[0].deh_objectid = objid; deh[0].deh_objectid = objid;
deh[0].deh_state = 0; /* Endian safe if 0 */ deh[0].deh_state = 0; /* Endian safe if 0 */
put_deh_location( &(deh[0]), EMPTY_DIR_SIZE - ROUND_UP( strlen( "." ) ) ); put_deh_location(&(deh[0]), EMPTY_DIR_SIZE - ROUND_UP(strlen(".")));
mark_de_visible(&(deh[0])); mark_de_visible(&(deh[0]));
/* direntry header of ".." */ /* direntry header of ".." */
put_deh_offset( &(deh[1]), DOT_DOT_OFFSET ); put_deh_offset(&(deh[1]), DOT_DOT_OFFSET);
/* key of ".." for the root directory */ /* key of ".." for the root directory */
/* these two are from the inode, and are are LE */ /* these two are from the inode, and are are LE */
deh[1].deh_dir_id = par_dirid; deh[1].deh_dir_id = par_dirid;
deh[1].deh_objectid = par_objid; deh[1].deh_objectid = par_objid;
deh[1].deh_state = 0; /* Endian safe if 0 */ deh[1].deh_state = 0; /* Endian safe if 0 */
put_deh_location( &(deh[1]), deh_location( &(deh[0])) - ROUND_UP( strlen( ".." ) ) ); put_deh_location(&(deh[1]),
mark_de_visible(&(deh[1])); deh_location(&(deh[0])) - ROUND_UP(strlen("..")));
mark_de_visible(&(deh[1]));
/* copy ".." and "." */
memcpy (body + deh_location( &(deh[0]) ), ".", 1); /* copy ".." and "." */
memcpy (body + deh_location( &(deh[1]) ), "..", 2); memcpy(body + deh_location(&(deh[0])), ".", 1);
memcpy(body + deh_location(&(deh[1])), "..", 2);
} }
此差异已折叠。
此差异已折叠。
此差异已折叠。
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include <asm/types.h> #include <asm/types.h>
#include <asm/bug.h> #include <asm/bug.h>
#define DELTA 0x9E3779B9 #define DELTA 0x9E3779B9
#define FULLROUNDS 10 /* 32 is overkill, 16 is strong crypto */ #define FULLROUNDS 10 /* 32 is overkill, 16 is strong crypto */
#define PARTROUNDS 6 /* 6 gets complete mixing */ #define PARTROUNDS 6 /* 6 gets complete mixing */
...@@ -48,105 +47,75 @@ ...@@ -48,105 +47,75 @@
h1 += b1; \ h1 += b1; \
} while(0) } while(0)
u32 keyed_hash(const signed char *msg, int len) u32 keyed_hash(const signed char *msg, int len)
{ {
u32 k[] = { 0x9464a485, 0x542e1a94, 0x3e846bff, 0xb75bcfc3}; u32 k[] = { 0x9464a485, 0x542e1a94, 0x3e846bff, 0xb75bcfc3 };
u32 h0 = k[0], h1 = k[1]; u32 h0 = k[0], h1 = k[1];
u32 a, b, c, d; u32 a, b, c, d;
u32 pad; u32 pad;
int i; int i;
// assert(len >= 0 && len < 256);
pad = (u32)len | ((u32)len << 8); // assert(len >= 0 && len < 256);
pad = (u32) len | ((u32) len << 8);
pad |= pad << 16; pad |= pad << 16;
while(len >= 16) while (len >= 16) {
{ a = (u32) msg[0] |
a = (u32)msg[ 0] | (u32) msg[1] << 8 | (u32) msg[2] << 16 | (u32) msg[3] << 24;
(u32)msg[ 1] << 8 | b = (u32) msg[4] |
(u32)msg[ 2] << 16| (u32) msg[5] << 8 | (u32) msg[6] << 16 | (u32) msg[7] << 24;
(u32)msg[ 3] << 24; c = (u32) msg[8] |
b = (u32)msg[ 4] | (u32) msg[9] << 8 |
(u32)msg[ 5] << 8 | (u32) msg[10] << 16 | (u32) msg[11] << 24;
(u32)msg[ 6] << 16| d = (u32) msg[12] |
(u32)msg[ 7] << 24; (u32) msg[13] << 8 |
c = (u32)msg[ 8] | (u32) msg[14] << 16 | (u32) msg[15] << 24;
(u32)msg[ 9] << 8 |
(u32)msg[10] << 16|
(u32)msg[11] << 24;
d = (u32)msg[12] |
(u32)msg[13] << 8 |
(u32)msg[14] << 16|
(u32)msg[15] << 24;
TEACORE(PARTROUNDS); TEACORE(PARTROUNDS);
len -= 16; len -= 16;
msg += 16; msg += 16;
} }
if (len >= 12) if (len >= 12) {
{ a = (u32) msg[0] |
a = (u32)msg[ 0] | (u32) msg[1] << 8 | (u32) msg[2] << 16 | (u32) msg[3] << 24;
(u32)msg[ 1] << 8 | b = (u32) msg[4] |
(u32)msg[ 2] << 16| (u32) msg[5] << 8 | (u32) msg[6] << 16 | (u32) msg[7] << 24;
(u32)msg[ 3] << 24; c = (u32) msg[8] |
b = (u32)msg[ 4] | (u32) msg[9] << 8 |
(u32)msg[ 5] << 8 | (u32) msg[10] << 16 | (u32) msg[11] << 24;
(u32)msg[ 6] << 16|
(u32)msg[ 7] << 24;
c = (u32)msg[ 8] |
(u32)msg[ 9] << 8 |
(u32)msg[10] << 16|
(u32)msg[11] << 24;
d = pad; d = pad;
for(i = 12; i < len; i++) for (i = 12; i < len; i++) {
{
d <<= 8; d <<= 8;
d |= msg[i]; d |= msg[i];
} }
} } else if (len >= 8) {
else if (len >= 8) a = (u32) msg[0] |
{ (u32) msg[1] << 8 | (u32) msg[2] << 16 | (u32) msg[3] << 24;
a = (u32)msg[ 0] | b = (u32) msg[4] |
(u32)msg[ 1] << 8 | (u32) msg[5] << 8 | (u32) msg[6] << 16 | (u32) msg[7] << 24;
(u32)msg[ 2] << 16|
(u32)msg[ 3] << 24;
b = (u32)msg[ 4] |
(u32)msg[ 5] << 8 |
(u32)msg[ 6] << 16|
(u32)msg[ 7] << 24;
c = d = pad; c = d = pad;
for(i = 8; i < len; i++) for (i = 8; i < len; i++) {
{
c <<= 8; c <<= 8;
c |= msg[i]; c |= msg[i];
} }
} } else if (len >= 4) {
else if (len >= 4) a = (u32) msg[0] |
{ (u32) msg[1] << 8 | (u32) msg[2] << 16 | (u32) msg[3] << 24;
a = (u32)msg[ 0] |
(u32)msg[ 1] << 8 |
(u32)msg[ 2] << 16|
(u32)msg[ 3] << 24;
b = c = d = pad; b = c = d = pad;
for(i = 4; i < len; i++) for (i = 4; i < len; i++) {
{
b <<= 8; b <<= 8;
b |= msg[i]; b |= msg[i];
} }
} } else {
else
{
a = b = c = d = pad; a = b = c = d = pad;
for(i = 0; i < len; i++) for (i = 0; i < len; i++) {
{
a <<= 8; a <<= 8;
a |= msg[i]; a |= msg[i];
} }
...@@ -155,55 +124,59 @@ u32 keyed_hash(const signed char *msg, int len) ...@@ -155,55 +124,59 @@ u32 keyed_hash(const signed char *msg, int len)
TEACORE(FULLROUNDS); TEACORE(FULLROUNDS);
/* return 0;*/ /* return 0;*/
return h0^h1; return h0 ^ h1;
} }
/* What follows in this file is copyright 2000 by Hans Reiser, and the /* What follows in this file is copyright 2000 by Hans Reiser, and the
* licensing of what follows is governed by reiserfs/README */ * licensing of what follows is governed by reiserfs/README */
u32 yura_hash (const signed char *msg, int len) u32 yura_hash(const signed char *msg, int len)
{ {
int j, pow; int j, pow;
u32 a, c; u32 a, c;
int i; int i;
for (pow=1,i=1; i < len; i++) pow = pow * 10; for (pow = 1, i = 1; i < len; i++)
pow = pow * 10;
if (len == 1)
a = msg[0]-48; if (len == 1)
else a = msg[0] - 48;
a = (msg[0] - 48) * pow; else
a = (msg[0] - 48) * pow;
for (i=1; i < len; i++) {
c = msg[i] - 48; for (i = 1; i < len; i++) {
for (pow=1,j=i; j < len-1; j++) pow = pow * 10; c = msg[i] - 48;
a = a + c * pow; for (pow = 1, j = i; j < len - 1; j++)
} pow = pow * 10;
a = a + c * pow;
for (; i < 40; i++) { }
c = '0' - 48;
for (pow=1,j=i; j < len-1; j++) pow = pow * 10; for (; i < 40; i++) {
a = a + c * pow; c = '0' - 48;
} for (pow = 1, j = i; j < len - 1; j++)
pow = pow * 10;
for (; i < 256; i++) { a = a + c * pow;
c = i; }
for (pow=1,j=i; j < len-1; j++) pow = pow * 10;
a = a + c * pow; for (; i < 256; i++) {
} c = i;
for (pow = 1, j = i; j < len - 1; j++)
a = a << 7; pow = pow * 10;
return a; a = a + c * pow;
}
a = a << 7;
return a;
} }
u32 r5_hash (const signed char *msg, int len) u32 r5_hash(const signed char *msg, int len)
{ {
u32 a=0; u32 a = 0;
while(*msg) { while (*msg) {
a += *msg << 4; a += *msg << 4;
a += *msg >> 4; a += *msg >> 4;
a *= 11; a *= 11;
msg++; msg++;
} }
return a; return a;
} }
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
...@@ -9,57 +9,55 @@ ...@@ -9,57 +9,55 @@
#define XATTR_SECURITY_PREFIX "security." #define XATTR_SECURITY_PREFIX "security."
static int static int
security_get (struct inode *inode, const char *name, void *buffer, size_t size) security_get(struct inode *inode, const char *name, void *buffer, size_t size)
{ {
if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX)) if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
return -EINVAL; return -EINVAL;
if (is_reiserfs_priv_object(inode)) if (is_reiserfs_priv_object(inode))
return -EPERM; return -EPERM;
return reiserfs_xattr_get (inode, name, buffer, size); return reiserfs_xattr_get(inode, name, buffer, size);
} }
static int static int
security_set (struct inode *inode, const char *name, const void *buffer, security_set(struct inode *inode, const char *name, const void *buffer,
size_t size, int flags) size_t size, int flags)
{ {
if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX)) if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
return -EINVAL; return -EINVAL;
if (is_reiserfs_priv_object(inode)) if (is_reiserfs_priv_object(inode))
return -EPERM; return -EPERM;
return reiserfs_xattr_set (inode, name, buffer, size, flags); return reiserfs_xattr_set(inode, name, buffer, size, flags);
} }
static int static int security_del(struct inode *inode, const char *name)
security_del (struct inode *inode, const char *name)
{ {
if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX)) if (strlen(name) < sizeof(XATTR_SECURITY_PREFIX))
return -EINVAL; return -EINVAL;
if (is_reiserfs_priv_object(inode)) if (is_reiserfs_priv_object(inode))
return -EPERM; return -EPERM;
return 0; return 0;
} }
static int static int
security_list (struct inode *inode, const char *name, int namelen, char *out) security_list(struct inode *inode, const char *name, int namelen, char *out)
{ {
int len = namelen; int len = namelen;
if (is_reiserfs_priv_object(inode)) if (is_reiserfs_priv_object(inode))
return 0; return 0;
if (out) if (out)
memcpy (out, name, len); memcpy(out, name, len);
return len; return len;
} }
struct reiserfs_xattr_handler security_handler = { struct reiserfs_xattr_handler security_handler = {
.prefix = XATTR_SECURITY_PREFIX, .prefix = XATTR_SECURITY_PREFIX,
.get = security_get, .get = security_get,
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册