Skip to content

Commit

Permalink
Merge branch 'for-2.6.28' of git://linux-nfs.org/~bfields/linux
Browse files Browse the repository at this point in the history
* 'for-2.6.28' of git://linux-nfs.org/~bfields/linux:
  nfsd: clean up expkey_parse error cases
  nfsd: Drop reference in expkey_parse error cases
  nfsd: Fix memory leak in nfsd_getxattr
  NFSD: Fix BUG during NFSD shutdown processing
  • Loading branch information
Linus Torvalds committed Oct 23, 2008
2 parents feeedc6 + 30bc4df commit 3321737
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
19 changes: 10 additions & 9 deletions fs/nfsd/export.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,15 +99,16 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
int fsidtype;
char *ep;
struct svc_expkey key;
struct svc_expkey *ek;
struct svc_expkey *ek = NULL;

if (mesg[mlen-1] != '\n')
return -EINVAL;
mesg[mlen-1] = 0;

buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
err = -ENOMEM;
if (!buf) goto out;
if (!buf)
goto out;

err = -EINVAL;
if ((len=qword_get(&mesg, buf, PAGE_SIZE)) <= 0)
Expand Down Expand Up @@ -151,16 +152,16 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)

/* now we want a pathname, or empty meaning NEGATIVE */
err = -EINVAL;
if ((len=qword_get(&mesg, buf, PAGE_SIZE)) < 0)
len = qword_get(&mesg, buf, PAGE_SIZE);
if (len < 0)
goto out;
dprintk("Path seems to be <%s>\n", buf);
err = 0;
if (len == 0) {
set_bit(CACHE_NEGATIVE, &key.h.flags);
ek = svc_expkey_update(&key, ek);
if (ek)
cache_put(&ek->h, &svc_expkey_cache);
else err = -ENOMEM;
if (!ek)
err = -ENOMEM;
} else {
struct nameidata nd;
err = path_lookup(buf, 0, &nd);
Expand All @@ -171,14 +172,14 @@ static int expkey_parse(struct cache_detail *cd, char *mesg, int mlen)
key.ek_path = nd.path;

ek = svc_expkey_update(&key, ek);
if (ek)
cache_put(&ek->h, &svc_expkey_cache);
else
if (!ek)
err = -ENOMEM;
path_put(&nd.path);
}
cache_flush();
out:
if (ek)
cache_put(&ek->h, &svc_expkey_cache);
if (dom)
auth_domain_put(dom);
kfree(buf);
Expand Down
4 changes: 4 additions & 0 deletions fs/nfsd/nfssvc.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ static int nfsd_init_socks(int port)
if (error < 0)
return error;

error = lockd_up();
if (error < 0)
return error;

error = svc_create_xprt(nfsd_serv, "tcp", port,
SVC_SOCK_DEFAULTS);
if (error < 0)
Expand Down
6 changes: 5 additions & 1 deletion fs/nfsd/vfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,7 @@ nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
{
ssize_t buflen;
ssize_t ret;

buflen = vfs_getxattr(dentry, key, NULL, 0);
if (buflen <= 0)
Expand All @@ -419,7 +420,10 @@ static ssize_t nfsd_getxattr(struct dentry *dentry, char *key, void **buf)
if (!*buf)
return -ENOMEM;

return vfs_getxattr(dentry, key, *buf, buflen);
ret = vfs_getxattr(dentry, key, *buf, buflen);
if (ret < 0)
kfree(*buf);
return ret;
}
#endif

Expand Down

0 comments on commit 3321737

Please sign in to comment.