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
|
/** @file
ProxyTransaction - Base class for protocol client/server transactions.
@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 "ProxySession.h"
#include <string_view>
class HttpSM;
// Abstract Class for any transaction with-in the HttpSM
class ProxyTransaction : public VConnection
{
public:
ProxyTransaction() : VConnection(nullptr) {}
ProxyTransaction(ProxySession *ssn);
virtual ~ProxyTransaction();
/// Virtual Methods
//
virtual void new_transaction(bool from_early_data = false);
virtual void attach_transaction(HttpSM *attach_sm);
virtual bool attach_server_session(PoolableSession *ssession, bool transaction_done = true);
Action *adjust_thread(Continuation *cont, int event, void *data);
virtual void release() = 0;
virtual void transaction_done() = 0;
virtual void set_active_timeout(ink_hrtime timeout_in);
virtual void set_inactivity_timeout(ink_hrtime timeout_in);
virtual void cancel_inactivity_timeout();
virtual void cancel_active_timeout();
virtual bool is_read_closed() const;
// Implement VConnection interface.
VIO *do_io_read(Continuation *c, int64_t nbytes = INT64_MAX, MIOBuffer *buf = nullptr) override;
VIO *do_io_write(Continuation *c = nullptr, int64_t nbytes = INT64_MAX, IOBufferReader *buf = nullptr,
bool owner = false) override;
void do_io_close(int lerrno = -1) override;
void do_io_shutdown(ShutdownHowTo_t howto) override;
void reenable(VIO *vio) override;
/// Virtual Accessors
//
virtual int get_transaction_id() const = 0;
virtual int get_transaction_priority_weight() const;
virtual int get_transaction_priority_dependence() const;
virtual bool allow_half_open() const;
virtual void increment_transactions_stat() = 0;
virtual void decrement_transactions_stat() = 0;
virtual NetVConnection *get_netvc() const;
virtual bool is_first_transaction() const;
virtual in_port_t get_outbound_port() const;
virtual IpAddr get_outbound_ip4() const;
virtual IpAddr get_outbound_ip6() const;
virtual void set_outbound_port(in_port_t port);
virtual void set_outbound_ip(const IpAddr &new_addr);
virtual bool is_outbound_transparent() const;
virtual void set_outbound_transparent(bool flag);
virtual void set_session_active();
virtual void clear_session_active();
virtual bool get_half_close_flag() const;
virtual bool is_chunked_encoding_supported() const;
// Returns true if there is a request body for this request
virtual bool has_request_body(int64_t content_length, bool is_chunked_set) const;
// Worker function to set Connection:close header if appropriate for
// underlying protocol
virtual void set_close_connection(HTTPHdr &hdr) const;
sockaddr const *get_remote_addr() const;
virtual HTTPVersion get_version(HTTPHdr &hdr) const;
/// Non-Virtual Methods
//
const char *get_protocol_string();
int populate_protocol(std::string_view *result, int size) const;
const char *protocol_contains(std::string_view tag_prefix) const;
/// Non-Virtual Accessors
//
bool is_transparent_passthrough_allowed();
void set_half_close_flag(bool flag);
bool debug() const;
APIHook *hook_get(TSHttpHookID id) const;
HttpAPIHooks const *feature_hooks() const;
bool has_hooks() const;
HostResStyle get_host_res_style() const;
void set_host_res_style(HostResStyle style);
const IpAllow::ACL &get_acl() const;
ProxySession *get_proxy_ssn();
PoolableSession *get_server_session() const;
HttpSM *get_sm() const;
// This function must return a non-negative number that is different for two in-progress transactions with the same proxy_ssn
// session.
//
virtual void set_rx_error_code(ProxyError e);
virtual void set_tx_error_code(ProxyError e);
bool support_sni() const;
/// Variables
//
HttpSessionAccept::Options upstream_outbound_options; // overwritable copy of options
IOBufferReader *get_remote_reader();
protected:
ProxySession *_proxy_ssn = nullptr;
HttpSM *_sm = nullptr;
IOBufferReader *_reader = nullptr;
private:
};
////////////////////////////////////////////////////////////
// INLINE
inline bool
ProxyTransaction::is_transparent_passthrough_allowed()
{
return upstream_outbound_options.f_transparent_passthrough;
}
inline bool
ProxyTransaction::is_chunked_encoding_supported() const
{
return _proxy_ssn ? _proxy_ssn->is_chunked_encoding_supported() : false;
}
inline void
ProxyTransaction::set_half_close_flag(bool flag)
{
if (_proxy_ssn) {
_proxy_ssn->set_half_close_flag(flag);
}
}
inline bool
ProxyTransaction::get_half_close_flag() const
{
return _proxy_ssn ? _proxy_ssn->get_half_close_flag() : false;
}
// What are the debug and hooks_enabled used for? How are they set?
// Just calling through to proxy session for now
inline bool
ProxyTransaction::debug() const
{
return _proxy_ssn ? _proxy_ssn->debug() : false;
}
inline APIHook *
ProxyTransaction::hook_get(TSHttpHookID id) const
{
return _proxy_ssn ? _proxy_ssn->hook_get(id) : nullptr;
}
inline HttpAPIHooks const *
ProxyTransaction::feature_hooks() const
{
return _proxy_ssn ? _proxy_ssn->feature_hooks() : nullptr;
}
inline bool
ProxyTransaction::has_hooks() const
{
return _proxy_ssn->has_hooks();
}
inline ProxySession *
ProxyTransaction::get_proxy_ssn()
{
return _proxy_ssn;
}
inline PoolableSession *
ProxyTransaction::get_server_session() const
{
return _proxy_ssn ? _proxy_ssn->get_server_session() : nullptr;
}
inline HttpSM *
ProxyTransaction::get_sm() const
{
return _sm;
}
inline const char *
ProxyTransaction::get_protocol_string()
{
return _proxy_ssn ? _proxy_ssn->get_protocol_string() : nullptr;
}
inline int
ProxyTransaction::populate_protocol(std::string_view *result, int size) const
{
return _proxy_ssn ? _proxy_ssn->populate_protocol(result, size) : 0;
}
inline const char *
ProxyTransaction::protocol_contains(std::string_view tag_prefix) const
{
return _proxy_ssn ? _proxy_ssn->protocol_contains(tag_prefix) : nullptr;
}
inline bool
ProxyTransaction::support_sni() const
{
return _proxy_ssn ? _proxy_ssn->support_sni() : false;
}
inline void
ProxyTransaction::set_active_timeout(ink_hrtime timeout_in)
{
if (_proxy_ssn) {
_proxy_ssn->set_active_timeout(timeout_in);
}
}
inline void
ProxyTransaction::set_inactivity_timeout(ink_hrtime timeout_in)
{
if (_proxy_ssn) {
_proxy_ssn->set_inactivity_timeout(timeout_in);
}
}
inline void
ProxyTransaction::cancel_inactivity_timeout()
{
if (_proxy_ssn) {
_proxy_ssn->cancel_inactivity_timeout();
}
}
inline void
ProxyTransaction::cancel_active_timeout()
{
if (_proxy_ssn) {
_proxy_ssn->cancel_active_timeout();
}
}
// See if we need to schedule on the primary thread for the transaction or change the thread that is associated with the VC.
// If we reschedule, the scheduled action is returned. Otherwise, NULL is returned
inline Action *
ProxyTransaction::adjust_thread(Continuation *cont, int event, void *data)
{
NetVConnection *vc = this->get_netvc();
EThread *this_thread = this_ethread();
if (vc && vc->thread != this_thread) {
if (vc->thread->is_event_type(ET_NET)) {
return vc->thread->schedule_imm(cont, event, data);
} else { // Not a net thread, take over this thread
vc->thread = this_thread;
}
}
return nullptr;
}
inline IOBufferReader *
ProxyTransaction::get_remote_reader()
{
return _reader;
}
inline sockaddr const *
ProxyTransaction::get_remote_addr() const
{
if (_proxy_ssn) {
return _proxy_ssn->get_remote_addr();
} else {
return nullptr;
}
}
|