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
|
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "ts_lua_util.h"
#include "ts_lua_remap.h"
#include "ts_lua_constant.h"
#include "ts_lua_client_request.h"
#include "ts_lua_server_request.h"
#include "ts_lua_server_response.h"
#include "ts_lua_client_response.h"
#include "ts_lua_cached_response.h"
#include "ts_lua_context.h"
#include "ts_lua_hook.h"
#include "ts_lua_vconn.h"
#include "ts_lua_http.h"
#include "ts_lua_misc.h"
#include "ts_lua_log.h"
#include "ts_lua_crypto.h"
#include "ts_lua_mgmt.h"
#include "ts_lua_package.h"
#include "ts_lua_stat.h"
#include "ts_lua_fetch.h"
#include "ts_lua_http_intercept.h"
static lua_State *ts_lua_new_state();
static void ts_lua_init_registry(lua_State *L);
static void ts_lua_init_globals(lua_State *L);
static void ts_lua_inject_ts_api(lua_State *L);
static ts_lua_ctx_stats *ts_lua_create_ctx_stats();
static void ts_lua_destroy_ctx_stats(ts_lua_ctx_stats *stats);
static void ts_lua_update_server_response_hdrp(ts_lua_http_ctx *http_ctx);
/**
Update http_ctx->server_response_hdrp if there.
This is required in the beginning of toughing response, because holding old pointer could be freed by core.
*/
void
ts_lua_update_server_response_hdrp(ts_lua_http_ctx *http_ctx)
{
if (http_ctx->server_response_hdrp) {
TSHttpTxnServerRespGet(http_ctx->txnp, &http_ctx->server_response_bufp, &http_ctx->server_response_hdrp);
}
}
void
ts_lua_clear_http_ctx(ts_lua_http_ctx *http_ctx)
{
if (http_ctx->rri == NULL) {
if (http_ctx->client_request_url != NULL) {
TSHandleMLocRelease(http_ctx->client_request_bufp, http_ctx->client_request_hdrp, http_ctx->client_request_url);
http_ctx->client_request_url = NULL;
}
if (http_ctx->client_request_bufp != NULL) {
TSHandleMLocRelease(http_ctx->client_request_bufp, TS_NULL_MLOC, http_ctx->client_request_hdrp);
http_ctx->client_request_bufp = NULL;
http_ctx->client_request_hdrp = NULL;
}
}
if (http_ctx->server_request_url != NULL) {
TSHandleMLocRelease(http_ctx->server_request_bufp, http_ctx->server_request_hdrp, http_ctx->server_request_url);
http_ctx->server_request_url = NULL;
}
if (http_ctx->server_request_hdrp != NULL) {
TSHandleMLocRelease(http_ctx->server_request_bufp, TS_NULL_MLOC, http_ctx->server_request_hdrp);
http_ctx->server_request_bufp = NULL;
http_ctx->server_request_hdrp = NULL;
}
if (http_ctx->server_response_bufp != NULL) {
TSHandleMLocRelease(http_ctx->server_response_bufp, TS_NULL_MLOC, http_ctx->server_response_hdrp);
http_ctx->server_response_bufp = NULL;
http_ctx->server_response_hdrp = NULL;
}
if (http_ctx->client_response_hdrp != NULL) {
TSHandleMLocRelease(http_ctx->client_response_bufp, TS_NULL_MLOC, http_ctx->client_response_hdrp);
http_ctx->client_response_bufp = NULL;
http_ctx->client_response_hdrp = NULL;
}
if (http_ctx->cached_response_bufp != NULL) {
TSMimeHdrDestroy(http_ctx->cached_response_bufp, http_ctx->cached_response_hdrp);
TSHandleMLocRelease(http_ctx->cached_response_bufp, TS_NULL_MLOC, http_ctx->cached_response_hdrp);
TSMBufferDestroy(http_ctx->cached_response_bufp);
http_ctx->cached_response_bufp = NULL;
http_ctx->cached_response_hdrp = NULL;
}
}
int
ts_lua_create_vm(ts_lua_main_ctx *arr, int n)
{
int i;
lua_State *L;
for (i = 0; i < n; i++) {
L = ts_lua_new_state();
if (L == NULL)
return -1;
lua_pushvalue(L, LUA_GLOBALSINDEX);
arr[i].gref = luaL_ref(L, LUA_REGISTRYINDEX); /* L[REG][gref] = L[GLOBAL] */
arr[i].lua = L;
arr[i].mutexp = TSMutexCreate();
arr[i].stats = ts_lua_create_ctx_stats();
}
return 0;
}
void
ts_lua_destroy_vm(ts_lua_main_ctx *arr, int n)
{
int i;
lua_State *L;
TSMutex mutexp;
ts_lua_ctx_stats *stats;
for (i = 0; i < n; i++) {
L = arr[i].lua;
if (L) {
lua_close(L);
arr[i].lua = NULL;
}
mutexp = arr[i].mutexp;
if (mutexp) {
TSMutexDestroy(mutexp);
arr[i].mutexp = NULL;
}
stats = arr[i].stats;
if (stats) {
ts_lua_destroy_ctx_stats(stats);
arr[i].stats = NULL;
}
}
return;
}
lua_State *
ts_lua_new_state()
{
lua_State *L;
L = luaL_newstate();
if (L == NULL) {
return NULL;
}
luaL_openlibs(L);
ts_lua_init_registry(L);
ts_lua_init_globals(L);
return L;
}
ts_lua_ctx_stats *
ts_lua_create_ctx_stats()
{
ts_lua_ctx_stats *stats = NULL;
stats = TSmalloc(sizeof(ts_lua_ctx_stats));
memset(stats, 0, sizeof(ts_lua_ctx_stats));
stats->mutexp = TSMutexCreate();
return stats;
}
void
ts_lua_destroy_ctx_stats(ts_lua_ctx_stats *stats)
{
if (stats) {
TSMutexDestroy(stats->mutexp);
stats->mutexp = NULL;
TSfree(stats);
}
}
ts_lua_instance_conf *
ts_lua_script_registered(lua_State *L, char *script)
{
TSMgmtInt curr_time;
ts_lua_instance_conf *conf = NULL;
TSDebug(TS_LUA_DEBUG_TAG, "[%s] checking if script [%s] is registered", __FUNCTION__, script);
// first check the reconfigure_time for the script. if it is not found, then it is new
// if it matches the current reconfigure_time, then it is loaded already
// And we return the conf pointer of it. Otherwise it can be loaded again.
if (TS_SUCCESS == TSMgmtIntGet("proxy.node.config.reconfigure_time", &curr_time)) {
lua_pushliteral(L, "__scriptTime");
lua_pushstring(L, script);
lua_concat(L, 2);
lua_rawget(L, LUA_REGISTRYINDEX);
if (lua_isnil(L, -1)) {
TSDebug(TS_LUA_DEBUG_TAG, "[%s] failed to get script time for [%s]", __FUNCTION__, script);
lua_pop(L, -1);
return NULL;
} else {
int time = lua_tonumber(L, -1);
lua_pop(L, -1);
if (time == curr_time) {
lua_pushliteral(L, "__scriptPtr");
lua_pushstring(L, script);
lua_concat(L, 2);
lua_rawget(L, LUA_REGISTRYINDEX);
if (lua_isnil(L, -1)) {
TSDebug(TS_LUA_DEBUG_TAG, "[%s] failed to get script ptr for [%s]", __FUNCTION__, script);
lua_pop(L, -1);
return NULL;
} else {
conf = lua_touserdata(L, -1);
lua_pop(L, -1);
return conf;
}
} else {
TSDebug(TS_LUA_DEBUG_TAG, "[%s] script time not matching for [%s]", __FUNCTION__, script);
return NULL;
}
}
} else {
TSError("[ts_lua][%s] failed to get node's reconfigure time while checking script registration", __FUNCTION__);
return NULL;
}
}
void
ts_lua_script_register(lua_State *L, char *script, ts_lua_instance_conf *conf)
{
TSMgmtInt time;
TSDebug(TS_LUA_DEBUG_TAG, "[%s] registering script [%s]", __FUNCTION__, script);
// we recorded the script reconfigure_time and its conf pointer in registry
if (TS_SUCCESS == TSMgmtIntGet("proxy.node.config.reconfigure_time", &time)) {
lua_pushliteral(L, "__scriptTime");
lua_pushstring(L, script);
lua_concat(L, 2);
lua_pushnumber(L, time);
lua_rawset(L, LUA_REGISTRYINDEX);
lua_pushliteral(L, "__scriptPtr");
lua_pushstring(L, script);
lua_concat(L, 2);
lua_pushlightuserdata(L, conf);
lua_rawset(L, LUA_REGISTRYINDEX);
} else {
TSError("[ts_lua][%s] failed to get node's reconfigure time while registering script", __FUNCTION__);
}
}
int
ts_lua_add_module(ts_lua_instance_conf *conf, ts_lua_main_ctx *arr, int n, int argc, char *argv[], char *errbuf, int errbuf_size)
{
int i, ret;
int t;
lua_State *L;
for (i = 0; i < n; i++) {
conf->_first = (i == 0) ? 1 : 0;
conf->_last = (i == n - 1) ? 1 : 0;
TSMutexLock(arr[i].mutexp);
L = arr[i].lua;
lua_newtable(L); /* new TB1 */
lua_pushvalue(L, -1); /* new TB2 */
lua_setfield(L, -2, "_G"); /* TB1[_G] = TB2 empty table, we can change _G to xx */
lua_newtable(L); /* new TB3 */
lua_rawgeti(L, LUA_REGISTRYINDEX, arr[i].gref); /* push L[GLOBAL] */
lua_setfield(L, -2, "__index"); /* TB3[__index] = L[GLOBAL] which has ts.xxx api */
lua_setmetatable(L, -2); /* TB1[META] = TB3 */
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = TB1 */
ts_lua_set_instance_conf(L, conf);
if (conf->content) {
if (luaL_loadstring(L, conf->content)) {
snprintf(errbuf, errbuf_size, "[%s] luaL_loadstring failed: %s", __FUNCTION__, lua_tostring(L, -1));
lua_pop(L, 1);
TSMutexUnlock(arr[i].mutexp);
return -1;
}
} else if (strlen(conf->script)) {
if (luaL_loadfile(L, conf->script)) {
snprintf(errbuf, errbuf_size, "[%s] luaL_loadfile %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
lua_pop(L, 1);
TSMutexUnlock(arr[i].mutexp);
return -1;
}
}
if (lua_pcall(L, 0, 0, 0)) {
snprintf(errbuf, errbuf_size, "[%s] lua_pcall %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
lua_pop(L, 1);
TSMutexUnlock(arr[i].mutexp);
return -1;
}
/* call "__init__", to parse parameters */
lua_getglobal(L, "__init__");
if (lua_type(L, -1) == LUA_TFUNCTION) {
// specifying that the file has an __init__ function
conf->init_func = 1;
lua_newtable(L);
for (t = 0; t < argc; t++) {
lua_pushnumber(L, t);
lua_pushstring(L, argv[t]);
lua_rawset(L, -3);
}
if (lua_pcall(L, 1, 1, 0)) {
snprintf(errbuf, errbuf_size, "[%s] lua_pcall %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
lua_pop(L, 1);
TSMutexUnlock(arr[i].mutexp);
return -1;
}
ret = lua_tonumber(L, -1);
lua_pop(L, 1);
if (ret) {
TSMutexUnlock(arr[i].mutexp);
return -1; /* script parse error */
}
} else {
lua_pop(L, 1); /* pop nil */
}
lua_pushlightuserdata(L, conf);
lua_pushvalue(L, LUA_GLOBALSINDEX);
lua_rawset(L, LUA_REGISTRYINDEX); /* L[REG][conf] = L[GLOBAL] */
lua_newtable(L);
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = EMPTY */
if (conf->ljgc > 0) {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, running LuaJIT Garbage Collector...", conf->ljgc);
lua_gc(L, LUA_GCCOLLECT, 0);
} else {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, NOT running LuaJIT Garbage Collector...", conf->ljgc);
}
TSMutexUnlock(arr[i].mutexp);
}
return 0;
}
int
ts_lua_del_module(ts_lua_instance_conf *conf, ts_lua_main_ctx *arr, int n)
{
int i;
lua_State *L;
for (i = 0; i < n; i++) {
TSMutexLock(arr[i].mutexp);
L = arr[i].lua;
/* call "__clean__", to clean resources */
lua_pushlightuserdata(L, conf);
lua_rawget(L, LUA_REGISTRYINDEX);
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = L[REG][conf] */
lua_getglobal(L, "__clean__"); /* get __clean__ function */
if (lua_type(L, -1) == LUA_TFUNCTION) {
if (lua_pcall(L, 0, 0, 0)) {
TSError("[ts_lua][%s] lua_pcall %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
}
} else {
lua_pop(L, 1); /* pop nil */
}
lua_pushlightuserdata(L, conf);
if (conf->ref_count > 1) {
TSDebug(TS_LUA_DEBUG_TAG, "Reference Count = %d , NOT clearing registry...", conf->ref_count);
lua_pushvalue(L, LUA_GLOBALSINDEX);
lua_rawset(L, LUA_REGISTRYINDEX); /* L[REG][conf] = L[GLOBAL] */
} else {
TSDebug(TS_LUA_DEBUG_TAG, "Reference Count = %d , clearing registry...", conf->ref_count);
lua_pushnil(L);
lua_rawset(L, LUA_REGISTRYINDEX); /* L[REG][conf] = nil */
}
lua_newtable(L);
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = EMPTY */
if (conf->ljgc > 0) {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, running LuaJIT Garbage Collector...", conf->ljgc);
lua_gc(L, LUA_GCCOLLECT, 0);
} else {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, NOT running LuaJIT Garbage Collector...", conf->ljgc);
}
TSMutexUnlock(arr[i].mutexp);
}
return 0;
}
int
ts_lua_reload_module(ts_lua_instance_conf *conf, ts_lua_main_ctx *arr, int n)
{
int i;
lua_State *L;
for (i = 0; i < n; i++) {
TSMutexLock(arr[i].mutexp);
L = arr[i].lua;
/* call "__reload__", to clean resources if necessary */
lua_pushlightuserdata(L, conf);
lua_rawget(L, LUA_REGISTRYINDEX);
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = L[REG][conf] */
lua_getglobal(L, "__reload__"); /* get __clean__ function */
if (lua_type(L, -1) == LUA_TFUNCTION) {
if (lua_pcall(L, 0, 0, 0)) {
TSError("[ts_lua][%s] lua_pcall %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
}
} else {
lua_pop(L, 1); /* pop nil */
}
// new global context
lua_newtable(L); /* new TB1 */
lua_pushvalue(L, -1); /* new TB2 */
lua_setfield(L, -2, "_G"); /* TB1[_G] = TB2 empty table, we can change _G to xx */
lua_newtable(L); /* new TB3 */
lua_rawgeti(L, LUA_REGISTRYINDEX, arr[i].gref); /* push L[GLOBAL] */
lua_setfield(L, -2, "__index"); /* TB3[__index] = L[GLOBAL] which has ts.xxx api */
lua_setmetatable(L, -2); /* TB1[META] = TB3 */
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = TB1 */
ts_lua_set_instance_conf(L, conf);
if (strlen(conf->script)) {
if (luaL_loadfile(L, conf->script)) {
TSError("[ts_lua][%s] luaL_loadfile %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
} else {
if (lua_pcall(L, 0, 0, 0)) {
TSError("[ts_lua][%s] lua_pcall %s failed: %s", __FUNCTION__, conf->script, lua_tostring(L, -1));
}
}
}
lua_pushlightuserdata(L, conf);
lua_pushvalue(L, LUA_GLOBALSINDEX);
lua_rawset(L, LUA_REGISTRYINDEX); /* L[REG][conf] = L[GLOBAL] */
lua_newtable(L);
lua_replace(L, LUA_GLOBALSINDEX); /* L[GLOBAL] = EMPTY */
if (conf->ljgc > 0) {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, running LuaJIT Garbage Collector...", conf->ljgc);
lua_gc(L, LUA_GCCOLLECT, 0);
} else {
TSDebug(TS_LUA_DEBUG_TAG, "ljgc = %d, NOT running LuaJIT Garbage Collector...", conf->ljgc);
}
TSMutexUnlock(arr[i].mutexp);
}
return 0;
}
int
ts_lua_init_instance(ts_lua_instance_conf *conf ATS_UNUSED)
{
return 0;
}
int
ts_lua_del_instance(ts_lua_instance_conf *conf ATS_UNUSED)
{
return 0;
}
static void
ts_lua_init_registry(lua_State *L ATS_UNUSED)
{
return;
}
static void
ts_lua_init_globals(lua_State *L)
{
ts_lua_inject_ts_api(L);
}
static void
ts_lua_inject_ts_api(lua_State *L)
{
lua_newtable(L);
ts_lua_inject_remap_api(L);
ts_lua_inject_constant_api(L);
ts_lua_inject_client_request_api(L);
ts_lua_inject_server_request_api(L);
ts_lua_inject_server_response_api(L);
ts_lua_inject_client_response_api(L);
ts_lua_inject_cached_response_api(L);
ts_lua_inject_log_api(L);
ts_lua_inject_context_api(L);
ts_lua_inject_hook_api(L);
ts_lua_inject_vconn_api(L);
ts_lua_inject_http_api(L);
ts_lua_inject_intercept_api(L);
ts_lua_inject_misc_api(L);
ts_lua_inject_crypto_api(L);
ts_lua_inject_mgmt_api(L);
ts_lua_inject_package_api(L);
ts_lua_inject_stat_api(L);
ts_lua_inject_fetch_api(L);
lua_getglobal(L, "package");
lua_getfield(L, -1, "loaded");
lua_pushvalue(L, -3);
lua_setfield(L, -2, "ts");
lua_pop(L, 2);
lua_setglobal(L, "ts");
}
void
ts_lua_set_instance_conf(lua_State *L, ts_lua_instance_conf *conf)
{
lua_pushliteral(L, "__ts_instance_conf");
lua_pushlightuserdata(L, conf);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_instance_conf *
ts_lua_get_instance_conf(lua_State *L)
{
ts_lua_instance_conf *conf;
lua_pushliteral(L, "__ts_instance_conf");
lua_rawget(L, LUA_GLOBALSINDEX);
conf = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the conf out
return conf;
}
void
ts_lua_set_cont_info(lua_State *L, ts_lua_cont_info *ci)
{
lua_pushliteral(L, "__ts_cont_info");
lua_pushlightuserdata(L, ci);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_cont_info *
ts_lua_get_cont_info(lua_State *L)
{
ts_lua_cont_info *ci;
lua_pushliteral(L, "__ts_cont_info");
lua_rawget(L, LUA_GLOBALSINDEX);
ci = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the coroutine out
return ci;
}
ts_lua_http_ctx *
ts_lua_create_async_ctx(lua_State *L, ts_lua_cont_info *hci, int n)
{
int i;
lua_State *l;
ts_lua_coroutine *crt;
ts_lua_http_ctx *actx;
actx = TSmalloc(sizeof(ts_lua_http_ctx));
memset(actx, 0, sizeof(ts_lua_http_ctx));
// create lua_thread
l = lua_newthread(L);
// init the coroutine
crt = &actx->cinfo.routine;
crt->mctx = hci->routine.mctx;
crt->lua = l;
crt->ref = luaL_ref(L, LUA_REGISTRYINDEX);
// update thread stats
ts_lua_main_ctx *const main_ctx = crt->mctx;
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
++stats->threads;
if (stats->threads_max < stats->threads) {
stats->threads_max = stats->threads;
}
TSMutexUnlock(stats->mutexp);
// replace the param; start with 2 because first two params are not needed
for (i = 2; i < n; i++) {
lua_pushvalue(L, i + 1);
}
lua_xmove(L, l, n - 2);
return actx;
}
void
ts_lua_destroy_async_ctx(ts_lua_http_ctx *http_ctx)
{
ts_lua_cont_info *ci;
ci = &http_ctx->cinfo;
// update thread stats
ts_lua_main_ctx *const main_ctx = ci->routine.mctx;
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
--stats->threads;
TSMutexUnlock(stats->mutexp);
ts_lua_release_cont_info(ci);
TSfree(http_ctx);
}
void
ts_lua_set_vconn_ctx(lua_State *L, ts_lua_vconn_ctx *ctx)
{
lua_pushliteral(L, "__ts_vconn_ctx");
lua_pushlightuserdata(L, ctx);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_vconn_ctx *
ts_lua_get_vconn_ctx(lua_State *L)
{
ts_lua_vconn_ctx *ctx;
lua_pushliteral(L, "__ts_vconn_ctx");
lua_rawget(L, LUA_GLOBALSINDEX);
ctx = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the ctx out
return ctx;
}
ts_lua_vconn_ctx *
ts_lua_create_vconn_ctx(ts_lua_main_ctx *main_ctx, ts_lua_instance_conf *conf)
{
ts_lua_vconn_ctx *vconn_ctx;
vconn_ctx = TSmalloc(sizeof(ts_lua_vconn_ctx));
memset(vconn_ctx, 0, sizeof(*vconn_ctx));
lua_State *L = main_ctx->lua;
lua_State *l = lua_newthread(L);
lua_pushlightuserdata(L, conf);
lua_rawget(L, LUA_REGISTRYINDEX);
/* new globals table for coroutine */
lua_newtable(l);
lua_pushvalue(l, -1);
lua_setfield(l, -2, "_G");
lua_newtable(l);
lua_xmove(L, l, 1);
lua_setfield(l, -2, "__index");
lua_setmetatable(l, -2);
lua_replace(l, LUA_GLOBALSINDEX);
// init coroutine
vconn_ctx->ref = luaL_ref(L, LUA_REGISTRYINDEX);
vconn_ctx->lua = l;
vconn_ctx->mctx = main_ctx;
// update thread stats
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
++stats->threads;
if (stats->threads_max < stats->threads) {
stats->threads_max = stats->threads;
}
TSMutexUnlock(stats->mutexp);
vconn_ctx->instance_conf = conf;
ts_lua_set_vconn_ctx(l, vconn_ctx);
ts_lua_create_context_table(l);
return vconn_ctx;
}
void
ts_lua_destroy_vconn_ctx(ts_lua_vconn_ctx *vconn_ctx)
{
// update thread stats
ts_lua_main_ctx *const main_ctx = vconn_ctx->mctx;
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
--stats->threads;
TSMutexUnlock(stats->mutexp);
if (vconn_ctx->lua) {
luaL_unref(vconn_ctx->lua, LUA_REGISTRYINDEX, vconn_ctx->ref);
}
TSfree(vconn_ctx);
}
void
ts_lua_set_http_ctx(lua_State *L, ts_lua_http_ctx *ctx)
{
lua_pushliteral(L, "__ts_http_ctx");
lua_pushlightuserdata(L, ctx);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_http_ctx *
ts_lua_get_http_ctx(lua_State *L)
{
ts_lua_http_ctx *ctx;
lua_pushliteral(L, "__ts_http_ctx");
lua_rawget(L, LUA_GLOBALSINDEX);
ctx = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the ctx out
return ctx;
}
ts_lua_http_ctx *
ts_lua_create_http_ctx(ts_lua_main_ctx *main_ctx, ts_lua_instance_conf *conf)
{
ts_lua_coroutine *crt;
ts_lua_http_ctx *http_ctx;
lua_State *L;
lua_State *l;
L = main_ctx->lua;
http_ctx = TSmalloc(sizeof(ts_lua_http_ctx));
memset(http_ctx, 0, sizeof(ts_lua_http_ctx));
// create coroutine for http_ctx
crt = &http_ctx->cinfo.routine;
l = lua_newthread(L);
lua_pushlightuserdata(L, conf);
lua_rawget(L, LUA_REGISTRYINDEX);
/* new globals table for coroutine */
lua_newtable(l);
lua_pushvalue(l, -1);
lua_setfield(l, -2, "_G");
lua_newtable(l);
lua_xmove(L, l, 1);
lua_setfield(l, -2, "__index");
lua_setmetatable(l, -2);
lua_replace(l, LUA_GLOBALSINDEX);
// init coroutine
crt->ref = luaL_ref(L, LUA_REGISTRYINDEX);
crt->lua = l;
crt->mctx = main_ctx;
// update thread stats
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
++stats->threads;
if (stats->threads_max < stats->threads) {
stats->threads_max = stats->threads;
}
TSMutexUnlock(stats->mutexp);
http_ctx->instance_conf = conf;
ts_lua_set_http_ctx(l, http_ctx);
ts_lua_create_context_table(l);
return http_ctx;
}
void
ts_lua_destroy_http_ctx(ts_lua_http_ctx *http_ctx)
{
ts_lua_cont_info *ci;
ci = &http_ctx->cinfo;
if (http_ctx->rri == NULL) {
if (http_ctx->client_request_url) {
TSHandleMLocRelease(http_ctx->client_request_bufp, http_ctx->client_request_hdrp, http_ctx->client_request_url);
}
if (http_ctx->client_request_bufp) {
TSHandleMLocRelease(http_ctx->client_request_bufp, TS_NULL_MLOC, http_ctx->client_request_hdrp);
}
}
if (http_ctx->server_request_url) {
TSHandleMLocRelease(http_ctx->server_request_bufp, http_ctx->server_request_hdrp, http_ctx->server_request_url);
}
if (http_ctx->server_request_bufp) {
TSHandleMLocRelease(http_ctx->server_request_bufp, TS_NULL_MLOC, http_ctx->server_request_hdrp);
}
if (http_ctx->server_response_bufp) {
TSHandleMLocRelease(http_ctx->server_response_bufp, TS_NULL_MLOC, http_ctx->server_response_hdrp);
}
if (http_ctx->client_response_bufp) {
TSHandleMLocRelease(http_ctx->client_response_bufp, TS_NULL_MLOC, http_ctx->client_response_hdrp);
}
if (http_ctx->cached_response_bufp) {
TSMimeHdrDestroy(http_ctx->cached_response_bufp, http_ctx->cached_response_hdrp);
TSHandleMLocRelease(http_ctx->cached_response_bufp, TS_NULL_MLOC, http_ctx->cached_response_hdrp);
TSMBufferDestroy(http_ctx->cached_response_bufp);
}
// update thread stats
ts_lua_main_ctx *const main_ctx = ci->routine.mctx;
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
--stats->threads;
TSMutexUnlock(stats->mutexp);
ts_lua_release_cont_info(ci);
TSfree(http_ctx);
}
void
ts_lua_set_http_intercept_ctx(lua_State *L, ts_lua_http_intercept_ctx *ictx)
{
lua_pushliteral(L, "__ts_http_intercept_ctx");
lua_pushlightuserdata(L, ictx);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_http_intercept_ctx *
ts_lua_get_http_intercept_ctx(lua_State *L)
{
ts_lua_http_intercept_ctx *ictx;
lua_pushliteral(L, "__ts_http_intercept_ctx");
lua_rawget(L, LUA_GLOBALSINDEX);
ictx = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the ictx out
return ictx;
}
ts_lua_http_intercept_ctx *
ts_lua_create_http_intercept_ctx(lua_State *L, ts_lua_http_ctx *http_ctx, int n)
{
int i;
lua_State *l;
ts_lua_cont_info *hci;
ts_lua_coroutine *crt;
ts_lua_http_intercept_ctx *ictx;
hci = &http_ctx->cinfo;
ictx = TSmalloc(sizeof(ts_lua_http_intercept_ctx));
memset(ictx, 0, sizeof(ts_lua_http_intercept_ctx));
ictx->hctx = http_ctx;
// create lua_thread
l = lua_newthread(L);
// init the coroutine
crt = &ictx->cinfo.routine;
crt->mctx = hci->routine.mctx;
crt->lua = l;
crt->ref = luaL_ref(L, LUA_REGISTRYINDEX);
// Todo: replace the global, context table for crt->lua
// replicate the param
for (i = 0; i < n; i++) {
lua_pushvalue(L, i + 1);
}
lua_xmove(L, l, n); // move the intercept function and params to the new lua_thread
ts_lua_set_http_intercept_ctx(l, ictx);
return ictx;
}
void
ts_lua_destroy_http_intercept_ctx(ts_lua_http_intercept_ctx *ictx)
{
ts_lua_cont_info *ci;
ci = &ictx->cinfo;
if (ictx->net_vc) {
TSVConnClose(ictx->net_vc);
}
TS_LUA_RELEASE_IO_HANDLE((&ictx->input));
TS_LUA_RELEASE_IO_HANDLE((&ictx->output));
ts_lua_release_cont_info(ci);
TSfree(ictx);
}
void
ts_lua_set_http_transform_ctx(lua_State *L, ts_lua_http_transform_ctx *tctx)
{
lua_pushliteral(L, "__ts_http_transform_ctx");
lua_pushlightuserdata(L, tctx);
lua_rawset(L, LUA_GLOBALSINDEX);
}
ts_lua_http_transform_ctx *
ts_lua_get_http_transform_ctx(lua_State *L)
{
ts_lua_http_transform_ctx *tctx;
lua_pushliteral(L, "__ts_http_transform_ctx");
lua_rawget(L, LUA_GLOBALSINDEX);
tctx = lua_touserdata(L, -1);
lua_pop(L, 1); // pop the ictx out
return tctx;
}
ts_lua_http_transform_ctx *
ts_lua_create_http_transform_ctx(ts_lua_http_ctx *http_ctx, TSVConn connp)
{
lua_State *L;
ts_lua_cont_info *hci;
ts_lua_cont_info *ci;
ts_lua_coroutine *crt;
ts_lua_http_transform_ctx *transform_ctx;
hci = &http_ctx->cinfo;
L = hci->routine.lua;
transform_ctx = (ts_lua_http_transform_ctx *)TSmalloc(sizeof(ts_lua_http_transform_ctx));
memset(transform_ctx, 0, sizeof(ts_lua_http_transform_ctx));
transform_ctx->hctx = http_ctx;
TSContDataSet(connp, transform_ctx);
ci = &transform_ctx->cinfo;
ci->contp = connp;
ci->mutex = TSContMutexGet((TSCont)http_ctx->txnp);
crt = &ci->routine;
crt->mctx = hci->routine.mctx;
crt->lua = lua_newthread(L);
crt->ref = luaL_ref(L, LUA_REGISTRYINDEX);
ts_lua_set_http_transform_ctx(crt->lua, transform_ctx);
lua_pushlightuserdata(L, transform_ctx);
lua_pushvalue(L, 2);
lua_rawset(L, LUA_GLOBALSINDEX); // L[GLOBAL][transform_ctx] = transform handler
return transform_ctx;
}
void
ts_lua_destroy_http_transform_ctx(ts_lua_http_transform_ctx *transform_ctx)
{
ts_lua_cont_info *ci;
if (!transform_ctx) {
return;
}
ci = &transform_ctx->cinfo;
TS_LUA_RELEASE_IO_HANDLE((&transform_ctx->output));
TS_LUA_RELEASE_IO_HANDLE((&transform_ctx->reserved));
ts_lua_release_cont_info(ci);
TSfree(transform_ctx);
}
int
ts_lua_http_cont_handler(TSCont contp, TSEvent ev, void *edata)
{
TSHttpTxn txnp;
TSMBuffer bufp;
TSMLoc hdr_loc;
TSMLoc url_loc;
int event, ret, rc, n, t;
lua_State *L;
ts_lua_http_ctx *http_ctx;
ts_lua_main_ctx *main_ctx;
ts_lua_cont_info *ci;
ts_lua_coroutine *crt;
event = (int)ev;
http_ctx = (ts_lua_http_ctx *)TSContDataGet(contp);
ci = &http_ctx->cinfo;
crt = &ci->routine;
main_ctx = crt->mctx;
L = crt->lua;
txnp = http_ctx->txnp;
rc = ret = 0;
TSMutexLock(main_ctx->mutexp);
if (!http_ctx->client_request_bufp) {
if (TSHttpTxnClientReqGet(txnp, &bufp, &hdr_loc) == TS_SUCCESS) {
http_ctx->client_request_bufp = bufp;
http_ctx->client_request_hdrp = hdr_loc;
if (TSHttpHdrUrlGet(bufp, hdr_loc, &url_loc) == TS_SUCCESS) {
http_ctx->client_request_url = url_loc;
}
}
}
if (!http_ctx->client_request_hdrp) {
TSMutexUnlock(main_ctx->mutexp);
TSHttpTxnReenable(txnp, TS_EVENT_HTTP_CONTINUE);
return 0;
}
ts_lua_set_cont_info(L, ci);
switch (event) {
case TS_EVENT_HTTP_POST_REMAP:
lua_getglobal(L, TS_LUA_FUNCTION_POST_REMAP);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_CACHE_LOOKUP_COMPLETE:
lua_getglobal(L, TS_LUA_FUNCTION_CACHE_LOOKUP_COMPLETE);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_SEND_REQUEST_HDR:
lua_getglobal(L, TS_LUA_FUNCTION_SEND_REQUEST);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_READ_RESPONSE_HDR:
ts_lua_update_server_response_hdrp(http_ctx);
lua_getglobal(L, TS_LUA_FUNCTION_READ_RESPONSE);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_SEND_RESPONSE_HDR:
lua_getglobal(L, TS_LUA_FUNCTION_SEND_RESPONSE);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_READ_REQUEST_HDR:
lua_getglobal(L, TS_LUA_FUNCTION_READ_REQUEST);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_TXN_START:
lua_getglobal(L, TS_LUA_FUNCTION_TXN_START);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_PRE_REMAP:
lua_getglobal(L, TS_LUA_FUNCTION_PRE_REMAP);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_OS_DNS:
lua_getglobal(L, TS_LUA_FUNCTION_OS_DNS);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_READ_CACHE_HDR:
lua_getglobal(L, TS_LUA_FUNCTION_READ_CACHE);
if (lua_type(L, -1) == LUA_TFUNCTION) {
ret = lua_resume(L, 0);
}
ts_lua_clear_http_ctx(http_ctx);
break;
case TS_EVENT_HTTP_TXN_CLOSE:
ts_lua_update_server_response_hdrp(http_ctx);
lua_getglobal(L, TS_LUA_FUNCTION_TXN_CLOSE);
if (lua_type(L, -1) == LUA_TFUNCTION) {
if (lua_pcall(L, 0, 1, 0)) {
TSError("[ts_lua][%s] lua_pcall failed: %s", __FUNCTION__, lua_tostring(L, -1));
}
}
ts_lua_destroy_http_ctx(http_ctx);
break;
case TS_LUA_EVENT_COROUTINE_CONT:
n = (intptr_t)edata;
ret = lua_resume(L, n);
default:
break;
}
switch (ret) {
case 0: // coroutine succeed
t = lua_gettop(L);
if (t > 0) {
rc = lua_tointeger(L, -1);
lua_pop(L, 1);
}
break;
case LUA_YIELD: // coroutine yield
rc = 1;
break;
default: // coroutine failed
TSError("[ts_lua][%s] lua_resume failed: %s", __FUNCTION__, lua_tostring(L, -1));
rc = -1;
lua_pop(L, 1);
break;
}
// current memory in use by this state
int const gc_kb = lua_getgccount(L);
TSMutexUnlock(main_ctx->mutexp);
// collect state memory stats
ts_lua_ctx_stats *const stats = main_ctx->stats;
TSMutexLock(stats->mutexp);
if (gc_kb != stats->gc_kb) {
stats->gc_kb = gc_kb;
if (stats->gc_kb_max < stats->gc_kb) {
stats->gc_kb_max = stats->gc_kb;
}
}
TSMutexUnlock(stats->mutexp);
if (rc == 0) {
TSHttpTxnReenable(txnp, TS_EVENT_HTTP_CONTINUE);
} else if (rc < 0) {
TSHttpTxnReenable(txnp, TS_EVENT_HTTP_ERROR);
} else {
// wait for async
}
return 0;
}
|