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 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821
|
#include "Snoop.hh"
#include <iostream>
#include <string.h>
#include <regex>
#include <iostream>
#include <chrono>
#include <ctime>
#include <memory.h>
#ifndef _WIN32
#ifndef _WIN64
#include <sys/utsname.h>
#endif
#endif
#include <stdint.h>
#include <set>
#include "nlohmann/json.hpp"
std::string snoop_base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len);
std::string snoop_base64_decode(std::string const& encoded_string);
#include <signal.h>
#include <sys/types.h>
#if !defined(_WIN32) && !defined(_WIN64)
#include <pwd.h>
#include <unistd.h>
#else
#include <windows.h>
#include <io.h>
#include <process.h>
#include <direct.h>
#endif
#ifdef __APPLE__
#include <pwd.h>
#include "TargetConditionals.h"
#else
#include <glibmm/miscutils.h>
#endif
#define BOOST_SPIRIT_THREADSAFE
#include <boost/signals2.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
#include <boost/config.hpp>
#if !defined(TARGET_OS_IPHONE)
#include <boost/program_options/detail/config_file.hpp>
#include <boost/program_options/parsers.hpp>
#endif
#include <boost/uuid/uuid.hpp>
#include <boost/uuid/uuid_generators.hpp> // generators
#include <boost/uuid/uuid_io.hpp> // streaming operators etc.
#define SNOOPDEBUG(ln)
//#define SNOOPDEBUG(ln) ln
using namespace snoop;
// Global instance.
snoop::Snoop snoop::log;
snoop::Flush snoop::flush;
using u64_millis = std::chrono::duration<uint64_t, std::milli>;
static std::chrono::time_point<std::chrono::system_clock, u64_millis> u64_to_time(uint64_t timestamp) {
return std::chrono::time_point<std::chrono::system_clock, u64_millis>{u64_millis{timestamp}};
}
// Until we have widespread C++20 support, we will need to get
// the timezone offset using old-style code. This code returns
// the offset in minutes the same as Javascript's
// Date.getTimezoneOffset(); so if you are in zone GMT+2,
// it returns -120.
#if defined(_WIN32)
#define timegm _mkgmtime
#endif
int local_utc_offset_minutes()
{
time_t t = time ( NULL );
struct tm * locg = localtime ( &t );
struct tm locl;
memcpy ( &locl, locg, sizeof ( struct tm ) );
return -1 * (int)( timegm ( locg ) - mktime ( &locl ) ) / 60;
}
std::string safestring(const unsigned char *c)
{
if(c==0) return "";
else return std::string((const char *)c);
}
Snoop::Snoop()
: sync_immediately_(false), db(0), payload_db(0), auth_db(0), insert_statement(0), id_for_uuid_statement(0), connection_is_open(false), connection_attempt_failed(false)
{
#ifdef SNOOP_SSL
secure=true;
#else
secure=false;
#endif
}
void Snoop::init(const std::string& app_name, const std::string& app_version, std::string server, std::string dbname, std::string machine_id)
{
assert(app_name.size()>0);
if(db==0) { // Only initialise if database has not been opened before
this_app_.app_name=app_name;
this_app_.app_version=app_version;
this_app_.pid = getpid();
#if defined(_WIN32) || defined(_WIN64)
DWORD dwVersion = 0;
DWORD dwMajorVersion = 0;
DWORD dwMinorVersion = 0;
DWORD dwBuild = 0;
dwVersion = GetVersion();
// Get the Windows version.
dwMajorVersion = (DWORD)(LOBYTE(LOWORD(dwVersion)));
dwMinorVersion = (DWORD)(HIBYTE(LOWORD(dwVersion)));
// Get the build number.
if (dwVersion < 0x80000000)
dwBuild = (DWORD)(HIWORD(dwVersion));
this_app_.machine_id = "Windows "+std::to_string(dwMajorVersion)+"."+std::to_string(dwMinorVersion);
#else
struct utsname buf;
if(uname(&buf)==0) {
this_app_.machine_id = std::string(buf.sysname)
+", "+buf.nodename+", "+buf.release+", "+buf.version+", "+buf.machine;
#ifdef __linux__
this_app_.machine_id += std::string(", ")+buf.domainname;
#endif
}
#endif
if(machine_id!="")
this_app_.machine_id = machine_id; // override (used in Objective-C backend).
this_app_.user_id = get_user_uuid(app_name);
auto duration = std::chrono::system_clock::now().time_since_epoch();
this_app_.create_millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
this_app_.create_timezone = local_utc_offset_minutes();
server_=server;
std::string payload_dbname, auth_dbname;
if(dbname.size()==0) {
#if defined(_WIN32) || defined(_WIN64)
// On Windoze, we store in 'user_data_dir' provided by Glib.
std::string logdir = Glib::get_user_data_dir();
mkdir(logdir.c_str());
#elif defined(TARGET_OS_IPHONE)
// On iOS, we store in '~/Library/.log/'.
std::string homedir=getenv("HOME");
homedir+="/Library";
std::string logdir = homedir+std::string("/.log");
mkdir(logdir.c_str(), 0700);
#else
// On Unix, we store in '~/.log/'.
struct passwd *pw = getpwuid(getuid());
const char *homedir = pw->pw_dir;
std::string logdir = homedir+std::string("/.log");
mkdir(logdir.c_str(), 0700);
#endif
//std::cerr << logdir << std::endl;
dbname=logdir+"/"+app_name+".db";
payload_dbname=logdir+"/"+app_name+"_payload.db";
auth_dbname=logdir+"/"+app_name+"_auth.db";
}
else {
payload_dbname=dbname+"_payload.db";
auth_dbname=dbname+"_auth.db";
dbname+=".db";
}
// std::cerr << "Snoop: logging in " << dbname << std::endl;
// std::cerr << "Snoop: payload in " << payload_dbname << std::endl;
// std::cerr << "Snoop: auth in " << auth_dbname << std::endl;
int ret = sqlite3_open_v2(dbname.c_str(), &db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
if(ret)
throw std::logic_error("Snoop::init: Cannot open main snoop database");
SNOOPDEBUG( std::cerr << "Snoop::init: main snoop database open" << std::endl; );
ret = sqlite3_open_v2(payload_dbname.c_str(), &payload_db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
if(ret)
throw std::logic_error("Snoop::init: Cannot open payload database");
SNOOPDEBUG( std::cerr << "Snoop::init: payload database open" << std::endl; );
create_tables();
SNOOPDEBUG( std::cerr << "Snoop::init: tables created" << std::endl; );
ret = sqlite3_open_v2(auth_dbname.c_str(), &auth_db, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL);
if(ret)
throw std::logic_error("Snoop::init: Cannot open authentication database");
create_authentication_tables();
// Turn off synchronous writes as they seriously degrade performance (by orders of magnitude)
// for our single-row inserts. See
// http://stackoverflow.com/questions/1711631/improve-insert-per-second-performance-of-sqlite?rq=1
// for more options to speed things up.
sqlite3_exec(db, "PRAGMA synchronous = OFF", NULL, NULL, NULL);
sqlite3_exec(db, "PRAGMA journal_mode= WAL", NULL, NULL, NULL);
// If this is a client, i.e. not a SnoopServer: obtain a uuid, start the websocket listener,
// and sync with the remote server whatever has not yet been synced in previous runs.
if(this_app_.app_name!="SnoopServer") {
obtain_uuid();
start_websocket_client();
// Once started, the websocket client thread will call a sync
// in the on_client_open callback, and then set the
// connection_is_open flag.
}
}
}
std::string Snoop::get_user_uuid(const std::string& appname)
{
std::string user_uuid="";
#ifdef TARGET_OS_IPHONE
// On iOS, config files go in '~/Library/.config/'
std::string configdir=getenv("HOME");
configdir+="/Library/.config";
#else
// on Unix/Windoze, Glib knows where to store config data.
std::string configdir = Glib::get_user_config_dir();
#endif
std::string configpath=configdir + std::string("/snoop/"+appname+".conf");
std::ifstream config(configpath);
bool need_to_write=true;
#ifndef TARGET_OS_IPHONE
if(config) {
std::set<std::string> options;
options.insert("user");
for(boost::program_options::detail::config_file_iterator i(config, options), e ; i != e; ++i) {
// FIXME: http://stackoverflow.com/questions/24701547/how-to-parse-boolean-option-in-config-file
if(i->string_key=="user") {
user_uuid=i->value[0];
need_to_write=false;
}
}
}
#endif
if(need_to_write) {
// First time run; create config subdirectory for snoop.
std::string configsubdir = configdir+std::string("/snoop");
#if defined(_WIN32) || defined(_WIN64)
mkdir(configdir.c_str());
mkdir(configsubdir.c_str());
#else
mkdir(configdir.c_str(), 0700);
mkdir(configsubdir.c_str(), 0700);
#endif
std::ofstream config(configpath);
if(config) {
auto tmp = boost::uuids::random_generator()();
std::ostringstream str;
str << tmp;
user_uuid = str.str();
config << "user = " << user_uuid << std::endl;
}
else {
SNOOPDEBUG( std::cerr << "Snoop: cannot write " << configpath << std::endl; )
}
}
return user_uuid;
}
void Snoop::set_sync_immediately(bool s)
{
sync_immediately_=s;
}
void Snoop::create_tables()
{
assert(db!=0);
assert(payload_db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
char *errmsg;
// Create the `runs` table.
if(sqlite3_exec(db, "create table if not exists runs ("
"id integer primary key autoincrement,"
"uuid text,"
"create_millis unsigned big int,"
"receive_millis unsigned big int,"
"pid int,"
"ip_address text,"
"machine_id text,"
"app_name text,"
"app_version text,"
"user_id text,"
"server_status int,"
"create_timezone int default -1);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table runs");
}
// Add the create_timezone column, ignore any errors.
if(sqlite3_exec(db, "alter table runs add column create_timezone int default -1;"
, NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
}
// Create the `logs` table.
if(sqlite3_exec(db, "create table if not exists logs ("
"log_id integer primary key autoincrement,"
"client_log_id integer,"
"id integer references login,"
"create_millis unsigned big int,"
"receive_millis unsigned big int,"
"loc_file text,"
"loc_line integer,"
"loc_method text,"
"type text,"
"message text,"
"server_status int,"
"session_uuid text,"
"create_timezone int default -1);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table logs");
}
// Add new session_uuid to existing table if we do not have it already.
if(sqlite3_exec(db, "alter table logs add column session_uuid text;"
, NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
}
// Add the create_timezone column, ignore any errors.
if(sqlite3_exec(db, "alter table logs add column create_timezone int default -1;"
, NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
}
// Create the `payload` table.
if(sqlite3_exec(payload_db, "create table if not exists payload ("
"payload_id integer primary key autoincrement,"
"client_payload_id integer,"
"id integer," /* 'references login', but that's not possible across databases */
"create_millis unsigned big int,"
"receive_millis unsigned big int,"
"payload text,"
"server_status int,"
"create_timezone int default -1);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table payload");
}
// Add the create_timezone column, ignore any errors.
if(sqlite3_exec(payload_db, "alter table payload add column create_timezone int default -1;"
, NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
}
if(sqlite3_exec(db, "create index if not exists logs_id_idx on logs(id);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on logs.id: "+err);
}
if(sqlite3_exec(db, "create index if not exists logs_client_log_id_idx on logs(client_log_id);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on logs.client_log_id: "+err);
}
if(sqlite3_exec(db, "create index if not exists logs_create_millis_idx on logs(create_millis);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on logs.create_millis: "+err);
}
if(sqlite3_exec(db, "create index if not exists logs_type_idx on logs(type);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on logs.type: "+err);
}
if(sqlite3_exec(db, "create index if not exists runs_machine_id_idx on runs(machine_id);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on runs.machine_id: "+err);
}
if(sqlite3_exec(db, "create index if not exists runs_app_version_idx on runs(app_version);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on runs.app_version: "+err);
}
if(sqlite3_exec(db, "create index if not exists runs_app_name_idx on runs(app_name);", NULL, NULL, &errmsg) != SQLITE_OK) {
std::string err(errmsg);
sqlite3_free(errmsg);
throw std::logic_error("Failed to create index on runs.app_name: "+err);
}
}
void Snoop::create_authentication_tables()
{
// We need two tables: one for the username/salted-password
// combo (together with some other user info, probably)
// and one for authorisation tickets issued after a successful
// login.
assert(auth_db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
char *errmsg;
if(sqlite3_exec(auth_db, "create table if not exists users ("
"id integer primary key autoincrement,"
"username text unique,"
"password text,"
"enabled int,"
"\"group\" int,"
"email text,"
"device text);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table users");
}
if(sqlite3_exec(auth_db, "create table if not exists groups ("
"id integer primary key autoincrement,"
"\"group\" text unique,"
"description text,"
"enabled int);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table groups");
}
// The following table is fairly trivial right now but can be used
// to add other information at a later stage. Mainly introduced
// so we can handle multiple user_detail records for each user.
// if(sqlite3_exec(auth_db, "create table if not exists user_details ("
// "id integer primary key autoincrement,"
// "user_id integer,"
// "device text);"
// , NULL, NULL, &errmsg) != SQLITE_OK) {
// sqlite3_free(errmsg);
// throw std::logic_error("Failed to create table user_details");
// }
if(sqlite3_exec(auth_db, "create table if not exists tickets ("
"id integer primary key autoincrement,"
"user_id integer,"
"ticket_uuid text,"
"valid integer);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table tickets");
}
if(sqlite3_exec(auth_db, "create table if not exists auth_attempts ("
"id integer primary key autoincrement,"
"time_millis unsigned big int,"
"user_id integer,"
"ticket_id integer,"
"success integer,"
"msg text);"
, NULL, NULL, &errmsg) != SQLITE_OK) {
sqlite3_free(errmsg);
throw std::logic_error("Failed to create table auth_attempts");
}
}
void Snoop::obtain_uuid()
{
assert(db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
sqlite3_stmt *statement=0;
std::ostringstream ss;
// ss << "select uuid from runs where pid=" << getpid() << " order by create_millis desc limit 1";
ss << "select uuid from runs where pid=" << getpid() << " order by create_millis desc limit 1";
int res = sqlite3_prepare(db, ss.str().c_str(), -1, &statement, NULL);
if(res==SQLITE_OK) {
int ret = sqlite3_step(statement);
if(ret==SQLITE_ROW) {
if(sqlite3_column_type(statement, 0)==SQLITE3_TEXT)
this_app_.uuid=safestring(sqlite3_column_text(statement, 0));
else throw std::logic_error("Database inconsistency for obtain_uuid");
}
}
sqlite3_finalize(statement);
// Generate and insert a new uuid if there is no existing entry for the current pid.
if(this_app_.uuid.size()==0) {
auto tmp = boost::uuids::random_generator()();
std::ostringstream str;
str << tmp;
this_app_.uuid = str.str();
store_app_entry_without_lock(this_app_);
}
}
/// Get the app_version string for the last run on the given device.
std::string Snoop::last_seen_version(std::string machine_id)
{
assert(db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
sqlite3_stmt *statement=0;
std::ostringstream ss;
ss << "select app_version from runs where machine_id=? order by id desc limit 1";
std::string last_version="";
int res = sqlite3_prepare(db, ss.str().c_str(), -1, &statement, NULL);
if(res==SQLITE_OK) {
sqlite3_bind_text(statement, 1, machine_id.c_str(), machine_id.size(), 0);
int ret = sqlite3_step(statement);
if(ret==SQLITE_ROW) {
if(sqlite3_column_type(statement, 0)==SQLITE3_TEXT)
last_version=safestring(sqlite3_column_text(statement, 0));
}
}
sqlite3_finalize(statement);
return last_version;
}
bool Snoop::authenticate(std::function<void (std::string, bool)> f, std::string user, std::string pass)
{
// Wait for the websocket client thread to have spun up.
std::unique_lock<std::mutex> lock(connection_mutex);
if(connection_is_open==false && connection_attempt_failed==false) {
connection_cv.wait(lock);
}
authentication_callback=f;
// If we have a ticket, setup check request and return true;
// If we do not have a ticket, and user and pass are not empty, setup login check, return false.
// First check if we have a ticket from a previous session.
std::string ticket_uuid=get_local_ticket();
// Check ticket validity with server, or do password login.
if(ticket_uuid.size()!=0) { // have ticket
SNOOPDEBUG( std::cerr << "Have a ticket already, re-validating." << std::endl; );
std::ostringstream pack;
pack << "{ \"authenticate\": {"
<< " \"ticket_uuid\": \"" << ticket_uuid << "\"} } \n";
if(!connection_is_open) {
SNOOPDEBUG( std::cerr << "Connection not open, cannot verify ticket, allowed through." << std::endl; );
}
else {
wsclient.send(our_connection_hdl, pack.str(), websocketpp::frame::opcode::text);
}
return true;
}
else {
SNOOPDEBUG( std::cerr << "No ticket yet, requesting one with login/pass." << std::endl; );
std::ostringstream pack;
pack << "{ \"authenticate\": {"
<< " \"user\": \"" << user << "\", \"password\": \"" << pass << "\" } } \n";
if(!connection_is_open) {
SNOOPDEBUG( std::cerr << "No connection, cannot verify login credentials" << std::endl; );
// FIXME: need a 'false' which also shows that we have not been able to verify.
}
else {
wsclient.send(our_connection_hdl, pack.str(), websocketpp::frame::opcode::text);
}
return false;
}
}
std::string Snoop::get_local_ticket()
{
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Prepare the query for the ticket_uuid. This always
// queries for the ticket with user number 0 (as the local
// client storage does not store user details).
sqlite3_stmt *statement=0;
std::ostringstream ss;
ss << "select ticket_uuid from tickets where user_id=0 and valid=1";
int res = sqlite3_prepare(auth_db, ss.str().c_str(), -1, &statement, NULL);
assert(res==SQLITE_OK);
int ret = sqlite3_step(statement);
std::string ticket_uuid;
if(ret==SQLITE_ROW) {
ticket_uuid=safestring(sqlite3_column_text(statement, 0));
}
sqlite3_finalize(statement);
return ticket_uuid;
}
void Snoop::set_local_ticket(std::string ticket_uuid)
{
// First delete local ticket.
std::ostringstream ss;
sqlite3_stmt *statement=0;
ss << "delete from tickets";
int res = sqlite3_prepare(auth_db, ss.str().c_str(), -1, &statement, NULL);
if(res!=SQLITE_OK)
throw std::logic_error("Snoop::delete_local_ticket: sqlite3_prepare failed error "+std::to_string(res));
res = sqlite3_step(statement);
if(res!=SQLITE_DONE)
throw std::logic_error("Snoop::store_ticket: sqlite3_step failed error "+std::to_string(res));
sqlite3_finalize(statement);
// Now store.
if(ticket_uuid.size()!=0)
store_ticket(ticket_uuid, 0, 1);
}
Snoop::Ticket::Ticket()
{
ticket_id=-1;
user_id=-1;
valid=false;
}
Snoop::Ticket Snoop::is_ticket_valid(std::string ticket_uuid)
{
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Prepare the query for the ticket_uuid.
sqlite3_stmt *statement=0;
std::ostringstream ss;
ss << "select valid, users.enabled, ifnull(groups.enabled,1) as groupsenabled, tickets.id, users.id from tickets join users on tickets.user_id=users.id left join groups on users.\"group\"=groups.id where ticket_uuid=?";
int res = sqlite3_prepare(auth_db, ss.str().c_str(), -1, &statement, NULL);
assert(res==SQLITE_OK);
sqlite3_bind_text(statement, 1, ticket_uuid.c_str(), ticket_uuid.size(), 0);
// Query database.
Ticket tret;
tret.ticket_uuid=ticket_uuid;
int valid=0;
int enabled=0;
int groupsenabled=0;
int ret = sqlite3_step(statement);
if(ret==SQLITE_ROW) {
valid=sqlite3_column_int(statement, 0);
enabled=sqlite3_column_int(statement, 1);
groupsenabled=sqlite3_column_int(statement, 2);
tret.ticket_id=sqlite3_column_int(statement, 3);
tret.user_id=sqlite3_column_int(statement, 4);
}
sqlite3_finalize(statement);
tret.valid = (valid==1 && enabled==1 && groupsenabled==1);
return tret;
}
int Snoop::store_ticket(std::string ticket_uuid, int user_id, bool valid)
{
assert(auth_db!=0);
std::ostringstream ss;
sqlite3_stmt *statement=0;
ss << "insert into tickets (user_id, ticket_uuid, valid) values (?, ?, ?)";
int res = sqlite3_prepare(auth_db, ss.str().c_str(), -1, &statement, NULL);
if(res!=SQLITE_OK)
throw std::logic_error("Snoop::store_ticket: sqlite3_prepare failed error "+std::to_string(res));
sqlite3_bind_int(statement, 1, user_id);
sqlite3_bind_text(statement, 2, ticket_uuid.c_str(), ticket_uuid.size(), 0);
sqlite3_bind_int(statement, 3, valid?1:0);
res = sqlite3_step(statement);
if(res!=SQLITE_DONE)
throw std::logic_error("Snoop::store_ticket: sqlite3_step failed error "+std::to_string(res));
sqlite3_finalize(statement);
return sqlite3_last_insert_rowid(auth_db);
}
bool Snoop::store_app_entry(Snoop::AppEntry& app)
{
assert(db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
return store_app_entry_without_lock(app);
}
bool Snoop::store_app_entry_without_lock(Snoop::AppEntry& app)
{
// Do we already have a record with this uuid?
sqlite3_stmt *testq=0;
int testq_res = sqlite3_prepare(db, "select count(*) from runs where uuid=?", -1, &testq, NULL);
if(testq_res!=SQLITE_OK)
throw std::logic_error("Snoop::store_app_entry_without_lock: failed to test for row presence");
sqlite3_bind_text(testq, 1, app.uuid.c_str(), app.uuid.size(), 0);
sqlite3_step(testq);
int64_t num = sqlite3_column_int64(testq, 0);
sqlite3_finalize(testq);
if(num>0)
return false;
// No entry yet, we need to store it.
sqlite3_stmt *statement=0;
int res = sqlite3_prepare(db, "insert into runs (uuid, create_millis, receive_millis, pid, ip_address, machine_id, "
"app_name, app_version, user_id, server_status, create_timezone) "
"values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
-1, &statement, NULL);
if(res==SQLITE_OK) {
sqlite3_bind_text(statement, 1, app.uuid.c_str(), app.uuid.size(), 0);
sqlite3_bind_int64(statement, 2, app.create_millis);
sqlite3_bind_int64(statement, 3, app.receive_millis);
sqlite3_bind_int64(statement, 4, app.pid);
sqlite3_bind_text(statement, 5, app.ip_address.c_str(), app.ip_address.size(), 0);
sqlite3_bind_text(statement, 6, app.machine_id.c_str(), app.machine_id.size(), 0);
sqlite3_bind_text(statement, 7, app.app_name.c_str(), app.app_name.size(), 0);
sqlite3_bind_text(statement, 8, app.app_version.c_str(), app.app_version.size(), 0);
sqlite3_bind_text(statement, 9, app.user_id.c_str(), app.user_id.size(), 0);
sqlite3_bind_int(statement, 10, app.server_status);
sqlite3_bind_text(statement, 11, app.uuid.c_str(), app.uuid.size(), 0);
sqlite3_bind_int(statement, 12, app.create_timezone);
sqlite3_step(statement);
sqlite3_finalize(statement);
app.id = sqlite3_last_insert_rowid(db);
return true;
}
else {
throw std::logic_error("Failed to prepare insertion");
}
}
bool Snoop::store_log_entry(Snoop::LogEntry& log_entry, bool avoid_server_duplicates)
{
assert(db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
if(avoid_server_duplicates) {
// Do we already have a record with this client_log_id and id?
sqlite3_stmt *testq=0;
int testq_res = sqlite3_prepare(db, "select count(*) from logs where client_log_id=? and id=? and client_log_id!=-1", -1, &testq, NULL);
if(testq_res!=SQLITE_OK)
throw std::logic_error("Snoop::store_log_entry_without_lock: failed to test for row presence");
sqlite3_bind_int64(testq, 1, log_entry.client_log_id);
sqlite3_bind_int64(testq, 2, log_entry.id);
sqlite3_step(testq);
int64_t num = sqlite3_column_int64(testq, 0);
sqlite3_finalize(testq);
if(num>0)
return false;
}
// Need to store this entry.
auto duration = std::chrono::system_clock::now().time_since_epoch();
log_entry.receive_millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
int res=SQLITE_OK;
if(insert_statement==0) {
res=sqlite3_prepare_v2(db, "insert into logs "
"(client_log_id, id, create_millis, receive_millis, loc_file, loc_line, loc_method, "
" type, message, server_status, session_uuid, create_timezone) "
"values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)",
-1, &insert_statement, NULL);
}
if(res==SQLITE_OK ) {
sqlite3_bind_int(insert_statement, 1, log_entry.client_log_id);
sqlite3_bind_int(insert_statement, 2, log_entry.id);
sqlite3_bind_int64(insert_statement, 3, log_entry.create_millis);
sqlite3_bind_int64(insert_statement, 4, log_entry.receive_millis);
sqlite3_bind_text(insert_statement, 5, log_entry.loc_file.c_str(), log_entry.loc_file.size(), 0);
sqlite3_bind_int(insert_statement, 6, log_entry.loc_line);
sqlite3_bind_text(insert_statement, 7, log_entry.loc_method.c_str(), log_entry.loc_method.size(), 0);
sqlite3_bind_text(insert_statement, 8, log_entry.type.c_str(), log_entry.type.size(), 0);
sqlite3_bind_text(insert_statement, 9, log_entry.message.c_str(), log_entry.message.size(), 0);
sqlite3_bind_int(insert_statement, 10, log_entry.server_status);
sqlite3_bind_text(insert_statement, 11, log_entry.session_uuid.c_str(), log_entry.session_uuid.size(), 0);
sqlite3_bind_int(insert_statement, 12, log_entry.create_timezone);
sqlite3_step(insert_statement);
log_entry.log_id = sqlite3_last_insert_rowid(db);
sqlite3_reset(insert_statement);
return true;
}
else {
throw std::logic_error("Failed to insert log entry");
}
}
bool Snoop::store_auth_attempt_entry(int user_id, int ticket_id, int valid, std::string msg)
{
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
sqlite3_stmt *statement=0;
int res = sqlite3_prepare(auth_db, "insert into auth_attempts (time_millis, user_id, ticket_id, success, msg) "
"values (?, ?, ?, ?, ?)",
-1, &statement, NULL);
auto duration = std::chrono::system_clock::now().time_since_epoch();
uint64_t time_millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
if(res==SQLITE_OK) {
sqlite3_bind_int64(statement, 1, time_millis);
sqlite3_bind_int(statement, 2, user_id);
sqlite3_bind_int(statement, 3, ticket_id);
sqlite3_bind_int(statement, 4, valid);
sqlite3_bind_text(statement, 5, msg.c_str(), msg.size(), 0);
sqlite3_step(statement);
sqlite3_finalize(statement);
return true;
}
else {
throw std::logic_error("Failed to prepare insertion for auth_attempts");
}
}
bool Snoop::store_payload_entry(Snoop::PayLoad& payload)
{
assert(payload_db!=0);
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Payload can be large, so we always first check if we have this entry already.
sqlite3_stmt *testq=0;
int testq_res = sqlite3_prepare(payload_db, "select count(*) from payload where client_payload_id=? and id=? and client_payload_id!=-1", -1, &testq, NULL);
if(testq_res!=SQLITE_OK)
throw std::logic_error("Snoop::store_payload_entry_without_lock: failed to test for row presence");
sqlite3_bind_int64(testq, 1, payload.client_payload_id);
sqlite3_bind_int64(testq, 2, payload.id);
sqlite3_step(testq);
int64_t num = sqlite3_column_int64(testq, 0);
sqlite3_finalize(testq);
if(num>0) {
SNOOPDEBUG( std::cerr << "Already have payload with client_payload_id=" << payload.client_payload_id << " and id=" << payload.id << std::endl; );
return false;
}
// Need to store this entry.
SNOOPDEBUG( std::cerr << "Storing payload entry" << std::endl; );
int res=SQLITE_OK;
if(payload_insert_statement==0) {
res=sqlite3_prepare_v2(payload_db, "insert into payload "
"(client_payload_id, id, create_millis, receive_millis, payload, server_status, create_timezone) "
"values (?, ?, ?, ?, ?, ?, ?)",
-1, &payload_insert_statement, NULL);
}
if(res==SQLITE_OK ) {
sqlite3_bind_int(payload_insert_statement, 1, payload.client_payload_id);
sqlite3_bind_int(payload_insert_statement, 2, payload.id);
sqlite3_bind_int64(payload_insert_statement, 3, payload.create_millis);
sqlite3_bind_int64(payload_insert_statement, 4, payload.receive_millis);
sqlite3_bind_text(payload_insert_statement, 5, payload.payload.c_str(), payload.payload.size(), 0);
sqlite3_bind_int(payload_insert_statement, 6, payload.server_status);
sqlite3_bind_int(payload_insert_statement, 7, payload.create_timezone);
sqlite3_step(payload_insert_statement);
payload.payload_id = sqlite3_last_insert_rowid(db);
sqlite3_reset(payload_insert_statement);
return true;
}
else {
throw std::logic_error("Failed to insert payload entry");
}
}
void Snoop::start_websocket_client()
{
SNOOPDEBUG( std::cerr << "Snoop: attempting open" << std::endl; );
{ std::unique_lock<std::mutex> lock(connection_mutex);
connection_attempt_failed=false;
//std::cerr << "Snoop: attempting open" << std::endl;
}
SNOOPDEBUG( std::cerr << "Snoop: got connection_mutex" << std::endl; );
using websocketpp::lib::bind;
wsclient.clear_access_channels(websocketpp::log::alevel::all);
wsclient.clear_error_channels(websocketpp::log::elevel::all);
wsclient.set_open_handler(bind(&Snoop::on_client_open, this, websocketpp::lib::placeholders::_1));
wsclient.set_fail_handler(bind(&Snoop::on_client_fail, this, websocketpp::lib::placeholders::_1));
wsclient.set_close_handler(bind(&Snoop::on_client_close, this, websocketpp::lib::placeholders::_1));
wsclient.set_message_handler(bind(&Snoop::on_client_message, this,
websocketpp::lib::placeholders::_1, websocketpp::lib::placeholders::_2));
#ifdef SNOOP_SSL
wsclient.set_tls_init_handler([this](websocketpp::connection_hdl){
return websocketpp::lib::make_shared<boost::asio::ssl::context>(boost::asio::ssl::context::tlsv1);
});
#endif
wsclient.init_asio();
wsclient.start_perpetual();
std::string uri = (secure?"wss://":"ws://")+server_;
SNOOPDEBUG( std::cerr << "Snoop: uri = " << uri << std::endl; );
websocketpp::lib::error_code ec;
connection = wsclient.get_connection(uri, ec);
if (ec) {
SNOOPDEBUG( std::cerr << "Snoop: websocket connection error " << ec.message() << std::endl; );
return;
}
// All of the code below will run, independent of whether the
// connection succeeds. Failure is reported in on_fail, not
// through return codes of these methods (as all is async).
our_connection_hdl = connection->get_handle();
wsclient.connect(connection);
// need to start client immediately now
wsclient_thread=std::thread([this]{ wsclient.run(); });
}
void Snoop::sync_with_server(bool from_wsthread)
{
assert(server_.size()>0);
if(!from_wsthread)
if(!connection_is_open)
return;
sync_runs_with_server(from_wsthread);
sync_logs_with_server(from_wsthread);
sync_payloads_with_server(from_wsthread);
}
void Snoop::sync_runs_with_server(bool from_wsthread)
{
if(!from_wsthread)
if(!connection_is_open)
return;
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Create a JSON text with all locally stored entries which have
// a server_status field negative or zero.
sqlite3_stmt *statement=0;
std::ostringstream ssc;
std::ostringstream pack;
pack << "{ \"run\": [";
ssc << "select id, uuid, create_millis, receive_millis, pid, ip_address, machine_id, app_name, app_version, user_id, server_status, create_timezone "
<< "from runs where server_status=0";
int sres = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
bool first=true;
bool go=true;
while(go) {
int ret = sqlite3_step(statement);
switch(ret) {
case SQLITE_BUSY:
throw std::logic_error("Unexpected SQLITE_BUSY in sync_runs_with_server");
break;
case SQLITE_ROW: {
Snoop::AppEntry ae;
// FIXME: isolate this in a separate function so we can fetch individual records more easily
ae.id = sqlite3_column_int(statement, 0);
ae.uuid = safestring(sqlite3_column_text(statement, 1));
ae.create_millis = sqlite3_column_int64(statement, 2);
ae.receive_millis = sqlite3_column_int64(statement, 3);
ae.pid = sqlite3_column_int(statement, 4);
ae.ip_address = safestring(sqlite3_column_text(statement, 5));
ae.machine_id = safestring(sqlite3_column_text(statement, 6));
ae.app_name = safestring(sqlite3_column_text(statement, 7));
ae.app_version = safestring(sqlite3_column_text(statement, 8));
ae.user_id = safestring(sqlite3_column_text(statement, 9));
ae.server_status = sqlite3_column_int(statement, 10);
ae.create_timezone = sqlite3_column_int(statement, 11);
if(!first) pack << ", \n";
else first=false;
pack << ae.to_json(false);
break;
}
case SQLITE_DONE: {
go=false;
break;
}
}
}
}
pack << "] }";
sqlite3_finalize(statement);
// Before we upload, decrease the server_status flag of all these
// rows to indicate that we have started an attempt to get the info
// to the server.
ssc.str("");
ssc << "update runs set server_status=server_status-1 where server_status=0";
sres = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
sqlite3_step(statement);
sqlite3_finalize(statement);
}
else {
sqlite3_finalize(statement);
return;
}
// Upload to the server.
wsclient.send(our_connection_hdl, pack.str(), websocketpp::frame::opcode::text);
}
void Snoop::sync_logs_with_server(bool from_wsthread)
{
if(!from_wsthread)
if(!connection_is_open)
return;
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Create a JSON text with all locally stored entries which have
// a server_status field negative or zero.
sqlite3_stmt *statement=0;
std::ostringstream ssc;
std::ostringstream pack;
pack << "{ \"log\": [";
ssc << "select log_id, client_log_id, id, create_millis, loc_file, loc_line, loc_method, type, message, server_status, session_uuid, create_timezone "
<< "from logs where server_status=0";
if(local_types.size()>0) {
ssc << " and type not in (";
bool first=true;
for(const auto& lt: local_types) {
if(first) first=false;
else ssc << ", ";
// FIXME: sql injection!
ssc << "'" << lt << "'";
}
ssc << ")";
}
int sres = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
bool first=true;
bool go=true;
while(go) {
int ret = sqlite3_step(statement);
switch(ret) {
case SQLITE_BUSY:
throw std::logic_error("Unexpected SQLITE_BUSY in sync_runs_with_server");
break;
case SQLITE_ROW: {
Snoop::LogEntry le;
le.log_id = sqlite3_column_int(statement, 0);
le.client_log_id = sqlite3_column_int(statement, 1);
le.id = sqlite3_column_int(statement, 2);
le.uuid = this_app_.uuid; // FIXME: this is wrong, we may still have log entries from a previous run!
// See 'sync_payload_with_server' in Snoop.java for the query to handle this properly.
le.create_millis = sqlite3_column_int64(statement, 3);
le.loc_file = safestring(sqlite3_column_text(statement, 4));
le.loc_line = sqlite3_column_int(statement, 5);
le.loc_method = safestring(sqlite3_column_text(statement, 6));
le.type = safestring(sqlite3_column_text(statement, 7));
le.message = safestring(sqlite3_column_text(statement, 8));
le.server_status = sqlite3_column_int(statement, 9);
le.session_uuid = safestring(sqlite3_column_text(statement, 10));
le.create_timezone = sqlite3_column_int(statement, 11);
if(!first) pack << ", \n";
else first=false;
pack << le.to_json(false);
break;
}
case SQLITE_DONE: {
go=false;
break;
}
}
}
}
pack << "] }";
sqlite3_finalize(statement);
// Before we upload, decrease the server_status flag of all these
// rows to indicate that we have started an attempt to get the info
// to the server.
ssc.str("");
ssc << "update logs set server_status=server_status-1 where server_status=0";
sres = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
sqlite3_step(statement);
sqlite3_finalize(statement);
}
else {
sqlite3_finalize(statement);
return;
}
// Upload to the server.
SNOOPDEBUG( std::cerr << "Snoop::sync_logs_with_server: " << pack.str() << std::endl; )
wsclient.send(our_connection_hdl, pack.str(), websocketpp::frame::opcode::text);
}
bool Snoop::is_connected() const
{
return connection_is_open;
}
void Snoop::sync_payloads_with_server(bool from_wsthread)
{
if(!from_wsthread)
if(!connection_is_open)
return;
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
// Create a JSON text with all locally stored entries which have
// a server_status field negative or zero.
// std::cerr << "Syncing payloads" << std::endl;
sqlite3_stmt *statement=0;
std::ostringstream ssc;
std::ostringstream pack;
pack << "{ \"payload\": [";
ssc << "select payload_id, client_payload_id, id, create_millis, payload, server_status, create_timezone "
<< "from payload where server_status=0";
int sres = sqlite3_prepare(payload_db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
bool first=true;
bool go=true;
while(go) {
int ret = sqlite3_step(statement);
switch(ret) {
case SQLITE_BUSY:
throw std::logic_error("Unexpected SQLITE_BUSY in sync_payloads_with_server");
break;
case SQLITE_ROW: {
Snoop::PayLoad payload;
payload.uuid = this_app_.uuid; // FIXME: this is wrong, we may still have log entries from a previous run!
payload.payload_id = sqlite3_column_int(statement, 0);
payload.client_payload_id= sqlite3_column_int(statement, 1);
payload.id = sqlite3_column_int(statement, 2);
payload.create_millis = sqlite3_column_int64(statement, 3);
payload.payload = safestring(sqlite3_column_text(statement, 4));
payload.server_status = sqlite3_column_int(statement, 5);
payload.create_timezone = sqlite3_column_int(statement, 6);
if(!first) pack << ", \n";
else first=false;
pack << payload.to_json(false);
break;
}
case SQLITE_DONE: {
go=false;
break;
}
}
}
}
else {
throw std::logic_error("Failed to prepare statement for payload select");
}
pack << "] }";
sqlite3_finalize(statement);
// Before we upload, decrease the server_status flag of all these
// rows to indicate that we have started an attempt to get the info
// to the server.
ssc.str("");
ssc << "update payload set server_status=server_status-1 where server_status=0";
sres = sqlite3_prepare(payload_db, ssc.str().c_str(), -1, &statement, NULL);
if(sres==SQLITE_OK) {
sqlite3_step(statement);
sqlite3_finalize(statement);
}
else {
sqlite3_finalize(statement);
return;
}
// std::cerr << "Syncing payloads almost done" << std::endl;
// Upload to the server.
wsclient.send(our_connection_hdl, pack.str(), websocketpp::frame::opcode::text);
}
std::vector<Snoop::AppEntry> Snoop::get_app_registrations(std::string uuid_filter)
{
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
sqlite3_stmt *statement=0;
std::ostringstream ssc;
ssc << "select id, uuid, create_millis, receive_millis, pid, ip_address, machine_id, "
"app_name, app_version, user_id, server_status, create_timezone from runs";
if(uuid_filter.size()>0)
ssc << " where uuid=?";
int sres = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(uuid_filter.size()>0)
sqlite3_bind_text(statement, 1, uuid_filter.c_str(), uuid_filter.size(), 0);
std::vector<Snoop::AppEntry> entries;
if(sres==SQLITE_OK) {
bool go=true;
while(go) {
int ret = sqlite3_step(statement);
switch(ret) {
case SQLITE_ROW: {
Snoop::AppEntry ae;
ae.id = sqlite3_column_int(statement, 0);
ae.uuid = safestring(sqlite3_column_text(statement, 1));
ae.create_millis = sqlite3_column_int64(statement, 2);
ae.receive_millis = sqlite3_column_int64(statement, 3);
ae.pid = sqlite3_column_int(statement, 4);
ae.ip_address = safestring(sqlite3_column_text(statement, 5));
ae.machine_id = safestring(sqlite3_column_text(statement, 6));
ae.app_name = safestring(sqlite3_column_text(statement, 7));
ae.app_version = safestring(sqlite3_column_text(statement, 8));
ae.user_id = safestring(sqlite3_column_text(statement, 9));
ae.server_status = sqlite3_column_int(statement, 10);
ae.create_timezone = sqlite3_column_int(statement, 11);
entries.push_back(ae);
break;
}
case SQLITE_DONE: {
go=false;
break;
}
}
}
}
else throw std::logic_error("Failed to prepare statement for get_app_registrations");
sqlite3_finalize(statement);
return entries;
}
void Snoop::on_client_open(websocketpp::connection_hdl)
{
// std::cerr << "Snoop: connection to " << server_ << " open " << std::this_thread::get_id() << std::endl;
sync_with_server(true);
std::unique_lock<std::mutex> lock(connection_mutex);
connection_is_open=true;
connection_attempt_failed=false;
connection_cv.notify_all();
//std::cerr << "Snoop: connection open" << std::endl;
}
void Snoop::on_client_fail(websocketpp::connection_hdl)
{
// Clients may be waiting for the connection to open, but we may
// never get to that stage. Signal them to move on.
std::unique_lock<std::mutex> lock(connection_mutex);
connection_attempt_failed=true;
connection_cv.notify_all();
// std::cerr << "Snoop: connection failed" << std::endl;
}
void Snoop::on_client_close(websocketpp::connection_hdl)
{
// Clients may be waiting for the connection to open, but we may
// never get to that stage. Signal them to move on.
std::unique_lock<std::mutex> lock(connection_mutex);
connection_is_open=false;
connection_attempt_failed=true;
connection_cv.notify_all();
// std::cerr << "Snoop: connection closed" << std::endl;
}
void Snoop::on_client_message(websocketpp::connection_hdl, WebsocketClient::message_ptr msg)
{
nlohmann::json root;
// std::cerr << msg->get_payload() << std::endl;
try {
root=nlohmann::json::parse(msg->get_payload());
}
catch(nlohmann::json::exception& ex) {
SNOOPDEBUG( std::cerr << "Snoop::on_client_message: Cannot parse LogEntry from JSON: " << ex.what() << std::endl; );
return;
}
// Determine what type of message this is, and take corresponding action.
std::lock_guard<std::recursive_mutex> lock(sqlite_mutex);
try {
if(root.count("log_stored")>0) {
// Mark all log entries for which we have received confirmation from the
// server that they have been stored with 'server_status=1', to prevent
// us from re-uploading them again.
sqlite3_exec(db, "BEGIN TRANSACTION", NULL, NULL, NULL);
sqlite3_stmt *statement=0;
std::ostringstream ssc;
ssc << "update logs set server_status=1 where log_id=?";
int ret = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(ret!=SQLITE_OK)
throw std::logic_error("Failed to prepare statement for on_client_message");
const auto& entries=root["log_stored"];
for(auto entry: entries) {
sqlite3_bind_int(statement, 1, entry.get<int>() );
sqlite3_step(statement);
sqlite3_reset(statement);
}
sqlite3_finalize(statement);
sqlite3_exec(db, "END TRANSACTION", NULL, NULL, NULL);
}
if(root.count("app_stored")>0) {
// Mark all app entries for which we have received confirmation from the
// server that they have been stored with 'server_status=1', to prevent
// us from re-uploading them again.
sqlite3_exec(db, "BEGIN TRANSACTION", NULL, NULL, NULL);
sqlite3_stmt *statement=0;
std::ostringstream ssc;
ssc << "update runs set server_status=1 where id=?";
int ret = sqlite3_prepare(db, ssc.str().c_str(), -1, &statement, NULL);
if(ret!=SQLITE_OK)
throw std::logic_error("Failed to prepare statement for on_client_message");
const auto& entries=root["app_stored"];
for(auto entry: entries) {
sqlite3_bind_int(statement, 1, entry.get<int>());
sqlite3_step(statement);
sqlite3_reset(statement);
}
sqlite3_finalize(statement);
sqlite3_exec(db, "END TRANSACTION", NULL, NULL, NULL);
}
if(root.count("payload_stored")>0) {
// Mark all payload entries for which we have received confirmation from the
// server that they have been stored with 'server_status=1', to prevent
// us from re-uploading them again.
sqlite3_exec(payload_db, "BEGIN TRANSACTION", NULL, NULL, NULL);
sqlite3_stmt *statement=0;
std::ostringstream ssc;
ssc << "update payload set server_status=1 where id=?";
int ret = sqlite3_prepare(payload_db, ssc.str().c_str(), -1, &statement, NULL);
if(ret!=SQLITE_OK)
throw std::logic_error("Failed to prepare statement for on_client_message");
const auto& entries=root["payload_stored"];
for(auto entry: entries) {
sqlite3_bind_int(statement, 1, entry.get<int>());
sqlite3_step(statement);
sqlite3_reset(statement);
}
sqlite3_finalize(statement);
sqlite3_exec(payload_db, "END TRANSACTION", NULL, NULL, NULL);
}
if(root.count("authenticate")>0) {
SNOOPDEBUG( std::cerr << "Received authentication response message from server." << std::endl; );
const auto& auth=root["authenticate"];
std::string ticket_uuid = auth.value("ticket_uuid", "");
bool valid = auth.value("valid", false);
if(valid)
set_local_ticket(ticket_uuid);
else
set_local_ticket("");
authentication_callback(ticket_uuid, valid);
}
}
catch(nlohmann::json::exception& ex) {
SNOOPDEBUG( std::cerr << "Discarding message, JSON malformed: " << ex.what() << std::endl; );
}
}
Snoop::~Snoop()
{
// If a program runs for only a very short time, the connection to the logging
// server may not be open yet when we reach this destructor. In that case,
// we will want to wait for the connection to open, so that we can do a final
// sync before we terminate.
// However, if the connection was attempted but failed (e.g. no server), we
// can skip all that.
// std::cerr << "|" << this_app_.app_name << "|" << std::endl;
std::unique_lock<std::mutex> lock(connection_mutex);
// std::cerr << "unlocked" << std::endl;
if(this_app_.app_name!="" && this_app_.app_name!="SnoopServer") {
if(connection_is_open==false && connection_attempt_failed==false) {
connection_cv.wait(lock);
}
sync_with_server();
if(db!=0) { // If the database is not open the wsclient won't be running either
wsclient.stop();
wsclient_thread.join();
}
}
if(insert_statement!=0) {
sqlite3_finalize(insert_statement);
}
if(id_for_uuid_statement!=0) {
sqlite3_finalize(id_for_uuid_statement);
}
if(db!=0) {
sqlite3_close(db);
db=0;
}
if(payload_db!=0) {
sqlite3_close(payload_db);
payload_db=0;
}
}
void Snoop::set_local_type(const std::string& t)
{
local_types.insert(t);
}
Snoop& Snoop::operator()(const std::string& type, std::string fl, int loc, std::string method)
{
std::lock_guard<std::recursive_mutex> lock(call_mutex);
assert(this_app_.app_name.size()>0);
if(type!="")
this_log_.type=type;
this_log_.loc_file=fl;
this_log_.loc_line=loc;
this_log_.loc_method=method;
return *this;
}
Snoop& Snoop::operator<<(const Flush&)
{
// SNOOPDEBUG(std::cerr << "================= Flush" << std::endl;)
std::lock_guard<std::recursive_mutex> lock(call_mutex);
assert(this_app_.app_name.size()>0);
// Fill in the remaining fields of the LogEntry to be stored/sent.
auto duration = std::chrono::system_clock::now().time_since_epoch();
auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
this_log_.create_millis = millis;
this_log_.create_timezone = local_utc_offset_minutes();
this_log_.message = out_.str();
this_log_.server_status = 0;
store_log_entry(this_log_, false);
if(sync_immediately_)
sync_logs_with_server();
out_.str("");
this_log_.loc_file="";
this_log_.loc_line=-1;
this_log_.loc_method="";
this_log_.type="";
this_log_.message="";
return *this;
}
Snoop& Snoop::payload(const std::vector<char>& data)
{
std::lock_guard<std::recursive_mutex> lock(call_mutex);
assert(this_app_.app_name.size()>0);
// Fill in the remaining fields of the PayLoad to be stored/sent.
Snoop::PayLoad pl(data);
auto duration = std::chrono::system_clock::now().time_since_epoch();
auto millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
pl.create_millis = millis;
pl.create_timezone = local_utc_offset_minutes();
pl.server_status = 0;
store_payload_entry(pl);
sync_payloads_with_server();
return *this;
}
Snoop::LogEntry::LogEntry()
: log_id(0), client_log_id(0), id(0), create_millis(0), receive_millis(0), loc_line(0), server_status(0), create_timezone(-1)
{
}
Snoop::LogEntry::LogEntry(int log_id_, int client_log_id_, int c1, const std::string& c1b,
uint64_t c2, uint64_t c2b, const std::string& c3, int c4, const std::string& c5,
const std::string& c6, const std::string& c7, int c8, const std::string& c9, int create_timezone_)
: log_id(log_id_), client_log_id(client_log_id_), id(c1), uuid(c1b),
create_millis(c2), receive_millis(c2b), loc_file(c3), loc_line(c4), loc_method(c5),
type(c6), message(c7), server_status(c8), session_uuid(c9), create_timezone(create_timezone_)
{
}
std::string Snoop::LogEntry::to_json(bool human_readable) const
{
nlohmann::json json;
json["log_id"]=log_id;
json["client_log_id"]=client_log_id;
json["id"]=id;
json["uuid"]=uuid;
if(human_readable) {
time_t tt = std::chrono::system_clock::to_time_t(u64_to_time(create_millis));
tm utc_tm = *localtime(&tt);
std::ostringstream str;
str << std::setfill('0')
<< std::setw(2) << utc_tm.tm_hour << ":"
<< std::setw(2) << utc_tm.tm_min << ":"
<< std::setw(2) << utc_tm.tm_sec;
json["time"]=str.str();
str.str("");
str << std::setw(2) << utc_tm.tm_mday << "/"
<< std::setw(2) << utc_tm.tm_mon+1 << "/"
<< std::setw(4) << utc_tm.tm_year+1900;
json["date"]=str.str();
}
json["create_millis"]=create_millis;
json["create_timezone"]=create_timezone;
json["receive_millis"]=receive_millis;
json["loc_file"]=loc_file;
json["loc_line"]=loc_line;
json["loc_method"]=loc_method;
json["type"]=type;
json["message"]=message;
json["server_status"]=server_status;
json["session_uuid"]=session_uuid;
std::ostringstream str;
str << json;
// SNOOPDEBUG( std::cerr << "Snoop::LogEntry::to_json: " << str.str() << std::endl; )
return str.str();
}
Snoop::AppEntry::AppEntry()
: id(0), create_millis(0), receive_millis(0), pid(0), server_status(0), connected(false), create_timezone(-1)
{
}
Snoop::AppEntry::AppEntry(const std::string& uuid_, uint64_t create_millis_, uint64_t receive_millis_, uint64_t pid_,
const std::string& ip_address_, const std::string& machine_id_,
const std::string& app_name_, const std::string& app_version_,
const std::string& user_id_,
int server_status_, int create_timezone_)
: uuid(uuid_), create_millis(create_millis_), receive_millis(receive_millis_), pid(pid_), ip_address(ip_address_),
machine_id(machine_id_), app_name(app_name_), app_version(app_version_),
user_id(user_id_), server_status(server_status_), create_timezone(create_timezone_)
{
}
std::string Snoop::AppEntry::to_json(bool human_readable) const
{
std::ostringstream str;
str << "{ \"id\": " << id
<< ", \"uuid\": \"" << uuid << "\"";
if(human_readable) {
time_t tt = std::chrono::system_clock::to_time_t(u64_to_time(create_millis));
tm utc_tm = *localtime(&tt);
str << ", \"time\": \""
<< std::setfill('0')
<< std::setw(2) << utc_tm.tm_hour << ":"
<< std::setw(2) << utc_tm.tm_min << ":"
<< std::setw(2) << utc_tm.tm_sec << "\""
<< ", \"date\": \""
<< std::setw(2) << utc_tm.tm_mday << "/"
<< std::setw(2) << utc_tm.tm_mon+1 << "/"
<< std::setw(4) << utc_tm.tm_year+1900
<< "\"";
}
str << ", \"create_millis\": " << create_millis
<< ", \"create_timezone\": " << create_timezone
<< ", \"receive_millis\": " << receive_millis
<< ", \"pid\": " << pid
<< ", \"ip_address\": \"" << ip_address << "\""
<< ", \"machine_id\": \"" << machine_id << "\""
<< ", \"app_name\": \"" << app_name << "\""
<< ", \"app_version\": \"" << app_version << "\""
<< ", \"user_id\": \"" << user_id << "\""
<< ", \"server_status\": " << server_status
<< ", \"connected\": " << connected
<< "}";
return str.str();
}
Snoop::PayLoad::PayLoad()
{
client_payload_id=-1;
auto duration = std::chrono::system_clock::now().time_since_epoch();
receive_millis = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
}
Snoop::PayLoad::PayLoad(const std::vector<char>& data)
: PayLoad()
{
payload=snoop_base64_encode(reinterpret_cast<const unsigned char*>(data.data()), data.size());
}
std::string Snoop::PayLoad::to_json(bool) const
{
nlohmann::json json;
json["payload_id"]=payload_id;
json["id"]=id;
json["create_millis"]=create_millis;
json["create_timezone"]=create_timezone;
json["receive_millis"]=receive_millis;
json["payload"]=payload;
json["server_status"]=server_status;
json["uuid"]=uuid;
std::ostringstream str;
str << json;
return str.str();
}
void Snoop::LogEntry::from_json(const nlohmann::json& entry)
{
try {
log_id = entry["log_id"].get<int>();
id = entry["id"].get<int>();
uuid = entry["uuid"].get<std::string>();
create_millis = entry["create_millis"].get<uint64_t>();
loc_file = entry["loc_file"].get<std::string>();
loc_line = entry["loc_line"].get<int>();
loc_method = entry["loc_method"].get<std::string>();
type = entry["type"].get<std::string>();
message = entry["message"].get<std::string>();
server_status = entry["server_status"].get<int>();
session_uuid = entry.value("session_uuid", "");
create_timezone = entry.value("create_timezone", -1);
}
catch(nlohmann::json::exception& ex) {
SNOOPDEBUG( std::cerr << "Snoop::LogEntry::from_json: " << ex.what() << std::endl; );
}
}
void Snoop::AppEntry::from_json(const nlohmann::json& entry)
{
try {
id = entry["id"].get<int>();
uuid = entry["uuid"].get<std::string>();
create_millis = entry["create_millis"].get<uint64_t>();
pid = entry["pid"].get<uint64_t>();
ip_address = entry["ip_address"].get<std::string>();
machine_id = entry["machine_id"].get<std::string>();
app_name = entry["app_name"].get<std::string>();
app_version = entry["app_version"].get<std::string>();
user_id = entry["user_id"].get<std::string>();
server_status = entry["server_status"].get<int>();
create_timezone = entry.value("create_timezone", -1);
}
catch(nlohmann::json::exception& ex) {
SNOOPDEBUG( std::cerr << "Snoop::LogEntry::from_json: " << ex.what() << std::endl; );
}
}
void Snoop::PayLoad::from_json(const nlohmann::json& entry)
{
try {
payload_id = entry["payload_id"].get<int>();
id = entry["id"].get<int>();
create_millis = entry["create_millis"].get<uint64_t>();
payload = entry["payload"].get<std::string>();
server_status = entry["server_status"].get<int>();
create_timezone = entry.value("create_timezone", -1);
}
catch(nlohmann::json::exception& ex) {
SNOOPDEBUG( std::cerr << "Snoop::LogEntry::from_json: " << ex.what() << std::endl; );
}
}
static const std::string base64_chars =
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789+/";
static inline bool is_base64(unsigned char c) {
return (isalnum(c) || (c == '+') || (c == '/'));
}
std::string snoop_base64_encode(unsigned char const* bytes_to_encode, unsigned int in_len) {
std::string ret;
int i = 0;
int j = 0;
unsigned char char_array_3[3];
unsigned char char_array_4[4];
while (in_len--) {
char_array_3[i++] = *(bytes_to_encode++);
if (i == 3) {
char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
char_array_4[3] = char_array_3[2] & 0x3f;
for(i = 0; (i <4) ; i++)
ret += base64_chars[char_array_4[i]];
i = 0;
}
}
if (i)
{
for(j = i; j < 3; j++)
char_array_3[j] = '\0';
char_array_4[0] = (char_array_3[0] & 0xfc) >> 2;
char_array_4[1] = ((char_array_3[0] & 0x03) << 4) + ((char_array_3[1] & 0xf0) >> 4);
char_array_4[2] = ((char_array_3[1] & 0x0f) << 2) + ((char_array_3[2] & 0xc0) >> 6);
char_array_4[3] = char_array_3[2] & 0x3f;
for (j = 0; (j < i + 1); j++)
ret += base64_chars[char_array_4[j]];
while((i++ < 3))
ret += '=';
}
return ret;
}
std::string snoop_base64_decode(std::string const& encoded_string) {
int in_len = encoded_string.size();
int i = 0;
int j = 0;
int in_ = 0;
unsigned char char_array_4[4], char_array_3[3];
std::string ret;
while (in_len-- && ( encoded_string[in_] != '=') && is_base64(encoded_string[in_])) {
char_array_4[i++] = encoded_string[in_]; in_++;
if (i ==4) {
for (i = 0; i <4; i++)
char_array_4[i] = base64_chars.find(char_array_4[i]);
char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];
for (i = 0; (i < 3); i++)
ret += char_array_3[i];
i = 0;
}
}
if (i) {
for (j = i; j <4; j++)
char_array_4[j] = 0;
for (j = 0; j <4; j++)
char_array_4[j] = base64_chars.find(char_array_4[j]);
char_array_3[0] = (char_array_4[0] << 2) + ((char_array_4[1] & 0x30) >> 4);
char_array_3[1] = ((char_array_4[1] & 0xf) << 4) + ((char_array_4[2] & 0x3c) >> 2);
char_array_3[2] = ((char_array_4[2] & 0x3) << 6) + char_array_4[3];
for (j = 0; (j < i - 1); j++) ret += char_array_3[j];
}
return ret;
}
|