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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
|
/* Copyright (C) 2014 the GSS-PROXY contributors, see COPYING for license */
#include "t_utils.h"
#include <unistd.h>
#include <stdbool.h>
int main(int argc, const char *argv[])
{
char buffer[MAX_RPC_SIZE];
uint32_t buflen;
gss_cred_id_t impersonator_cred_handle = GSS_C_NO_CREDENTIAL;
gss_cred_id_t cred_handle = GSS_C_NO_CREDENTIAL;
gss_ctx_id_t init_ctx = GSS_C_NO_CONTEXT;
gss_ctx_id_t accept_ctx = GSS_C_NO_CONTEXT;
gss_buffer_desc in_token = GSS_C_EMPTY_BUFFER;
gss_buffer_desc out_token = GSS_C_EMPTY_BUFFER;
gss_name_t user_name;
gss_name_t target_name;
gss_OID_set_desc oid_set = { 1, discard_const(gss_mech_krb5) };
uint32_t ret_maj;
uint32_t ret_min;
uint32_t time_rec;
uint32_t flags = GSS_C_MUTUAL_FLAG | GSS_C_DELEG_FLAG;
int ret = -1;
bool selfhalf = false;
bool proxyhalf = false;
const char *deleg_ccache = NULL;
if (argc < 3) return -1;
ret = t_string_to_name(argv[1], &user_name, GSS_C_NT_USER_NAME);
if (ret) {
DEBUG("Failed to import user name from argv[1]\n");
ret = -1;
goto done;
}
ret = t_string_to_name(argv[2], &target_name,
GSS_C_NT_HOSTBASED_SERVICE);
if (ret) {
DEBUG("Failed to import server name from argv[2]\n");
ret = -1;
goto done;
}
if (argc > 3) {
if (strcmp(argv[3], "s4u2self") == 0) {
selfhalf = true;
} else if (strcmp(argv[3], "s4u2proxy") == 0) {
proxyhalf = true;
} else {
DEBUG("Invalid argument 3: %s\n", argv[3]);
ret = -1;
goto done;
}
if (argc < 5) {
DEBUG("Option %s requires additional arguments\n", argv[3]);
ret = -1;
goto done;
}
deleg_ccache = argv[4];
DEBUG("S4U2%s half [ccache %s]\n", selfhalf?"Self":"Proxy", argv[4]);
}
if (proxyhalf) {
gss_key_value_element_desc ccelement = { "ccache", deleg_ccache };
gss_key_value_set_desc cred_store = { 1, &ccelement };
ret_maj = gss_acquire_cred_from(&ret_min,
GSS_C_NO_NAME,
GSS_C_INDEFINITE,
&oid_set,
GSS_C_INITIATE,
&cred_store,
&cred_handle,
NULL, NULL);
if (ret_maj != GSS_S_COMPLETE) {
DEBUG("gss_acquire_cred_from() [s4u2proxy] failed\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
flags = GSS_C_MUTUAL_FLAG;
} else {
ret_maj = gss_acquire_cred(&ret_min,
GSS_C_NO_NAME,
GSS_C_INDEFINITE,
&oid_set,
GSS_C_BOTH,
&impersonator_cred_handle,
NULL, NULL);
if (ret_maj != GSS_S_COMPLETE) {
DEBUG("gss_acquire_cred() failed\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
ret_maj = gss_acquire_cred_impersonate_name(&ret_min,
impersonator_cred_handle,
user_name,
GSS_C_INDEFINITE,
&oid_set,
GSS_C_INITIATE,
&cred_handle,
NULL, NULL);
if (ret_maj != GSS_S_COMPLETE) {
DEBUG("gss_acquire_cred_impersonate_name() failed\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
}
if (selfhalf) {
gss_key_value_element_desc ccelement = { "ccache", deleg_ccache };
gss_key_value_set_desc cred_store = { 1, &ccelement };
ret_maj = gss_store_cred_into(&ret_min,
cred_handle,
GSS_C_INITIATE,
discard_const(gss_mech_krb5), 1, 0,
&cred_store, NULL, NULL);
if (ret_maj != GSS_S_COMPLETE) {
DEBUG("gss_store_cred_into() failed\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
}
goto done;
}
ret_maj = gss_init_sec_context(&ret_min,
cred_handle,
&init_ctx,
target_name,
GSS_C_NO_OID,
flags,
0,
GSS_C_NO_CHANNEL_BINDINGS,
&in_token,
NULL,
&out_token,
NULL,
NULL);
if (ret_maj != GSS_S_CONTINUE_NEEDED) {
DEBUG("gss_init_sec_context() failed\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
/* We get stuff from stdin and spit it out on stderr */
if (!out_token.length) {
DEBUG("No output token ?");
ret = -1;
goto done;
}
/* in/out token inverted here intentionally */
ret_maj = gss_accept_sec_context(&ret_min,
&accept_ctx,
GSS_C_NO_CREDENTIAL,
&out_token,
GSS_C_NO_CHANNEL_BINDINGS,
NULL,
NULL,
&in_token,
NULL,
NULL,
NULL);
if (ret_maj) {
DEBUG("Error accepting context\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
if (!in_token.length) {
DEBUG("No output token ?");
ret = -1;
goto done;
}
gss_release_buffer(&ret_min, &out_token);
ret_maj = gss_init_sec_context(&ret_min,
cred_handle,
&init_ctx,
target_name,
GSS_C_NO_OID,
flags,
0,
GSS_C_NO_CHANNEL_BINDINGS,
&in_token,
NULL,
&out_token,
NULL,
NULL);
if (ret_maj) {
DEBUG("Error initializing context\n");
t_log_failure(GSS_C_NO_OID, ret_maj, ret_min);
ret = -1;
goto done;
}
ret = 0;
done:
gss_release_buffer(&ret_min, &in_token);
gss_release_buffer(&ret_min, &out_token);
gss_release_cred(&ret_min, &impersonator_cred_handle);
gss_release_cred(&ret_min, &cred_handle);
return ret;
}
|