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
|
/* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
* License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Mobile Application Link.
*
* The Initial Developer of the Original Code is AvantGo, Inc.
* Portions created by AvantGo, Inc. are Copyright (C) 1997-1999
* AvantGo, Inc. All Rights Reserved.
*
* Contributor(s):
*/
#include <AGClientProcessor.h>
#include <AGUtil.h>
#include <AGProtocol.h>
#include <AGNet.h>
#include <AGDigest.h>
#include <AGProxy.h>
#include <AGProxyDebug.h>
#include <AGBase64.h>
typedef enum {
IDLE = 0,
CONNECT,
PING,
HELLO,
DEVICEINFO,
SEND_RECRS,
SENDING_EXTENSIONS,
GOODBYE,
SEND_HEADER,
SEND_BUFFER_LOGON,
GET_HEADER,
GET_MAGIC,
RECEIVING_CMDS,
PROCESSING_BUFFERED_CMDS,
PROBLEM
} AGProcessorState;
static void stateChangeToHELLO(AGClientProcessor *processor);
static void stateChangeToPING(AGClientProcessor *processor);
static void stateChangeToDEVICEINFO(AGClientProcessor *processor);
static void stateChangeToRECRS(AGClientProcessor *processor);
static void processRECRS(AGClientProcessor *processor);
static void stateChangeToEXTENSION(AGClientProcessor *processor);
static void processExtensions(AGClientProcessor *processor);
static void stateChangeToGOODBYE(AGClientProcessor *processor);
static void stateChangeToSENDHEADER(AGClientProcessor *processor);
static void stateChangeToGETHEADER(AGClientProcessor *processor);
static void stateChangeToSENDBUFFERLOGON(AGClientProcessor *processor);
static void stateChangeToRECEIVING(AGClientProcessor *processor);
static void stateChangeToHELLOForReal(AGClientProcessor *processor);
static void stateChangeToPROCESSCMD(AGClientProcessor *processor);
static int32 processCMDS(AGClientProcessor *processor);
static void stateChangeToMAGIC(AGClientProcessor *processor);
static void cleanUpLogonMemory(AGClientProcessor *processor);
static int32 processCommand(AGClientProcessor *processor);
static int32 writeToLogonBuffer(void *out, AGNetCtx *ctx, AGSocket *socket,
uint8 *buffer, int32 bytesToSend, AGBool block);
static void sendBuffer(AGClientProcessor *processor);
static int32 processNotComplete(AGClientProcessor *processor,
int32 rc, int32 maxRetries,
int32 retryFailStringId);
static void syncComplete(AGClientProcessor *processor);
#ifdef _WIN32
static int32 queueCommand(AGClientProcessor *processor);
#endif // #ifdef _WIN32
/*---------------------------------------------------------------------------*/
ExportFunc
AGClientProcessor *AGClientProcessorNew(AGServerConfig *serverInfo,
AGDeviceInfo *deviceInfo,
AGLocationConfig *lc,
AGPlatformCalls *platformCalls,
AGBool bufferCommands,
AGNetCtx *netctx)
{
AGClientProcessor *processor;
processor = (AGClientProcessor *)malloc(sizeof(AGClientProcessor));
if(processor != NULL)
AGClientProcessorInit(processor,
serverInfo,
deviceInfo,
lc,
platformCalls,
bufferCommands,
netctx);
return processor;
}
ExportFunc
AGClientProcessor *AGClientProcessorInit(AGClientProcessor *processor,
AGServerConfig *serverInfo,
AGDeviceInfo *deviceInfo,
AGLocationConfig *lc,
AGPlatformCalls *platformCalls,
AGBool bufferCommands,
AGNetCtx *netctx)
{
char *proxyServer = NULL, *socksServer = NULL;
int16 proxyPort = 0, socksPort = 0;
memset(processor, 0, sizeof(AGClientProcessor));
processor->state = IDLE;
processor->serverInfo = serverInfo;
processor->deviceInfo = deviceInfo;
if (lc) {
AGBool excludeProxy = FALSE;
excludeProxy = AGProxyCheckExclusionArray(lc->exclusionServers,
serverInfo->serverName);
if(!excludeProxy && lc->HTTPUseProxy && lc->HTTPName && lc->HTTPPort) {
proxyServer = lc->HTTPName;
proxyPort = lc->HTTPPort;
}
if (!excludeProxy && lc->SOCKSUseProxy && lc->SOCKSName && lc->SOCKSPort) {
socksServer = lc->SOCKSName;
socksPort = lc->SOCKSPort;
}
processor->lc = lc;
}
processor->platformCalls = platformCalls;
AGSyncProcessorInit(&processor->syncProcessor,
serverInfo->serverName,
serverInfo->serverPort,
NULL, NULL,
proxyServer, proxyPort,
socksServer, socksPort,
netctx);
/* Added for evil 401 proxies */
processor->syncProcessor.lc = lc;
processor->syncProcessor.cp = processor;
AGSyncProcessorSetTimeouts(&processor->syncProcessor,
processor->serverInfo->connectTimeout,
processor->serverInfo->writeTimeout,
processor->serverInfo->readTimeout);
AGBufferWriterInit(&processor->writer, 1024);
processor->writerInited = TRUE;
processor->bufferCommands = bufferCommands;
return processor;
}
ExportFunc void AGClientProcessorFinalize(AGClientProcessor *processor)
{
processor->state = IDLE;
cleanUpLogonMemory(processor);
AGSyncProcessorFinalize(&processor->syncProcessor);
#if defined(_WIN32) && !defined(_WIN32_WCE)
if(processor->logConnectionInfo)
proxyDebugCleanup(processor);
#endif
}
static void cleanUpLogonMemory(AGClientProcessor *processor)
{
if(processor->writeBuffer != NULL) {
free(processor->writeBuffer);
processor->writeBuffer = NULL;
}
if(processor->writerInited) {
AGBufferWriterFinalize(&processor->writer);
processor->writerInited = FALSE;
}
if(processor->serverCommandReader)
AGBufferReaderFree(processor->serverCommandReader);
processor->serverCommandReader = NULL;
if(processor->logonBufferWriter)
AGBufferWriterFree(processor->logonBufferWriter);
processor->logonBufferWriter = NULL;
}
ExportFunc void AGClientProcessorSetBufferServerCommands(
AGClientProcessor *processor,
AGBool buffer)
{
processor->bufferServerCommands = buffer;
}
ExportFunc void AGClientProcessorFree(AGClientProcessor *processor)
{
AGClientProcessorFinalize(processor);
free(processor);
}
ExportFunc void AGClientProcessorSync(AGClientProcessor *processor)
{
AGSyncProcessorConnect(&processor->syncProcessor);
processor->state = CONNECT;
processor->pingRequest = FALSE;
}
ExportFunc void AGClientProcessorPing(AGClientProcessor *processor)
{
AGSyncProcessorConnect(&processor->syncProcessor);
processor->state = CONNECT;
processor->pingRequest = TRUE;
}
ExportFunc int32 AGClientProcessorProcess(AGClientProcessor *processor)
{
int32 rc = AGCLIENT_IDLE;
int32 syncrc;
switch (processor->state) {
case IDLE:
rc = AGCLIENT_IDLE;
break;
case CONNECT:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
processor->calcBufferPass = TRUE;
rc = AGCLIENT_CONTINUE;
if(processor->pingRequest)
stateChangeToPING(processor);
else
stateChangeToHELLO(processor);
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case HELLO:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
if(processor->serverInfo->sendDeviceInfo)
stateChangeToDEVICEINFO(processor);
else
stateChangeToRECRS(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case PING:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
stateChangeToGOODBYE(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case DEVICEINFO:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
stateChangeToRECRS(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case SEND_RECRS:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
processRECRS(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case SENDING_EXTENSIONS:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
processExtensions(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
/*
GOODBYE is the last state that sends 'real' MAL commands.
There are two possiblies here.
If we are buffering commands, then this is the end of the sending
state, switch to the SENDHEADER state to send the HTTP headers and
push the buffer on along after it. Then switch to GET_HEADER to
look for the HTTP headers send from the server.
If we are NOT buffering and this is the calcBufferPass, we want to
send the content headers and then restart the state machine at HELLO,
this time really sending the commands.
If we are NOT buffering and we are not in calcBufferPass, we've actually
just finished sending the MAL commands to the server, switch to the
GET_HEADER state and look for the HTTP headers from the server.
*/
case GOODBYE:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
if(!processor->bufferCommands) {
if(processor->calcBufferPass) {
// In this state, none of the MAL commands have actually
// been sent, the writer functions were just counting
// bytes. Now we know how many bytes we're going to send,
// we can determine the proper content-length.
// This is going to send the HTTP headers,
// turns the calcBufferPass false, then call
// HELLO to actually send the MAL commands.
// This is the two-pass, non-buffered version
// it ends here in GOODBYE, with the calcBufferPass
// false, which switches to the GET_HEADER state.
stateChangeToSENDHEADER(processor);
} else {
// We've just completed the second pass of 'really' sending
// the MAL commands, and want to start receiving the
// HTTP header lines from the server
// Also note that this is almost exclusively called by the
// on device code, which does not have the space to buffer
// all the commands. So this and the state change in
// SEND_BUFFER_LOGON case goto the same place.
stateChangeToGETHEADER(processor);
}
} else {
// The MAL commands have been buffered into the processor
// so we know the content-length and we can just send the
// entire buffer of MAL commands to the server.
// This will send the HTTP headers, the buffer, and then
// switch into the GET_HEADER state.
stateChangeToSENDHEADER(processor);
}
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case SEND_HEADER:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
if(processor->bufferCommands)
stateChangeToSENDBUFFERLOGON(processor);
else
stateChangeToHELLOForReal(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case SEND_BUFFER_LOGON:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
stateChangeToGETHEADER(processor);
rc = AGCLIENT_CONTINUE;
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
/*
GET_HEADER is the beginning of the reading phase.
*/
case GET_HEADER:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
/*PENDING(klobad) if there is a problem where's the cleanup*/
if(processor->logonBufferWriter)
AGBufferWriterFree(processor->logonBufferWriter);
processor->logonBufferWriter = NULL;
stateChangeToMAGIC(processor);
rc = AGCLIENT_CONTINUE;
} else if (syncrc == AGSYNC_ERR || syncrc == AGSYNC_CONTINUE) {
/*PENDING(klobad) if there is a problem where's the cleanup*/
if(processor->logonBufferWriter)
AGBufferWriterFree(processor->logonBufferWriter);
processor->logonBufferWriter = NULL;
rc = processNotComplete(processor, syncrc, 0, 0);
} else { // YOU_PROXY_BASTARD
processor->state = CONNECT;
rc = AGCLIENT_CONTINUE;
}
break;
case GET_MAGIC:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
//PENDING(klobad) minor version checking??
if(processor->syncProcessor.magic
!= ((AG_PROTOCOL_MAGIC_HIGH << 8) | (AG_PROTOCOL_MAGIC_LOW))) {
processor->errStringId = AGMSGInvalidMagicStringId;
processor->state = PROBLEM;
rc = AGCLIENT_CONTINUE;
} else if(processor->syncProcessor.majorVersion
> AG_PROTOCOL_MAJOR_VERSION) {
processor->errStringId = AGMSGIncompatibleVersionStringId;
processor->state = PROBLEM;
rc = AGCLIENT_CONTINUE;
} else {
stateChangeToRECEIVING(processor);
rc = AGCLIENT_CONTINUE;
}
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
/*
RECEIVING_CMDS is NOT the beginning of the reading phase.
RECEIVING_CMDS is NOT the beginning of the reading phase.
*/
case RECEIVING_CMDS:
syncrc = AGSyncProcessorProcess(&processor->syncProcessor);
if(syncrc == AGSYNC_IDLE) {
#ifdef _WIN32
if(processor->threadHandle)
rc = queueCommand(processor);
else
#endif // #ifdef _WIN32
rc = processCommand(processor);
if(rc == AGCLIENT_ERR) {
/*PENDING(klobad) error processing command*/
processor->errStringId = AGMSGUnknownFailureStringId;
processor->state = PROBLEM;
rc = AGCLIENT_CONTINUE;
} else if(rc == AGCLIENT_CONTINUE) {
/* Tell the SyncProcessor to get the next command*/
AGSyncProcessorGetNextCommand(&processor->syncProcessor);
} else if(rc == AGCLIENT_IDLE) {
/* we're done processing commands*/
if(processor->bufferServerCommands) {
syncComplete(processor);
stateChangeToPROCESSCMD(processor);
rc = AGCLIENT_CONTINUE;
} else {
syncComplete(processor);
processor->state = IDLE;
}
}
} else {
rc = processNotComplete(processor, syncrc, 0, 0);
}
break;
case PROCESSING_BUFFERED_CMDS:
rc = processCMDS(processor);
if(rc == AGCLIENT_IDLE) {
syncComplete(processor);
processor->state = IDLE;
}
break;
case PROBLEM:
/* Whoever sets the state to PROBLEM,
should set the errStringId properly*/
syncComplete(processor);
rc = AGCLIENT_ERR;
break;
}
return rc;
}
/*---------------------------------------------------------------------------*/
static void syncComplete(AGClientProcessor *processor)
{
AGSyncProcessorDisconnect(&processor->syncProcessor);
processor->state = IDLE;
}
/*---------------------------------------------------------------------------*/
static int32 writeToLogonBuffer(void *out, AGNetCtx *ctx, AGSocket *socket,
uint8 *buffer,
int32 bytesToSend,
AGBool block)
{
return AGWriteBytes((AGWriter *)out, buffer, bytesToSend);
}
/*---------------------------------------------------------------------------*/
static void initMALConversation(AGClientProcessor *processor)
{
if(processor->bufferCommands) {
processor->logonBufferWriter = AGBufferWriterNew(1024);
AGSyncProcessorSetSendDataFunc(&processor->syncProcessor,
processor->logonBufferWriter,
writeToLogonBuffer);
} else {
if(processor->calcBufferPass) {
/* init the writer to just count bytes*/
processor->logonBufferWriter = AGBufferWriterNew(1024);
AGWriterInit((AGWriter *)processor->logonBufferWriter, NULL, NULL);
AGSyncProcessorSetSendDataFunc(&processor->syncProcessor,
processor->logonBufferWriter,
writeToLogonBuffer);
} else {
/* Let default AGSyncProcessor() sending happen*/
AGSyncProcessorSetSendDataFunc(&processor->syncProcessor,
NULL,
NULL);
}
}
AGBufferWriterReset(&processor->writer);
AGWriteMAGIC((AGWriter *)&processor->writer);
AGWriteMAJORVERSION((AGWriter *)&processor->writer, AG_PROTOCOL_MAJOR_VERSION);
AGWriteMINORVERSION((AGWriter *)&processor->writer, AG_PROTOCOL_MINOR_VERSION);
}
static void stateChangeToHELLO(AGClientProcessor *processor)
{
uint8 digestAuth[16];
AGServerConfig *sc = processor->serverInfo;
initMALConversation(processor);
/* If we were passed in a serverConfig that is requesting that
cookies be reset, then we're doing an online sync and should
handle that request right now rather than waiting for the
profile synchronization code on the desktop to handle it.
*/
if (sc->resetCookie) {
sc->resetCookie = FALSE;
AGDigestSetToNull(sc->nonce);
CHECKANDFREE(sc->sequenceCookie);
sc->sequenceCookieLength = 0;
}
bzero(digestAuth, 16);
if(AG_HASH_PASSWORD_NO == sc->hashPassword) {
char pwdbuf[16+1];
/* We should send up password in cleartext format.
Stick it in the digestAuth space. */
bzero(pwdbuf, 16+1);
if (NULL != sc->cleartextPassword
&& strlen(sc->cleartextPassword) > 0) {
char * decoded = NULL;
int32 len = 0;
decoded = (char*)AGBase64Decode(sc->cleartextPassword, &len);
strncpy(pwdbuf, decoded, 16);
free(decoded);
} else {
/* This signifies to the server that we're trying to send a
blank cleartext password. */
pwdbuf[15] = (char)0xff;
}
memcpy(digestAuth, pwdbuf, 16);
} else {
/* Create the digest of the username, password and nonce.
If the nonce is null, we will leave the digestAuth blank
(this is what happens if we're in the AG_HASH_PASSWORD_UNKNOWN
state) */
if (!AGDigestNull(sc->password) && !AGDigestNull(sc->nonce))
AGDigest(sc->userName, sc->password, sc->nonce, digestAuth);
}
AGWriteHELLO2((AGWriter *)&processor->writer,
processor->serverInfo->userName,
digestAuth,
sc->nonce,
(processor->deviceInfo)
? processor->deviceInfo->availableBytes : 0,
processor->serverInfo->sequenceCookieLength,
processor->serverInfo->sequenceCookie,
processor->serverInfo->uid);
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)AGBufferWriterGetBuffer(&processor->writer),
AGBufferWriterGetBufferSize(&processor->writer));
processor->state = HELLO;
}
static void stateChangeToPING(AGClientProcessor *processor)
{
initMALConversation(processor);
AGWritePING((AGWriter *)&processor->writer);
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)AGBufferWriterGetBuffer(&processor->writer),
AGBufferWriterGetBufferSize(&processor->writer));
processor->state = PING;
}
static void stateChangeToDEVICEINFO(AGClientProcessor *processor)
{
AGBufferWriterReset(&processor->writer);
AGWriteDEVICEINFO((AGWriter *)&processor->writer,
processor->deviceInfo->osName,
processor->deviceInfo->osVersion,
processor->deviceInfo->colorDepth,
processor->deviceInfo->screenWidth,
processor->deviceInfo->screenHeight,
processor->deviceInfo->serialNumber,
processor->deviceInfo->language,
processor->deviceInfo->charset,
processor->deviceInfo->platformDataLength,
processor->deviceInfo->platformData);
sendBuffer(processor);
processor->state = DEVICEINFO;
}
static void appendCLOSE(AGClientProcessor *processor)
{
if(processor->sentOPEN) {
AGWriteCLOSEDATABASE((AGWriter *)&processor->writer);
processor->sentOPEN = FALSE;
return;
}
}
static void sendBuffer(AGClientProcessor *processor)
{
if(AGBufferWriterGetBufferSize(&processor->writer) > 0) {
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)AGBufferWriterGetBuffer(&processor->writer),
AGBufferWriterGetBufferSize(&processor->writer));
}
}
static void incrementDBConfig(AGClientProcessor *processor)
{
appendCLOSE(processor);
processor->dbConfigIndex++;
processor->sentOPEN = FALSE;
processor->state = SEND_RECRS;
}
static void appendUNKNOWN(AGClientProcessor *processor, AGDBConfig *dbconfig)
{
AGWriteUNKNOWNDATABASE((AGWriter *)&processor->writer,
dbconfig->dbname);
}
static void stateChangeToRECRS(AGClientProcessor *processor)
{
processor->dbConfigIndex = 0;
processor->sentOPEN = FALSE;
if(processor->serverInfo->dbconfigs == NULL
|| processor->serverInfo->dbconfigs->count < 1) {
stateChangeToEXTENSION(processor);
return;
}
processRECRS(processor);
}
//PENDING(klobad) I think particular slice of code might be better represented
//as some additional top level states. As is it's too complex and is really a
//couple of states within one state.
static void processRECRS(AGClientProcessor *processor)
{
AGRecord *nextRecord = NULL;
AGDBConfig *dbconfig = NULL;
int32 result = AGCLIENT_IDLE;
int32 errCode = AGCLIENT_NO_ERR;
processor->state = SEND_RECRS;
AGBufferWriterReset(&processor->writer);
/* Are there any databases to send
|| have we sent them all
*/
if((processor->serverInfo->dbconfigs == NULL)
|| (processor->dbConfigIndex
>= processor->serverInfo->dbconfigs->count)) {
if(processor->sentOPEN) {
incrementDBConfig(processor);
sendBuffer(processor);
return;
} else {
stateChangeToEXTENSION(processor);
return;
}
}
dbconfig = (AGDBConfig*)
AGArrayElementAt(processor->serverInfo->dbconfigs,
processor->dbConfigIndex);
/* All callbacks are required at all times */
if(processor->platformCalls->openDatabaseFunc == NULL
|| processor->platformCalls->nextModifiedRecordFunc == NULL
|| processor->platformCalls->nextRecordFunc == NULL) {
incrementDBConfig(processor);
appendUNKNOWN(processor, dbconfig);
sendBuffer(processor);
return;
}
/* NOTE: This should never happen, the AG_DONTSEND_CFG type
should have told the system to delete this dbconfig.
*/
if(dbconfig->type == AG_DONTSEND_CFG) {
incrementDBConfig(processor);
sendBuffer(processor);
return;
}
/* If we've not sent the OPEN, then this is a new database. */
if(!processor->sentOPEN) {
result = (*processor->platformCalls->openDatabaseFunc)(
processor->platformCalls->out,
dbconfig,
&errCode);
if(result != AGCLIENT_IDLE) {
incrementDBConfig(processor);
appendUNKNOWN(processor, dbconfig);
sendBuffer(processor);
return;
}
//At this point we know we want to send the OPENDATABASE
//command, but ONLY if there are records to send.
}
if(dbconfig->type == AG_SENDMODS_CFG) {
result = (*processor->platformCalls->nextModifiedRecordFunc)(
processor->platformCalls->out,
&nextRecord,
&errCode);
} else { /* dbconfig->type == AG_SENDALL_CFG */
result = (*processor->platformCalls->nextRecordFunc)(
processor->platformCalls->out,
&nextRecord,
&errCode);
}
if(result == AGCLIENT_ERR
|| result == AGCLIENT_IDLE
|| nextRecord == NULL) {
incrementDBConfig(processor);
sendBuffer(processor);
return;
}
//if we get here, and we haven't sentOPEN, then this is the
//first record to send, write the open and the newids first
//then send the record bytes
if(!processor->sentOPEN) {
AGWriteOPENDATABASE((AGWriter *)&processor->writer,
dbconfig->dbname);
if(dbconfig->newids && AGArrayCount(dbconfig->newids) > 0) {
AGWriteNEWIDS((AGWriter *)&processor->writer, dbconfig->newids);
}
processor->sentOPEN = TRUE;
}
if(dbconfig->sendRecordPlatformData) {
AGWriteRECORD((AGWriter *)&processor->writer,
nextRecord->uid,
nextRecord->status,
nextRecord->recordDataLength,
nextRecord->recordData,
nextRecord->platformDataLength,
nextRecord->platformData);
} else {
AGWriteRECORD((AGWriter *)&processor->writer,
nextRecord->uid,
nextRecord->status,
nextRecord->recordDataLength,
nextRecord->recordData,
0,
NULL);
}
sendBuffer(processor);
}
static void processExtensions(AGClientProcessor *processor)
{
int32 command, commandLen, result;
void *commandBytes = NULL;
if(processor->platformCalls->nextExpansionCommandFunc == NULL) {
stateChangeToGOODBYE(processor);
return;
}
result = (*processor->platformCalls->nextExpansionCommandFunc)(
processor->platformCalls->out,
&command,
&commandLen,
&commandBytes);
if(result == AGCLIENT_IDLE) {
stateChangeToGOODBYE(processor);
return;
}
AGBufferWriterReset(&processor->writer);
AGWriteCommand((AGWriter *)&processor->writer, command,
commandLen, commandBytes);
sendBuffer(processor);
}
static void stateChangeToEXTENSION(AGClientProcessor *processor)
{
processor->state = SENDING_EXTENSIONS;
processExtensions(processor);
}
static void stateChangeToGOODBYE(AGClientProcessor *processor)
{
AGBufferWriterReset(&processor->writer);
AGWriteEND((AGWriter *)&processor->writer);
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)AGBufferWriterGetBuffer(&processor->writer),
AGBufferWriterGetBufferSize(&processor->writer));
processor->state = GOODBYE;
}
static void stateChangeToRECEIVING(AGClientProcessor *processor)
{
cleanUpLogonMemory(processor);
if(processor->bufferServerCommands) {
AGBufferWriterInit(&processor->writer, 1024);
processor->writerInited = TRUE;
}
AGSyncProcessorGetNextCommand(&processor->syncProcessor);
processor->state = RECEIVING_CMDS;
}
static void stateChangeToGETHEADER(AGClientProcessor *processor)
{
AGSyncProcessorGetHeader(&processor->syncProcessor);
processor->state = GET_HEADER;
}
static void stateChangeToMAGIC(AGClientProcessor *processor)
{
AGSyncProcessorGetMagic(&processor->syncProcessor);
processor->state = GET_MAGIC;
}
#define CONLEN "Content-Length: "
#define POSTFORMAT "POST %s HTTP/1.0\r\nUser-Agent: Mozilla/3.0 (compatible; MAL 0.7)\r\nHost: %s\r\nContent-Type: application/x-mal-client-data\r\n"
static void stateChangeToSENDHEADER(AGClientProcessor *processor)
{
int len = 0;
char *path;
char *authheader = NULL;
char num[24];
AGServerConfig *sc = processor->serverInfo;
AGLocationConfig *lc = processor->lc;
if (lc && lc->HTTPUseProxy && lc->HTTPName && lc->HTTPPort) {
if (!sc->serverUri) {
len = 24 + strlen(sc->serverName);
path = (char*)malloc(len);
if (!path) {
processor->errStringId = AGMSGUnknownFailureStringId;
processor->state = PROBLEM;
return;
}
sprintf(path, "http://%s:%d/sync", sc->serverName,
sc->serverPort);
} else {
len = strlen(sc->serverUri) + strlen(sc->serverName) + 24;
path = (char*)malloc(len);
if (!path) {
processor->errStringId = AGMSGUnknownFailureStringId;
processor->state = PROBLEM;
return;
}
sprintf(path, "http://%s:%d%s", sc->serverName,
sc->serverPort,
sc->serverUri);
}
if (lc->HTTPUseAuthentication && lc->HTTPUsername &&
lc->HTTPPassword) {
authheader =
AGProxyCreateAuthHeader(lc->HTTPUsername,
lc->HTTPPassword,
lc->proxy401);
}
} else {
if (!sc->serverUri)
path = "/sync";
else
path = sc->serverUri;
}
bzero(num, 24);
#if defined(_WIN32) || defined(__palmos__)
if(processor->bufferCommands) {
itoa(AGBufferWriterGetBufferSize(processor->logonBufferWriter),
num, 10);
} else {
itoa(((AGWriter *)processor->logonBufferWriter)->totalBytesWritten,
num, 10);
}
#else
if(processor->bufferCommands) {
sprintf(num, "%d",
AGBufferWriterGetBufferSize(processor->logonBufferWriter));
} else {
sprintf(num, "%d",
((AGWriter *)processor->logonBufferWriter)->totalBytesWritten);
}
#endif
/* Since we have to add port to the URL for proxy stuff, guess
at the length here, use strlen to find actual length to send */
len += strlen(POSTFORMAT) + 24;
len += strlen(sc->serverName); /* "Host: %s" in POSTFORMAT */
len += strlen(path);
len += strlen(num);
len += strlen(CONLEN);
if (authheader)
len += strlen(authheader);
len += 4;
if(processor->writeBuffer != NULL) {
free(processor->writeBuffer );
processor->writeBuffer = NULL;
}
processor->writeBuffer = malloc(len + 1); /* + 1 NULL term*/
sprintf((char*)processor->writeBuffer,
POSTFORMAT, path, sc->serverName);
if (authheader)
strcat((char*)processor->writeBuffer, authheader);
strcat((char*)processor->writeBuffer, CONLEN);
strcat((char*)processor->writeBuffer, num);
strcat((char*)processor->writeBuffer, "\r\n\r\n");
len = strlen((char*)processor->writeBuffer);
#if defined(_WIN32) && !defined(_WIN32_WCE)
if (processor->logConnectionInfo)
proxyDebug(processor, ">>> ---- Post String\n%s>>>>----\n",
processor->writeBuffer);
#endif
AGSyncProcessorSetSendDataFunc(&processor->syncProcessor,
NULL,
NULL);
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)processor->writeBuffer, len);
processor->state = SEND_HEADER;
return;
}
static void stateChangeToSENDBUFFERLOGON(AGClientProcessor *processor)
{
AGSyncProcessorSendBuffer(&processor->syncProcessor,
(uint8 *)AGBufferWriterGetBuffer(processor->logonBufferWriter),
AGBufferWriterGetBufferSize(processor->logonBufferWriter));
processor->state = SEND_BUFFER_LOGON;
}
static void stateChangeToHELLOForReal(AGClientProcessor *processor)
{
if(processor->logonBufferWriter) {
AGBufferWriterFree(processor->logonBufferWriter);
}
processor->logonBufferWriter = NULL;
processor->calcBufferPass = FALSE;
stateChangeToHELLO(processor);
}
static void stateChangeToPROCESSCMD(AGClientProcessor *processor)
{
// only get here when processor->bufferServerCommands
processor->serverCommandReader = AGBufferReaderNew((uint8 *)processor->writer.buffer);
processor->state = PROCESSING_BUFFERED_CMDS;
}
static int32 processCMDS(AGClientProcessor *processor)
{
int32 result = AGCLIENT_ERR;
int32 errCode;
if(processor->platformCalls->performCommandFunc == NULL) {
if(processor->serverCommandReader)
AGBufferReaderFree(processor->serverCommandReader);
processor->serverCommandReader = NULL;
return result;
}
result = (*processor->platformCalls->performCommandFunc)(
processor->platformCalls->performCommandOut,
&errCode,
(AGReader *)processor->serverCommandReader);
if(result != AGCLIENT_CONTINUE) {
if(processor->serverCommandReader)
AGBufferReaderFree(processor->serverCommandReader);
processor->serverCommandReader = NULL;
}
return result;
}
static int32 callPerformCommand(AGClientProcessor *processor)
{
AGBufferReader reader;
int32 result = AGCLIENT_ERR;
int32 errCode;
if(processor->platformCalls->performCommandFunc == NULL)
return result;
AGBufferReaderInit(&reader,
AGSyncProcessorGetCommandBuffer(&processor->syncProcessor));
result = (*processor->platformCalls->performCommandFunc)(
processor->platformCalls->performCommandOut,
&errCode,
(AGReader *)&reader);
AGBufferReaderFinalize(&reader);
return result;
}
static int32 processCommand(AGClientProcessor *processor)
{
AGBufferReader reader;
int32 result = AGCLIENT_ERR;
int32 bytesToWrite = 0;
int32 command;
if(!processor->bufferServerCommands) {
return callPerformCommand(processor);
}
command = processor->syncProcessor.command;
if(command == AG_TASK_CMD) {
char *taskName = NULL;
AGBufferReaderInit(&reader,
AGSyncProcessorGetCommandBuffer(&processor->syncProcessor));
AGReadCompactInt((AGReader *)&reader); // strip the command
AGReadCompactInt((AGReader *)&reader); // strip the commandlength
AGReadTASK((AGReader *)&reader, &taskName, &processor->taskIsBufferable);
if(taskName)
free(taskName);
AGBufferReaderFinalize(&reader);
}
// If this is a task or item that cannot be buffered, we
// always want to call the performCommand immediately, and
// not append this task or command to the buffer.
//
// TASK and ITEM will either be displayed directly to the
// user in the case where these items are server progress information
// or they will be buffered and displayed while the client is processing
// the real commands.
if((command == AG_TASK_CMD
|| command == AG_ITEM_CMD)
&& !processor->taskIsBufferable) {
return callPerformCommand(processor);
}
// Write the command into the command buffer for processing later
bytesToWrite += AGCompactSize(command);
bytesToWrite += AGCompactSize(processor->syncProcessor.commandLen);
bytesToWrite += processor->syncProcessor.commandLen;
AGWriteBytes((AGWriter *)&processor->writer,
(uint8 *)processor->syncProcessor.buffer,
bytesToWrite);
if(command != AG_END_CMD)
result = AGCLIENT_CONTINUE;
else
result = AGCLIENT_IDLE;
return result;
}
static int32 processNotComplete(AGClientProcessor *processor, int32 rc,
int32 maxRetries, int32 retryFailStringId)
{
if(rc == AGSYNC_ERR) {
processor->errStringId = processor->syncProcessor.errStringId;
processor->state = PROBLEM;
}
return AGCLIENT_CONTINUE;
}
// Code within _WIN32 ifdef is multithreaded & platform-specific.
#ifdef _WIN32
/* This function runs in the SECOND thread. It's called eventually by
AGClientProcessorProcess(), which runs in the SECOND thread. */
static int32 queueCommand(AGClientProcessor *processor)
{
int32 result = AGCLIENT_ERR;
int32 bytesToWrite = 0;
// Add the command into the buffer.
WaitForSingleObject(processor->mutex, INFINITE);
bytesToWrite += AGCompactSize(processor->syncProcessor.command);
bytesToWrite += AGCompactSize(processor->syncProcessor.commandLen);
bytesToWrite += processor->syncProcessor.commandLen;
AGWriteBytes((AGWriter *)processor->threadWriter,
(uint8 *)processor->syncProcessor.buffer,
bytesToWrite);
processor->writeIndex =
AGBufferWriterGetBufferSize(processor->threadWriter);
// Check the error code and see whether we've gotten into a problem
// state. pending(miket) figure out how to do this.
if(0) {
result = AGCLIENT_ERR;
processor->finished = TRUE;
} else {
if(processor->syncProcessor.command != AG_END_CMD)
result = AGCLIENT_CONTINUE;
else {
processor->finished = TRUE;
result = AGCLIENT_IDLE;
}
}
ReleaseMutex(processor->mutex);
return result;
}
/* This function runs in the FIRST thread (the one that actually executes
commands). */
static int32 dispatchQueuedCommand(AGClientProcessor *processor)
{
AGBufferReader reader;
int32 result = AGCLIENT_ERR;
int32 command;
int32 length;
int32 fulllength;
int32 errCode;
uint8 *localCommand = NULL;
// Pull a command off the queue.
WaitForSingleObject(processor->mutex, INFINITE);
AGBufferReaderInit(&reader,
AGBufferWriterGetBuffer(processor->threadWriter)
+ processor->readIndex);
command = AGReadCompactInt((AGReader *)&reader);
length = AGReadCompactInt((AGReader *)&reader);
fulllength = AGCompactSize(command)
+ AGCompactSize(length)
+ length;
localCommand = malloc(fulllength);
if (localCommand) {
/* Make a copy of the complete MAL command (command, command length,
and command data). I know there's a better way to do it than the
scary code you see here, but it's late, I'm tired, it works, it works,
it works... */
memcpy(localCommand,
AGBufferWriterGetBuffer(processor->threadWriter)
+ processor->readIndex,
fulllength - length);
AGReadBytes((AGReader *)&reader,
&localCommand[fulllength - length],
length);
}
processor->readIndex += fulllength;
AGBufferReaderFinalize(&reader);
ReleaseMutex(processor->mutex);
// Dispatch the command.
if(processor->platformCalls->performCommandFunc != NULL) {
AGBufferReaderInit(&reader, localCommand);
result = (*processor->platformCalls->performCommandFunc)(
processor->platformCalls->performCommandOut,
&errCode,
(AGReader *)&reader);
AGBufferReaderFinalize(&reader);
}
if(localCommand)
free(localCommand);
return result;
}
/* This function runs in the FIRST thread. It waits for commands to
appear in the queue, and then causes them to be executed. */
int32 AGClientProcessorBeginCommandDispatcher(AGClientProcessor *processor,
void (* timeSliceFunc)(void),
AGBool * cancel)
{
AGBool go = TRUE;
while(go) {
int32 diff;
AGBool finished;
/* Compare the point in the command buffer where we're ready to
start executing commands to the point in it where further commands
end. */
WaitForSingleObject(processor->mutex, INFINITE);
diff = processor->readIndex - processor->writeIndex;
finished = processor->finished;
ReleaseMutex(processor->mutex);
/* If the caller has given us a cancel flag, check it. */
if (cancel && *cancel) {
go = FALSE;
continue;
}
/* If we've been signaled that no more commands will be added to the
buffer, and if we've executed all the commands that were already in
it, then we're done. */
if(finished && (diff >= 0)) {
go = FALSE;
} else {
/* If we haven't executed all commands in the buffer, then do
the next one. */
if(diff < 0) {
dispatchQueuedCommand(processor);
} else {
/* There were no commands to execute, but we're supposed to
see more, so give up our time slice and check again later.
Implementation note: I know this code isn't portable but
I used the portable sleep function anyway. */
AGSleepMillis(0);
}
}
if(timeSliceFunc)
timeSliceFunc();
}
return 0;
}
#endif // #ifdef _WIN32
|