summaryrefslogtreecommitdiffstats
path: root/proxy/src/gp_rpc_verify_mic.c
blob: 085a20d5085a54c455dccfb233258e5c62f18dd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* Copyright (C) 2011,2012 the GSS-PROXY contributors, see COPYING for license */

#include "gp_rpc_process.h"
#include <gssapi/gssapi.h>

int gp_verify_mic(struct gp_call_ctx *gpcall,
                  union gp_rpc_arg *arg,
                  union gp_rpc_res *res)
{
    gss_ctx_id_t context_handle = GSS_C_NO_CONTEXT;
    struct gssx_arg_verify_mic *vma;
    struct gssx_res_verify_mic *vmr;
    gss_buffer_desc message_buffer;
    gss_buffer_desc token_buffer;
    gss_qop_t qop_state;
    int exp_ctx_type;
    uint32_t ret_maj;
    uint32_t ret_min;
    int ret;

    vma = &arg->verify_mic;
    vmr = &res->verify_mic;

    exp_ctx_type = gp_get_exported_context_type(&vma->call_ctx);
    if (exp_ctx_type == -1) {
        ret_maj = GSS_S_FAILURE;
        ret_min = EINVAL;
        goto done;
    }

    ret_maj = gp_import_gssx_to_ctx_id(&ret_min, 0,
                                       &vma->context_handle,
                                       &context_handle);
    if (ret_maj) {
        goto done;
    }

    gp_conv_gssx_to_buffer(&vma->message_buffer, &message_buffer);
    gp_conv_gssx_to_buffer(&vma->token_buffer, &token_buffer);

    ret_maj = gss_verify_mic(&ret_min, context_handle,
                             &message_buffer, &token_buffer,
                             &qop_state);
    if (ret_maj) {
        goto done;
    }

    vmr->context_handle = calloc(1, sizeof(gssx_ctx));
    if (!vmr->context_handle) {
        ret_maj = GSS_S_FAILURE;
        ret_min = ENOMEM;
        goto done;
    }

    ret_maj = gp_export_ctx_id_to_gssx(&ret_min, exp_ctx_type, GSS_C_NO_OID,
                                       &context_handle,
                                       vmr->context_handle);
    if (ret_maj) {
        goto done;
    }

    vmr->qop_state = calloc(1, sizeof(gssx_qop));
    if (!vmr->qop_state) {
        ret_maj = GSS_S_FAILURE;
        ret_min = ENOMEM;
        goto done;
    }

    *vmr->qop_state = qop_state;

    ret_maj = GSS_S_COMPLETE;
    ret_min = 0;

done:
    ret = gp_conv_status_to_gssx(&vma->call_ctx,
                                 ret_maj, ret_min,
                                 GSS_C_NO_OID,
                                 &vmr->status);
    return ret;
}