-
Notifications
You must be signed in to change notification settings - Fork 856
Expand file tree
/
Copy pathParentSelection.h
More file actions
506 lines (431 loc) · 15.2 KB
/
ParentSelection.h
File metadata and controls
506 lines (431 loc) · 15.2 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
/** @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.
*/
/*****************************************************************************
*
* ParentSelection.h - Interface to Parent Selection System
*
*
****************************************************************************/
#pragma once
#include "iocore/eventsystem/ConfigProcessor.h"
#include "proxy/ControlBase.h"
#include "proxy/ControlMatcher.h"
#include "records/RecProcess.h"
#include "tscore/ConsistentHash.h"
#include "tscore/Hash.h"
#include "tscore/Tokenizer.h"
#include "tscore/ink_apidefs.h"
#include "proxy/HostStatus.h"
#include <algorithm>
#include <memory>
#include <vector>
#define MAX_PARENTS 64
#define DEFAULT_PARENT_WEIGHT 1.0
struct RequestData;
struct matcher_line;
struct ParentResult;
struct OverridableHttpConfigParams;
class ParentRecord;
class ParentSelectionStrategy;
enum class ParentResultType {
UNDEFINED,
DIRECT,
SPECIFIED,
AGENT,
FAIL,
};
static const char *ParentResultStr[] = {"ParentResultType::UNDEFINED", "ParentResultType::DIRECT", "ParentResultType::SPECIFIED",
"ParentResultType::AGENT", "ParentResultType::FAIL"};
enum class ParentRR_t { NO_ROUND_ROBIN = 0, STRICT_ROUND_ROBIN, HASH_ROUND_ROBIN, CONSISTENT_HASH, LATCHED_ROUND_ROBIN, UNDEFINED };
enum class ParentRetry_t {
NONE = 0,
SIMPLE = 1,
UNAVAILABLE_SERVER = 2,
// both simple and unavailable server retry
BOTH = 3
};
enum class ParentHashAlgorithm { SIPHASH24 = 0, SIPHASH13 };
struct UnavailableServerResponseCodes {
UnavailableServerResponseCodes(char *val);
~UnavailableServerResponseCodes(){};
bool
contains(int code)
{
return binary_search(codes.begin(), codes.end(), code);
}
private:
std::vector<int> codes;
};
struct SimpleRetryResponseCodes {
SimpleRetryResponseCodes(char *val);
~SimpleRetryResponseCodes(){};
bool
contains(int code)
{
return binary_search(codes.begin(), codes.end(), code);
}
private:
std::vector<int> codes;
};
// struct pRecord
//
// A record for an individual parent
//
struct pRecord : ATSConsistentHashNode {
public:
char hostname[MAXDNAME + 1];
int port;
std::atomic<time_t> failedAt = 0;
std::atomic<int> failCount = 0;
int32_t upAt;
const char *scheme; // for which parent matches (if any)
int idx;
float weight;
char hash_string[MAXDNAME + 1];
};
using P_table = ControlMatcher<ParentRecord, ParentResult>;
// class ParentRecord : public ControlBase
//
// A record for a configuration line in the parent.config
// file
//
class ParentRecord : public ControlBase
{
public:
~ParentRecord();
Result Init(matcher_line *line_info);
bool DefaultInit(char *val);
void UpdateMatch(ParentResult *result, RequestData *rdata);
void Print() const;
pRecord *parents = nullptr;
pRecord *secondary_parents = nullptr;
int num_parents = 0;
int num_secondary_parents = 0;
bool
bypass_ok() const
{
return go_direct;
}
const char *scheme = nullptr;
// private:
void PreProcessParents(const char *val, const int line_num, char *buf, size_t len);
const char *ProcessParents(char *val, bool isPrimary);
bool ignore_query = false;
uint32_t rr_next = 0;
bool go_direct = true;
bool parent_is_proxy = true;
ParentSelectionStrategy *selection_strategy = nullptr;
UnavailableServerResponseCodes *unavailable_server_retry_responses = nullptr;
SimpleRetryResponseCodes *simple_server_retry_responses = nullptr;
ParentRetry_t parent_retry = ParentRetry_t::NONE;
int max_simple_retries = 1;
int max_unavailable_server_retries = 1;
int secondary_mode = 1;
bool ignore_self_detect = false;
bool host_override = false;
ParentHashAlgorithm consistent_hash_algorithm = ParentHashAlgorithm::SIPHASH24;
uint64_t consistent_hash_seed0 = 0;
uint64_t consistent_hash_seed1 = 0;
int consistent_hash_replicas = 1024; // Number of virtual nodes per host (int to match ATSConsistentHash constructor)
};
// If the parent was set by the external customer api,
// our HttpRequestData structure told us what parent to
// use and we are only called to preserve clean interface
// between HttpTransact & the parent selection code. The following
ParentRecord *const extApiRecord = (ParentRecord *)0xeeeeffff;
// used here to set the number of ATSConsistentHashIter's
// used in NextHopSelectionStrategy to limit the host group
// size as well, group size is one to one with the number of rings
constexpr const uint32_t MAX_GROUP_RINGS = 5;
struct ParentResult {
ParentResult() { reset(); }
// For outside consumption
ParentResultType result;
const char *hostname;
const char *url;
int port;
bool retry;
bool chash_init[MAX_GROUP_RINGS] = {false};
bool use_pristine = false;
TSHostStatus first_choice_status = TSHostStatus::TS_HOST_STATUS_INIT;
bool do_not_cache_response = false;
void
reset()
{
ink_zero(*this);
line_number = -1;
result = ParentResultType::UNDEFINED;
mapWrapped[0] = false;
mapWrapped[1] = false;
do_not_cache_response = false;
}
bool
is_api_result() const
{
return rec == extApiRecord;
}
// Do we have some result?
bool
is_some() const
{
if (rec == nullptr) {
// If we don't have a result, we either haven't done a parent
// lookup yet (ParentResultType::UNDEFINED), or the lookup didn't match
// anything (ParentResultType::DIRECT).
ink_assert(result == ParentResultType::UNDEFINED || result == ParentResultType::DIRECT);
return false;
}
return true;
}
bool
parent_is_proxy() const
{
// Parents set by the TSHttpTxnParentProxySet API are always considered proxies rather than origins.
return is_api_result() ? true : rec->parent_is_proxy;
}
ParentRetry_t
retry_type() const
{
return is_api_result() ? ParentRetry_t::NONE : rec->parent_retry;
}
bool
host_override() const
{
if (is_api_result()) {
return false;
}
if (!is_some()) {
return false;
}
return rec->host_override;
}
unsigned
max_retries(ParentRetry_t method) const
{
// There's no API for specifying the retries, so you get 0.
if (is_api_result()) {
return 0;
}
switch (method) {
case ParentRetry_t::NONE:
return 0;
case ParentRetry_t::SIMPLE:
return rec->max_simple_retries;
case ParentRetry_t::UNAVAILABLE_SERVER:
return rec->max_unavailable_server_retries;
case ParentRetry_t::BOTH:
return std::max(rec->max_unavailable_server_retries, rec->max_simple_retries);
}
return 0;
}
bool
response_is_retryable(ParentRetry_t retry_type, HTTPStatus response_code) const
{
Dbg(dbg_ctl_parent_select, "In response_is_retryable, code: %d, type: %d", static_cast<int>(response_code),
static_cast<int>(retry_type));
if (retry_type == ParentRetry_t::BOTH) {
Dbg(dbg_ctl_parent_select, "Saw retry both");
return (rec->unavailable_server_retry_responses->contains(static_cast<int>(response_code)) ||
rec->simple_server_retry_responses->contains(static_cast<int>(response_code)));
} else if (retry_type == ParentRetry_t::UNAVAILABLE_SERVER) {
Dbg(dbg_ctl_parent_select, "Saw retry unavailable server");
return rec->unavailable_server_retry_responses->contains(static_cast<int>(response_code));
} else if (retry_type == ParentRetry_t::SIMPLE) {
Dbg(dbg_ctl_parent_select, "Saw retry simple retry");
return rec->simple_server_retry_responses->contains(static_cast<int>(response_code));
} else {
return false;
}
}
bool
bypass_ok() const
{
if (is_api_result()) {
return false;
} else {
// Caller should check for a valid result beforehand.
ink_assert(result != ParentResultType::UNDEFINED);
ink_assert(is_some());
return rec->bypass_ok();
}
}
void
print()
{
printf("ParentResult - hostname: %s, port: %d, retry: %s, line_number: %d, last_parent: %d, start_parent: %d, wrap_around: %s, "
"last_lookup: %d, result: %s\n",
hostname, port, (retry) ? "true" : "false", line_number, last_parent, start_parent, (wrap_around) ? "true" : "false",
last_lookup, ParentResultStr[static_cast<int>(result)]);
}
static DbgCtl dbg_ctl_parent_select;
private:
// Internal use only
// Not to be modified by HTTP
int line_number;
ParentRecord *rec;
uint32_t last_parent;
uint32_t start_parent;
uint32_t last_group;
bool wrap_around;
bool mapWrapped[2];
// state for consistent hash.
int last_lookup;
ATSConsistentHashIter chashIter[MAX_GROUP_RINGS];
friend class NextHopSelectionStrategy;
friend class NextHopRoundRobin;
friend class NextHopConsistentHash;
friend class ParentConsistentHash;
friend class ParentRoundRobin;
friend class ParentConfigParams;
friend class ParentRecord;
friend class ParentSelectionStrategy;
};
struct ParentSelectionPolicy {
int32_t ParentRetryTime = 0;
int32_t ParentEnable = 0;
int32_t FailThreshold = 0;
ParentSelectionPolicy();
};
//
// API definition.
class ParentSelectionStrategy
{
public:
int max_retriers = 0;
ParentSelectionStrategy() { max_retriers = RecGetRecordInt("proxy.config.http.parent_proxy.max_trans_retries").value_or(0); }
//
// Return the pRecord.
virtual pRecord *getParents(ParentResult *result) = 0;
// void selectParent(bool firstCall, ParentResult *result, RequestData *rdata, unsigned int fail_threshold, unsigned int
// retry_time)
//
// The implementation parent lookup.
//
virtual void selectParent(bool firstCall, ParentResult *result, RequestData *rdata, unsigned int fail_threshold,
unsigned int retry_time) = 0;
// uint32_t numParents(ParentResult *result);
//
// Returns the number of parent records in a strategy.
//
virtual uint32_t numParents(ParentResult *result) const = 0;
void markParentDown(ParentResult *result, unsigned int fail_threshold, unsigned int retry_time);
void markParentUp(ParentResult *result);
// virtual destructor.
virtual ~ParentSelectionStrategy(){};
};
class ParentConfigParams : public ConfigInfo
{
public:
explicit ParentConfigParams(P_table *_parent_table);
~ParentConfigParams() override;
bool apiParentExists(HttpRequestData *rdata);
void findParent(HttpRequestData *rdata, ParentResult *result, unsigned int fail_threshold, unsigned int retry_time);
void nextParent(HttpRequestData *rdata, ParentResult *result, unsigned int fail_threshold, unsigned int retry_time);
bool parentExists(HttpRequestData *rdata);
// implementation of functions from ParentSelectionStrategy.
void
selectParent(bool firstCall, ParentResult *result, RequestData *rdata, unsigned int fail_threshold, unsigned int retry_time)
{
if (!result->is_api_result()) {
ink_release_assert(result->rec->selection_strategy != nullptr);
return result->rec->selection_strategy->selectParent(firstCall, result, rdata, fail_threshold, retry_time);
}
}
void
markParentDown(ParentResult *result, unsigned int fail_threshold, unsigned int retry_time)
{
if (!result->is_api_result()) {
ink_release_assert(result->rec->selection_strategy != nullptr);
result->rec->selection_strategy->markParentDown(result, fail_threshold, retry_time);
}
}
void
markParentUp(ParentResult *result)
{
if (!result->is_api_result()) {
ink_release_assert(result != nullptr);
result->rec->selection_strategy->markParentUp(result);
}
}
uint32_t
numParents(ParentResult *result)
{
if (result->is_api_result()) {
return 1;
} else {
ink_release_assert(result->rec->selection_strategy != nullptr);
return result->rec->selection_strategy->numParents(result);
}
}
P_table *parent_table;
ParentRecord *DefaultParent;
ParentSelectionPolicy policy;
};
class HttpRequestData;
struct ParentConfig {
public:
static void startup();
static void reconfigure();
static void print();
static void set_parent_table(P_table *pTable, ParentRecord *rec, int num_elements);
static ParentConfigParams *
acquire()
{
return (ParentConfigParams *)configProcessor.get(ParentConfig::m_id);
}
static void
release(ParentConfigParams *strategy)
{
configProcessor.release(ParentConfig::m_id, strategy);
}
static int m_id;
};
// Helper Functions
ParentRecord *createDefaultParent(char *val);
// Hash utility functions
ParentHashAlgorithm parseHashAlgorithm(std::string_view name);
std::unique_ptr<ATSHash64> createHashInstance(ParentHashAlgorithm algo, uint64_t seed0, uint64_t seed1);
// Unit Test Functions
void show_result(ParentResult *aParentResult);
void br(HttpRequestData *h, const char *os_hostname, sockaddr const *dest_ip = nullptr); // short for build request
int verify(ParentResult *r, ParentResultType e, const char *h, int p);
/*
For supporting multiple Socks servers, we essentially use the
ParentSelection infrastructure. Only the initialization is different.
If needed, we will have to implement most of the functions in
ParentSection.cc for Socks as well. For right now we will just use
ParentSelection
All the members in ParentConfig are static. Right now
we will duplicate the code for these static functions.
*/
struct SocksServerConfig {
static void startup();
static void reconfigure();
static void print();
static ParentConfigParams *
acquire()
{
return (ParentConfigParams *)configProcessor.get(SocksServerConfig::m_id);
}
static void
release(ParentConfigParams *params)
{
configProcessor.release(SocksServerConfig::m_id, params);
}
static int m_id;
};