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
|
/* ========================================================================= *
* *
* The Apache Software License, Version 1.1 *
* *
* Copyright (c) 1999-2001 The Apache Software Foundation. *
* All rights reserved. *
* *
* ========================================================================= *
* *
* Redistribution and use in source and binary forms, with or without modi- *
* fication, are permitted provided that the following conditions are met: *
* *
* 1. Redistributions of source code must retain the above copyright notice *
* notice, this list of conditions and the following disclaimer. *
* *
* 2. Redistributions in binary form must reproduce the above copyright *
* notice, this list of conditions and the following disclaimer in the *
* documentation and/or other materials provided with the distribution. *
* *
* 3. The end-user documentation included with the redistribution, if any, *
* must include the following acknowlegement: *
* *
* "This product includes software developed by the Apache Software *
* Foundation <http://www.apache.org/>." *
* *
* Alternately, this acknowlegement may appear in the software itself, if *
* and wherever such third-party acknowlegements normally appear. *
* *
* 4. The names "The Jakarta Project", "Jk", and "Apache Software *
* Foundation" must not be used to endorse or promote products derived *
* from this software without prior written permission. For written *
* permission, please contact <apache@apache.org>. *
* *
* 5. Products derived from this software may not be called "Apache" nor may *
* "Apache" appear in their names without prior written permission of the *
* Apache Software Foundation. *
* *
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES *
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY *
* AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL *
* THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY *
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL *
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS *
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) *
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, *
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN *
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE *
* POSSIBILITY OF SUCH DAMAGE. *
* *
* ========================================================================= *
* *
* This software consists of voluntary contributions made by many indivi- *
* duals on behalf of the Apache Software Foundation. For more information *
* on the Apache Software Foundation, please see <http://www.apache.org/>. *
* *
* ========================================================================= */
/***************************************************************************
* Description: common stuff for bi-directional protocols ajp13/ajp14. *
* Author: Gal Shachor <shachor@il.ibm.com> *
* Author: Henri Gomez <hgomez@slib.fr> *
* Version: $Revision: 1.38 $ *
***************************************************************************/
#include "jk_global.h"
#include "jk_util.h"
#include "jk_ajp13.h"
#include "jk_ajp14.h"
#include "jk_ajp_common.h"
#include "jk_connect.h"
#ifdef AS400
#include "util_ebcdic.h"
#endif
const char *response_trans_headers[] = {
"Content-Type",
"Content-Language",
"Content-Length",
"Date",
"Last-Modified",
"Location",
"Set-Cookie",
"Set-Cookie2",
"Servlet-Engine",
"Status",
"WWW-Authenticate"
};
static const char *long_res_header_for_sc(int sc)
{
const char *rc = NULL;
if(sc <= SC_RES_HEADERS_NUM && sc > 0) {
rc = response_trans_headers[sc - 1];
}
return rc;
}
static int sc_for_req_method(const char *method,
unsigned char *sc)
{
int rc = JK_TRUE;
if(0 == strcmp(method, "GET")) {
*sc = SC_M_GET;
} else if(0 == strcmp(method, "POST")) {
*sc = SC_M_POST;
} else if(0 == strcmp(method, "HEAD")) {
*sc = SC_M_HEAD;
} else if(0 == strcmp(method, "PUT")) {
*sc = SC_M_PUT;
} else if(0 == strcmp(method, "DELETE")) {
*sc = SC_M_DELETE;
} else if(0 == strcmp(method, "OPTIONS")) {
*sc = SC_M_OPTIONS;
} else if(0 == strcmp(method, "TRACE")) {
*sc = SC_M_TRACE;
} else if(0 == strcmp(method, "PROPFIND")) {
*sc = SC_M_PROPFIND;
} else if(0 == strcmp(method, "PROPPATCH")) {
*sc = SC_M_PROPPATCH;
} else if(0 == strcmp(method, "MKCOL")) {
*sc = SC_M_MKCOL;
} else if(0 == strcmp(method, "COPY")) {
*sc = SC_M_COPY;
} else if(0 == strcmp(method, "MOVE")) {
*sc = SC_M_MOVE;
} else if(0 == strcmp(method, "LOCK")) {
*sc = SC_M_LOCK;
} else if(0 == strcmp(method, "UNLOCK")) {
*sc = SC_M_UNLOCK;
} else if(0 == strcmp(method, "ACL")) {
*sc = SC_M_ACL;
} else if(0 == strcmp(method, "REPORT")) {
*sc = SC_M_REPORT;
} else if(0 == strcmp(method, "VERSION-CONTROL")) {
*sc = SC_M_VERSION_CONTROL;
} else if(0 == strcmp(method, "CHECKIN")) {
*sc = SC_M_CHECKIN;
} else if(0 == strcmp(method, "CHECKOUT")) {
*sc = SC_M_CHECKOUT;
} else if(0 == strcmp(method, "UNCHECKOUT")) {
*sc = SC_M_UNCHECKOUT;
} else if(0 == strcmp(method, "SEARCH")) {
*sc = SC_M_SEARCH;
} else if(0 == strcmp(method, "MKWORKSPACE")) {
*sc = SC_M_MKWORKSPACE;
} else if(0 == strcmp(method, "UPDATE")) {
*sc = SC_M_UPDATE;
} else if(0 == strcmp(method, "LABEL")) {
*sc = SC_M_LABEL;
} else if(0 == strcmp(method, "MERGE")) {
*sc = SC_M_MERGE;
} else if(0 == strcmp(method, "BASELINE-CONTROL")) {
*sc = SC_M_BASELINE_CONTROL;
} else if(0 == strcmp(method, "MKACTIVITY")) {
*sc = SC_M_MKACTIVITY;
} else {
rc = JK_FALSE;
}
return rc;
}
static int sc_for_req_header(const char *header_name,
unsigned short *sc)
{
switch(header_name[0]) {
case 'a':
if('c' ==header_name[1] &&
'c' ==header_name[2] &&
'e' ==header_name[3] &&
'p' ==header_name[4] &&
't' ==header_name[5]) {
if ('-' == header_name[6]) {
if(!strcmp(header_name + 7, "charset")) {
*sc = SC_ACCEPT_CHARSET;
} else if(!strcmp(header_name + 7, "encoding")) {
*sc = SC_ACCEPT_ENCODING;
} else if(!strcmp(header_name + 7, "language")) {
*sc = SC_ACCEPT_LANGUAGE;
} else {
return JK_FALSE;
}
} else if ('\0' == header_name[6]) {
*sc = SC_ACCEPT;
} else {
return JK_FALSE;
}
} else if (!strcmp(header_name, "authorization")) {
*sc = SC_AUTHORIZATION;
} else {
return JK_FALSE;
}
break;
case 'c':
if(!strcmp(header_name, "cookie")) {
*sc = SC_COOKIE;
} else if(!strcmp(header_name, "connection")) {
*sc = SC_CONNECTION;
} else if(!strcmp(header_name, "content-type")) {
*sc = SC_CONTENT_TYPE;
} else if(!strcmp(header_name, "content-length")) {
*sc = SC_CONTENT_LENGTH;
} else if(!strcmp(header_name, "cookie2")) {
*sc = SC_COOKIE2;
} else {
return JK_FALSE;
}
break;
case 'h':
if(!strcmp(header_name, "host")) {
*sc = SC_HOST;
} else {
return JK_FALSE;
}
break;
case 'p':
if(!strcmp(header_name, "pragma")) {
*sc = SC_PRAGMA;
} else {
return JK_FALSE;
}
break;
case 'r':
if(!strcmp(header_name, "referer")) {
*sc = SC_REFERER;
} else {
return JK_FALSE;
}
break;
case 'u':
if(!strcmp(header_name, "user-agent")) {
*sc = SC_USER_AGENT;
} else {
return JK_FALSE;
}
break;
default:
return JK_FALSE;
}
return JK_TRUE;
}
/*
* Message structure
*
*
AJPV13_REQUEST/AJPV14_REQUEST=
request_prefix (1) (byte)
method (byte)
protocol (string)
req_uri (string)
remote_addr (string)
remote_host (string)
server_name (string)
server_port (short)
is_ssl (boolean)
num_headers (short)
num_headers*(req_header_name header_value)
?context (byte)(string)
?servlet_path (byte)(string)
?remote_user (byte)(string)
?auth_type (byte)(string)
?query_string (byte)(string)
?jvm_route (byte)(string)
?ssl_cert (byte)(string)
?ssl_cipher (byte)(string)
?ssl_session (byte)(string)
?ssl_key_size (byte)(int) via JkOptions +ForwardKeySize
request_terminator (byte)
?body content_length*(var binary)
*/
static int ajp_marshal_into_msgb(jk_msg_buf_t *msg,
jk_ws_service_t *s,
jk_logger_t *l,
ajp_endpoint_t *ae)
{
unsigned char method;
unsigned i;
jk_log(l, JK_LOG_DEBUG, "Into ajp_marshal_into_msgb\n");
if (!sc_for_req_method(s->method, &method)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - No such method %s\n",
s->method);
return JK_FALSE;
}
if (jk_b_append_byte(msg, JK_AJP13_FORWARD_REQUEST) ||
jk_b_append_byte(msg, method) ||
jk_b_append_string(msg, s->protocol) ||
jk_b_append_string(msg, s->req_uri) ||
jk_b_append_string(msg, s->remote_addr) ||
jk_b_append_string(msg, s->remote_host) ||
jk_b_append_string(msg, s->server_name) ||
jk_b_append_int(msg, (unsigned short)s->server_port) ||
jk_b_append_byte(msg, (unsigned char)(s->is_ssl)) ||
jk_b_append_int(msg, (unsigned short)(s->num_headers))) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the message begining\n");
return JK_FALSE;
}
for (i = 0 ; i < s->num_headers ; i++) {
unsigned short sc;
if (sc_for_req_header(s->headers_names[i], &sc)) {
if (jk_b_append_int(msg, sc)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the header name\n");
return JK_FALSE;
}
} else {
if (jk_b_append_string(msg, s->headers_names[i])) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the header name\n");
return JK_FALSE;
}
}
if (jk_b_append_string(msg, s->headers_values[i])) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the header value\n");
return JK_FALSE;
}
}
if (s->secret) {
if (jk_b_append_byte(msg, SC_A_SECRET) ||
jk_b_append_string(msg, s->secret)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending secret\n");
return JK_FALSE;
}
}
if (s->remote_user) {
if (jk_b_append_byte(msg, SC_A_REMOTE_USER) ||
jk_b_append_string(msg, s->remote_user)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the remote user\n");
return JK_FALSE;
}
}
if (s->auth_type) {
if (jk_b_append_byte(msg, SC_A_AUTH_TYPE) ||
jk_b_append_string(msg, s->auth_type)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the auth type\n");
return JK_FALSE;
}
}
if (s->query_string) {
if (jk_b_append_byte(msg, SC_A_QUERY_STRING) ||
#ifdef AS400
jk_b_append_asciistring(msg, s->query_string)) {
#else
jk_b_append_string(msg, s->query_string)) {
#endif
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the query string\n");
return JK_FALSE;
}
}
if (s->jvm_route) {
if (jk_b_append_byte(msg, SC_A_JVM_ROUTE) ||
jk_b_append_string(msg, s->jvm_route)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the jvm route\n");
return JK_FALSE;
}
}
if (s->ssl_cert_len) {
if (jk_b_append_byte(msg, SC_A_SSL_CERT) ||
jk_b_append_string(msg, s->ssl_cert)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the SSL certificates\n");
return JK_FALSE;
}
}
if (s->ssl_cipher) {
if (jk_b_append_byte(msg, SC_A_SSL_CIPHER) ||
jk_b_append_string(msg, s->ssl_cipher)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the SSL ciphers\n");
return JK_FALSE;
}
}
if (s->ssl_session) {
if (jk_b_append_byte(msg, SC_A_SSL_SESSION) ||
jk_b_append_string(msg, s->ssl_session)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the SSL session\n");
return JK_FALSE;
}
}
/*
* ssl_key_size is required by Servlet 2.3 API
* added support only in ajp14 mode
* JFC removed: ae->proto == AJP14_PROTO
*/
if (s->ssl_key_size != -1) {
if (jk_b_append_byte(msg, SC_A_SSL_KEY_SIZE) ||
jk_b_append_int(msg, (unsigned short) s->ssl_key_size)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the SSL key size\n");
return JK_FALSE;
}
}
if (s->num_attributes > 0) {
for (i = 0 ; i < s->num_attributes ; i++) {
if (jk_b_append_byte(msg, SC_A_REQ_ATTRIBUTE) ||
jk_b_append_string(msg, s->attributes_names[i]) ||
jk_b_append_string(msg, s->attributes_values[i])) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending attribute %s=%s\n",
s->attributes_names[i], s->attributes_values[i]);
return JK_FALSE;
}
}
}
if (jk_b_append_byte(msg, SC_A_ARE_DONE)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_marshal_into_msgb - "
"Error appending the message end\n");
return JK_FALSE;
}
jk_log(l, JK_LOG_DEBUG, "ajp_marshal_into_msgb - Done\n");
return JK_TRUE;
}
/*
AJPV13_RESPONSE/AJPV14_RESPONSE:=
response_prefix (2)
status (short)
status_msg (short)
num_headers (short)
num_headers*(res_header_name header_value)
*body_chunk
terminator boolean <! -- recycle connection or not -->
req_header_name :=
sc_req_header_name | (string)
res_header_name :=
sc_res_header_name | (string)
header_value :=
(string)
body_chunk :=
length (short)
body length*(var binary)
*/
static int ajp_unmarshal_response(jk_msg_buf_t *msg,
jk_res_data_t *d,
ajp_endpoint_t *ae,
jk_logger_t *l)
{
jk_pool_t * p = &ae->pool;
d->status = jk_b_get_int(msg);
if (!d->status) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_unmarshal_response - Null status\n");
return JK_FALSE;
}
d->msg = (char *)jk_b_get_string(msg);
if (d->msg) {
#if defined(AS400) || defined(_OSD_POSIX)
jk_xlate_from_ascii(d->msg, strlen(d->msg));
#endif
}
jk_log(l, JK_LOG_DEBUG,
"ajp_unmarshal_response: status = %d\n", d->status);
d->num_headers = jk_b_get_int(msg);
d->header_names = d->header_values = NULL;
jk_log(l, JK_LOG_DEBUG,
"ajp_unmarshal_response: Number of headers is = %d\n",
d->num_headers);
if (d->num_headers) {
d->header_names = jk_pool_alloc(p, sizeof(char *) * d->num_headers);
d->header_values = jk_pool_alloc(p, sizeof(char *) * d->num_headers);
if (d->header_names && d->header_values) {
unsigned i;
for(i = 0 ; i < d->num_headers ; i++) {
unsigned short name = jk_b_pget_int(msg, jk_b_get_pos(msg)) ;
if ((name & 0XFF00) == 0XA000) {
jk_b_get_int(msg);
name = name & 0X00FF;
if (name <= SC_RES_HEADERS_NUM) {
d->header_names[i] =
(char *)long_res_header_for_sc(name);
} else {
jk_log(l, JK_LOG_ERROR,
"Error ajp_unmarshal_response - "
"No such sc (%d)\n",
name);
return JK_FALSE;
}
} else {
d->header_names[i] = (char *)jk_b_get_string(msg);
if (!d->header_names[i]) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_unmarshal_response - "
"Null header name\n");
return JK_FALSE;
}
#if defined(AS400) || defined(_OSD_POSIX)
jk_xlate_from_ascii(d->header_names[i],
strlen(d->header_names[i]));
#endif
}
d->header_values[i] = (char *)jk_b_get_string(msg);
if (!d->header_values[i]) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_unmarshal_response - "
"Null header value\n");
return JK_FALSE;
}
#if defined(AS400) || defined(_OSD_POSIX)
jk_xlate_from_ascii(d->header_values[i],
strlen(d->header_values[i]));
#endif
jk_log(l, JK_LOG_DEBUG,
"ajp_unmarshal_response: Header[%d] [%s] = [%s]\n",
i,
d->header_names[i],
d->header_values[i]);
}
}
}
return JK_TRUE;
}
/*
* Reset the endpoint (clean buf)
*/
static void ajp_reset_endpoint(ajp_endpoint_t *ae)
{
ae->reuse = JK_FALSE;
jk_reset_pool(&(ae->pool));
}
/*
* Close the endpoint (clean buf and close socket)
*/
void ajp_close_endpoint(ajp_endpoint_t *ae,
jk_logger_t *l)
{
jk_log(l, JK_LOG_DEBUG, "In jk_endpoint_t::ajp_close_endpoint\n");
ajp_reset_endpoint(ae);
jk_close_pool(&(ae->pool));
if (ae->sd > 0) {
jk_close_socket(ae->sd);
jk_log(l, JK_LOG_DEBUG,
"In jk_endpoint_t::ajp_close_endpoint, closed sd = %d\n",
ae->sd);
ae->sd = -1; /* just to avoid twice close */
}
free(ae);
}
/*
* Try to reuse a previous connection
*/
static void ajp_reuse_connection(ajp_endpoint_t *ae,
jk_logger_t *l)
{
ajp_worker_t *aw = ae->worker;
if (aw->ep_cache_sz) {
int rc;
JK_ENTER_CS(&aw->cs, rc);
if (rc) {
unsigned i;
for (i = 0 ; i < aw->ep_cache_sz ; i++) {
if (aw->ep_cache[i]) {
ae->sd = aw->ep_cache[i]->sd;
aw->ep_cache[i]->sd = -1;
ajp_close_endpoint(aw->ep_cache[i], l);
aw->ep_cache[i] = NULL;
break;
}
}
JK_LEAVE_CS(&aw->cs, rc);
}
}
}
int ajp_connect_to_endpoint(ajp_endpoint_t *ae,
jk_logger_t *l)
{
unsigned attempt;
for(attempt = 0; attempt < ae->worker->connect_retry_attempts; attempt++) {
ae->sd = jk_open_socket(&ae->worker->worker_inet_addr, JK_TRUE,
ae->worker->keepalive, l);
if(ae->sd >= 0) {
jk_log(l, JK_LOG_DEBUG,
"In jk_endpoint_t::ajp_connect_to_endpoint, "
"connected sd = %d\n",
ae->sd);
/* set last_access */
ae->last_access = time(NULL);
/* Check if we must execute a logon after the physical connect */
if (ae->worker->logon != NULL)
return (ae->worker->logon(ae, l));
return JK_TRUE;
}
}
jk_log(l, JK_LOG_INFO,
"Error connecting to tomcat. Tomcat is probably not started or is "
"listenning on the wrong port. Failed errno = %d\n",
errno);
return JK_FALSE;
}
/*
* Send a message to endpoint, using corresponding PROTO HEADER
*/
int ajp_connection_tcp_send_message(ajp_endpoint_t *ae,
jk_msg_buf_t *msg,
jk_logger_t *l)
{
if (ae->proto == AJP13_PROTO) {
jk_b_end(msg, AJP13_WS_HEADER);
jk_dump_buff(l, JK_LOG_DEBUG, "sending to ajp13", msg);
}
else if (ae->proto == AJP14_PROTO) {
jk_b_end(msg, AJP14_WS_HEADER);
jk_dump_buff(l, JK_LOG_DEBUG, "sending to ajp14", msg);
}
else {
jk_log(l, JK_LOG_ERROR,
"In jk_endpoint_t::ajp_connection_tcp_send_message, "
"unknown protocol %d, supported are AJP13/AJP14\n",
ae->proto);
return JK_FALSE;
}
if(0 > jk_tcp_socket_sendfull(ae->sd, jk_b_get_buff(msg), jk_b_get_len(msg))) {
return JK_FALSE;
}
return JK_TRUE;
}
/*
* Receive a message from endpoint, checking PROTO HEADER
*/
int ajp_connection_tcp_get_message(ajp_endpoint_t *ae,
jk_msg_buf_t *msg,
jk_logger_t *l)
{
unsigned char head[AJP_HEADER_LEN];
int rc;
int msglen;
unsigned int header;
if ((ae->proto != AJP13_PROTO) && (ae->proto != AJP14_PROTO)) {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Can't handle unknown protocol %d\n",
ae->proto);
return JK_FALSE;
}
rc = jk_tcp_socket_recvfull(ae->sd, head, AJP_HEADER_LEN);
if(rc < 0) {
jk_log(l, JK_LOG_ERROR,
"ERROR: can't receive the response message from tomcat, "
"network problems or tomcat is down. err=%d\n",
rc);
return JK_FALSE;
}
header = ((unsigned int)head[0] << 8) | head[1];
if (ae->proto == AJP13_PROTO) {
if (header != AJP13_SW_HEADER) {
if (header == AJP14_SW_HEADER) {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Error - received AJP14 reply on an AJP13 connection\n");
} else {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Error - Wrong message format 0x%04x\n",
header);
}
return JK_FALSE;
}
}
else if (ae->proto == AJP14_PROTO) {
if (header != AJP14_SW_HEADER) {
if (header == AJP13_SW_HEADER) {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Error - received AJP13 reply on an AJP14 connection\n");
} else {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Error - Wrong message format 0x%04x\n",
header);
}
return JK_FALSE;
}
}
msglen = ((head[2]&0xff)<<8);
msglen += (head[3] & 0xFF);
if(msglen > jk_b_get_size(msg)) {
jk_log(l, JK_LOG_ERROR,
"ajp_connection_tcp_get_message: "
"Error - Wrong message size %d %d\n",
msglen, jk_b_get_size(msg));
return JK_FALSE;
}
jk_b_set_len(msg, msglen);
jk_b_set_pos(msg, 0);
rc = jk_tcp_socket_recvfull(ae->sd, jk_b_get_buff(msg), msglen);
if(rc < 0) {
jk_log(l, JK_LOG_ERROR,
"ERROR: can't receive the response message from tomcat, "
"network problems or tomcat is down %d\n",
rc);
return JK_FALSE;
}
if (ae->proto == AJP13_PROTO) {
jk_dump_buff(l, JK_LOG_DEBUG, "received from ajp13", msg);
} else if (ae->proto == AJP14_PROTO) {
jk_dump_buff(l, JK_LOG_DEBUG, "received from ajp14", msg);
}
return JK_TRUE;
}
/*
* Read all the data from the socket.
*
* Socket API doesn't guaranty that all the data will be kept in a
* single read, so we must loop until all awaited data is received
*/
static int ajp_read_fully_from_server(jk_ws_service_t *s,
unsigned char *buf,
unsigned len)
{
unsigned rdlen = 0;
unsigned padded_len = len;
if (s->is_chunked && s->no_more_chunks) {
return 0;
}
if (s->is_chunked) {
/* Corner case: buf must be large enough to hold next
* chunk size (if we're on or near a chunk border).
* Pad the length to a reasonable value, otherwise the
* read fails and the remaining chunks are tossed.
*/
padded_len = (len < CHUNK_BUFFER_PAD) ?
len : len - CHUNK_BUFFER_PAD;
}
while(rdlen < padded_len) {
unsigned this_time = 0;
if(!s->read(s, buf + rdlen, len - rdlen, &this_time)) {
/* Remote Client read failed. */
return JK_CLIENT_ERROR;
}
if(0 == this_time) {
if (s->is_chunked) {
s->no_more_chunks = 1; /* read no more */
}
break;
}
rdlen += this_time;
}
return (int)rdlen;
}
/*
* Read data from AJP13/AJP14 protocol
* Returns -1 on error, else number of bytes read
*/
static int ajp_read_into_msg_buff(ajp_endpoint_t *ae,
jk_ws_service_t *r,
jk_msg_buf_t *msg,
int len,
jk_logger_t *l)
{
unsigned char *read_buf = jk_b_get_buff(msg);
jk_b_reset(msg);
read_buf += AJP_HEADER_LEN; /* leave some space for the buffer headers */
read_buf += AJP_HEADER_SZ_LEN; /* leave some space for the read length */
/* Pick the max size since we don't know the content_length */
if (r->is_chunked && len == 0) {
len = AJP13_MAX_SEND_BODY_SZ;
}
if ((len = ajp_read_fully_from_server(r, read_buf, len)) < 0) {
jk_log(l, JK_LOG_INFO,
"ERROR: receiving data from client failed. "
"Connection aborted or network problems\n");
return JK_CLIENT_ERROR;
}
if (!r->is_chunked) {
ae->left_bytes_to_send -= len;
}
if (len > 0) {
/* Recipient recognizes empty packet as end of stream, not
an empty body packet */
if(0 != jk_b_append_int(msg, (unsigned short)len)) {
jk_log(l, JK_LOG_INFO,
"read_into_msg_buff: Error - jk_b_append_int failed\n");
return JK_CLIENT_ERROR;
}
}
jk_b_set_len(msg, jk_b_get_len(msg) + len);
return len;
}
/*
* send request to Tomcat via Ajp13
* - first try to find reuseable socket
* - if no one available, try to connect
* - send request, but send must be see as asynchronous,
* since send() call will return noerror about 95% of time
* Hopefully we'll get more information on next read.
*
* nb: reqmsg is the original request msg buffer
* repmsg is the reply msg buffer which could be scratched
*/
static int ajp_send_request(jk_endpoint_t *e,
jk_ws_service_t *s,
jk_logger_t *l,
ajp_endpoint_t *ae,
ajp_operation_t *op)
{
/* Up to now, we can recover */
op->recoverable = JK_TRUE;
/*
* First try to reuse open connections...
*/
while ((ae->sd > 0) &&
!ajp_connection_tcp_send_message(ae, op->request, l)) {
jk_log(l, JK_LOG_INFO,
"Error sending request try another pooled connection\n");
jk_close_socket(ae->sd);
ae->sd = -1;
ajp_reuse_connection(ae, l);
}
/*
* If we failed to reuse a connection, try to reconnect.
*/
if (ae->sd < 0) {
if (ajp_connect_to_endpoint(ae, l) == JK_TRUE) {
/*
* After we are connected, each error that we are going to
* have is probably unrecoverable
*/
if (!ajp_connection_tcp_send_message(ae, op->request, l)) {
jk_log(l, JK_LOG_INFO,
"Error sending request on a fresh connection\n");
return JK_FALSE;
}
} else {
jk_log(l, JK_LOG_INFO,
"Error connecting to the Tomcat process.\n");
return JK_FALSE;
}
}
/*
* From now on an error means that we have an internal server error
* or Tomcat crashed. In any case we cannot recover this.
*/
jk_log(l, JK_LOG_DEBUG,
"ajp_send_request 2: "
"request body to send %d - request body to resend %d\n",
ae->left_bytes_to_send, jk_b_get_len(op->reply) - AJP_HEADER_LEN);
/*
* POST recovery job is done here.
* It's not very fine to have posted data in reply but that's the only easy
* way to do that for now. Sharing the reply is really a bad solution but
* it will works for POST DATA less than 8k.
* We send here the first part of data which was sent previously to the
* remote Tomcat
*/
if (jk_b_get_len(op->post) > AJP_HEADER_LEN) {
if(!ajp_connection_tcp_send_message(ae, op->post, l)) {
jk_log(l, JK_LOG_ERROR, "Error resending request body\n");
return JK_FALSE;
}
}
else {
/* We never sent any POST data and we check if we have to send at
* least one block of data (max 8k). These data will be kept in reply
* for resend if the remote Tomcat is down, a fact we will learn only
* doing a read (not yet)
*/
/* || s->is_chunked - this can't be done here. The original protocol
sends the first chunk of post data ( based on Content-Length ),
and that's what the java side expects.
Sending this data for chunked would break other ajp13 serers.
Note that chunking will continue to work - using the normal read.
*/
if (ae->left_bytes_to_send > 0) {
int len = ae->left_bytes_to_send;
if (len > AJP13_MAX_SEND_BODY_SZ) {
len = AJP13_MAX_SEND_BODY_SZ;
}
if ((len = ajp_read_into_msg_buff(ae, s, op->post, len, l)) < 0) {
/* the browser stop sending data, no need to recover */
op->recoverable = JK_FALSE;
return JK_CLIENT_ERROR;
}
s->content_read = len;
if (!ajp_connection_tcp_send_message(ae, op->post, l)) {
jk_log(l, JK_LOG_ERROR, "Error sending request body\n");
return JK_FALSE;
}
}
}
return (JK_TRUE);
}
/*
* What to do with incoming data (dispatcher)
*/
static int ajp_process_callback(jk_msg_buf_t *msg,
jk_msg_buf_t *pmsg,
ajp_endpoint_t *ae,
jk_ws_service_t *r,
jk_logger_t *l)
{
int code = (int)jk_b_get_byte(msg);
switch(code) {
case JK_AJP13_SEND_HEADERS:
{
jk_res_data_t res;
if (!ajp_unmarshal_response(msg, &res, ae, l)) {
jk_log(l, JK_LOG_ERROR,
"Error ajp_process_callback - "
"ajp_unmarshal_response failed\n");
return JK_AJP13_ERROR;
}
r->start_response(r, res.status, res.msg,
(const char * const *)res.header_names,
(const char * const *)res.header_values,
res.num_headers);
}
break;
case JK_AJP13_SEND_BODY_CHUNK:
{
unsigned len = (unsigned)jk_b_get_int(msg);
if(!r->write(r, jk_b_get_buff(msg) + jk_b_get_pos(msg), len)) {
jk_log(l, JK_LOG_INFO,
"ERROR sending data to client. "
"Connection aborted or network problems\n");
return JK_CLIENT_ERROR;
}
}
break;
case JK_AJP13_GET_BODY_CHUNK:
{
int len = (int)jk_b_get_int(msg);
if(len < 0) {
len = 0;
}
if(len > AJP13_MAX_SEND_BODY_SZ) {
len = AJP13_MAX_SEND_BODY_SZ;
}
if((unsigned int)len > ae->left_bytes_to_send) {
len = ae->left_bytes_to_send;
}
/* the right place to add file storage for upload */
if ((len = ajp_read_into_msg_buff(ae, r, pmsg, len, l)) >= 0) {
r->content_read += len;
return JK_AJP13_HAS_RESPONSE;
}
jk_log(l, JK_LOG_INFO,
"ERROR reading POST data from client. "
"Connection aborted or network problems\n");
return JK_CLIENT_ERROR;
}
break;
case JK_AJP13_END_RESPONSE:
{
ae->reuse = (int)jk_b_get_byte(msg);
if( ! ae->reuse ) {
/*
* Strange protocol error.
*/
jk_log(l, JK_LOG_DEBUG, "Reuse: %d\n", ae->reuse );
ae->reuse = JK_FALSE;
}
/* Reuse in all cases */
ae->reuse = JK_TRUE;
}
return JK_AJP13_END_RESPONSE;
break;
default:
jk_log(l, JK_LOG_ERROR,
"Error ajp_process_callback - Invalid code: %d\n", code);
return JK_AJP13_ERROR;
}
return JK_AJP13_NO_RESPONSE;
}
/*
* get replies from Tomcat via Ajp13/Ajp14
* We will know only at read time if the remote host closed
* the connection (half-closed state - FIN-WAIT2). In that case
* we must close our side of the socket and abort emission.
* We will need another connection to send the request
* There is need of refactoring here since we mix
* reply reception (tomcat -> apache) and request send (apache -> tomcat)
* and everything using the same buffer (repmsg)
* ajp13/ajp14 is async but handling read/send this way prevent nice recovery
* In fact if tomcat link is broken during upload (browser -> apache -> tomcat)
* we'll loose data and we'll have to abort the whole request.
*/
static int ajp_get_reply(jk_endpoint_t *e,
jk_ws_service_t *s,
jk_logger_t *l,
ajp_endpoint_t *p,
ajp_operation_t *op)
{
/* Start read all reply message */
while(1) {
int rc = 0;
if(!ajp_connection_tcp_get_message(p, op->reply, l)) {
jk_log(l, JK_LOG_ERROR,
"Error reading reply from tomcat. "
"Tomcat is down or network problems.\n");
/* we just can't recover, unset recover flag */
return JK_FALSE;
}
rc = ajp_process_callback(op->reply, op->post, p, s, l);
/* no more data to be sent, fine we have finish here */
if(JK_AJP13_END_RESPONSE == rc) {
return JK_TRUE;
} else if(JK_AJP13_HAS_RESPONSE == rc) {
/*
* in upload-mode there is no second chance since
* we may have allready sent part of the uploaded data
* to Tomcat.
* In this case if Tomcat connection is broken we must
* abort request and indicate error.
* A possible work-around could be to store the uploaded
* data to file and replay for it
*/
op->recoverable = JK_FALSE;
rc = ajp_connection_tcp_send_message(p, op->post, l);
if (rc < 0) {
jk_log(l, JK_LOG_ERROR,
"Error sending request data %d. "
"Tomcat is down or network problems.\n",
rc);
return JK_FALSE;
}
} else if(JK_FATAL_ERROR == rc) {
/*
* we won't be able to gracefully recover from this so
* set recoverable to false and get out.
*/
op->recoverable = JK_FALSE;
return JK_FALSE;
} else if(JK_CLIENT_ERROR == rc) {
/*
* Client has stop talking to us, so get out.
* We assume this isn't our fault, so just a normal exit.
* In most (all?) cases, the ajp13_endpoint::reuse will still be
* false here, so this will be functionally the same as an
* un-recoverable error. We just won't log it as such.
*/
return JK_CLIENT_ERROR;
} else if(rc < 0) {
return (JK_FALSE); /* XXX error */
}
}
}
#define JK_RETRIES 3
/*
* service is now splitted in ajp_send_request and ajp_get_reply
* much more easier to do errors recovery
*
* We serve here the request, using AJP13/AJP14 (e->proto)
*
*/
int JK_METHOD ajp_service(jk_endpoint_t *e,
jk_ws_service_t *s,
jk_logger_t *l,
int *is_recoverable_error)
{
int i, err;
ajp_operation_t oper;
ajp_operation_t *op = &oper;
jk_log(l, JK_LOG_DEBUG, "Into jk_endpoint_t::service\n");
if(e && e->endpoint_private && s && is_recoverable_error) {
ajp_endpoint_t *p = e->endpoint_private;
op->request = jk_b_new(&(p->pool));
jk_b_set_buffer_size(op->request, DEF_BUFFER_SZ);
jk_b_reset(op->request);
op->reply = jk_b_new(&(p->pool));
jk_b_set_buffer_size(op->reply, DEF_BUFFER_SZ);
jk_b_reset(op->reply);
op->post = jk_b_new(&(p->pool));
jk_b_set_buffer_size(op->post, DEF_BUFFER_SZ);
jk_b_reset(op->post);
op->recoverable = JK_TRUE;
op->uploadfd = -1; /* not yet used, later ;) */
p->left_bytes_to_send = s->content_length;
p->reuse = JK_FALSE;
*is_recoverable_error = JK_TRUE;
s->secret = p->worker->secret;
/*
* We get here initial request (in reqmsg)
*/
if (!ajp_marshal_into_msgb(op->request, s, l, p)) {
*is_recoverable_error = JK_FALSE;
return JK_FALSE;
}
/*
* JK_RETRIES could be replaced by the number of workers in
* a load-balancing configuration
*/
for (i = 0; i < JK_RETRIES; i++) {
/*
* We're using reqmsg which hold initial request
* if Tomcat is stopped or restarted, we will pass reqmsg
* to next valid tomcat.
*/
err = ajp_send_request(e, s, l, p, op);
if (err == JK_TRUE) {
/* If we have the no recoverable error, it's probably because
* the sender (browser) stopped sending data before the end
* (certainly in a big post)
*/
if (! op->recoverable) {
*is_recoverable_error = JK_FALSE;
jk_log(l, JK_LOG_ERROR,
"ERROR: sending request to tomcat failed "
"without recovery in send loop %d\n",
i);
return JK_FALSE;
}
/* Up to there we can recover */
*is_recoverable_error = JK_TRUE;
op->recoverable = JK_TRUE;
err = ajp_get_reply(e, s, l, p, op);
if (err > 0) {
return (JK_TRUE);
}
if (err != JK_CLIENT_ERROR) {
/* if we can't get reply, check if no recover flag was set
* if is_recoverable_error is cleared, we have started
* receiving upload data and we must consider that
* operation is no more recoverable
*/
if (! op->recoverable) {
*is_recoverable_error = JK_FALSE;
jk_log(l, JK_LOG_ERROR,
"ERROR: receiving reply from tomcat failed "
"without recovery in send loop %d\n",
i);
return JK_FALSE;
}
jk_log(l, JK_LOG_ERROR,
"ERROR: Receiving from tomcat failed, "
"recoverable operation. err=%d\n",
i);
}
}
jk_close_socket(p->sd);
p->sd = -1;
ajp_reuse_connection(p, l);
if (err == JK_CLIENT_ERROR) {
*is_recoverable_error = JK_FALSE;
jk_log(l, JK_LOG_ERROR,
"ERROR: "
"Client connection aborted or network problems\n");
return JK_CLIENT_ERROR;
}
else {
jk_log(l, JK_LOG_INFO,
"sending request to tomcat failed in send loop. "
"err=%d\n",
i);
}
}
/* Log the error only once per failed request. */
jk_log(l, JK_LOG_ERROR,
"Error connecting to tomcat. Tomcat is probably not started "
"or is listening on the wrong port. worker=%s failed errno = %d\n",
p->worker->name, errno);
} else {
jk_log(l, JK_LOG_ERROR, "In jk_endpoint_t::service, NULL parameters\n");
}
return JK_FALSE;
}
/*
* Validate the worker (ajp13/ajp14)
*/
int ajp_validate(jk_worker_t *pThis,
jk_map_t *props,
jk_worker_env_t *we,
jk_logger_t *l,
int proto)
{
int port;
char * host;
jk_log(l, JK_LOG_DEBUG, "Into jk_worker_t::validate\n");
if (proto == AJP13_PROTO) {
port = AJP13_DEF_PORT;
host = AJP13_DEF_HOST;
}
else if (proto == AJP14_PROTO) {
port = AJP14_DEF_PORT;
host = AJP14_DEF_HOST;
}
else {
jk_log(l, JK_LOG_DEBUG,
"In jk_worker_t::validate unknown protocol %d\n", proto);
return JK_FALSE;
}
if (pThis && pThis->worker_private) {
ajp_worker_t *p = pThis->worker_private;
port = jk_get_worker_port(props, p->name, port);
host = jk_get_worker_host(props, p->name, host);
jk_log(l, JK_LOG_DEBUG,
"In jk_worker_t::validate for worker %s contact is %s:%d\n",
p->name, host, port);
if(port > 1024 && host) {
if(jk_resolve(host, port, &p->worker_inet_addr)) {
return JK_TRUE;
}
jk_log(l, JK_LOG_ERROR,
"ERROR: can't resolve tomcat address %s\n", host);
}
jk_log(l, JK_LOG_ERROR,
"ERROR: invalid host and port %s %d\n",
(( host==NULL ) ? "NULL" : host ), port);
} else {
jk_log(l, JK_LOG_ERROR, "In jk_worker_t::validate, NULL parameters\n");
}
return JK_FALSE;
}
int ajp_init(jk_worker_t *pThis,
jk_map_t *props,
jk_worker_env_t *we,
jk_logger_t *l,
int proto)
{
int cache;
/*
* start the connection cache
*/
jk_log(l, JK_LOG_DEBUG, "Into jk_worker_t::init\n");
if (proto == AJP13_PROTO) {
cache = AJP13_DEF_CACHE_SZ;
}
else if (proto == AJP14_PROTO) {
cache = AJP13_DEF_CACHE_SZ;
}
else {
jk_log(l, JK_LOG_DEBUG,
"In jk_worker_t::init, unknown protocol %d\n", proto);
return JK_FALSE;
}
if (pThis && pThis->worker_private) {
ajp_worker_t *p = pThis->worker_private;
int cache_sz = jk_get_worker_cache_size(props, p->name, cache);
int socket_timeout =
jk_get_worker_socket_timeout(props, p->name, AJP13_DEF_TIMEOUT);
int socket_keepalive =
jk_get_worker_socket_keepalive(props, p->name, JK_FALSE);
int cache_timeout =
jk_get_worker_cache_timeout(props, p->name, AJP_DEF_CACHE_TIMEOUT);
jk_log(l, JK_LOG_DEBUG,
"In jk_worker_t::init, setting socket timeout to %d\n",
socket_timeout);
p->socket_timeout = socket_timeout;
p->keepalive = socket_keepalive;
p->cache_timeout = cache_timeout;
/*
* Need to initialize secret here since we could return from inside
* of the following loop
*/
p->secret = jk_get_worker_secret(props, p->name );
p->ep_cache_sz = 0;
p->ep_mincache_sz = 0;
if (cache_sz > 0) {
p->ep_cache =
(ajp_endpoint_t **)malloc(sizeof(ajp_endpoint_t *) * cache_sz);
if(p->ep_cache) {
int i;
p->ep_cache_sz = cache_sz;
for(i = 0 ; i < cache_sz ; i++) {
p->ep_cache[i] = NULL;
}
JK_INIT_CS(&(p->cs), i);
if (i) {
return JK_TRUE;
}
}
}
} else {
jk_log(l, JK_LOG_ERROR, "In jk_worker_t::init, NULL parameters\n");
}
return JK_FALSE;
}
int ajp_destroy(jk_worker_t **pThis,
jk_logger_t *l,
int proto)
{
jk_log(l, JK_LOG_DEBUG, "Into jk_worker_t::destroy\n");
if (pThis && *pThis && (*pThis)->worker_private) {
ajp_worker_t *aw = (*pThis)->worker_private;
free(aw->name);
jk_log(l, JK_LOG_DEBUG,
"Into jk_worker_t::destroy up to %d endpoint to close\n",
aw->ep_cache_sz);
if(aw->ep_cache_sz) {
unsigned i;
for(i = 0 ; i < aw->ep_cache_sz ; i++) {
if(aw->ep_cache[i]) {
ajp_close_endpoint(aw->ep_cache[i], l);
}
}
free(aw->ep_cache);
JK_DELETE_CS(&(aw->cs), i);
}
if (aw->login) {
free(aw->login);
aw->login = NULL;
}
free(aw);
return JK_TRUE;
}
jk_log(l, JK_LOG_ERROR, "In jk_worker_t::destroy, NULL parameters\n");
return JK_FALSE;
}
int JK_METHOD ajp_done(jk_endpoint_t **e,
jk_logger_t *l)
{
if (e && *e && (*e)->endpoint_private) {
ajp_endpoint_t *p = (*e)->endpoint_private;
int reuse_ep = p->reuse;
ajp_reset_endpoint(p);
if(reuse_ep) {
ajp_worker_t *w = p->worker;
if(w->ep_cache_sz) {
int rc;
JK_ENTER_CS(&w->cs, rc);
if(rc) {
unsigned i;
for(i = 0 ; i < w->ep_cache_sz ; i++) {
if(!w->ep_cache[i]) {
w->ep_cache[i] = p;
break;
}
}
JK_LEAVE_CS(&w->cs, rc);
if(i < w->ep_cache_sz) {
jk_log(l, JK_LOG_DEBUG,
"Into jk_endpoint_t::done, "
"recycling connection\n");
return JK_TRUE;
}
}
}
}
jk_log(l, JK_LOG_DEBUG,
"Into jk_endpoint_t::done, closing connection %d\n", reuse_ep);
ajp_close_endpoint(p, l);
*e = NULL;
return JK_TRUE;
}
jk_log(l, JK_LOG_ERROR, "In jk_endpoint_t::done, NULL parameters\n");
return JK_FALSE;
}
int ajp_get_endpoint(jk_worker_t *pThis,
jk_endpoint_t **je,
jk_logger_t *l,
int proto)
{
jk_log(l, JK_LOG_DEBUG, "Into jk_worker_t::get_endpoint\n");
if (pThis && pThis->worker_private && je) {
ajp_worker_t *aw = pThis->worker_private;
ajp_endpoint_t *ae = NULL;
if (aw->ep_cache_sz) {
int rc;
JK_ENTER_CS(&aw->cs, rc);
if (rc) {
unsigned i;
time_t now;
if (aw->socket_timeout > 0 || aw->cache_timeout) {
now = time(NULL);
}
for (i = 0 ; i < aw->ep_cache_sz ; i++) {
if (aw->ep_cache[i]) {
ae = aw->ep_cache[i];
aw->ep_cache[i] = NULL;
break;
}
}
/* Handle enpoint cache timeouts */
if (aw->cache_timeout) {
for ( ; i < aw->ep_cache_sz ; i++) {
if (aw->ep_cache[i]) {
unsigned elapsed = (unsigned)(now-ae->last_access);
if (elapsed > aw->cache_timeout) {
jk_log(l, JK_LOG_DEBUG,
"In jk_endpoint_t::ajp_get_endpoint,"
" cleaning cache slot = %d elapsed %d\n",
i, elapsed);
ajp_close_endpoint(aw->ep_cache[i], l);
aw->ep_cache[i] = NULL;
}
}
}
}
JK_LEAVE_CS(&aw->cs, rc);
if (ae) {
if (ae->sd > 0) {
/* Handle timeouts for open sockets */
unsigned elapsed = (unsigned)(now - ae->last_access);
ae->last_access = now;
jk_log(l, JK_LOG_DEBUG,
"In jk_endpoint_t::ajp_get_endpoint, "
"time elapsed since last request = %d seconds\n",
elapsed);
if (aw->socket_timeout > 0 &&
elapsed > aw->socket_timeout) {
jk_close_socket(ae->sd);
jk_log(l, JK_LOG_DEBUG,
"In jk_endpoint_t::ajp_get_endpoint, "
"reached socket timeout, closed sd = %d\n",
ae->sd);
ae->sd = -1; /* just to avoid twice close */
}
}
*je = &ae->endpoint;
return JK_TRUE;
}
}
}
ae = (ajp_endpoint_t *)malloc(sizeof(ajp_endpoint_t));
if (ae) {
ae->sd = -1;
ae->reuse = JK_FALSE;
ae->last_access = time(NULL);
jk_open_pool(&ae->pool, ae->buf, sizeof(ae->buf));
ae->worker = pThis->worker_private;
ae->endpoint.endpoint_private = ae;
ae->proto = proto;
ae->endpoint.service = ajp_service;
ae->endpoint.done = ajp_done;
*je = &ae->endpoint;
return JK_TRUE;
}
jk_log(l, JK_LOG_ERROR,
"In jk_worker_t::get_endpoint, malloc failed\n");
} else {
jk_log(l, JK_LOG_ERROR,
"In jk_worker_t::get_endpoint, NULL parameters\n");
}
return JK_FALSE;
}
|