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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* Copyright (C) 2011,2012 the GSS-PROXY contributors, see COPYING for license */
#include "gssapi_gpm.h"
#include "src/gp_conv.h"
OM_uint32 gpm_wrap(OM_uint32 *minor_status,
gssx_ctx *context_handle,
int conf_req_flag,
gss_qop_t qop_req,
const gss_buffer_t input_message_buffer,
int *conf_state,
gss_buffer_t output_message_buffer)
{
union gp_rpc_arg uarg;
union gp_rpc_res ures;
gssx_arg_wrap *arg = &uarg.wrap;
gssx_res_wrap *res = &ures.wrap;
uint32_t ret_min = 0;
uint32_t ret_maj = 0;
int ret = 0;
gssx_buffer message_buffer;
memset(&uarg, 0, sizeof(union gp_rpc_arg));
memset(&ures, 0, sizeof(union gp_rpc_res));
if (!context_handle) {
return GSS_S_CALL_INACCESSIBLE_READ;
}
/* format request */
/* NOTE: the final free will also release the old context */
arg->context_handle = *context_handle;
arg->conf_req = conf_req_flag;
arg->qop_state = qop_req;
ret = gp_conv_buffer_to_gssx(input_message_buffer, &message_buffer);
if (ret) {
ret_maj = GSS_S_FAILURE;
ret_min = ret;
goto done;
}
arg->message_buffer.message_buffer_val = calloc(1, sizeof(gssx_buffer));
if (!arg->message_buffer.message_buffer_val) {
ret_maj = GSS_S_FAILURE;
ret_min = ENOMEM;
goto done;
}
arg->message_buffer.message_buffer_val[0] = message_buffer;
arg->message_buffer.message_buffer_len = 1;
/* execute proxy request */
ret = gpm_make_call(GSSX_WRAP, &uarg, &ures);
if (ret) {
ret_maj = GSS_S_FAILURE;
ret_min = ret;
goto done;
}
/* format reply */
if (res->status.major_status) {
gpm_save_status(&res->status);
ret_min = res->status.minor_status;
ret_maj = res->status.major_status;
goto done;
}
if (conf_state) {
*conf_state = *res->conf_state;
}
if (res->token_buffer.token_buffer_len > 0) {
ret = gp_copy_gssx_to_buffer(&res->token_buffer.token_buffer_val[0],
output_message_buffer);
if (ret) {
ret_maj = GSS_S_FAILURE;
ret_min = ret;
goto done;
}
}
done:
/* Steal the new context if available.
* NOTE: We do not want it to be freed by xdr_free, so copy the contents
* and cear up the structure to be freed so contents are not freed. */
if (res->context_handle) {
*context_handle = *res->context_handle;
memset(res->context_handle, 0, sizeof(gssx_ctx));
} else {
/* prevent the contexthandle from being destroyed in case of server
* error. */
memset(&arg->context_handle, 0, sizeof(gssx_ctx));
}
gpm_free_xdrs(GSSX_WRAP, &uarg, &ures);
*minor_status = ret_min;
return ret_maj;
}
|