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 399
|
/*
* OpenVPN -- An application to securely tunnel IP networks
* over a single TCP/UDP port, with support for SSL/TLS-based
* session authentication and key exchange,
* packet encryption, packet authentication, and
* packet compression.
*
* Copyright (C) 2002-2005 OpenVPN Solutions LLC <info@openvpn.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (see the file COPYING included with this
* distribution); if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef WIN32
#include "config-win32.h"
#else
#include "config.h"
#endif
#include "syshead.h"
#ifdef ENABLE_OCC
#include "occ.h"
#include "memdbg.h"
#include "forward-inline.h"
#include "occ-inline.h"
/*
* This random string identifies an OpenVPN
* Configuration Control packet.
* It should be of sufficient length and randomness
* so as not to collide with other tunnel data.
*
* The OCC protocol is as follows:
*
* occ_magic -- (16 octets)
*
* type [OCC_REQUEST | OCC_REPLY] (1 octet)
* null terminated options string if OCC_REPLY (variable)
*
* When encryption is used, the OCC packet
* is encapsulated within the encrypted
* envelope.
*
* OCC_STRING_SIZE must be set to sizeof (occ_magic)
*/
const uint8_t occ_magic[] = {
0x28, 0x7f, 0x34, 0x6b, 0xd4, 0xef, 0x7a, 0x81,
0x2d, 0x56, 0xb8, 0xd3, 0xaf, 0xc5, 0x45, 0x9c
};
static const struct mtu_load_test mtu_load_test_sequence[] = {
{OCC_MTU_LOAD_REQUEST, -1000},
{OCC_MTU_LOAD, -1000},
{OCC_MTU_LOAD_REQUEST, -1000},
{OCC_MTU_LOAD, -1000},
{OCC_MTU_LOAD_REQUEST, -1000},
{OCC_MTU_LOAD, -1000},
{OCC_MTU_LOAD_REQUEST, -750},
{OCC_MTU_LOAD, -750},
{OCC_MTU_LOAD_REQUEST, -750},
{OCC_MTU_LOAD, -750},
{OCC_MTU_LOAD_REQUEST, -750},
{OCC_MTU_LOAD, -750},
{OCC_MTU_LOAD_REQUEST, -500},
{OCC_MTU_LOAD, -500},
{OCC_MTU_LOAD_REQUEST, -500},
{OCC_MTU_LOAD, -500},
{OCC_MTU_LOAD_REQUEST, -500},
{OCC_MTU_LOAD, -500},
{OCC_MTU_LOAD_REQUEST, -400},
{OCC_MTU_LOAD, -400},
{OCC_MTU_LOAD_REQUEST, -400},
{OCC_MTU_LOAD, -400},
{OCC_MTU_LOAD_REQUEST, -400},
{OCC_MTU_LOAD, -400},
{OCC_MTU_LOAD_REQUEST, -300},
{OCC_MTU_LOAD, -300},
{OCC_MTU_LOAD_REQUEST, -300},
{OCC_MTU_LOAD, -300},
{OCC_MTU_LOAD_REQUEST, -300},
{OCC_MTU_LOAD, -300},
{OCC_MTU_LOAD_REQUEST, -200},
{OCC_MTU_LOAD, -200},
{OCC_MTU_LOAD_REQUEST, -200},
{OCC_MTU_LOAD, -200},
{OCC_MTU_LOAD_REQUEST, -200},
{OCC_MTU_LOAD, -200},
{OCC_MTU_LOAD_REQUEST, -150},
{OCC_MTU_LOAD, -150},
{OCC_MTU_LOAD_REQUEST, -150},
{OCC_MTU_LOAD, -150},
{OCC_MTU_LOAD_REQUEST, -150},
{OCC_MTU_LOAD, -150},
{OCC_MTU_LOAD_REQUEST, -100},
{OCC_MTU_LOAD, -100},
{OCC_MTU_LOAD_REQUEST, -100},
{OCC_MTU_LOAD, -100},
{OCC_MTU_LOAD_REQUEST, -100},
{OCC_MTU_LOAD, -100},
{OCC_MTU_LOAD_REQUEST, -50},
{OCC_MTU_LOAD, -50},
{OCC_MTU_LOAD_REQUEST, -50},
{OCC_MTU_LOAD, -50},
{OCC_MTU_LOAD_REQUEST, -50},
{OCC_MTU_LOAD, -50},
{OCC_MTU_LOAD_REQUEST, 0},
{OCC_MTU_LOAD, 0},
{OCC_MTU_LOAD_REQUEST, 0},
{OCC_MTU_LOAD, 0},
{OCC_MTU_LOAD_REQUEST, 0},
{OCC_MTU_LOAD, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{OCC_MTU_REQUEST, 0},
{-1, 0}
};
void
check_send_occ_req_dowork (struct context *c)
{
if (++c->c2.occ_n_tries >= OCC_N_TRIES)
{
if (c->options.remote_list)
/*
* No OCC_REPLY from peer after repeated attempts.
* Give up.
*/
msg (D_SHOW_OCC,
"NOTE: failed to obtain options consistency info from peer -- "
"this could occur if the remote peer is running a version of "
PACKAGE_NAME
" before 1.5-beta8 or if there is a network connectivity problem, and will not necessarily prevent "
PACKAGE_NAME
" from running (" counter_format " bytes received from peer, " counter_format
" bytes authenticated data channel traffic) -- you can disable the options consistency "
"check with --disable-occ.",
c->c2.link_read_bytes,
c->c2.link_read_bytes_auth);
event_timeout_clear (&c->c2.occ_interval);
}
else
{
c->c2.occ_op = OCC_REQUEST;
/*
* If we don't hear back from peer, send another
* OCC_REQUEST in OCC_INTERVAL_SECONDS.
*/
event_timeout_reset (&c->c2.occ_interval);
}
}
void
check_send_occ_load_test_dowork (struct context *c)
{
if (CONNECTION_ESTABLISHED (c))
{
const struct mtu_load_test *entry;
if (!c->c2.occ_mtu_load_n_tries)
msg (M_INFO,
"NOTE: Beginning empirical MTU test -- results should be available in 3 to 4 minutes.");
entry = &mtu_load_test_sequence[c->c2.occ_mtu_load_n_tries++];
if (entry->op >= 0)
{
c->c2.occ_op = entry->op;
c->c2.occ_mtu_load_size =
EXPANDED_SIZE (&c->c2.frame) + entry->delta;
}
else
{
msg (M_INFO,
"NOTE: failed to empirically measure MTU (requires " PACKAGE_NAME " 1.5 or higher at other end of connection).");
event_timeout_clear (&c->c2.occ_mtu_load_test_interval);
c->c2.occ_mtu_load_n_tries = 0;
}
}
}
void
check_send_occ_msg_dowork (struct context *c)
{
bool doit = false;
c->c2.buf = c->c2.buffers->aux_buf;
ASSERT (buf_init (&c->c2.buf, FRAME_HEADROOM (&c->c2.frame)));
ASSERT (buf_safe (&c->c2.buf, MAX_RW_SIZE_TUN (&c->c2.frame)));
ASSERT (buf_write (&c->c2.buf, occ_magic, OCC_STRING_SIZE));
switch (c->c2.occ_op)
{
case OCC_REQUEST:
if (!buf_write_u8 (&c->c2.buf, OCC_REQUEST))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_REQUEST");
doit = true;
break;
case OCC_REPLY:
if (!c->c2.options_string_local)
break;
if (!buf_write_u8 (&c->c2.buf, OCC_REPLY))
break;
if (!buf_write (&c->c2.buf, c->c2.options_string_local,
strlen (c->c2.options_string_local) + 1))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_REPLY");
doit = true;
break;
case OCC_MTU_REQUEST:
if (!buf_write_u8 (&c->c2.buf, OCC_MTU_REQUEST))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_MTU_REQUEST");
doit = true;
break;
case OCC_MTU_REPLY:
if (!buf_write_u8 (&c->c2.buf, OCC_MTU_REPLY))
break;
if (!buf_write_u16 (&c->c2.buf, c->c2.max_recv_size_local))
break;
if (!buf_write_u16 (&c->c2.buf, c->c2.max_send_size_local))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_MTU_REPLY");
doit = true;
break;
case OCC_MTU_LOAD_REQUEST:
if (!buf_write_u8 (&c->c2.buf, OCC_MTU_LOAD_REQUEST))
break;
if (!buf_write_u16 (&c->c2.buf, c->c2.occ_mtu_load_size))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_MTU_LOAD_REQUEST");
doit = true;
break;
case OCC_MTU_LOAD:
{
int need_to_add;
if (!buf_write_u8 (&c->c2.buf, OCC_MTU_LOAD))
break;
need_to_add = min_int (c->c2.occ_mtu_load_size, EXPANDED_SIZE (&c->c2.frame))
- OCC_STRING_SIZE
- sizeof (uint8_t)
- EXTRA_FRAME (&c->c2.frame);
while (need_to_add > 0)
{
/*
* Fill the load test packet with pseudo-random bytes.
*/
if (!buf_write_u8 (&c->c2.buf, get_random () & 0xFF))
break;
--need_to_add;
}
dmsg (D_PACKET_CONTENT, "SENT OCC_MTU_LOAD min_int(%d-%d-%d-%d,%d) size=%d",
c->c2.occ_mtu_load_size,
OCC_STRING_SIZE,
(int) sizeof (uint8_t),
EXTRA_FRAME (&c->c2.frame),
MAX_RW_SIZE_TUN (&c->c2.frame),
BLEN (&c->c2.buf));
doit = true;
}
break;
case OCC_EXIT:
if (!buf_write_u8 (&c->c2.buf, OCC_EXIT))
break;
dmsg (D_PACKET_CONTENT, "SENT OCC_EXIT");
doit = true;
break;
}
if (doit)
{
/*
* We will treat the packet like any other outgoing packet,
* compress, encrypt, sign, etc.
*/
encrypt_sign (c, true);
}
c->c2.occ_op = -1;
}
void
process_received_occ_msg (struct context *c)
{
ASSERT (buf_advance (&c->c2.buf, OCC_STRING_SIZE));
switch (buf_read_u8 (&c->c2.buf))
{
case OCC_REQUEST:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_REQUEST");
c->c2.occ_op = OCC_REPLY;
break;
case OCC_MTU_REQUEST:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_MTU_REQUEST");
c->c2.occ_op = OCC_MTU_REPLY;
break;
case OCC_MTU_LOAD_REQUEST:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_MTU_LOAD_REQUEST");
c->c2.occ_mtu_load_size = buf_read_u16 (&c->c2.buf);
if (c->c2.occ_mtu_load_size >= 0)
c->c2.occ_op = OCC_MTU_LOAD;
break;
case OCC_REPLY:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_REPLY");
if (c->options.occ && !TLS_MODE (c) && c->c2.options_string_remote)
{
if (!options_cmp_equal_safe ((char *) BPTR (&c->c2.buf),
c->c2.options_string_remote,
c->c2.buf.len))
{
options_warning_safe ((char *) BPTR (&c->c2.buf),
c->c2.options_string_remote,
c->c2.buf.len);
}
}
event_timeout_clear (&c->c2.occ_interval);
break;
case OCC_MTU_REPLY:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_MTU_REPLY");
c->c2.max_recv_size_remote = buf_read_u16 (&c->c2.buf);
c->c2.max_send_size_remote = buf_read_u16 (&c->c2.buf);
if (c->options.mtu_test
&& c->c2.max_recv_size_remote > 0
&& c->c2.max_send_size_remote > 0)
{
msg (M_INFO, "NOTE: Empirical MTU test completed [Tried,Actual] local->remote=[%d,%d] remote->local=[%d,%d]",
c->c2.max_send_size_local,
c->c2.max_recv_size_remote,
c->c2.max_send_size_remote,
c->c2.max_recv_size_local);
if (!c->options.fragment
&& c->options.proto == PROTO_UDPv4
&& c->c2.max_send_size_local > TUN_MTU_MIN
&& (c->c2.max_recv_size_remote < c->c2.max_send_size_local
|| c->c2.max_recv_size_local < c->c2.max_send_size_remote))
msg (M_INFO, "NOTE: This connection is unable to accomodate a UDP packet size of %d. Consider using --fragment or --mssfix options as a workaround.",
c->c2.max_send_size_local);
}
event_timeout_clear (&c->c2.occ_mtu_load_test_interval);
break;
case OCC_EXIT:
dmsg (D_PACKET_CONTENT, "RECEIVED OCC_EXIT");
c->sig->signal_received = SIGTERM;
c->sig->signal_text = "remote-exit";
break;
}
c->c2.buf.len = 0; /* don't pass packet on */
}
#else
static void dummy(void) {}
#endif
|