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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
|
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2008-2014 Intel Corporation.
*
* Author: David Woodhouse <dwmw2@infradead.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#include <config.h>
#include <errno.h>
#include <string.h>
#include "openconnect-internal.h"
static int sspi_setup(struct openconnect_info *vpninfo, const char *service)
{
SECURITY_STATUS status;
if (asprintf(&vpninfo->sspi_target_name, "%s/%s", service, vpninfo->proxy) == -1)
return -ENOMEM;
status = AcquireCredentialsHandle(NULL, (SEC_CHAR *)"Negotiate", SECPKG_CRED_OUTBOUND,
NULL, NULL, NULL, NULL, &vpninfo->sspi_cred, NULL);
if (status != SEC_E_OK) {
vpn_progress(vpninfo, PRG_ERR,
_("AcquireCredentialsHandle() failed: %lx\n"), status);
free(vpninfo->sspi_target_name);
vpninfo->sspi_target_name = NULL;
return -EIO;
}
return 0;
}
int gssapi_authorization(struct openconnect_info *vpninfo, struct oc_text_buf *hdrbuf)
{
SECURITY_STATUS status;
SecBufferDesc input_desc, output_desc;
SecBuffer in_token, out_token;
ULONG ret_flags;
int first = 1;
if (vpninfo->auth[AUTH_TYPE_GSSAPI].state == AUTH_AVAILABLE && sspi_setup(vpninfo, "HTTP")) {
vpninfo->auth[AUTH_TYPE_GSSAPI].state = AUTH_FAILED;
return -EIO;
}
if (vpninfo->auth[AUTH_TYPE_GSSAPI].challenge && *vpninfo->auth[AUTH_TYPE_GSSAPI].challenge) {
int token_len;
input_desc.cBuffers = 1;
input_desc.pBuffers = &in_token;
input_desc.ulVersion = SECBUFFER_VERSION;
in_token.BufferType = SECBUFFER_TOKEN;
token_len = openconnect_base64_decode(&in_token.pvBuffer,
vpninfo->auth[AUTH_TYPE_GSSAPI].challenge);
if (token_len < 0)
return token_len;
in_token.cbBuffer = token_len;
first = 0;
} else if (vpninfo->auth[AUTH_TYPE_GSSAPI].state > AUTH_AVAILABLE) {
/* This indicates failure. We were trying, but got an empty
'Proxy-Authorization: Negotiate' header back from the server
implying that we should start again... */
goto fail_gssapi;
}
vpninfo->auth[AUTH_TYPE_GSSAPI].state = AUTH_IN_PROGRESS;
output_desc.cBuffers = 1;
output_desc.pBuffers = &out_token;
output_desc.ulVersion = SECBUFFER_VERSION;
out_token.BufferType = SECBUFFER_TOKEN;
out_token.cbBuffer = 0;
out_token.pvBuffer = NULL;
status = InitializeSecurityContext(&vpninfo->sspi_cred, first ? NULL : &vpninfo->sspi_ctx,
(SEC_CHAR *)vpninfo->sspi_target_name,
ISC_REQ_ALLOCATE_MEMORY | ISC_REQ_CONFIDENTIALITY | ISC_REQ_REPLAY_DETECT | ISC_REQ_CONNECTION,
0, SECURITY_NETWORK_DREP, first ? NULL : &input_desc, 0, &vpninfo->sspi_ctx,
&output_desc, &ret_flags, NULL);
if (status != SEC_E_OK && status != SEC_I_CONTINUE_NEEDED) {
vpn_progress(vpninfo, PRG_ERR,
_("InitializeSecurityContext() failed: %lx\n"), status);
fail_gssapi:
cleanup_gssapi_auth(vpninfo);
vpninfo->auth[AUTH_TYPE_GSSAPI].state = AUTH_FAILED;
/* -EAGAIN to first a reconnect if we had been trying. Else -EIO */
return first ? -EIO : -EAGAIN;
}
buf_append(hdrbuf, "Proxy-Authorization: Negotiate ");
buf_append_base64(hdrbuf, out_token.pvBuffer, out_token.cbBuffer);
buf_append(hdrbuf, "\r\n");
FreeContextBuffer(out_token.pvBuffer);
return 0;
}
void cleanup_gssapi_auth(struct openconnect_info *vpninfo)
{
if (vpninfo->auth[AUTH_TYPE_GSSAPI].state >= AUTH_IN_PROGRESS) {
free(vpninfo->sspi_target_name);
vpninfo->sspi_target_name = NULL;
FreeCredentialsHandle(&vpninfo->sspi_cred);
DeleteSecurityContext(&vpninfo->sspi_ctx);
}
}
int socks_gssapi_auth(struct openconnect_info *vpninfo)
{
SECURITY_STATUS status;
SecBufferDesc input_desc, output_desc;
SecBuffer in_token, out_token;
ULONG ret_flags;
unsigned char *pktbuf;
int first = 1;
int i;
int ret = -EIO;
if (sspi_setup(vpninfo, "rcmd"))
return -EIO;
vpninfo->auth[AUTH_TYPE_GSSAPI].state = AUTH_IN_PROGRESS;
pktbuf = malloc(65538);
if (!pktbuf)
return -ENOMEM;
input_desc.cBuffers = 1;
input_desc.pBuffers = &in_token;
input_desc.ulVersion = SECBUFFER_VERSION;
in_token.BufferType = SECBUFFER_TOKEN;
output_desc.cBuffers = 1;
output_desc.pBuffers = &out_token;
output_desc.ulVersion = SECBUFFER_VERSION;
out_token.BufferType = SECBUFFER_TOKEN;
out_token.cbBuffer = 0;
out_token.pvBuffer = NULL;
while (1) {
status = InitializeSecurityContext(&vpninfo->sspi_cred, first ? NULL : &vpninfo->sspi_ctx,
(SEC_CHAR *)vpninfo->sspi_target_name,
ISC_REQ_ALLOCATE_MEMORY | ISC_REQ_CONFIDENTIALITY | ISC_REQ_REPLAY_DETECT | ISC_REQ_CONNECTION,
0, SECURITY_NETWORK_DREP, first ? NULL : &input_desc, 0, &vpninfo->sspi_ctx,
&output_desc, &ret_flags, NULL);
if (status == SEC_E_OK) {
vpn_progress(vpninfo, PRG_DEBUG,
_("GSSAPI authentication completed\n"));
ret = 0;
break;
}
if (status != SEC_I_CONTINUE_NEEDED) {
vpn_progress(vpninfo, PRG_ERR,
_("InitializeSecurityContext() failed: %lx\n"), status);
break;
}
if (out_token.cbBuffer > 65535) {
vpn_progress(vpninfo, PRG_ERR,
_("SSPI token too large (%ld bytes)\n"),
out_token.cbBuffer);
break;
}
pktbuf[0] = 1; /* ver */
pktbuf[1] = 1; /* mtyp */
pktbuf[2] = (out_token.cbBuffer >> 8) & 0xff;
pktbuf[3] = out_token.cbBuffer & 0xff;
memcpy(pktbuf + 4, out_token.pvBuffer, out_token.cbBuffer);
FreeContextBuffer(out_token.pvBuffer);
vpn_progress(vpninfo, PRG_TRACE,
_("Sending SSPI token of %lu bytes\n"), out_token.cbBuffer + 4);
i = vpninfo->ssl_write(vpninfo, (void *)pktbuf, out_token.cbBuffer + 4);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to send SSPI authentication token to proxy: %s\n"),
strerror(-i));
break;
}
i = vpninfo->ssl_read(vpninfo, (void *)pktbuf, 4);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to receive SSPI authentication token from proxy: %s\n"),
strerror(-i));
break;
}
if (pktbuf[1] == 0xff) {
vpn_progress(vpninfo, PRG_ERR,
_("SOCKS server reported SSPI context failure\n"));
break;
} else if (pktbuf[1] != 1) {
vpn_progress(vpninfo, PRG_ERR,
_("Unknown SSPI status response (0x%02x) from SOCKS server\n"),
pktbuf[1]);
break;
}
in_token.cbBuffer = (pktbuf[2] << 8) | pktbuf[3];
in_token.pvBuffer = pktbuf;
first = 0;
i = vpninfo->ssl_read(vpninfo, (void *)pktbuf, in_token.cbBuffer);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to receive SSPI authentication token from proxy: %s\n"),
strerror(-i));
break;
}
vpn_progress(vpninfo, PRG_TRACE, _("Got SSPI token of %lu bytes: %02x %02x %02x %02x\n"),
in_token.cbBuffer, pktbuf[0], pktbuf[1], pktbuf[2], pktbuf[3]);
}
if (!ret) {
SecPkgContext_Sizes sizes;
SecBufferDesc enc_desc;
SecBuffer enc_bufs[3];
int len;
ret = -EIO;
status = QueryContextAttributes(&vpninfo->sspi_ctx, SECPKG_ATTR_SIZES, &sizes);
if (status != SEC_E_OK) {
vpn_progress(vpninfo, PRG_ERR,
_("QueryContextAttributes() failed: %lx\n"), status);
goto err;
}
enc_desc.cBuffers = 3;
enc_desc.pBuffers = enc_bufs;
enc_desc.ulVersion = SECBUFFER_VERSION;
enc_bufs[0].BufferType = SECBUFFER_TOKEN;
enc_bufs[0].cbBuffer = sizes.cbSecurityTrailer;
enc_bufs[0].pvBuffer = malloc(sizes.cbSecurityTrailer);
if (!enc_bufs[0].pvBuffer) {
ret = -ENOMEM;
goto err;
}
memset(enc_bufs[0].pvBuffer, 0, enc_bufs[0].cbBuffer);
enc_bufs[1].BufferType = SECBUFFER_DATA;
enc_bufs[1].pvBuffer = pktbuf;
enc_bufs[1].cbBuffer = 1;
/* All this just to sign this single byte... */
pktbuf[0] = 0;
enc_bufs[2].BufferType = SECBUFFER_PADDING;
enc_bufs[2].cbBuffer = sizes.cbBlockSize;
enc_bufs[2].pvBuffer = malloc(sizes.cbBlockSize);
if (!enc_bufs[2].pvBuffer) {
free(enc_bufs[0].pvBuffer);
ret = -ENOMEM;
goto err;
}
status = EncryptMessage(&vpninfo->sspi_ctx, SECQOP_WRAP_NO_ENCRYPT, &enc_desc, 0);
if (status != SEC_E_OK) {
vpn_progress(vpninfo, PRG_ERR,
_("EncryptMessage() failed: %lx\n"), status);
free(enc_bufs[0].pvBuffer);
free(enc_bufs[2].pvBuffer);
goto err;
}
len = enc_bufs[0].cbBuffer + enc_bufs[1].cbBuffer + enc_bufs[2].cbBuffer;
/* Check each one to avoid the (utterly theoretical) overflow when calculated
into an 'int' type. */
if (enc_bufs[1].cbBuffer != 1 || enc_bufs[0].cbBuffer > 65535 ||
enc_bufs[2].cbBuffer > 65535 || len > 65535) {
vpn_progress(vpninfo, PRG_ERR,
_("EncryptMessage() result too large (%lu + %lu + %lu)\n"),
enc_bufs[0].cbBuffer, enc_bufs[1].cbBuffer, enc_bufs[2].cbBuffer);
free(enc_bufs[0].pvBuffer);
free(enc_bufs[2].pvBuffer);
goto err;
}
pktbuf[0] = 1;
pktbuf[1] = 2;
pktbuf[2] = (len >> 8) & 0xff;
pktbuf[3] = len & 0xff;
if (enc_bufs[0].cbBuffer)
memcpy(pktbuf + 4, enc_bufs[0].pvBuffer, enc_bufs[0].cbBuffer);
pktbuf[4 + enc_bufs[0].cbBuffer] = 0; /* Our single byte of payload was unencrypted */
if (enc_bufs[2].cbBuffer)
memcpy(pktbuf + 5 + enc_bufs[0].cbBuffer, enc_bufs[2].pvBuffer, enc_bufs[2].cbBuffer);
free(enc_bufs[0].pvBuffer);
free(enc_bufs[2].pvBuffer);
vpn_progress(vpninfo, PRG_TRACE,
_("Sending SSPI protection negotiation of %u bytes\n"), len + 4);
i = vpninfo->ssl_write(vpninfo, (void *)pktbuf, len + 4);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to send SSPI protection response to proxy: %s\n"),
strerror(-i));
goto err;
}
i = vpninfo->ssl_read(vpninfo, (void *)pktbuf, 4);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to receive SSPI protection response from proxy: %s\n"),
strerror(-i));
goto err;
}
len = (pktbuf[2] << 8) | pktbuf[3];
i = vpninfo->ssl_read(vpninfo, (void *)pktbuf, len);
if (i < 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to receive SSPI protection response from proxy: %s\n"),
strerror(-i));
goto err;
}
vpn_progress(vpninfo, PRG_TRACE,
_("Got SSPI protection response of %d bytes: %02x %02x %02x %02x\n"),
len, pktbuf[0], pktbuf[1], pktbuf[2], pktbuf[3]);
enc_desc.cBuffers = 2;
enc_bufs[0].BufferType = SECBUFFER_STREAM;
enc_bufs[0].cbBuffer = len;
enc_bufs[0].pvBuffer = pktbuf;
enc_bufs[1].BufferType = SECBUFFER_DATA;
enc_bufs[1].cbBuffer = 0;
enc_bufs[1].pvBuffer = NULL;
status = DecryptMessage(&vpninfo->sspi_ctx, &enc_desc, 0, NULL);
if (status != SEC_E_OK) {
vpn_progress(vpninfo, PRG_ERR,
_("DecryptMessage failed: %lx\n"), status);
goto err;
}
if (enc_bufs[1].cbBuffer != 1) {
vpn_progress(vpninfo, PRG_ERR,
_("Invalid SSPI protection response from proxy (%lu bytes)\n"),
enc_bufs[1].cbBuffer);
FreeContextBuffer(enc_bufs[1].pvBuffer);
goto err;
}
i = *(char *)enc_bufs[1].pvBuffer;
FreeContextBuffer(enc_bufs[1].pvBuffer);
if (i == 1) {
vpn_progress(vpninfo, PRG_ERR,
_("SOCKS proxy demands message integrity, which is not supported\n"));
goto err;
} else if (i == 2) {
vpn_progress(vpninfo, PRG_ERR,
_("SOCKS proxy demands message confidentiality, which is not supported\n"));
goto err;
} else if (i) {
vpn_progress(vpninfo, PRG_ERR,
_("SOCKS proxy demands protection unknown type 0x%02x\n"),
(unsigned char)i);
goto err;
}
ret = 0;
}
err:
cleanup_gssapi_auth(vpninfo);
free(pktbuf);
return ret;
}
|