Skip to content
Snippets Groups Projects
Commit 5ca10545 authored by Bobi Jam's avatar Bobi Jam
Browse files

Branch HEAD

b=17038
o=johann
i=alexey.lyashkov (shadow)
i=zhenyu.xu (bobijam)

return ENODATA for getxattr upon files which are neither regular files nor directories.
parent 1f0bd150
No related branches found
No related tags found
No related merge requests found
...@@ -192,7 +192,7 @@ int ll_setxattr_common(struct inode *inode, const char *name, ...@@ -192,7 +192,7 @@ int ll_setxattr_common(struct inode *inode, const char *name,
if (rc) { if (rc) {
if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) { if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
LCONSOLE_INFO("Disabling user_xattr feature because " LCONSOLE_INFO("Disabling user_xattr feature because "
"it is not supported on the server\n"); "it is not supported on the server\n");
sbi->ll_flags &= ~LL_SBI_USER_XATTR; sbi->ll_flags &= ~LL_SBI_USER_XATTR;
} }
RETURN(rc); RETURN(rc);
...@@ -215,10 +215,10 @@ int ll_setxattr(struct dentry *dentry, const char *name, ...@@ -215,10 +215,10 @@ int ll_setxattr(struct dentry *dentry, const char *name,
ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETXATTR, 1); ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_SETXATTR, 1);
if ((strncmp(name, XATTR_TRUSTED_PREFIX, if ((strncmp(name, XATTR_TRUSTED_PREFIX,
sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 && sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 &&
strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) || strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) ||
(strncmp(name, XATTR_LUSTRE_PREFIX, (strncmp(name, XATTR_LUSTRE_PREFIX,
sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 && sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 &&
strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) { strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) {
struct lov_user_md *lump = (struct lov_user_md *)value; struct lov_user_md *lump = (struct lov_user_md *)value;
...@@ -227,16 +227,16 @@ int ll_setxattr(struct dentry *dentry, const char *name, ...@@ -227,16 +227,16 @@ int ll_setxattr(struct dentry *dentry, const char *name,
if (S_ISREG(inode->i_mode)) { if (S_ISREG(inode->i_mode)) {
struct file f; struct file f;
int flags = FMODE_WRITE; int flags = FMODE_WRITE;
f.f_dentry = dentry; f.f_dentry = dentry;
rc = ll_lov_setstripe_ea_info(inode, &f, flags, rc = ll_lov_setstripe_ea_info(inode, &f, flags,
lump, sizeof(*lump)); lump, sizeof(*lump));
/* b10667: rc always be 0 here for now */ /* b10667: rc always be 0 here for now */
rc = 0; rc = 0;
} else if (S_ISDIR(inode->i_mode)) { } else if (S_ISDIR(inode->i_mode)) {
rc = ll_dir_setstripe(inode, lump, 0); rc = ll_dir_setstripe(inode, lump, 0);
} }
return rc; return rc;
} }
...@@ -337,7 +337,7 @@ do_getxattr: ...@@ -337,7 +337,7 @@ do_getxattr:
if (rc) { if (rc) {
if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) { if (rc == -EOPNOTSUPP && xattr_type == XATTR_USER_T) {
LCONSOLE_INFO("Disabling user_xattr feature because " LCONSOLE_INFO("Disabling user_xattr feature because "
"it is not supported on the server\n"); "it is not supported on the server\n");
sbi->ll_flags &= ~LL_SBI_USER_XATTR; sbi->ll_flags &= ~LL_SBI_USER_XATTR;
} }
RETURN(rc); RETURN(rc);
...@@ -404,23 +404,25 @@ ssize_t ll_getxattr(struct dentry *dentry, const char *name, ...@@ -404,23 +404,25 @@ ssize_t ll_getxattr(struct dentry *dentry, const char *name,
ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR, 1); ll_stats_ops_tally(ll_i2sbi(inode), LPROC_LL_GETXATTR, 1);
if ((strncmp(name, XATTR_TRUSTED_PREFIX, if ((strncmp(name, XATTR_TRUSTED_PREFIX,
sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 && sizeof(XATTR_TRUSTED_PREFIX) - 1) == 0 &&
strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) || strcmp(name + sizeof(XATTR_TRUSTED_PREFIX) - 1, "lov") == 0) ||
(strncmp(name, XATTR_LUSTRE_PREFIX, (strncmp(name, XATTR_LUSTRE_PREFIX,
sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 && sizeof(XATTR_LUSTRE_PREFIX) - 1) == 0 &&
strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) { strcmp(name + sizeof(XATTR_LUSTRE_PREFIX) - 1, "lov") == 0)) {
struct lov_user_md *lump; struct lov_user_md *lump;
struct lov_mds_md *lmm = NULL; struct lov_mds_md *lmm = NULL;
struct ptlrpc_request *request = NULL; struct ptlrpc_request *request = NULL;
int rc = 0, lmmsize; int rc = 0, lmmsize = 0;
if (S_ISREG(inode->i_mode)) { if (S_ISREG(inode->i_mode)) {
rc = ll_lov_getstripe_ea_info(dentry->d_parent->d_inode, rc = ll_lov_getstripe_ea_info(dentry->d_parent->d_inode,
dentry->d_name.name, &lmm, dentry->d_name.name, &lmm,
&lmmsize, &request); &lmmsize, &request);
} else if (S_ISDIR(inode->i_mode)) { } else if (S_ISDIR(inode->i_mode)) {
rc = ll_dir_getstripe(inode, &lmm, &lmmsize, &request); rc = ll_dir_getstripe(inode, &lmm, &lmmsize, &request);
} else {
rc = -ENODATA;
} }
if (rc < 0) if (rc < 0)
...@@ -429,8 +431,8 @@ ssize_t ll_getxattr(struct dentry *dentry, const char *name, ...@@ -429,8 +431,8 @@ ssize_t ll_getxattr(struct dentry *dentry, const char *name,
GOTO(out, rc = lmmsize); GOTO(out, rc = lmmsize);
if (size < lmmsize) { if (size < lmmsize) {
CERROR("server bug: replied size %u > %u\n", CERROR("server bug: replied size %d > %d for %s (%s)\n",
lmmsize, (int)size); lmmsize, (int)size, dentry->d_name.name, name);
GOTO(out, rc = -ERANGE); GOTO(out, rc = -ERANGE);
} }
...@@ -468,7 +470,7 @@ ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size) ...@@ -468,7 +470,7 @@ ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size)
struct lov_stripe_md *lsm = NULL; struct lov_stripe_md *lsm = NULL;
lsm = lli->lli_smd; lsm = lli->lli_smd;
if (lsm == NULL) if (lsm == NULL)
rc2 = -1; rc2 = -1;
} else if (S_ISDIR(inode->i_mode)) { } else if (S_ISDIR(inode->i_mode)) {
rc2 = ll_dir_getstripe(inode, &lmm, &lmmsize, &request); rc2 = ll_dir_getstripe(inode, &lmm, &lmmsize, &request);
} }
...@@ -491,6 +493,6 @@ ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size) ...@@ -491,6 +493,6 @@ ssize_t ll_listxattr(struct dentry *dentry, char *buffer, size_t size)
out: out:
ptlrpc_req_finished(request); ptlrpc_req_finished(request);
rc = rc + rc2; rc = rc + rc2;
return rc; return rc;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment