Commit df18f9cc authored by Chuck Lever's avatar Chuck Lever

SUNRPC: Use xdr_stream to encode Reply verifier in svcauth_tls_accept()

Done as part of hardening the server-side RPC header encoding path.
Reviewed-by: default avatarJeff Layton <jlayton@kernel.org>
Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
parent 3b03f3c5
...@@ -822,9 +822,9 @@ svcauth_tls_accept(struct svc_rqst *rqstp) ...@@ -822,9 +822,9 @@ svcauth_tls_accept(struct svc_rqst *rqstp)
{ {
struct xdr_stream *xdr = &rqstp->rq_arg_stream; struct xdr_stream *xdr = &rqstp->rq_arg_stream;
struct svc_cred *cred = &rqstp->rq_cred; struct svc_cred *cred = &rqstp->rq_cred;
struct kvec *resv = rqstp->rq_res.head;
u32 flavor, len; u32 flavor, len;
void *body; void *body;
__be32 *p;
/* Length of Call's credential body field: */ /* Length of Call's credential body field: */
if (xdr_stream_decode_u32(xdr, &len) < 0) if (xdr_stream_decode_u32(xdr, &len) < 0)
...@@ -855,17 +855,21 @@ svcauth_tls_accept(struct svc_rqst *rqstp) ...@@ -855,17 +855,21 @@ svcauth_tls_accept(struct svc_rqst *rqstp)
if (cred->cr_group_info == NULL) if (cred->cr_group_info == NULL)
return SVC_CLOSE; return SVC_CLOSE;
/* Reply's verifier */ svcxdr_init_encode(rqstp);
svc_putnl(resv, RPC_AUTH_NULL);
if (rqstp->rq_xprt->xpt_ops->xpo_start_tls) { if (rqstp->rq_xprt->xpt_ops->xpo_start_tls) {
svc_putnl(resv, 8); p = xdr_reserve_space(&rqstp->rq_res_stream, XDR_UNIT * 2 + 8);
memcpy(resv->iov_base + resv->iov_len, "STARTTLS", 8); if (!p)
resv->iov_len += 8; return SVC_CLOSE;
} else *p++ = rpc_auth_null;
svc_putnl(resv, 0); *p++ = cpu_to_be32(8);
memcpy(p, "STARTTLS", 8);
} else {
if (xdr_stream_encode_opaque_auth(&rqstp->rq_res_stream,
RPC_AUTH_NULL, NULL, 0) < 0)
return SVC_CLOSE;
}
rqstp->rq_cred.cr_flavor = RPC_AUTH_TLS; rqstp->rq_cred.cr_flavor = RPC_AUTH_TLS;
svcxdr_init_encode(rqstp);
return SVC_OK; return SVC_OK;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment