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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
|
/*
* EXAMPLE: 'Netcat' tool to forward TCP traffic via Global Sockets
*
*
* Exampel 1: Simple TCP forwarding
**********************************
* Server (behind NAT):
* $ ./gs-netcat -l 192.168.6.7 22
*
* Client (behind NAT):
* $ ./gs-netcat -p 2222
*
* Any TCP connection to port 2222 on the Client is forwarded to
* 192.168.6.7 on port 22 (via Global Socket). This allows
* a User (Server) to tunnel somebody into the internal network
* when both parties are behind NAT and without a server on the
* internet.
*
* Example 1: Simple Bash Shell
* ****************************
* Server:
* $ ./gs-netcat -l -e /bin/sh
* Client:
* $ ./gs-netcat
*
* Effectivly this is a 'reverse shell': The client can connect
* to a shell on the server from any location and when both systems
* (Server and Client) are behind NAT.
*
*
* FEATURES:
* MULTI-CONNECT
* An example program to show the use of GS_SELECT with multiple
* sockets and connections.
*/
#include "common.h"
#include "utils.h"
#include "socks.h"
#include "console.h"
#include "event_mgr.h"
#include "pkt_mgr.h"
#include "ids.h"
#include "gs-netcat.h"
#include "filetransfer_mgr.h"
#ifndef STEALTH
# include "man_gs-netcat.h"
#else
const char *man_str = "";
#endif
#include "gsocket_dso-lib.h"
/* All connected gs-peers indexed by gs->fd */
static struct _peer *peers[FD_SETSIZE];
/* static functions declaration */
static int peer_forward_connect(struct _peer *p, uint32_t ip, uint16_t port);
static void vlog_hostname(struct _peer *p, const char *desc, uint16_t port);
#ifdef DEBUG
#define GS_PEER_IDLE_TIMEOUT GS_SEC_TO_USEC(20)
#else
#define GS_PEER_IDLE_TIMEOUT GS_SEC_TO_USEC(60 + 5)
#endif
// Shut any connection after 2 seconds if an EOF was received (shutdown())
#define GS_PEER_IDLE_TIMEOUT_EOF_UDP GS_SEC_TO_USEC(2)
#define GS_PEER_IDLE_TIMEOUT_EOF_TCP GS_SEC_TO_USEC(2)
/*
* Make statistics and return them in 'dst'
*/
static void
peer_mk_stats(char *dst, size_t len, struct _peer *p)
{
GS *gs = p->gs;
struct timeval *tv_now = gs->ctx->tv_now;
gettimeofday(tv_now, NULL);
uint64_t diff = GS_TV_DIFF(&gs->tv_connected, tv_now);
int64_t msec = diff / 1000;
msec = MAX(msec, 1); /* dont device by zero */
char dbuf[64];
GS_usecstr(dbuf, sizeof dbuf, diff);
char rbuf[64];
char wbuf[64];
GS_bytesstr_long(rbuf, sizeof rbuf, gs->bytes_read);
GS_bytesstr_long(wbuf, sizeof wbuf, gs->bytes_written);
char rbufps[64];
char wbufps[64];
int bps = ((gs->bytes_read * 1000) / msec);
GS_bytesstr(rbufps, sizeof rbufps, bps==0?0:bps);
bps = ((gs->bytes_written * 1000) / msec);
GS_bytesstr(wbufps, sizeof wbufps, bps==0?0:bps);
snprintf(dst, len,
"Disconnected after %s\n"
" Up: "D_MAG("%12s")" [%s/s], Down: "D_MAG("%12s")" [%s/s]\n", dbuf, wbuf, wbufps, rbuf, rbufps);
}
/*
* Close gs-peer and free memory. Close peer->fd unless it's
* stdin/stdout (in which case we keep it open for the next
* connecting gs-peer).
*/
static void
peer_free(GS_SELECT_CTX *ctx, struct _peer *p)
{
GS *gs = p->gs;
int is_stdin_forward = p->is_stdin_forward;
int fd;
DEBUGF_W("PEER FREE\n");
/* Reset console/stty before outputting stats */
if (is_stdin_forward)
{
CONSOLE_reset();
stty_reset();
}
/* A connecting fd (gs->net.sox[0].fd or a connected fd (gs->fd) */
fd = GS_get_fd(gs);
DEBUGF_R("GS_get_fd() == %d\n", GS_get_fd(gs));
XASSERT(peers[fd] == p, "Oops, %p != %p on fd = %d, cmd_fd = %d\n", peers[fd], p, fd, p->fd_in);
ids_gs_logout(p); // Signal all other interactive _clients_ that we are leaving (IDS notification)
GS_EVENT_del(&gopt.event_ping);
GS_EVENT_del(&gopt.event_bps);
GS_EVENT_del(&p->event_peer_timeout);
GS_PKT_close(&p->pkt);
// Free Filetransfer subsystem (-i)
GS_FTM_free(p);
// Free UDP buffer (udp un-stack)
GS_BUF_free(&p->udp_buf);
// Free all pending log files and their data
GS_LIST_del_all(&p->logs, 1);
GS_LIST_del(p->ids_li); // Server only. Remvoe this client from IDS
DEBUGF("IDS Peers remaining: %d\n", gopt.ids_peers.n_items);
p->ids_li = NULL;
/* Exit() if we were reading from stdin/stdout. No other clients
* in this case.
*/
GS_SELECT_del_cb(ctx, p->fd_in);
if (is_stdin_forward)
{
// We could hard exit here but we like to see all the
// stats that GS_close() gives us...
//exit(0); // this will close all fd's :>
} else {
/*. Not stdin/stdout. */
GS_SELECT_FD_CLR_W(ctx, p->fd_in);
GS_SELECT_FD_CLR_R(ctx, p->fd_in);
XCLOSE(p->fd_in);
}
/* Output stats gs was connected */
if (gs->tv_connected.tv_sec != 0)
{
char buf[512];
peer_mk_stats(buf, sizeof buf, p);
GS_LOG_TSP(p, "%s", buf);
if ((p->is_network_forward) && (p->socks.dst_port != 0))
vlog_hostname(p, "Remote: ", p->socks.dst_port);
}
GS_SELECT_del_cb(ctx, fd);
DEBUGF_Y("free'ing peer on fd = %d, size %zd\n", fd, sizeof *p);
memset(p, 0, sizeof *p);
XFREE(peers[fd]);
// FIXME: Eventually GS_shutdown() needs to return ECALLAGAIN and then do 2 things:
// 1. Monitor socket for reading. Timeout after 10 seconds (peer died).
// 2. Poll on TIOCOUTQ and once empty call close().
// https://blog.netherlabs.nl/articles/2009/01/18/the-ultimate-so_linger-page-or-why-is-my-tcp-not-reliable
if (is_stdin_forward)
{
fd_kernel_flush(gs->fd);
}
GS_close(gs); // sets gs->fd to -1
gopt.peer_count = MAX(gopt.peer_count - 1, 0);
DEBUGF_M("Freed gs-peer. Still connected: %d\n", gopt.peer_count);
#ifdef DEBUG
int c = 0;
int i;
for (i = 0; i < FD_SETSIZE; i++)
{
if (peers[i] != NULL)
c++;
}
XASSERT(c == gopt.peer_count, "Oops, found %d peers but should be peer_count = %d\n", c, gopt.peer_count);
#endif
/* STDIN/STDOUT reading supports one gs connection only */
if (is_stdin_forward)
{
DEBUGF("exiting...\n");
exit(0);
}
}
static void
cb_atexit(void)
{
CONSOLE_reset();
stty_reset();
if (gopt.is_try_server == 1)
printf("%s %s NET-ERROR\n", gopt.sec_str, GS_addr2hex(NULL, gopt.gs_addr.addr));
if ((gopt.is_interactive) && (!gopt.is_quiet))
fprintf(stderr, "\n[Bye]\n"); // stdout must be clean for pipe & gs-netcat
}
// Timer event for
// 1. UDP to close peer when no data is transmitted for long time.
// 2. Keep GSNC alive
// This is called every second and checks if the idle timer
// is larger than GS_PEER_IDLE_TIMEOUT (5*60 sec).
// FIXME-Performance: Could have 1 event in gopt. and loop through all connected peers
// rather than a event for each peer (which is more expensive)
int
cbe_peer_timeout(void *ptr)
{
// DEBUGF_C("Checking timeout\n");
GS_EVENT *event = (GS_EVENT *)ptr;
struct _peer *p = (struct _peer *)event->data;
if (p == NULL)
{
DEBUGF_R("WARN, peer==NULL\n");
return -1;
}
// Check if there was an idle timeout...
if (gopt.is_interactive)
{
// SERVER: app_keepalive_sec is +5 seconds larger than clients. This
// puts client in charge to keep connection alive before server
// checks. Server's ping are not answered by client (which is ok)
if (p->gs->ts_net_io + GS_SEC_TO_USEC(gopt.app_keepalive_sec) < GS_TV_TO_USEC(&gopt.tv_now))
{
DEBUGF_M("[%d] Sending PING\n", p->id);
cmd_ping(p);
}
}
// Timeout for gs-netcat <-> UDP/TCP-forward or stdin (/bin/bash).
uint64_t expire = p->ts_peer_io + GS_PEER_IDLE_TIMEOUT;
if (gopt.is_udp)
{
if (p->is_received_gs_eof)
expire = p->ts_peer_io + GS_PEER_IDLE_TIMEOUT_EOF_UDP;
} else {
if (!p->is_received_gs_eof)
return 0; // TCP and no EOF received yet.
expire = p->ts_peer_io + GS_PEER_IDLE_TIMEOUT_EOF_TCP;
}
// DEBUGF_C("PEER TIMEOUT check %ld\n", GS_PEER_IDLE_TIMEOUT);
// Return if data was transmitted recently
if (expire >= GS_TV_TO_USEC(&gopt.tv_now))
return 0; // not yet expired.
GS_LOG_TSP(p, "Idle Timeout.\n");
peer_free(p->gs->ctx->gselect_ctx, p);
return -2; // Event manager done & already freed.
}
/* *********************** FD READ / WRITE ******************************/
/*
* read() but with detecting CTRL+E (console command)
*/
static ssize_t
read_esc(int fd, uint8_t *buf, size_t len, uint8_t *key)
{
size_t n = 0;
ssize_t sz;
uint8_t c;
int ret;
/* FIXME-PERFORMANCE: Implement buffered read for performance
* when in interactive mode [but then how fast can you type?]
*/
/* FIXME-PERFORMANCE: Cant leave stdin as non-blocking. 'top' wont
* work any more. xterm sends data to stdin (?) and expects
* blocking stdout (my stdin)?
* FIXME-PERFORMANCE: Block-read while console is not being
* displayed (?)
*/
fcntl(fd, F_SETFL, O_NONBLOCK | fcntl(fd, F_GETFL, 0));
while (n < len)
{
sz = read(fd, &c, 1);
// DEBUGF_M("read() = %zd (0x%02x\n", sz, c);
if (sz <= 0)
{
/* EOF or ERROR */
if (errno == EWOULDBLOCK)
break;
if (n == 0)
n = -1; // treat EOF as ERROR
break;
}
/* Check if this is an ESCAPE and stop reading */
ret = CONSOLE_check_esc(c, &c);
// DEBUGF_G("con = %d\n", ret);
if (ret > 0)
{
// HERE: Was an escaped character. 'ret' contains the escaped character
// e.g. when reading ^E+c then ret==c
*key = ret;
break;
}
if (ret >= 0)
continue;
buf[n] = c;
n++;
}
fcntl(fd, F_SETFL, ~O_NONBLOCK & fcntl(fd, F_GETFL, 0));
return n;
}
//
static ssize_t
authcookie_add(uint8_t *buf, size_t len)
{
static char ac_buf[GS_AUTHCOOKIE_LEN];
static size_t ac_len;
size_t copied = MIN(sizeof ac_buf - ac_len, len);
memcpy(ac_buf + ac_len, buf, copied);
ac_len += copied;
if (ac_len >= sizeof ac_buf)
{
gopt.is_want_authcookie = 0;
uint8_t cookie[GS_AUTHCOOKIE_LEN];
authcookie_gen(cookie, gopt.sec_str, 0);
if (memcmp(cookie, ac_buf, sizeof cookie) != 0)
{
DEBUGF_R("AUTH-COOKIE MISMATCH\n");
HEXDUMP(ac_buf, sizeof ac_buf);
HEXDUMP(cookie, sizeof cookie);
return -1; // ERROR
}
DEBUGF_Y("auth-cookie matches\n");
}
return copied;
}
// gs-netcat (internal mode) check stdin to notice when parent process
// has died (and then exits hard).
static int
cb_read_stdin(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
DEBUGF_R("STDIN closed. HARD EXIT fd=%d\n", fd);
#ifdef DEBUG
int rv;
char c;
errno = 0;
rv = read(fd, &c, sizeof c);
DEBUGF_R("%d %s\n", rv, strerror(errno));
#endif
exit(EX_FATAL); // hard exit.
}
static int
cb_read_fd(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
struct _peer *p = (struct _peer *)arg;
GS *gs = p->gs;
int ret;
uint8_t key = 0;
XASSERT(p->wlen <= 0, "Already data in gs-write buffer (%zd)\n", p->wlen);
errno = 0;
if ((gopt.is_interactive) && (!(gopt.flags & GSC_FL_IS_SERVER)))
{
p->wlen = read_esc(fd, p->wbuf, p->w_max, &key);
if ((key == 0) && (p->wlen == 0))
return GS_SUCCESS; // EWOULDBLOCK
} else {
if (gopt.is_udp)
{
// UDP packaging over TCP = [ 16 bit length | payload ]
p->wlen = read(fd, p->wbuf + 2, p->w_max - 2);
if (p->wlen > 0)
{
uint16_t len = htons(p->wlen);
memcpy(p->wbuf, &len, 2);
p->wlen += 2;
}
} else {
p->wlen = read(fd, p->wbuf, p->w_max);
}
if (p->wlen == 0)
{
DEBUGF_R("read(%d)==EOF\n", fd);
p->wlen = -1; // treat EOF as -1 (error)
}
}
// HEXDUMPF(p->wbuf, p->wlen, "read(%zd): ", p->wlen);
// DEBUGF_M("Read %zd from fd_cmd = %d (errno %d)\n", p->wlen, fd, errno);
if (p->wlen < 0)
{
DEBUGF_R("FD=%d error: %s\n", fd, strerror(errno));
if (p->is_stdin_forward)
{
/* Gracefully half-duplex. We can not read from fd but
* peer might still have data to send (which we can write).
*/
FD_CLR(fd, ctx->rfd); // Stop reading from fd
if (gopt.is_stdin_ignore_eof)
return GS_SUCCESS; // Ignore EOF on STDIN
ret = GS_shutdown(gs);
/* Destroy peer if shutdown failed or we already received a EOF from peer */
if (ret != GS_ERR_FATAL)
return GS_SUCCESS;
}
DEBUGF("%s(%d) %s\n", __func__, fd, strerror(errno));
peer_free(ctx, p);
return GS_SUCCESS; /* SUCCESS. fd had no errors [ssl may have had] */
}
p->ts_peer_io = GS_TV_TO_USEC(&gopt.tv_now);
// Check if this was internal data for gs-netcat -I
if ((gopt.is_internal) && (gopt.is_want_authcookie != 0))
{
ssize_t sz;
sz = authcookie_add(p->wbuf, p->wlen);
if (sz < 0)
{
DEBUGF_R("BAD AUTH COOKIE\n");
GS_LOG_TSP(p, "Bad Auth Cookie.\n");
peer_free(ctx, p);
return GS_SUCCESS;
}
memmove(p->wbuf, p->wbuf + sz, p->wlen - sz);
p->wlen -= sz;
DEBUGF_G("%zd bytes left after auth cookie...\n", p->wlen);
}
// First offer data to console
int was_data_for_console = 0;
if ((gopt.is_interactive) && (!(gopt.flags & GSC_FL_IS_SERVER)))
{
// CLIENT
was_data_for_console = CONSOLE_readline(p, p->wbuf, p->wlen);
if (was_data_for_console)
p->wlen = 0;
}
if (!(was_data_for_console))
{
if (gopt.is_interactive)
{
size_t dsz;
GS_PKT_encode(&p->pkt, p->wbuf, p->wlen, p->pbuf, &dsz);
if (p->wlen != dsz)
{
/* HERE: ESC found. Encoded. */
memcpy(p->wbuf, p->pbuf, dsz);
p->wlen = dsz;
}
}
if (p->wlen > 0)
write_gs(ctx, p, NULL);
}
/*
* Take action if a console key has been received
*/
if (key > 0)
CONSOLE_action(p, key);
return GS_SUCCESS;
}
// Convert STREAM to DRGRAM. [ 16 bit lenght | payload ]
// Return NULL if not enough data
// Keep calling this function until NULL is returned.
static uint8_t *
udp_unstack(struct _peer *p, uint8_t *src, size_t slen, ssize_t *dlen)
{
GS_BUF *u = &p->udp_buf;
// FIXME-PERFORMANCE: can work immediately on src if enough data
// has been received without adding to udp_buf.
GS_BUF_add_data(u, src, slen);
if (GS_BUF_USED(u) < 2)
return NULL; // not enough data yet
uint16_t len;
memcpy(&len, GS_BUF_DATA(u), 2);
len = ntohs(len);
DEBUGF_C("UDP-length=%u\n", len);
if (GS_BUF_USED(u) < 2 + len)
return NULL; // not enough data yet.
*dlen = len;
return (uint8_t *)GS_BUF_RSRC(u) + 2;
}
static int
write_fd(GS_SELECT_CTX *ctx, struct _peer *p)
{
ssize_t len = 0;
if ((gopt.is_interactive) && (!(gopt.flags & GSC_FL_IS_SERVER)))
len = CONSOLE_write(p->fd_out, p->rbuf, p->rlen);
else if (gopt.is_udp) {
// UDP un-stacker: [ 16 bit len | payload ] => [ paypload ]
// Add content of rbuf to our stack.
ssize_t dlen;
uint8_t *ptr;
uint8_t *src = p->rbuf;
uint8_t *end = p->rbuf + p->rlen;
while (1)
{
ptr = udp_unstack(p, src, end - src, &dlen);
if (ptr == NULL)
break;
src = end;
len = write(p->fd_out, ptr, dlen);
if (len != dlen)
break;
// write() was a success. Consume data from Buffer.
GS_BUF_del(&p->udp_buf, dlen + 2 /*length*/);
}
// Check if there is data still in our stack.
} else {
len = write(p->fd_out, p->rbuf, p->rlen);
}
// DEBUGF_G("write(fd = %d, len = %zd) == %zd, errno = %d (%s)\n", p->fd_out, p->rlen, len, errno, errno==0?"":strerror(errno));
if (len < 0)
{
if (errno == EAGAIN)
{
/* Marked saved state and current state to STOP READING.
* Even when in WANT_WRITE we must not start reading after
* the WANT_WRITE has been satisfied (until this write() has
* completed.
*/
GS_SELECT_FD_CLR_R(ctx, p->gs->fd);
XFD_SET(p->fd_out, ctx->wfd); // Mark cmd_fd for writing
return GS_ECALLAGAIN; //GS_SUCCESS; /* Successfully handled */
}
DEBUGF("%s\n", __func__);
peer_free(ctx, p);
return GS_SUCCESS; /* Succesfully removed peer */
}
FD_CLR(p->fd_out, ctx->wfd); // write success.
/* Start reading from GS if we are not in a saved state.
* Otherwise mark for reading in saved state (and let WANT_WRITE finish)
*/
GS_SELECT_FD_SET_R(ctx, p->gs->fd);
p->ts_peer_io = GS_TV_TO_USEC(&gopt.tv_now);
p->rlen = 0;
return GS_SUCCESS;
}
static int
cb_write_fd(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
return write_fd(ctx, (struct _peer *)arg);
}
/* *********************** NETWORK READ / WRITE *************************/
/*
* Check & Handle GS_read() errors
*/
static void
cb_read_gs_error(GS_SELECT_CTX *ctx, struct _peer *p, ssize_t len)
{
if (len == GS_ERR_EOF)
{
/* The same for STDOUT, tcp-fordward or cmd-forward [/bin/sh] */
DEBUGF_M("CMD shutdown(p->fd=%d)\n", p->fd_out);
p->is_received_gs_eof = 1;
if (gopt.is_receive_only)
peer_free(ctx, p);
else if ((gopt.is_interactive) && (!GS_is_server(p->gs))) {
// clients immediately exits if EOF from remote (-iC shell typing 'exit').
peer_free(ctx, p);
}
if (!p->is_app_forward)
shutdown(p->fd_out, SHUT_WR);
// For app (bash) do not close stdin yet. Might still have data. Idle timeout will catch this.
} else if (len < 0) { /* any ERROR (but EOF) */
DEBUGF_R("Fatal error=%zd in GS_read() (stdin-forward == %d)\n", len, p->is_stdin_forward);
GS_shutdown(p->gs);
// DEBUGF_R("GS_shutdown() = %d\n", ret);
/* Finish peer on FATAL (2nd EOF) or if half-duplex (never send data) */
peer_free(ctx, p); // Will exit() if reading from stdin.
}
}
static int
cb_read_gs(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
struct _peer *p = (struct _peer *)arg;
GS *gs = p->gs;
ssize_t len;
int ret;
if (p->rlen > 0)
DEBUGF_C("fd=%d Pending data in nc-read input buffer (len=%zd)\n", fd, p->rlen);
XASSERT(p->rlen < p->r_max, "rlen=%zd larger than buffer\n", p->rlen);
len = GS_read(gs, p->rbuf + p->rlen, p->r_max - p->rlen);
// DEBUGF_G("GS_read(fd = %d) == %zd\n", gs->fd, len);
if (len == 0)
return GS_ECALLAGAIN;
if (len < 0)
{
cb_read_gs_error(ctx, p, len);
return GS_SUCCESS; // Successfully removed peer
}
p->rlen += len;
// HEXDUMP(p->rbuf, p->rlen);
if ((gopt.is_socks_server && (p->socks.state != GSNC_STATE_CONNECTED)))
{
/* HERE: SOCKS has not finished yet. Keep stuffing data in */
ret = SOCKS_add(p);
if (ret != GS_SUCCESS)
{
DEBUGF_R("**** SOCKS_add() ERROR ****\n");
cb_read_gs_error(ctx, p, GS_ERR_FATAL);
return GS_SUCCESS;
}
if (p->socks.state == GSNC_STATE_CONNECTING)
{
DEBUGF_C("SOCKS_add() has finished\n");
ret = peer_forward_connect(p, p->socks.dst_ip, p->socks.dst_port);
if (ret != 0)
return GS_SUCCESS; // Successfully removed
p->socks.state = GSNC_STATE_CONNECTED; // as if this is a normal port forward...
}
/* HERE: Socks just got CONNECTED. Flush any pending data. */
if (p->wlen > 0)
write_gs(ctx, p, NULL);
} else {
if (gopt.is_interactive)
{
if (p->is_stdin_forward)
{
/* HERE: Client */
if (p->is_stty_set_raw == 0)
{
/* Set TTY=raw first time we receive data [connection alive] */
XASSERT(p->fd_in == STDIN_FILENO, "p->fd_in = %d, not STDIN\n", p->fd_in);
stty_set_raw();
p->is_stty_set_raw = 1;
}
}
/* HERE: Client Or Server. Interactive */
size_t dsz;
ret = GS_PKT_decode(&p->pkt, p->rbuf, p->rlen, p->rbuf, &dsz);
p->rlen = dsz;
if (ret != 0)
{
/* Protocol Error [FATAL] */
cb_read_gs_error(ctx, p, GS_ERR_FATAL);
return GS_SUCCESS; // Successfully removed peer
}
if ((gopt.is_pty_failed) && (gopt.flags & GSC_FL_IS_SERVER) && (p->pid > 0))
{
// Try our best to emulate at least Ctrl-C (0x03)
if ((p->rlen == 1) && (p->rbuf[0] == 0x03))
{
p->rlen = 0;
// Try to kill the process.
ctrl_c_child(p->pid);
}
}
}
// See if any app data is there for the FD
// (Could have been that GS_PKT_decode() consumed all data for channels).
if (p->rlen > 0)
write_fd(ctx, p);
}
return GS_SUCCESS;
}
// Attempt to write and set write flag if busy. Non-Recursive.
// Return len on success.
//
// Return 0: SUCCESS (or no data written because p->wlen was empty)
// Return -1 : Busy (caller to return ECALLAGAIN)
// Return <-1: Fatal (exit)
int
write_gs_atomic(GS_SELECT_CTX *ctx, struct _peer *p)
{
int len;
// p->wlen might be == 0 when SSL_shutdown() was called but yielded SSL_WANT_WRITE
len = GS_write(p->gs, p->wbuf, p->wlen);
if (len == -2)
return 0; // NOTHING to be done
if (len == -1)
return -2; // Error
// DEBUGF_R("GS_write(fd==%d), len=%d\n", p->gs->fd, len);
if (len == 0)
{
/* GS_write() would block. */
// DEBUGF_M("Pause reading from fd_in=%d\n", p->fd_in);
FD_CLR(p->fd_in, ctx->rfd); // Pause reading from input
GS_FT_pause_data(&p->ft); // Pause FileTransfers
return -1; // BUSY
}
if (len > 0)
{
// Always unpause FileTransfer (even if not paused).
GS_FT_unpause_data(&p->ft);
// Check if FileTransfer still needs to xfer more data
if (GS_FT_WANT_WRITE(&p->ft))
GS_SELECT_FD_SET_W(p->gs);
}
return len;
}
int
write_gs(GS_SELECT_CTX *ctx, struct _peer *p, int *killed)
{
int len;
len = write_gs_atomic(ctx, p);
if (len == -1)
return GS_ECALLAGAIN;
if (len == p->wlen)
{
// SUCCESS of GS_write() (or p->wlen was 0)
p->wlen = 0;
if (p->is_fd_connected)
{
/* SOCKS subsystem calls write_gs() before p->fd_in is connected
* Make sure XFD_SET() is only called on a connected() socket.
*/
// DEBUGF_M("Start reading from fd_in(=%d) again\n", p->fd_in);
// FD_CLR(p->gs->fd, ctx->wfd);
GS_SELECT_FD_CLR_W(ctx, p->gs->fd);
XFD_SET(p->fd_in, ctx->rfd); // Start reading from input again
}
// FIXME-PERFORMANCE: Could change this to 'make' packets and append them to
// p->wbuf and do one large atomic write instead of recursive calls....
// Check if there is any other data we like to write...
if (gopt.is_win_resized)
{
get_winsize();
int row = gopt.winsize.ws_row;
if (gopt.is_console)
{
CONSOLE_resize(p);
row -= GS_CONSOLE_ROWS;
}
gopt.is_win_resized = 0;
/* Calls write_gs() */
return pkt_app_send_wsize(ctx, p, row);
}
if (gopt.is_status_nopty_pending)
{
gopt.is_status_nopty_pending = 0;
return pkt_app_send_status_nopty(ctx, p);
}
if (gopt.is_pong_pending)
{
gopt.is_pong_pending = 0;
return pkt_app_send_pong(ctx, p);
}
if (p->is_want_ping)
{
p->is_want_ping = 0;
return pkt_app_send_ping(ctx, p);
}
if (gopt.is_want_pwd)
{
gopt.is_want_pwd = 0;
return pkt_app_send_pwdrequest(ctx, p);
}
if (gopt.is_pwdreply_pending)
{
gopt.is_pwdreply_pending = 0;
return pkt_app_send_pwdreply(ctx, p);
}
if (gopt.is_want_ids_on)
{
gopt.is_want_ids_on = 0;
return pkt_app_send_ids(ctx, p);
}
if (p->is_pending_logs)
{
return pkt_app_send_all_log(ctx, p);
}
// Last: Send data from FileTransfer subsystem.
int ret;
ret = pkt_app_send_ft(ctx, p);
if ((ret == GS_ERROR) || (ret == GS_ERR_FATAL))
goto err;
return ret; // ECALLAGAIN==1 || ESUCCESS==0
}
err:
/* HERE: ERROR on GS_write() */
DEBUGF("%s\n", __func__);
peer_free(ctx, p);
if (killed != NULL)
*killed = 1;
return GS_SUCCESS; // Successfully removed peer
}
static int
cb_write_gs(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
return write_gs(ctx, (struct _peer *)arg, NULL);
}
/* ******************************* GS LISTEN ****************************/
static void
completed_connect(GS_SELECT_CTX *ctx, struct _peer *p, int fd_in, int fd_out)
{
GS *gs = p->gs;
/* Get ready to read from FD (either (forwarding) TCP, app or stdin/stdout */
FD_CLR(fd_out, ctx->wfd);
XFD_SET(fd_in, ctx->rfd);
GS_SELECT_add_cb_r(ctx, cb_read_fd, fd_in, p, 0);
GS_SELECT_add_cb_w(ctx, cb_write_fd, fd_out, p, 0);
/* And also get ready to read from GS-peer */
XFD_SET(gs->fd, ctx->rfd);
p->is_fd_connected = 1;
/* Write any data that is left in rbuf to fd */
if (p->rlen > 0)
write_fd(ctx, p);
}
/*
* Complete TCP connection to network forward on server side.
*/
static int
cb_complete_connect(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
int ret;
struct _peer *p = (struct _peer *)arg;
ret = fd_net_connect(ctx, fd, p->socks.dst_ip, p->socks.dst_port);
DEBUGF_M("fd_net_connect(fd=%d) = %d\n", fd, ret);
if (ret == GS_ERR_WAITING)
return GS_ECALLAGAIN;
if (ret == GS_ERR_FATAL)
{
DEBUGF("%s\n", __func__);
GS_LOG_TSP(p, "%s\n", strerror(errno));
peer_free(ctx, p);
return GS_SUCCESS;
}
if ((gopt.is_internal) && (gopt.is_send_authcookie != 0))
{
// Send auth-cookie to TCP (incoming)
authcookie_gen(p->rbuf, gopt.sec_str, 0);
p->rlen = GS_AUTHCOOKIE_LEN;
}
completed_connect(ctx, p, p->fd_in, p->fd_out);
return GS_SUCCESS;
}
/*
* Interactive client only has 1 peer. We need to find
* it from signal handlers. Set it here.
*/
static struct _peer *my_peer;
static void
cb_sigwinch(int sig)
{
// DEBUGF("Window Size changed\n");
XASSERT(my_peer != NULL, "my_peer is NULL. Not client. Not interactive.?\n");
gopt.is_win_resized = 1;
GS_SELECT_FD_SET_W(my_peer->gs);
}
/*
* Server & Client
*/
static struct _peer *
peer_new_init(GS *gs)
{
struct _peer *p;
int fd = GS_get_fd(gs);
XASSERT(peers[fd] == NULL, "peers[%d] already used by %p (fd = %d)\n", fd, peers[fd], peers[fd]->gs->fd);
p = calloc(1, sizeof *p);
p->gs = gs;
peers[fd] = p;
gopt.peer_count++;
gopt.peer_id_counter++;
p->id = gopt.peer_id_counter;
GS_PKT_init(&p->pkt);
p->w_max = sizeof p->wbuf;
p->r_max = sizeof p->rbuf;
if (gopt.is_interactive)
{
/* -i: Use of packet protocol needs decoding space */
p->w_max = sizeof p->wbuf / 2; /* from fd, to GS */
p->r_max = sizeof p->rbuf / 2; /* from fd, to GS */
if (!(gopt.flags & GSC_FL_IS_SERVER))
{
/* CLIENT, interactive */
my_peer = p;
signal(SIGWINCH, cb_sigwinch);
get_winsize();
GS_EVENT_add_by_ts(&gs->ctx->gselect_ctx->emgr, &gopt.event_ping, 0, GS_APP_PINGFREQ, cbe_ping, p, 0);
GS_EVENT_add_by_ts(&gs->ctx->gselect_ctx->emgr, &gopt.event_bps, 0, GS_APP_BPSFREQ, cbe_bps, p, 0);
} else {
/* SERVER, interactive */
ids_gs_login(p); // Let all others know what we have logged in:
}
}
p->ts_peer_io = GS_TV_TO_USEC(&gopt.tv_now);
GS_EVENT_add_by_ts(&gs->ctx->gselect_ctx->emgr, &p->event_peer_timeout, 0, GS_SEC_TO_USEC(1), cbe_peer_timeout, p, 0);
if (gopt.is_udp)
{
GS_BUF_init(&p->udp_buf, 0);
}
DEBUGF_M("[ID=%d] (fd=%d) Number of connected gs-peers: %d\n", p->id, fd, gopt.peer_count);
return p;
}
static void
vlog_hostname(struct _peer *p, const char *desc, uint16_t port)
{
uint16_t hp = ntohs(port);
const char *u = gopt.is_udp?"(UDP)":"(TCP)";
if (hp == 443)
GS_LOG(" %s"D_BLU("%s")":"D_GRE("%d")" %s\n", desc, p->socks.dst_hostname, hp, u);
else if (hp == 80)
GS_LOG(" %s"D_BLU("%s")":"D_YEL("%d")" %s\n", desc, p->socks.dst_hostname, hp, u);
else
GS_LOG(" %s"D_BLU("%s")":"D_BRED("%d")" %s\n", desc, p->socks.dst_hostname, hp, u);
}
static int
peer_forward_connect(struct _peer *p, uint32_t ip, uint16_t port)
{
int ret;
GS *gs = p->gs;
GS_SELECT_CTX *ctx = gs->ctx->gselect_ctx;
vlog_hostname(p, "Forwarding to ", port);
ret = fd_net_connect(ctx, p->fd_in, ip, port);
if (ret <= -2)
{
DEBUGF("%s peer-free\n", __func__);
GS_LOG_TSP(p, "%s\n", strerror(errno));
peer_free(ctx, p);
return -1;
}
GS_SELECT_add_cb(ctx, cb_complete_connect, cb_complete_connect, p->fd_in, p, 0);
XFD_SET(p->fd_in, ctx->wfd); /* Wait for connect() to complete */
FD_CLR(p->fd_in, ctx->rfd);
FD_CLR(gs->fd, ctx->rfd); // Stop reading from GS-peer
return 0;
}
/*
* SERVER
*/
static struct _peer *
peer_new(GS_SELECT_CTX *ctx, GS *gs)
{
struct _peer *p;
int ret;
p = peer_new_init(gs);
GS_LOG_TSP(p, "New Connection\n");
/* Create a new fd to relay gs-traffic to/from */
if ((gopt.cmd != NULL) || (gopt.is_interactive))
{
p->fd_in = fd_cmd(gopt.cmd, &p->pid, &ret);// Forward to forked process stdin/stdout
DEBUGF_W("fd=%d, pid=%d\n", p->fd_in, p->pid);
p->fd_out = p->fd_in;
p->is_app_forward = 1;
if (ret == GS_FD_CMD_ERR_NOPTY)
{
gopt.is_pty_failed = 1;
gopt.is_status_nopty_pending = 1;
}
} else if (gopt.port != 0) {
p->fd_in = fd_new_socket(gopt.is_udp?SOCK_DGRAM:SOCK_STREAM); // Forward to ip:port
p->fd_out = p->fd_in;
p->is_network_forward = 1;
} else if (gopt.is_socks_server != 0) {
p->fd_in = fd_new_socket(SOCK_STREAM); // SOCKS
DEBUGF_W("[ID=%d] gs->fd = %d\n", p->id, gs->fd);
p->fd_out = p->fd_in;
p->is_network_forward = 1;
} else {
p->fd_in = STDIN_FILENO; // Forward to STDIN/STDOUT
p->fd_out = STDOUT_FILENO;
p->is_stdin_forward = 1;
}
if (p->fd_in < 0)
{
ERREXIT("Cant create forward...%s\n", GS_strerror(gs));
}
if (gopt.is_interactive)
{
/* SERVER */
GS_PKT_assign_msg(&p->pkt, PKT_MSG_WSIZE, pkt_app_cb_wsize, p);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_PING, pkt_app_cb_ping, p);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_IDS, pkt_app_cb_ids, p);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_PWD, pkt_app_cb_pwdrequest, p);
GS_FTM_init(p, 1);
}
if (p->is_network_forward == 0)
{
/* STDIN/STDOUT or app-fd always complete immediately */
completed_connect(ctx, p, p->fd_in, p->fd_out);
} else {
if (gopt.is_socks_server)
{
ret = SOCKS_init(p);
if (ret != GS_SUCCESS)
{
peer_free(ctx, p);
return NULL;
}
} else {
/* A straight network forward is as if the SOCKS completed already */
p->socks.dst_ip = gopt.dst_ip;
p->socks.dst_port = gopt.port;
snprintf(p->socks.dst_hostname, sizeof p->socks.dst_hostname, "%s", int_ntoa(p->socks.dst_ip));
p->socks.state = GSNC_STATE_CONNECTED;
ret = peer_forward_connect(p, p->socks.dst_ip, p->socks.dst_port);
if (ret != 0)
return NULL;
}
}
return p;
}
/*
* SERVER
*/
static int
cb_listen(GS_SELECT_CTX *ctx, int fd, void *arg, int val)
{
GS *gs = (GS *)arg;
GS *gs_new;
int err;
DEBUGF("cb_listen %p, fd = %d, arg = %p, type = %d\n", ctx, fd, arg, val);
gs_new = GS_accept(gs, &err);
if (gs_new == NULL)
{
if (err <= -2)
{
int code = 255;
if (gs->status_code == GS_STATUS_CODE_BAD_AUTH)
code = EX_BAD_AUTH;
ERREXITC(code, "%s\n", GS_CTX_strerror(gs->ctx)); //Another Server is already listening or Network error.\n");
}
/* HERE: GS_accept() is not ready yet to accept() a new
* gsocket. (May have processed GS-pkt data) or may have
* closed the socket and established a new one (to wait for
* the next connection).
*/
return GS_SUCCESS; /* continue */
}
/* Stop accepting more connections if stdin/stdout is used */
if (gopt.is_multi_peer == 0) //(gopt.cmd == NULL) && (gopt.dst_ip == 0) && (!gopt.is_interactive))
{
GS_close(gopt.gsocket);
gopt.gsocket = NULL;
}
/* HERE: Success. A new GS connection. */
DEBUGF_B("Current max_fd %d (gs fd = %d)\n", ctx->max_fd, gs_new->fd);
struct _peer *p;
p = peer_new(ctx, gs_new);
if (p == NULL)
return GS_SUCCESS; /* free'ing peer was a success */
/* Start reading from Network (SRP is handled by GS_read()/GS_write()) */
GS_SELECT_add_cb(ctx, cb_read_gs, cb_write_gs, gs_new->fd, p, 0);
return 0; /* continue */
}
static void
do_server(void)
{
GS_SELECT_CTX ctx;
int n;
gopt.app_keepalive_sec = GS_APP_KEEPALIVE_SERVER;
GS_SELECT_CTX_init(&ctx, &gopt.rfd, &gopt.wfd, &gopt.r, &gopt.w, &gopt.tv_now, GS_SEC_TO_USEC(1));
/* Tell GS_CTX subsystem to use GS-SELECT */
GS_CTX_use_gselect(&gopt.gs_ctx, &ctx);
GS_listen(gopt.gsocket, 1);
/* Add all listening fd's to select()-subsystem */
GS_listen_add_gs_select(gopt.gsocket, &ctx, cb_listen, gopt.gsocket, 0);
if (gopt.is_internal)
{
GS_SELECT_add_cb_r(&ctx, cb_read_stdin, STDIN_FILENO, NULL, 0);
XFD_SET(STDIN_FILENO, ctx.rfd);
}
while (1)
{
n = GS_select(&ctx);
GS_heartbeat(gopt.gsocket);
if (n < 0)
break;
}
ERREXIT("NOT REACHED\n");
}
/********************** CLIENT *************************************/
/*
* CLIENT
*/
static int
cb_connect_client(GS_SELECT_CTX *ctx, int fd_notused, void *arg, int val)
{
struct _peer *p = (struct _peer *)arg;
GS *gs = p->gs;
int ret;
ret = GS_connect(gs);
DEBUGF_M("GS_connect(fd=%d) == %d (errno=%d), gs_status=%d\n", gs->fd, ret, errno, gs->status_code);
if (ret == GS_ERR_FATAL)
{
GS_LOG_TSP(p, "%s\n", GS_strerror(gs));
if (gopt.is_multi_peer == 0)
{
if (gs->status_code == GS_STATUS_CODE_CONNREFUSED)
{
if (gopt.is_try_server)
{
printf("%s %s NO\n", gopt.sec_str, GS_addr2hex(NULL, gopt.gs_addr.addr));
gopt.is_try_server = 2; // Stop 'cb_atexit()' to print bad state.
}
exit(EX_CONNREFUSED); // Used by deploy.sh to verify that server is responding.
}
// Used in deploy.sh to check if server is listening with
// _GSOCKET_SERVER_CHECK_SEC=10 gs-netcat -s foobar
if ((gopt.gs_server_check_sec > 0) && (gs->status_code == GS_STATUS_CODE_SERVER_OK))
{
if (gopt.is_try_server)
{
printf("%s %s OK\n", gopt.sec_str, GS_addr2hex(NULL, gopt.gs_addr.addr));
gopt.is_try_server = 2; // Stop 'cb_atexit()' to print bad state.
}
exit(0);
}
if (gs->status_code == GS_STATUS_CODE_NETERROR)
exit(EX_NETERROR);
exit(EX_FATAL);
}
/* This can happen if server accepts 1 connection only but client
* wants to open multiple. All but the 1st connection will fail. We shall
* not exit but keep the 1 connection alive.
* ./gs-netcat -l
* ./gs-netcat -p 1080
* -> Connection 2x to 127.1:1080 should keep 1st connection alive and 2nd
* should (gracefully) fail.
*/
DEBUGF("peer free %s\n", __func__);
peer_free(ctx, p);
return GS_SUCCESS;
}
if (ret == GS_ERR_WAITING)
return GS_ECALLAGAIN;
DEBUGF_M("*** GS_connect() SUCCESS ***** %d %d %d\n", gs->fd, p->fd_in, p->fd_out);
/* HERE: Connection successfully established */
/* Start reading from Network (SRP is handled by GS_read()/GS_write()) */
GS_SELECT_add_cb(ctx, cb_read_gs, cb_write_gs, gs->fd, p, 0);
/* Start reading from STDIN or inbound TCP */
GS_SELECT_add_cb_r(ctx, cb_read_fd, p->fd_in, p, 0);
GS_SELECT_add_cb_w(ctx, cb_write_fd, p->fd_out, p, 0);
XFD_SET(p->fd_in, ctx->rfd); /* Start reading */
p->is_fd_connected = 1;
/* -i specified and we are a client: Set TTY to raw for a real shell
* experience. Ignore this for this example.
*/
// if ((p->is_stdin_forward) && (gopt.is_interactive))
// {
// /* HERE: Client */
// DEBUGF_M("Setting tty\n");
// XASSERT(p->fd_in == STDIN_FILENO, "p->fd_in = %d, not STDIN\n", p->fd_in);
// stty_set_raw();
// // stty_set_remote_size(ctx, p);
// }
if (gopt.is_interactive)
{
// pkt_app_send_wsize(ctx, p, gopt.winsize.ws_row);
gopt.is_win_resized = 1; // Trigger: Send new window size to peer
GS_SELECT_FD_SET_W(p->gs);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_PONG, pkt_app_cb_pong, p);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_LOG, pkt_app_cb_log, p);
GS_PKT_assign_msg(&p->pkt, PKT_MSG_STATUS, pkt_app_cb_status, p);
GS_PKT_assign_chn(&p->pkt, GS_CHN_PWD, pkt_app_cb_pwdreply, p); // Channel
GS_FTM_init(p, 0 /*client*/);
}
return GS_SUCCESS;
}
/*
* Client
*/
static struct _peer *
gs_and_peer_connect(GS_SELECT_CTX *ctx, GS *gs, int fd_in, int fd_out)
{
int ret;
struct _peer *p;
ret = GS_connect(gs); // First call always returns -1 (waiting)
XASSERT(ret == GS_ERR_WAITING, "ERROR GS_connect() == %d\n", ret);
DEBUGF_B("GS_connect(GS->fd = %d)\n", GS_get_fd(gs));
p = peer_new_init(gs);
p->fd_in = fd_in;
p->fd_out = fd_out;
GS_SELECT_add_cb(ctx, cb_connect_client, cb_connect_client, GS_get_fd(gs), p, 0);
return p;
}
/*
* Client accepting incoming TCP connection to be forwarded to GS
*/
static int
cb_accept(GS_SELECT_CTX *ctx, int listen_fd, void *arg, int val)
{
int fd = -1;
GS *gs;
struct _peer *p;
if (gopt.is_udp)
{
// Accepting a UDP socket is done by calling connect().
// If successfull the re-create the listen_fd.
int rv;
fd = listen_fd;
// Find out IP of UDP-peer
struct sockaddr_in addr;
memset(&addr, 0, sizeof addr);
addr.sin_family = PF_INET;
socklen_t len = sizeof addr;
rv = recvfrom(fd, NULL, 0, MSG_PEEK, (struct sockaddr *)&addr, &len);
if (rv != 0)
return GS_SUCCESS;
// Restrict socket to only receive from this UDP-peer (with connect())
DEBUGF_W("UDP from %s:%d\n", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
rv = connect(fd, (struct sockaddr *)&addr, len);
if (rv != 0)
DEBUGF_R("rv=%d, %s\n", rv, strerror(errno));
DEBUGF_G("New UDP connection RECEIVED (fd = %d)\n", fd);
// Delete old 'cb_accept' callback because this now is a connected UDP socket.
GS_SELECT_del_cb(ctx, fd);
// Stop reading from UDP until GSRN is connected.
FD_CLR(fd, ctx->rfd);
// Create new UDP listening socket
gopt.listen_fd = fd_new_socket(SOCK_DGRAM);
if (gopt.listen_fd < 0)
return GS_SUCCESS;
rv = fd_net_listen(gopt.listen_fd, &gopt.port, SOCK_DGRAM);
if (rv < 0)
return GS_SUCCESS;
GS_SELECT_add_cb(ctx, cb_accept, cb_accept, gopt.listen_fd, NULL, 0);
XFD_SET(gopt.listen_fd, ctx->rfd); // Listen for new UDP conns (again)
} else {
fd = fd_net_accept(listen_fd);
if (fd < 0)
return GS_SUCCESS;
DEBUGF_G("New TCP connection RECEIVED (fd = %d)\n", fd);
}
/* Create a new GS and call GS_connect() */
gs = gs_create(); /* Create a new GS */
p = gs_and_peer_connect(ctx, gs, fd, fd); /* in/out fd's are identical for TCP */
p->is_network_forward = 1;
struct sockaddr_in addr;
memset(&addr, 0, sizeof addr);
socklen_t len = sizeof addr;
getpeername(fd, (struct sockaddr *)&addr, &len);
GS_LOG_TSP(p, "New Connection from %s:%d\n", inet_ntoa(addr.sin_addr), ntohs(addr.sin_port));
return GS_SUCCESS;
}
static void
do_client(void)
{
GS_SELECT_CTX ctx;
struct _peer *p;
GS_SELECT_CTX_init(&ctx, &gopt.rfd, &gopt.wfd, &gopt.r, &gopt.w, &gopt.tv_now, GS_SEC_TO_USEC(1));
/* Tell GS_CTX subsystem to use GS-SELECT */
GS_CTX_use_gselect(&gopt.gs_ctx, &ctx);
if (gopt.is_multi_peer == 0)
{
/* Read/Write from STDIN/STDOUT. No TCP. */
/* STDIN can be blocking */
p = gs_and_peer_connect(&ctx, gopt.gsocket, STDIN_FILENO, STDOUT_FILENO);
p->is_stdin_forward = 1;
} else {
if (gopt.is_internal)
{
GS_SELECT_add_cb_r(&ctx, cb_read_stdin, STDIN_FILENO, NULL, 0);
XFD_SET(STDIN_FILENO, ctx.rfd);
}
GS_SELECT_add_cb(&ctx, cb_accept, cb_accept, gopt.listen_fd, NULL, 0);
XFD_SET(gopt.listen_fd, ctx.rfd); /* listening socket */
}
int n;
while (1)
{
n = GS_select(&ctx);
GS_heartbeat(gopt.gsocket);
if (n < 0)
break;
}
ERREXIT("NOT REACHED\n");
}
static void
my_usage(int code)
{
#ifndef STEALTH
fprintf(stderr, ""
"gs-netcat [-skrlgvqwCTLtSDuim] [-s secret] [-e cmd] [-p port] [-d ip]\n"
"");
#endif
usage("skrIlSgvqwCTL");
#ifndef STEALTH
fprintf(stderr, ""
" -t Check if peer is listening (do not connect)\n"
" -S Act as a SOCKS server [needs -l]\n"
" -D Daemon & Watchdog mode [background]\n"
" -d <IP> IPv4 address for port forwarding\n"
" -p <port> Port to listen on or forward to\n"
" -u Use UDP [requires -p]\n"
" -i Interactive login shell (TTY) [Ctrl-e q to terminate]\n"
" -e <cmd> Execute command [e.g. \"bash -il\" or \"id\"]\n"
" -m Display man page\n"
" "
"\n"
"Example to forward traffic from port 2222 to 192.168.6.7:22:\n"
" $ gs-netcat -l -d 192.168.6.7 -p 22 # Server\n"
" $ gs-netcat -p 2222 # Client\n"
"Example to act as a SOCKS proxy\n"
" $ gs-netcat -l -S # Server\n"
" $ gs-netcat -p 1080 # Client\n"
"Example file transfer:\n"
" $ gs-netcat -l -r >warez.tar.gz # Server\n"
" $ gs-netcat <warez.tar.gz # Client\n"
"Example for a reverse shell:\n"
" $ gs-netcat -l -i # Server\n"
" $ gs-netcat -i # Client\n"
"");
#else // STEALTH
system("uname -a");
#endif
exit(code);
}
static void
cb_sigalarm(int sig)
{
exit(EX_ALARM);
}
static void
try_quiet(void)
{
if (gopt.is_quiet == 0)
return;
gopt.log_fp = NULL;
gopt.err_fp = NULL;
}
static void
my_getopt(int argc, char *argv[])
{
int c;
FILE *fp;
char *ptr;
do_getopt(argc, argv); /* from utils.c */
optind = 1; /* Start from beginning */
while ((c = getopt(argc, argv, UTILS_GETOPT_STR "thmWuP:")) != -1)
{
switch (c)
{
case 't':
gopt.is_try_server = 1;
gopt.gs_server_check_sec = 15;
gopt.is_quiet = 1; // Implied
break;
case 'm':
printf("%s", man_str);
exit(0);
break; // NOT REACHED
case 'D':
gopt.is_daemon = 1;
break;
case 'W':
gopt.is_watchdog = 1;
break;
case 'p':
gopt.port = htons(atoi(optarg));
gopt.is_multi_peer = 1;
break;
case 'e':
gopt.cmd = optarg;
gopt.is_multi_peer = 1;
break;
case 'd':
gopt.dst_ip = inet_addr(optarg);
gopt.is_multi_peer = 1;
break;
case 'u':
gopt.is_udp = 1;
break;
case 'S':
gopt.is_socks_server = 1;
gopt.is_multi_peer = 1;
gopt.flags |= GSC_FL_IS_SERVER; // implicit
break;
case 'P': // INTERNAL
fp = fopen(optarg, "w");
if (fp == NULL)
ERREXIT("fopen(%s): %s\n", optarg, strerror(errno));
fprintf(fp, "%u", getpid());
fclose(fp);
break;
case 'h':
my_usage(0); // On -h exit with 0 [it's a valid command]
default:
break;
case 'A': // Disable -A for gs-netcat. Use gs-full-pipe instead
case '?':
my_usage(EX_UNKNWNCMD);
}
}
if (GS_getenv("_GSOCKET_WANT_AUTHCOOKIE") != NULL)
gopt.is_want_authcookie = 1;
if (GS_getenv("_GSOCKET_SEND_AUTHCOOKIE") != NULL)
gopt.is_send_authcookie = 1;
if (GS_getenv("_GSOCKET_INTERNAL") != NULL)
{
DEBUGF_G("IS_INTERNAL\n");
gopt.is_internal = 1;
}
ptr = GS_getenv("_GSOCKET_SERVER_CHECK_SEC");
if (ptr != NULL)
gopt.gs_server_check_sec = atoi(ptr);
if (gopt.gs_server_check_sec > 0)
{
DEBUGF_G("SERVER_CHECK_SEC=%s (%d)\n", ptr, gopt.gs_server_check_sec);
alarm(gopt.gs_server_check_sec);
signal(SIGALRM, cb_sigalarm);
}
if (gopt.is_daemon)
{
if (gopt.is_logfile == 0)
gopt.is_quiet = 1;
}
if (gopt.flags & GSC_FL_IS_SERVER)
{
/* Server side (-i -l) shall be allowed to spawn multiple shells */
if (gopt.is_interactive)
gopt.is_multi_peer = 1;
}
/* Try to bind port (if listening) now and exit with error on failure
* so that we only turn daemon/watchdog if port is available
*/
if (!(gopt.flags & GSC_FL_IS_SERVER))
{
/* HERE: Client */
if (gopt.is_multi_peer == 1)
{
if (gopt.is_internal == 0)
XASSERT(gopt.port != 0, "Client listening port is 0 but wants multiple peers.\n");
gopt.listen_fd = fd_new_socket(gopt.is_udp?SOCK_DGRAM:SOCK_STREAM);
int ret;
ret = fd_net_listen(gopt.listen_fd, &gopt.port, gopt.is_udp?SOCK_DGRAM:SOCK_STREAM);
if (ret != 0)
ERREXIT("Listening on port %d failed: %s\n", ntohs(gopt.port), strerror(errno));
// gs and gs_so use STDIN/STDOUT as IPC communication. If -p0 is specified for
// listening than a port is choosen at random and that port information is
// written to stdout.
if (gopt.is_internal)
{
uint16_t port = ntohs(gopt.port);
DEBUGF_G("Listening on port %u\n", port);
if (write(1, &port, sizeof port) != sizeof port)
exit(EX_BADWRITE); // FATAL
}
}
}
if ((gopt.is_internal) && (gopt.is_watchdog))
{
try_quiet();
gs_watchdog();
}
// init all (and ask for password if -s/-k missing)
init_vars(); /* from utils.c */
try_quiet();
/* Become a daemon & watchdog (auto-restart)
* Do this before gs_create() so that any error in DNS resolving
* is re-tried by watchdog.
*/
if (gopt.is_daemon)
{
if (gopt.token_str == NULL)
{
// Stop multiple daemons from starting (by crontab/.profile):
// Set the token-str uniq to this daemon. Then any other daemon
// that starts will have a different toek_str and GSRN will return
// a BAD-AUTH message.
// The child will then exit with EX_BAD_AUTH which also triggers the daemon
// to exit (because another daemon is already connected).
char buf[1024];
snprintf(buf, sizeof buf, "%u-BAD-AUTH-CHECK-%s", getpid(), gopt.sec_str);
gopt.token_str = strdup(buf);
}
gopt.err_fp = gopt.log_fp; // Errors to logfile or NULL
GS_daemonize(gopt.log_fp, EX_BAD_AUTH);
}
gopt.gsocket = gs_create();
if (gopt.is_greetings)
GS_LOG("=Encryption : %s (Prime: %d bits)\n", GS_get_cipher(gopt.gsocket), GS_get_cipher_strength(gopt.gsocket));
atexit(cb_atexit);
}
#if 0
static void
my_test(void)
{
gopt.is_console = 1;
GS_LIST new_login;
GS_LIST new_active;
GS_LIST_ITEM *li;
GS_LIST_init(&new_login, 0);
GS_LIST_init(&new_active, 0);
// double load;
// int ret = getloadavg(&load, 1);
// uint32_t l = (uint32_t)(load * 100);
// DEBUGF("%d: %f %.02f\n", ret, load, (float)l / 100);
// uint8_t buf[14];
// for (int i = 0; i < sizeof buf; i++)
// buf[i] = '0'+i%10;
// sanitize_fname_to_str(buf, sizeof (buf) - 1);
// DEBUGF("user = '%s'\n", buf);
#if 0
char buf[8];
int64_t i;
i=3; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=36; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=999; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=1000; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=5000; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=50000; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=500000; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=10*1024*1024; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
i=10*(int64_t)1024*1024*1024; format_bps(buf, sizeof buf, i); DEBUGF_Y("%12lld rate = '%s/s'\n", i, buf);
#endif
#if 0
float ms = 23;
DEBUGF("[%3dms]\n", (int)ms);
ms = 987;
DEBUGF("[%3dms]\n", (int)ms);
ms = 4253;
DEBUGF("[%1.01fs ]\n---\n", ms / 1000);
int load = 45;
DEBUGF("[% -04.02f]\n", (float)5 / 100); // THIS
DEBUGF("[% 04.02f]\n", (float)5 / 100); // THIS
DEBUGF("[% -04.02f]\n", (float)45 / 100); // THIS
DEBUGF("[% 04.02f]\n", (float)45 / 100); // THIS
DEBUGF("[% -04.02f]\n", (float)145 / 100); // THIS
DEBUGF("[% 04.02f]\n", (float)145 / 100); // THIS
load = 3245;
// DEBUGF("[% 04.02f]\n", (float)load / 100); //
DEBUGF("[% -02.02f]\n", (float)3245 / 100);
DEBUGF("[%02.02f]\n", (float)3245 / 100); // OK
DEBUGF("[%- 02.02f]\n", (float)245 / 100);
#endif
// DEBUGF("[%4.02f]\n", (float)load / 100); // THIS
// DEBUGF("[% 4.02f]\n", (float)load / 100);
// DEBUGF("[%4.02f]\n", (float)load / 100);
// DEBUGF("[% -4.02f]\n", (float)load / 100);
#if 0
// FBSD getppidcwd() test to find out cwd of parent pid
#include <sys/types.h>
#include <sys/sysctl.h>
#include <sys/caprights.h>
#include <sys/param.h>
#include <sys/queue.h>
#include <sys/socket.h>
#ifndef cap_rights_t
typedef struct cap_rights cap_rights_t;
#endif
#include <libprocstat.h>
chdir("/tmp");
char *wd = NULL;
struct procstat *procstat;
struct kinfo_proc *kipp;
struct filestat_list *head;
struct filestat *fst;
pid_t pid;
unsigned int cnt;
procstat = procstat_open_sysctl();
if (procstat == NULL)
goto done;
pid = getppid();
kipp = procstat_getprocs(procstat, KERN_PROC_PID, pid, &cnt);
if ((kipp == NULL) || (cnt <= 0))
goto done;
head = procstat_getfiles(procstat, kipp, 0);
if (head == NULL)
goto done;
STAILQ_FOREACH(fst, head, next)
{
if (!(fst->fs_uflags & PS_FST_UFLAG_CDIR))
continue;
if (fst->fs_path == NULL)
continue;
wd = strdup(fst->fs_path);
break;
printf("cwd %-18s\n", fst->fs_path != NULL ? fst->fs_path : "-");
}
procstat_freefiles(procstat, head);
done:
printf("wd='%s'\n", wd);
#endif
exit(0);
}
#endif
// static void
// my_test(void)
// {
// struct _gs_portrange_list ports;
// DEBUGF("MARK\n");
// GS_portrange_new(&ports, getenv("GS_HIJACK_PORTS"));
// DEBUGF("MARK\n");
// exit(0);
// }
// static void
// my_test(void)
// {
// char buf[56];
// ssize_t n;
// char res[2];
// while (1)
// {
// n = read(0, buf, sizeof buf);
// DEBUGF("read %zd\n", n);
// if (n <= 0)
// exit(0);
// GS_sanitize_logmsg(buf, sizeof buf);
// printf("%s\n", buf);
// }
// }
int
main(int argc, char *argv[])
{
// my_test();
init_defaults(&argc, &argv);
my_getopt(argc, argv);
if (gopt.flags & GSC_FL_IS_SERVER)
do_server();
else
do_client();
exit(EX_NOTREACHED);
return -1; /* NOT REACHED */
}
|