提交 29c353b3 编写于 作者: J J. Bruce Fields

nfsd4: define svcxdr_dupstr to share some common code

Signed-off-by: NJ. Bruce Fields <bfields@redhat.com>
上级 ce043ac8
...@@ -202,6 +202,26 @@ defer_free(struct nfsd4_compoundargs *argp, void *p) ...@@ -202,6 +202,26 @@ defer_free(struct nfsd4_compoundargs *argp, void *p)
return 0; return 0;
} }
/*
* For xdr strings that need to be passed to other kernel api's
* as null-terminated strings.
*
* Note null-terminating in place usually isn't safe since the
* buffer might end on a page boundary.
*/
static char *
svcxdr_dupstr(struct nfsd4_compoundargs *argp, void *buf, u32 len)
{
char *p = kmalloc(len + 1, GFP_KERNEL);
if (!p)
return NULL;
memcpy(p, buf, len);
p[len] = '\0';
defer_free(argp, p);
return p;
}
/** /**
* savemem - duplicate a chunk of memory for later processing * savemem - duplicate a chunk of memory for later processing
* @argp: NFSv4 compound argument structure to be freed with * @argp: NFSv4 compound argument structure to be freed with
...@@ -415,12 +435,10 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval, ...@@ -415,12 +435,10 @@ nfsd4_decode_fattr(struct nfsd4_compoundargs *argp, u32 *bmval,
return nfserr_badlabel; return nfserr_badlabel;
len += (XDR_QUADLEN(dummy32) << 2); len += (XDR_QUADLEN(dummy32) << 2);
READMEM(buf, dummy32); READMEM(buf, dummy32);
label->data = kzalloc(dummy32 + 1, GFP_KERNEL); label->len = dummy32;
label->data = svcxdr_dupstr(argp, buf, dummy32);
if (!label->data) if (!label->data)
return nfserr_jukebox; return nfserr_jukebox;
label->len = dummy32;
defer_free(argp, label->data);
memcpy(label->data, buf, dummy32);
} }
#endif #endif
...@@ -597,17 +615,9 @@ nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create ...@@ -597,17 +615,9 @@ nfsd4_decode_create(struct nfsd4_compoundargs *argp, struct nfsd4_create *create
READ_BUF(4); READ_BUF(4);
create->cr_datalen = be32_to_cpup(p++); create->cr_datalen = be32_to_cpup(p++);
READ_BUF(create->cr_datalen); READ_BUF(create->cr_datalen);
/* create->cr_data = svcxdr_dupstr(argp, p, create->cr_datalen);
* The VFS will want a null-terminated string, and
* null-terminating in place isn't safe since this might
* end on a page boundary:
*/
create->cr_data = kmalloc(create->cr_datalen + 1, GFP_KERNEL);
if (!create->cr_data) if (!create->cr_data)
return nfserr_jukebox; return nfserr_jukebox;
memcpy(create->cr_data, p, create->cr_datalen);
create->cr_data[create->cr_datalen] = '\0';
defer_free(argp, create->cr_data);
break; break;
case NF4BLK: case NF4BLK:
case NF4CHR: case NF4CHR:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册