Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
89b55979
Commit
89b55979
authored
Sep 10, 2002
by
Dave Kleikamp
Committed by
Dave Kleikamp
Sep 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
JFS: add permission checks before getting or setting xattrs
parent
d95f6b25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
1 deletion
+28
-1
fs/jfs/xattr.c
fs/jfs/xattr.c
+28
-1
No files found.
fs/jfs/xattr.c
View file @
89b55979
...
...
@@ -577,6 +577,21 @@ static int ea_put(struct inode *inode, struct ea_buffer *ea_buf, int new_size)
return
rc
;
}
static
int
can_set_xattr
(
struct
inode
*
inode
,
const
char
*
name
)
{
if
(
IS_RDONLY
(
inode
))
return
-
EROFS
;
if
(
IS_IMMUTABLE
(
inode
)
||
IS_APPEND
(
inode
)
||
S_ISLNK
(
inode
->
i_mode
))
return
-
EPERM
;
if
(
!
S_ISREG
(
inode
->
i_mode
)
&&
(
!
S_ISDIR
(
inode
->
i_mode
)
||
inode
->
i_mode
&
S_ISVTX
))
return
-
EPERM
;
return
permission
(
inode
,
MAY_WRITE
);
}
int
__jfs_setxattr
(
struct
inode
*
inode
,
const
char
*
name
,
void
*
value
,
size_t
value_len
,
int
flags
)
{
...
...
@@ -588,9 +603,12 @@ int __jfs_setxattr(struct inode *inode, const char *name, void *value,
int
new_size
;
int
namelen
=
strlen
(
name
);
int
found
=
0
;
int
rc
=
0
;
int
rc
;
int
length
;
if
((
rc
=
can_set_xattr
(
inode
,
name
)))
return
rc
;
xattr_size
=
ea_get
(
inode
,
&
ea_buf
,
0
);
if
(
xattr_size
<
0
)
{
rc
=
xattr_size
;
...
...
@@ -710,6 +728,11 @@ int jfs_setxattr(struct dentry *dentry, const char *name, void *value,
return
__jfs_setxattr
(
dentry
->
d_inode
,
name
,
value
,
value_len
,
flags
);
}
static
int
can_get_xattr
(
struct
inode
*
inode
,
const
char
*
name
)
{
return
permission
(
inode
,
MAY_READ
);
}
ssize_t
__jfs_getxattr
(
struct
inode
*
inode
,
const
char
*
name
,
void
*
data
,
size_t
buf_size
)
{
...
...
@@ -719,8 +742,12 @@ ssize_t __jfs_getxattr(struct inode *inode, const char *name, void *data,
int
xattr_size
;
ssize_t
size
;
int
namelen
=
strlen
(
name
);
int
rc
;
char
*
value
;
if
((
rc
=
can_get_xattr
(
inode
,
name
)))
return
rc
;
xattr_size
=
ea_get
(
inode
,
&
ea_buf
,
0
);
if
(
xattr_size
<
0
)
{
size
=
xattr_size
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment