-
Notifications
You must be signed in to change notification settings - Fork 855
Expand file tree
/
Copy pathHttpTransact.h
More file actions
1185 lines (1029 loc) · 41.3 KB
/
HttpTransact.h
File metadata and controls
1185 lines (1029 loc) · 41.3 KB
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
/** @file
A brief file description
@section license License
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.
*/
#pragma once
#include <cstddef>
#include "iocore/net/ProxyProtocol.h"
#include "tsutil/DbgCtl.h"
#include "tscore/ink_assert.h"
#include "tscore/ink_platform.h"
#include "iocore/hostdb/HostDB.h"
#include "proxy/http/HttpConfig.h"
#include "proxy/hdrs/HTTP.h"
#include "iocore/cache/HttpTransactCache.h"
#include "proxy/ControlMatcher.h"
#include "proxy/CacheControl.h"
#include "proxy/ParentSelection.h"
#include "iocore/eventsystem/ConfigProcessor.h"
#include "proxy/Transform.h"
#include "proxy/Milestones.h"
#include "ts/apidefs.h"
#include "ts/remap.h"
#include "proxy/http/remap/RemapPluginInfo.h"
#include "proxy/http/remap/UrlMapping.h"
#include "records/RecHttp.h"
#include "proxy/ProxySession.h"
#include "tscore/MgmtDefs.h"
#include "swoc/bwf_ex.h"
#include <cstdint>
#include <cstdio>
#include <string>
#include <string_view>
#define HTTP_OUR_VIA_MAX_LENGTH 1024 // 512-bytes for hostname+via string, 512-bytes for the debug info
#define HTTP_RELEASE_ASSERT(X) ink_release_assert(X)
inline void
s_dump_header(HTTPHdr const *hdr, std::string &out)
{
int offset{0};
int done{0};
do {
int used{0};
char b[4096];
// The buffer offset is taken non-const and it is apparently
// modified in some code path, but in my testing it does
// not change, it seems. Since we manually bump the offset,
// the use of tmp is precautionary to make sure our logic
// doesn't break in case it does change in some circumstance.
int tmp{offset};
done = hdr->print(b, 4096, &used, &tmp);
offset += used;
out.append(b, used);
} while (0 == done);
}
inline void
dump_header(DbgCtl const &ctl, HTTPHdr const *hdr, std::int64_t sm_id, std::string_view description)
{
if (ctl.on()) {
std::string output;
output.append("+++++++++ ");
output.append(description);
output.append(" +++++++++\n");
output.append("-- State Machine Id: ");
output.append(std::to_string(sm_id));
output.push_back('\n');
if (hdr->valid()) {
s_dump_header(hdr, output);
} else {
output.append("Invalid header!\n");
}
// We make a single call to fprintf so that the output does not get
// interleaved with output from other threads performing I/O.
fprintf(stderr, "%s", output.c_str());
}
}
using ink_time_t = time_t;
struct HttpConfigParams;
class HttpSM;
struct CacheHostRecord;
#include "iocore/net/ConnectionTracker.h"
#include "tscore/InkErrno.h"
#define UNKNOWN_INTERNAL_ERROR (INK_START_ERRNO - 1)
enum ViaStringIndex_t {
//
// General information
VIA_CLIENT = 0,
VIA_CLIENT_REQUEST,
VIA_CACHE,
VIA_CACHE_RESULT,
VIA_SERVER,
VIA_SERVER_RESULT,
VIA_CACHE_FILL,
VIA_CACHE_FILL_ACTION,
VIA_PROXY,
VIA_PROXY_RESULT,
VIA_ERROR,
VIA_ERROR_TYPE,
//
// State Machine specific details
VIA_DETAIL_SEPARATOR,
VIA_DETAIL_TUNNEL_DESCRIPTOR,
VIA_DETAIL_TUNNEL,
VIA_DETAIL_CACHE_DESCRIPTOR,
VIA_DETAIL_CACHE_TYPE,
VIA_DETAIL_CACHE_LOOKUP,
VIA_DETAIL_PP_DESCRIPTOR,
VIA_DETAIL_PP_CONNECT,
VIA_DETAIL_SERVER_DESCRIPTOR,
VIA_DETAIL_SERVER_CONNECT,
//
// Total
MAX_VIA_INDICES
};
enum ViaString_t {
// client stuff
VIA_CLIENT_STRING = 'u',
VIA_CLIENT_ERROR = 'E',
VIA_CLIENT_IMS = 'I',
VIA_CLIENT_NO_CACHE = 'N',
VIA_CLIENT_COOKIE = 'C',
VIA_CLIENT_SIMPLE = 'S',
// cache lookup stuff
VIA_CACHE_STRING = 'c',
VIA_CACHE_MISS = 'M',
VIA_IN_CACHE_NOT_ACCEPTABLE = 'A',
VIA_IN_CACHE_STALE = 'S',
VIA_IN_CACHE_FRESH = 'H',
VIA_IN_RAM_CACHE_FRESH = 'R',
VIA_IN_CACHE_RWW_HIT = 'W',
// server stuff
VIA_SERVER_STRING = 's',
VIA_SERVER_ERROR = 'E',
VIA_SERVER_NOT_MODIFIED = 'N',
VIA_SERVER_SERVED = 'S',
// cache fill stuff
VIA_CACHE_FILL_STRING = 'f',
VIA_CACHE_DELETED = 'D',
VIA_CACHE_WRITTEN = 'W',
VIA_CACHE_UPDATED = 'U',
// proxy stuff
VIA_PROXY_STRING = 'p',
VIA_PROXY_NOT_MODIFIED = 'N',
VIA_PROXY_SERVED = 'S',
VIA_PROXY_SERVER_REVALIDATED = 'R',
// errors
VIA_ERROR_STRING = 'e',
VIA_ERROR_NO_ERROR = 'N',
VIA_ERROR_AUTHORIZATION = 'A',
VIA_ERROR_CONNECTION = 'C',
VIA_ERROR_DNS_FAILURE = 'D',
VIA_ERROR_FORBIDDEN = 'F',
VIA_ERROR_HEADER_SYNTAX = 'H',
VIA_ERROR_SERVER = 'S',
VIA_ERROR_TIMEOUT = 'T',
VIA_ERROR_CACHE_READ = 'R',
VIA_ERROR_MOVED_TEMPORARILY = 'M',
VIA_ERROR_LOOP_DETECTED = 'L',
VIA_ERROR_UNKNOWN = ' ',
//
// Now the detailed stuff
//
VIA_DETAIL_SEPARATOR_STRING = ':',
// tunnelling
VIA_DETAIL_TUNNEL_DESCRIPTOR_STRING = 't',
VIA_DETAIL_TUNNEL_HEADER_FIELD = 'F',
VIA_DETAIL_TUNNEL_METHOD = 'M',
VIA_DETAIL_TUNNEL_CACHE_OFF = 'O',
VIA_DETAIL_TUNNEL_URL = 'U',
VIA_DETAIL_TUNNEL_NO_FORWARD = 'N',
VIA_DETAIL_TUNNEL_AUTHORIZATION = 'A',
// cache type
VIA_DETAIL_CACHE_DESCRIPTOR_STRING = 'c',
VIA_DETAIL_CACHE = 'C',
VIA_DETAIL_PARENT = 'P',
VIA_DETAIL_SERVER = 'S',
// result of cache lookup
VIA_DETAIL_HIT_CONDITIONAL = 'N',
VIA_DETAIL_HIT_SERVED = 'H',
VIA_DETAIL_MISS_CONDITIONAL = 'I',
VIA_DETAIL_MISS_NOT_CACHED = 'M',
VIA_DETAIL_MISS_EXPIRED = 'S',
VIA_DETAIL_MISS_CONFIG = 'C',
VIA_DETAIL_MISS_CLIENT = 'U',
VIA_DETAIL_MISS_METHOD = 'D',
VIA_DETAIL_MISS_COOKIE = 'K',
// result of pp suggested host lookup
VIA_DETAIL_PP_DESCRIPTOR_STRING = 'p',
VIA_DETAIL_PP_SUCCESS = 'S',
VIA_DETAIL_PP_FAILURE = 'F',
// result of server suggested host lookup
VIA_DETAIL_SERVER_DESCRIPTOR_STRING = 's',
VIA_DETAIL_SERVER_SUCCESS = 'S',
VIA_DETAIL_SERVER_FAILURE = 'F'
};
struct HttpApiInfo {
char *parent_proxy_name = nullptr;
int parent_proxy_port = -1;
bool cache_untransformed = false;
bool cache_transformed = true;
bool logging_enabled = true;
bool retry_intercept_failures = false;
HttpApiInfo() {}
};
const int32_t HTTP_UNDEFINED_CL = -1;
//////////////////////////////////////////////////////////////////////////////
//
// HttpTransact
//
// The HttpTransact class is purely used for scoping and should
// not be instantiated.
//
//////////////////////////////////////////////////////////////////////////////
#define SET_VIA_STRING(I, S) s->via_string[I] = S;
#define GET_VIA_STRING(I) (s->via_string[I])
class HttpTransact
{
public:
enum AbortState_t {
ABORT_UNDEFINED = 0,
DIDNOT_ABORT,
ABORTED,
};
enum class Authentication_t { SUCCESS = 0, MUST_REVALIDATE, MUST_PROXY, CACHE_AUTH };
enum CacheAction_t {
UNDEFINED = 0,
NO_ACTION,
DELETE,
LOOKUP,
REPLACE,
SERVE,
SERVE_AND_DELETE,
SERVE_AND_UPDATE,
UPDATE,
WRITE,
PREPARE_TO_DELETE,
PREPARE_TO_UPDATE,
PREPARE_TO_WRITE,
TOTAL_TYPES
};
enum class CacheWriteLock_t {
INIT,
SUCCESS,
FAIL,
READ_RETRY,
};
enum class ClientTransactionResult_t {
UNDEFINED,
HIT_FRESH,
HIT_REVALIDATED,
MISS_COLD,
MISS_CHANGED,
MISS_CLIENT_NO_CACHE,
MISS_UNCACHABLE,
ERROR_ABORT,
ERROR_POSSIBLE_ABORT,
ERROR_CONNECT_FAIL,
ERROR_OTHER
};
enum class Freshness_t {
FRESH = 0, // Fresh enough, serve it
WARNING, // Stale, but client says OK
STALE // Stale, don't use
};
enum class HttpTransactMagic_t : uint32_t { ALIVE = 0x00001234, DEAD = 0xDEAD1234, SEPARATOR = 0x12345678 };
enum class ProxyMode_t {
UNDEFINED,
GENERIC,
TUNNELLING,
};
enum class RequestError_t {
NO_REQUEST_HEADER_ERROR,
BAD_HTTP_HEADER_SYNTAX,
BAD_CONNECT_PORT,
FAILED_PROXY_AUTHORIZATION,
METHOD_NOT_SUPPORTED,
MISSING_HOST_FIELD,
NO_POST_CONTENT_LENGTH,
NO_REQUEST_SCHEME,
NON_EXISTANT_REQUEST_HEADER,
SCHEME_NOT_SUPPORTED,
UNACCEPTABLE_TE_REQUIRED,
INVALID_POST_CONTENT_LENGTH,
TOTAL_TYPES
};
enum class ResponseError_t {
NO_RESPONSE_HEADER_ERROR,
BOGUS_OR_NO_DATE_IN_RESPONSE,
CONNECTION_OPEN_FAILED,
MISSING_REASON_PHRASE,
MISSING_STATUS_CODE,
NON_EXISTANT_RESPONSE_HEADER,
NOT_A_RESPONSE_HEADER,
STATUS_CODE_SERVER_ERROR,
TOTAL_TYPES
};
// Please do not forget to fix TSServerState (ts/apidefs.h.in)
// in case of any modifications in ServerState_t
enum ServerState_t {
STATE_UNDEFINED = 0,
ACTIVE_TIMEOUT,
BAD_INCOMING_RESPONSE,
CONNECTION_ALIVE,
CONNECTION_CLOSED,
CONNECTION_ERROR,
INACTIVE_TIMEOUT,
OPEN_RAW_ERROR,
PARSE_ERROR,
TRANSACTION_COMPLETE,
PARENT_RETRY,
OUTBOUND_CONGESTION
};
enum class CacheWriteStatus_t { NO_WRITE = 0, LOCK_MISS, IN_PROGRESS, ERROR, COMPLETE };
enum class HttpRequestFlavor_t { INTERCEPTED = 0, REVPROXY = 1, FWDPROXY = 2, SCHEDULED_UPDATE = 3 };
////////////
// source //
////////////
enum class Source_t {
NONE = 0,
HTTP_ORIGIN_SERVER,
RAW_ORIGIN_SERVER,
CACHE,
TRANSFORM,
INTERNAL // generated from text buffer
};
////////////////////////////////////////////////
// HttpTransact fills a StateMachineAction_t //
// to tell the state machine what to do next. //
////////////////////////////////////////////////
enum class StateMachineAction_t {
UNDEFINED = 0,
// AUTH_LOOKUP,
DNS_LOOKUP,
DNS_REVERSE_LOOKUP,
CACHE_LOOKUP,
CACHE_ISSUE_WRITE,
CACHE_ISSUE_WRITE_TRANSFORM,
CACHE_PREPARE_UPDATE,
CACHE_ISSUE_UPDATE,
ORIGIN_SERVER_OPEN,
ORIGIN_SERVER_RAW_OPEN,
READ_PUSH_HDR,
STORE_PUSH_BODY,
INTERNAL_CACHE_DELETE,
INTERNAL_CACHE_NOOP,
INTERNAL_CACHE_UPDATE_HEADERS,
INTERNAL_CACHE_WRITE,
INTERNAL_100_RESPONSE,
SEND_ERROR_CACHE_NOOP,
WAIT_FOR_FULL_BODY,
REQUEST_BUFFER_READ_COMPLETE,
SERVE_FROM_CACHE,
SERVER_READ,
SERVER_PARSE_NEXT_HDR,
TRANSFORM_READ,
SSL_TUNNEL,
API_SM_START,
API_READ_REQUEST_HDR,
API_TUNNEL_START,
API_PRE_REMAP,
API_POST_REMAP,
API_OS_DNS,
API_SEND_REQUEST_HDR,
API_READ_CACHE_HDR,
API_CACHE_LOOKUP_COMPLETE,
API_READ_RESPONSE_HDR,
API_SEND_RESPONSE_HDR,
API_SM_SHUTDOWN,
REMAP_REQUEST,
POST_REMAP_SKIP,
REDIRECT_READ
};
enum class TransferEncoding_t {
NONE = 0,
CHUNKED,
DEFLATE,
};
enum class Variability_t {
NONE = 0,
SOME,
ALL,
};
enum class CacheLookupResult_t { NONE, MISS, DOC_BUSY, HIT_STALE, HIT_WARNING, HIT_FRESH, SKIPPED };
enum class UpdateCachedObject_t { NONE, PREPARE, CONTINUE, ERROR, SUCCEED, FAIL };
enum class RangeSetup_t {
NONE = 0,
REQUESTED,
NOT_SATISFIABLE,
NOT_HANDLED,
NOT_TRANSFORM_REQUESTED,
};
enum class CacheAuth_t {
NONE = 0,
// TRUE,
FRESH,
STALE,
SERVE
};
struct State;
using TransactFunc_t = void (*)(HttpTransact::State *);
using CacheDirectives = struct _CacheDirectives {
bool does_client_permit_lookup = true;
bool does_client_permit_storing = true;
bool does_client_permit_dns_storing = true;
bool does_config_permit_lookup = true;
bool does_config_permit_storing = true;
bool does_server_permit_lookup = true;
bool does_server_permit_storing = true;
_CacheDirectives() {}
};
using CacheLookupInfo = struct _CacheLookupInfo {
HttpTransact::CacheAction_t action = CacheAction_t::UNDEFINED;
HttpTransact::CacheAction_t transform_action = CacheAction_t::UNDEFINED;
HttpTransact::CacheWriteStatus_t write_status = CacheWriteStatus_t::NO_WRITE;
HttpTransact::CacheWriteStatus_t transform_write_status = CacheWriteStatus_t::NO_WRITE;
URL *lookup_url = nullptr;
URL lookup_url_storage;
URL original_url;
HTTPInfo object_store;
HTTPInfo transform_store;
CacheDirectives directives;
HTTPInfo *object_read = nullptr;
HTTPInfo *stale_fallback = nullptr; // Saved stale object for action 6 fallback during retry
CacheWriteLock_t write_lock_state = CacheWriteLock_t::INIT;
int lookup_count = 0;
SquidHitMissCode hit_miss_code = SQUID_MISS_NONE;
URL *parent_selection_url = nullptr;
URL parent_selection_url_storage;
const CacheHostRecord *volume_host_rec = nullptr;
_CacheLookupInfo() {}
};
using RedirectInfo = struct _RedirectInfo {
bool redirect_in_process = false;
URL original_url;
_RedirectInfo() {}
};
struct ConnectionAttributes {
HTTPVersion http_version;
HTTPKeepAlive keep_alive = HTTPKeepAlive::UNDEFINED;
// The following variable is true if the client expects to
// received a chunked response.
bool receive_chunked_response = false;
bool proxy_connect_hdr = false;
/// @c errno from the most recent attempt to connect.
/// zero means no failure (not attempted, succeeded).
int connect_result = 0;
char *name = nullptr;
swoc::IPAddr name_addr;
TransferEncoding_t transfer_encoding = TransferEncoding_t::NONE;
/** This is the source address of the connection from the point of view of the transaction.
It is the address of the source of the request.
*/
IpEndpoint src_addr;
/** This is the destination address of the connection from the point of view of the transaction.
It is the address of the target of the request.
*/
IpEndpoint dst_addr;
ServerState_t state = STATE_UNDEFINED;
AbortState_t abort = ABORT_UNDEFINED;
HttpProxyPort::TransportType port_attribute = HttpProxyPort::TRANSPORT_DEFAULT;
/// @c true if the connection is transparent.
bool is_transparent = false;
ProxyError rx_error_code;
ProxyError tx_error_code;
bool
had_connect_fail() const
{
return 0 != connect_result;
}
void
clear_connect_fail()
{
connect_result = 0;
}
ConnectionAttributes() { clear(); }
void
clear()
{
ink_zero(src_addr);
ink_zero(dst_addr);
connect_result = 0;
}
};
using CurrentInfo = struct _CurrentInfo {
ProxyMode_t mode = ProxyMode_t::UNDEFINED;
ResolveInfo::UpstreamResolveStyle request_to = ResolveInfo::UNDEFINED_LOOKUP;
ConnectionAttributes *server = nullptr;
ink_time_t now = 0;
ServerState_t state = STATE_UNDEFINED;
class Attempts
{
public:
Attempts() = default;
Attempts(Attempts const &) = delete;
unsigned
get() const
{
return _v;
}
void
maximize(MgmtInt configured_connect_attempts_max_retries)
{
ink_assert(_v <= configured_connect_attempts_max_retries);
if (_v < configured_connect_attempts_max_retries) {
ink_assert(0 == _saved_v);
_saved_v = _v;
_v = configured_connect_attempts_max_retries;
}
}
void
clear()
{
_v = 0;
_saved_v = 0;
}
void
increment()
{
++_v;
}
unsigned
saved() const
{
return _saved_v ? _saved_v : _v;
}
private:
unsigned _v{0}, _saved_v{0};
};
Attempts retry_attempts;
unsigned simple_retry_attempts = 0;
unsigned unavailable_server_retry_attempts = 0;
ParentRetry_t retry_type = ParentRetry_t::NONE;
_CurrentInfo() = default;
_CurrentInfo(_CurrentInfo const &) = delete;
};
// Conversion handling for DNS host resolution type.
static const MgmtConverter HOST_RES_CONV;
using HeaderInfo = struct _HeaderInfo {
HTTPHdr client_request;
HTTPHdr client_response;
HTTPHdr server_request;
HTTPHdr server_response;
HTTPHdr transform_response;
HTTPHdr cache_request;
HTTPHdr cache_response;
int64_t request_content_length = HTTP_UNDEFINED_CL;
int64_t response_content_length = HTTP_UNDEFINED_CL;
int64_t transform_request_cl = HTTP_UNDEFINED_CL;
int64_t transform_response_cl = HTTP_UNDEFINED_CL;
bool client_req_is_server_style = false;
bool trust_response_cl = false;
ResponseError_t response_error = ResponseError_t::NO_RESPONSE_HEADER_ERROR;
bool extension_method = false;
std::string server_response_transfer_encoding; ///< Storage for logging.
_HeaderInfo() {}
};
using SquidLogInfo = struct _SquidLogInfo {
SquidLogCode log_code = SquidLogCode::ERR_UNKNOWN;
SquidSubcode subcode = SquidSubcode::EMPTY;
SquidHierarchyCode hier_code = SquidHierarchyCode::EMPTY;
SquidHitMissCode hit_miss_code = SQUID_MISS_NONE;
_SquidLogInfo() {}
};
using ResponseAction = struct _ResponseAction {
bool handled{false};
TSResponseAction action{};
};
struct State {
HttpSM *state_machine = nullptr;
HttpTransactMagic_t m_magic = HttpTransactMagic_t::ALIVE;
HTTPVersion updated_server_version = HTTP_INVALID;
CacheLookupResult_t cache_lookup_result = CacheLookupResult_t::NONE;
HTTPStatus http_return_code = HTTPStatus::NONE;
std::string http_return_code_setter_name;
CacheAuth_t www_auth_content = CacheAuth_t::NONE;
Arena arena;
bool force_dns = false;
bool is_upgrade_request = false;
bool is_websocket = false;
bool did_upgrade_succeed = false;
bool client_connection_allowed = true;
bool acl_filtering_performed = false;
bool api_cleanup_cache_read = false;
bool api_server_response_no_store = false;
bool api_server_response_ignore = false;
bool api_http_sm_shutdown = false;
bool api_modifiable_cached_resp = false;
bool api_server_request_body_set = false;
bool api_req_cacheable = false;
bool api_resp_cacheable = false;
bool api_server_addr_set_retried = false;
bool reverse_proxy = false;
bool url_remap_success = false;
bool api_skip_all_remapping = false;
bool already_downgraded = false;
bool transparent_passthrough = false;
bool range_in_cache = false;
bool is_method_stats_incremented = false;
bool skip_ip_allow_yaml = false;
/// True if the response is cacheable because of negative caching configuration.
///
/// This being true implies the following:
///
/// * The response code was negative.
/// * Negative caching is enabled.
/// * The response is considered cacheable because of negative caching
/// configuration.
bool is_cacheable_due_to_negative_caching_configuration = false;
/// Set when stale content is served due to cache write lock failure.
/// Used to correctly attribute statistics and VIA strings.
bool serving_stale_due_to_write_lock = false;
/// Set when CACHE_LOOKUP_COMPLETE hook is deferred for action 5/6.
/// The hook will fire later with the final result once we know if
/// stale content will be served or if we're going to origin.
bool cache_lookup_complete_deferred = false;
MgmtByte cache_open_write_fail_action = 0;
HttpConfigParams *http_config_param = nullptr;
CacheLookupInfo cache_info;
ResolveInfo dns_info;
RedirectInfo redirect_info;
ConnectionTracker::TxnState outbound_conn_track_state;
ConnectionAttributes client_info;
ConnectionAttributes parent_info;
ConnectionAttributes server_info;
// This is a copy of the effective client IP address (see pp-clnt) to
// ensure this is available for logging
IpEndpoint effective_client_addr;
Source_t source = Source_t::NONE;
Source_t pre_transform_source = Source_t::NONE;
HttpRequestFlavor_t req_flavor = HttpRequestFlavor_t::FWDPROXY;
CurrentInfo current;
HeaderInfo hdr_info;
SquidLogInfo squid_codes;
HttpApiInfo api_info;
// To handle parent proxy case, we need to be
// able to defer some work in building the request
TransactFunc_t pending_work = nullptr;
HttpRequestData request_data;
ParentConfigParams *parent_params = nullptr;
NextHopSelectionStrategy *next_hop_strategy = nullptr;
ParentResult parent_result;
CacheControlResult cache_control;
StateMachineAction_t next_action = StateMachineAction_t::UNDEFINED; // out
StateMachineAction_t api_next_action = StateMachineAction_t::UNDEFINED; // out
void (*transact_return_point)(HttpTransact::State *s) = nullptr; // out
// We keep this so we can jump back to the upgrade handler after remap is complete
void (*post_remap_upgrade_return_point)(HttpTransact::State *s) = nullptr; // out
const char *upgrade_token_wks = nullptr;
char *internal_msg_buffer = nullptr; // out
char *internal_msg_buffer_type = nullptr; // out
int64_t internal_msg_buffer_size = 0; // out
int64_t internal_msg_buffer_fast_allocator_size = -1;
int scheme = -1; // out
int next_hop_scheme = scheme; // out
int orig_scheme = scheme; // pre-mapped scheme
int method = 0;
bool method_metric_incremented = false;
/// The errno associated with a failed connect attempt.
///
/// This is used for logging and (in some code paths) for determing HTTP
/// response reason phrases.
int cause_of_death_errno = -UNKNOWN_INTERNAL_ERROR; // in
int api_txn_active_timeout_value = -1;
int api_txn_connect_timeout_value = -1;
int api_txn_dns_timeout_value = -1;
int api_txn_no_activity_timeout_value = -1;
int congestion_control_crat = 0; // Client retry after
unsigned int filter_mask = 0;
ink_time_t client_request_time = UNDEFINED_TIME; // internal
ink_time_t request_sent_time = UNDEFINED_TIME; // internal
ink_time_t response_received_time = UNDEFINED_TIME; // internal
char via_string[MAX_VIA_INDICES + 1];
RemapPluginInst *os_response_plugin_inst = nullptr;
// Used by INKHttpTxnCachedReqGet and INKHttpTxnCachedRespGet SDK functions
// to copy part of HdrHeap (only the writable portion) for cached response headers
// and request headers
// These ptrs are deallocate when transaction is over.
HdrHeapSDKHandle *cache_req_hdr_heap_handle = nullptr;
HdrHeapSDKHandle *cache_resp_hdr_heap_handle = nullptr;
UpdateCachedObject_t api_update_cached_object = UpdateCachedObject_t::NONE;
StateMachineAction_t saved_update_next_action = StateMachineAction_t::UNDEFINED;
CacheAction_t saved_update_cache_action = CacheAction_t::UNDEFINED;
// Remap plugin processor support
UrlMappingContainer url_map;
host_hdr_info hh_info = {nullptr, 0, 0};
char *remap_redirect = nullptr;
URL unmapped_url; // unmapped url is the effective url before remap
// Http Range: related variables
RangeSetup_t range_setup = RangeSetup_t::NONE;
int64_t num_range_fields = 0;
int64_t range_output_cl = 0;
RangeRecord *ranges = nullptr;
OverridableHttpConfigParams const *txn_conf = nullptr;
OverridableHttpConfigParams &
my_txn_conf() // Storage for plugins, to avoid malloc
{
auto p = reinterpret_cast<OverridableHttpConfigParams *>(_my_txn_conf);
ink_assert(p == txn_conf);
return *p;
}
/** Whether a tunnel is requested to a port which has been dynamically
* determined by parsing traffic content.
*
* Dynamically determined ports require verification against the
* proxy.config.http.connect_ports.
*/
bool tunnel_port_is_dynamic = false;
ResponseAction response_action;
// Methods
void
init()
{
parent_params = ParentConfig::acquire();
new (&dns_info) decltype(dns_info); // reset to default state.
}
// Constructor
State()
{
int i;
char *via_ptr = via_string;
for (i = 0; i < MAX_VIA_INDICES; i++) {
*via_ptr++ = ' ';
}
via_string[VIA_CLIENT] = VIA_CLIENT_STRING;
via_string[VIA_CACHE] = VIA_CACHE_STRING;
via_string[VIA_SERVER] = VIA_SERVER_STRING;
via_string[VIA_CACHE_FILL] = VIA_CACHE_FILL_STRING;
via_string[VIA_PROXY] = VIA_PROXY_STRING;
via_string[VIA_ERROR] = VIA_ERROR_STRING;
via_string[VIA_ERROR_TYPE] = VIA_ERROR_NO_ERROR;
via_string[VIA_DETAIL_SEPARATOR] = VIA_DETAIL_SEPARATOR_STRING;
via_string[VIA_DETAIL_TUNNEL_DESCRIPTOR] = VIA_DETAIL_TUNNEL_DESCRIPTOR_STRING;
via_string[VIA_DETAIL_CACHE_DESCRIPTOR] = VIA_DETAIL_CACHE_DESCRIPTOR_STRING;
via_string[VIA_DETAIL_PP_DESCRIPTOR] = VIA_DETAIL_PP_DESCRIPTOR_STRING;
via_string[VIA_DETAIL_SERVER_DESCRIPTOR] = VIA_DETAIL_SERVER_DESCRIPTOR_STRING;
via_string[MAX_VIA_INDICES] = '\0';
// memset(user_args, 0, sizeof(user_args));
// memset((void *)&host_db_info, 0, sizeof(host_db_info));
}
// coverity[exn_spec_violation] - destroy() only frees memory and does ref counting
~State() { destroy(); }
void
destroy()
{
m_magic = HttpTransactMagic_t::DEAD;
free_internal_msg_buffer();
ats_free(internal_msg_buffer_type);
if (parent_params != nullptr) {
ParentConfig::release(parent_params);
parent_params = nullptr;
}
hdr_info.client_request.destroy();
hdr_info.client_response.destroy();
hdr_info.server_request.destroy();
hdr_info.server_response.destroy();
hdr_info.transform_response.destroy();
hdr_info.cache_request.destroy();
hdr_info.cache_response.destroy();
cache_info.lookup_url_storage.destroy();
cache_info.parent_selection_url_storage.destroy();
cache_info.original_url.destroy();
cache_info.object_store.destroy();
cache_info.transform_store.destroy();
redirect_info.original_url.destroy();
url_map.clear();
arena.reset();
unmapped_url.clear();
outbound_conn_track_state.clear();
delete[] ranges;
ranges = nullptr;
range_setup = RangeSetup_t::NONE;
return;
}
int64_t state_machine_id() const;
// Little helper function to setup the per-transaction configuration copy
void
setup_per_txn_configs()
{
if (txn_conf != reinterpret_cast<OverridableHttpConfigParams *>(_my_txn_conf)) {
txn_conf = reinterpret_cast<OverridableHttpConfigParams *>(_my_txn_conf);
memcpy(_my_txn_conf, &http_config_param->oride, sizeof(_my_txn_conf));
}
}
void
free_internal_msg_buffer()
{
if (internal_msg_buffer) {
if (internal_msg_buffer_fast_allocator_size >= 0) {
ioBufAllocator[internal_msg_buffer_fast_allocator_size].free_void(internal_msg_buffer);
} else {
ats_free(internal_msg_buffer);
}
internal_msg_buffer = nullptr;
}
internal_msg_buffer_size = 0;
}
ProxyProtocol pp_info;
void
set_connect_fail(int e)
{
int const original_connect_result = this->current.server->connect_result;
if (e == EUSERS) {
// EUSERS is used when the number of connections exceeds the configured
// limit. Since this is not a network connectivity issue with the
// server, we should not mark it as such. Otherwise we will incorrectly
// mark the server as down.
this->current.server->connect_result = 0;
} else if (e == EIO || this->current.server->connect_result == EIO) {
this->current.server->connect_result = e;
}
if (e != EIO) {
this->cause_of_death_errno = e;
}
if (_dbg_ctl.on()) {
std::string buf;
swoc::bwprint(buf, "Setting connect_result {::s} to {::s}", swoc::bwf::Errno(original_connect_result),
swoc::bwf::Errno(this->current.server->connect_result));
Dbg(_dbg_ctl, "%s", buf.c_str());
}
}
MgmtInt
configured_connect_attempts_max_retries() const
{
if (dns_info.looking_up != ResolveInfo::PARENT_PROXY) {
return txn_conf->connect_attempts_max_retries;
}
// For parent proxy, return the maximum retry count for the current parent
// intead of the max retries for the whole parent group. The max retry
// count for the current parent is derived from rounding the current
// attempt up to next multiple of ppca.
auto ppca = txn_conf->per_parent_connect_attempts;
auto cur_tries = current.retry_attempts.get() + 1;
auto cur_parent_max_attempts = ((cur_tries + ppca - 1) / ppca) * ppca;
return std::min(cur_parent_max_attempts, txn_conf->parent_connect_attempts) - 1;
}
private:
// Make this a raw byte array, so it will be accessed through the my_txn_conf() member function.
alignas(OverridableHttpConfigParams) char _my_txn_conf[sizeof(OverridableHttpConfigParams)];
static DbgCtl _dbg_ctl;
}; // End of State struct.
static void HandleBlindTunnel(State *s);
static void StartRemapRequest(State *s);
static void EndRemapRequest(State *s);
static void PerformRemap(State *s);
static void ModifyRequest(State *s);
static void HandleRequest(State *s);
static void HandleRequestBufferDone(State *s);
static bool handleIfRedirect(State *s);
static void StartAccessControl(State *s);