diff options
author | Kevin Coffman <kwc@citi.umich.edu> | 2010-03-17 13:02:47 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2010-05-14 15:09:15 -0400 |
commit | 7561042fb7870be0b4ee57efddce68bda8968abf (patch) | |
tree | 8946703293d7904928f473f14f4e645f6d5be65a /net/sunrpc/auth_gss/auth_gss.c | |
parent | 725f2865d4df31ac0768b13ae763beadc4bb8ce9 (diff) |
gss_krb5: Added and improved code comments
Signed-off-by: Steve Dickson <steved@redhat.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/auth_gss/auth_gss.c')
-rw-r--r-- | net/sunrpc/auth_gss/auth_gss.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/net/sunrpc/auth_gss/auth_gss.c b/net/sunrpc/auth_gss/auth_gss.c index 75602ece58eb..d64a58b8ed33 100644 --- a/net/sunrpc/auth_gss/auth_gss.c +++ b/net/sunrpc/auth_gss/auth_gss.c | |||
@@ -1316,15 +1316,21 @@ gss_wrap_req_priv(struct rpc_cred *cred, struct gss_cl_ctx *ctx, | |||
1316 | inpages = snd_buf->pages + first; | 1316 | inpages = snd_buf->pages + first; |
1317 | snd_buf->pages = rqstp->rq_enc_pages; | 1317 | snd_buf->pages = rqstp->rq_enc_pages; |
1318 | snd_buf->page_base -= first << PAGE_CACHE_SHIFT; | 1318 | snd_buf->page_base -= first << PAGE_CACHE_SHIFT; |
1319 | /* Give the tail its own page, in case we need extra space in the | 1319 | /* |
1320 | * head when wrapping: */ | 1320 | * Give the tail its own page, in case we need extra space in the |
1321 | * head when wrapping: | ||
1322 | * | ||
1323 | * call_allocate() allocates twice the slack space required | ||
1324 | * by the authentication flavor to rq_callsize. | ||
1325 | * For GSS, slack is GSS_CRED_SLACK. | ||
1326 | */ | ||
1321 | if (snd_buf->page_len || snd_buf->tail[0].iov_len) { | 1327 | if (snd_buf->page_len || snd_buf->tail[0].iov_len) { |
1322 | tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]); | 1328 | tmp = page_address(rqstp->rq_enc_pages[rqstp->rq_enc_pages_num - 1]); |
1323 | memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len); | 1329 | memcpy(tmp, snd_buf->tail[0].iov_base, snd_buf->tail[0].iov_len); |
1324 | snd_buf->tail[0].iov_base = tmp; | 1330 | snd_buf->tail[0].iov_base = tmp; |
1325 | } | 1331 | } |
1326 | maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages); | 1332 | maj_stat = gss_wrap(ctx->gc_gss_ctx, offset, snd_buf, inpages); |
1327 | /* RPC_SLACK_SPACE should prevent this ever happening: */ | 1333 | /* slack space should prevent this ever happening: */ |
1328 | BUG_ON(snd_buf->len > snd_buf->buflen); | 1334 | BUG_ON(snd_buf->len > snd_buf->buflen); |
1329 | status = -EIO; | 1335 | status = -EIO; |
1330 | /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was | 1336 | /* We're assuming that when GSS_S_CONTEXT_EXPIRED, the encryption was |