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 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
/*
Clear Channel Sametime Proxy Utility
The Meanwhile Project
This is a tool which can act as a proxy between a client and a
sametime server, which will force all channels to be created without
any encryption method. This makes reverse-engineering much, much
easier.
It also outputs the messages sent to and from the client to stdout
as hex pairs. If compiled with USE_HEXDUMP, output will be printed
via `hexdump -C`
All it really does is nab all Channel Create messages, strip the
offered ciphers portion from the message and replace it with an
empty ciphers list.
Christopher O'Brien <siege@preoccupied.net>
*/
#include <netinet/in.h>
#include <netdb.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include <glib.h>
#include <mw_common.h>
#include <mw_message.h>
struct proxy_side {
int sock;
GIOChannel *chan;
gint chan_io;
guchar *buf;
gsize buf_size;
gsize buf_recv;
void (*forward)(const guchar *buf, gsize len);
};
static struct proxy_side client;
static struct proxy_side server;
static void hexdump(const char *txt, const guchar *buf, gsize len) {
FILE *fp;
if(txt) fprintf(stdout, "\n%s\n", txt);
fflush(stdout);
fp = popen("hexdump -C", "w");
fwrite(buf, len, 1, fp);
fflush(fp);
pclose(fp);
}
static void put_msg(struct mwMessage *msg, struct mwOpaque *o) {
struct mwPutBuffer *b;
b = mwPutBuffer_new();
mwMessage_put(b, msg);
mwPutBuffer_finalize(o, b);
b = mwPutBuffer_new();
mwOpaque_put(b, o);
mwOpaque_clear(o);
mwPutBuffer_finalize(o, b);
}
static void side_buf_free(struct proxy_side *s) {
g_free(s->buf);
s->buf = NULL;
s->buf_size = 0;
s->buf_recv = 0;
}
static void munge_redir() {
struct mwMessage *msg;
struct mwOpaque o = { 0, 0 };
msg = mwMessage_new(mwMessage_LOGIN_CONTINUE);
put_msg(msg, &o);
mwMessage_free(msg);
server.forward(o.data, o.len);
mwOpaque_clear(&o);
}
static void munge_create(struct proxy_side *side,
struct mwMsgChannelCreate *msg) {
struct mwOpaque o = { 0, 0 };
GList *l;
for(l = msg->encrypt.items; l; l = l->next) {
mwEncryptItem_clear(l->data);
g_free(l->data);
}
g_list_free(msg->encrypt.items);
msg->encrypt.items = NULL;
msg->encrypt.mode = 0x00;
msg->encrypt.extra = 0x00;
msg->encrypt.flag = FALSE;
put_msg(MW_MESSAGE(msg), &o);
side->forward(o.data, o.len);
mwOpaque_clear(&o);
}
static void side_process(struct proxy_side *s, const guchar *buf, gsize len) {
struct mwOpaque o = { .len = len, .data = (guchar *) buf };
struct mwGetBuffer *b;
guint16 type;
if(! len) return;
b = mwGetBuffer_wrap(&o);
type = guint16_peek(b);
switch(type) {
case mwMessage_LOGIN_REDIRECT:
munge_redir();
break;
case mwMessage_CHANNEL_CREATE:
{
struct mwMessage *msg = mwMessage_get(b);
munge_create(s, (struct mwMsgChannelCreate *) msg);
mwMessage_free(msg);
break;
}
default:
{
struct mwPutBuffer *pb = mwPutBuffer_new();
struct mwOpaque po = { 0, 0 };
mwOpaque_put(pb, &o);
mwPutBuffer_finalize(&po, pb);
s->forward(po.data, po.len);
mwOpaque_clear(&po);
}
}
mwGetBuffer_free(b);
}
#define ADVANCE(b, n, count) { b += count; n -= count; }
/* handle input to complete an existing buffer */
static gsize side_recv_cont(struct proxy_side *s, const guchar *b, gsize n) {
gsize x = s->buf_size - s->buf_recv;
if(n < x) {
memcpy(s->buf+s->buf_recv, b, n);
s->buf_recv += n;
return 0;
} else {
memcpy(s->buf+s->buf_recv, b, x);
ADVANCE(b, n, x);
if(s->buf_size == 4) {
struct mwOpaque o = { .len = 4, .data = s->buf };
struct mwGetBuffer *gb = mwGetBuffer_wrap(&o);
x = guint32_peek(gb);
mwGetBuffer_free(gb);
if(n < x) {
guchar *t;
x += 4;
t = (guchar *) g_malloc(x);
memcpy(t, s->buf, 4);
memcpy(t+4, b, n);
side_buf_free(s);
s->buf = t;
s->buf_size = x;
s->buf_recv = n + 4;
return 0;
} else {
side_buf_free(s);
side_process(s, b, x);
ADVANCE(b, n, x);
}
} else {
side_process(s, s->buf+4, s->buf_size-4);
side_buf_free(s);
}
}
return n;
}
/* handle input when there's nothing previously buffered */
static gsize side_recv_empty(struct proxy_side *s, const guchar *b, gsize n) {
struct mwOpaque o = { .len = n, .data = (guchar *) b };
struct mwGetBuffer *gb;
gsize x;
if(n < 4) {
s->buf = (guchar *) g_malloc0(4);
memcpy(s->buf, b, n);
s->buf_size = 4;
s->buf_recv = n;
return 0;
}
gb = mwGetBuffer_wrap(&o);
x = guint32_peek(gb);
mwGetBuffer_free(gb);
if(! x) return n - 4;
if(n < (x + 4)) {
x += 4;
s->buf = (guchar *) g_malloc(x);
memcpy(s->buf, b, n);
s->buf_size = x;
s->buf_recv = n;
return 0;
} else {
ADVANCE(b, n, 4);
side_process(s, b, x);
ADVANCE(b, n, x);
return n;
}
}
static gsize side_recv(struct proxy_side *s, const guchar *b, gsize n) {
if(n && (s->buf_size == 0) && (*b & 0x80)) {
ADVANCE(b, n, 1);
}
if(n == 0) {
return 0;
} else if(s->buf_size > 0) {
return side_recv_cont(s, b, n);
} else {
return side_recv_empty(s, b, n);
}
}
static void feed_buf(struct proxy_side *side, const guchar *buf, gsize n) {
guchar *b = (guchar *) buf;
gsize remain = 0;
g_return_if_fail(side != NULL);
while(n > 0) {
remain = side_recv(side, b, n);
b += (n - remain);
n = remain;
}
}
static int read_recv(struct proxy_side *side) {
guchar buf[2048];
int len;
len = read(side->sock, buf, 2048);
if(len > 0) feed_buf(side, buf, (gsize) len);
return len;
}
static void done() {
close(client.sock);
close(server.sock);
exit(0);
}
static gboolean read_cb(GIOChannel *chan,
GIOCondition cond,
gpointer data) {
struct proxy_side *side = data;
int ret = 0;
if(cond & G_IO_IN) {
ret = read_recv(side);
if(ret > 0) return TRUE;
}
if(side->sock) {
g_source_remove(side->chan_io);
close(side->sock);
side->sock = 0;
side->chan = NULL;
side->chan_io = 0;
}
done();
return FALSE;
}
static void client_cb(const guchar *buf, gsize len) {
if(server.sock) {
hexdump("client -> server", buf, len);
write(server.sock, buf, len);
}
}
static gboolean listen_cb(GIOChannel *chan,
GIOCondition cond,
gpointer data) {
struct sockaddr_in rem;
guint len = sizeof(rem);
struct proxy_side *side = data;
int sock;
sock = accept(side->sock, (struct sockaddr *) &rem, &len);
g_assert(sock > 0);
g_source_remove(side->chan_io);
side->sock = sock;
side->chan = g_io_channel_unix_new(sock);
side->chan_io = g_io_add_watch(side->chan, G_IO_IN | G_IO_ERR | G_IO_HUP,
read_cb, side);
return FALSE;
}
static void init_client(int port) {
/* start listening on the local port specifier */
struct sockaddr_in sin;
int sock;
sock = socket(PF_INET, SOCK_STREAM, 0);
g_assert(sock >= 0);
memset(&sin, 0, sizeof(struct sockaddr_in));
sin.sin_family = PF_INET;
sin.sin_port = htons(port);
sin.sin_addr.s_addr = htonl(INADDR_ANY);
if(bind(sock, (struct sockaddr *)&sin, sizeof(sin)) < 0)
g_assert_not_reached();
if(listen(sock, 1) < 0)
g_assert_not_reached();
client.forward = client_cb;
client.sock = sock;
client.chan = g_io_channel_unix_new(sock);
client.chan_io = g_io_add_watch(client.chan, G_IO_IN | G_IO_ERR | G_IO_HUP,
listen_cb, &client);
}
static void server_cb(const guchar *buf, gsize len) {
if(client.sock) {
hexdump("server -> client", buf, len);
write(client.sock, buf, len);
}
}
/* address lookup used by init_sock */
static void init_sockaddr(struct sockaddr_in *addr,
const char *host, int port) {
struct hostent *hostinfo;
addr->sin_family = AF_INET;
addr->sin_port = htons (port);
hostinfo = gethostbyname(host);
if(hostinfo == NULL) {
fprintf(stderr, "Unknown host %s.\n", host);
exit(1);
}
addr->sin_addr = *(struct in_addr *) hostinfo->h_addr;
}
static void init_server(const char *host, int port) {
/* connect to server on host/port */
struct sockaddr_in srvrname;
int sock;
sock = socket(PF_INET, SOCK_STREAM, 0);
if(sock < 0) {
fprintf(stderr, "socket failure");
exit(1);
}
init_sockaddr(&srvrname, host, port);
connect(sock, (struct sockaddr *)&srvrname, sizeof(srvrname));
server.forward = server_cb;
server.sock = sock;
server.chan = g_io_channel_unix_new(sock);
server.chan_io = g_io_add_watch(server.chan, G_IO_IN | G_IO_ERR | G_IO_HUP,
read_cb, &server);
}
int main(int argc, char *argv[]) {
char *host = NULL;
int client_port = 0, server_port = 0;
memset(&client, 0, sizeof(struct proxy_side));
memset(&server, 0, sizeof(struct proxy_side));
if(argc > 1) {
char *z;
host = argv[1];
z = host;
host = strchr(z, ':');
if(host) *host++ = '\0';
client_port = atoi(z);
z = strchr(host, ':');
if(z) *z++ = '\0';
server_port = atoi(z);
}
if(!host || !*host || !client_port || !server_port) {
fprintf(stderr,
( " Usage: %s local_port:remote_host:remote_port\n"
" Creates a locally-running sametime proxy which enforces"
" unencrypted channels\n" ),
argv[0]);
exit(1);
}
/* @todo create signal handlers to cleanup sockets */
init_client(client_port);
init_server(host, server_port);
g_main_loop_run(g_main_loop_new(NULL, FALSE));
return 0;
}
|