XRootD
XrdHttpTpcTPC.hh
Go to the documentation of this file.
1 
2 #include <memory>
3 #include <string>
4 #include <vector>
5 #include <sys/time.h>
6 
8 
10 #include "XrdHttp/XrdHttpUtils.hh"
11 
12 #include "XrdTls/XrdTlsTempCA.hh"
14 
15 #include <curl/curl.h>
16 
17 class XrdOucErrInfo;
18 class XrdOucStream;
19 class XrdSfsFile;
20 class XrdSfsFileSystem;
21 class XrdXrootdTpcMon;
22 typedef void CURL;
23 
24 namespace TPC {
25 class State;
26 
27 enum LogMask {
28  Debug = 0x01,
29  Info = 0x02,
30  Warning = 0x04,
31  Error = 0x08,
32  All = 0xff
33 };
34 
35 enum class TpcType {
36  Pull,
37  Push
38 };
39 
40 struct CurlDeleter {
41  void operator()(CURL *curl);
42 };
43 using ManagedCurlHandle = std::unique_ptr<CURL, CurlDeleter>;
44 
45 
46 class TPCHandler : public XrdHttpExtHandler {
47 public:
48  TPCHandler(XrdSysError *log, const char *config, XrdOucEnv *myEnv);
49  virtual ~TPCHandler();
50 
51  virtual bool MatchesPath(const char *verb, const char *path);
52  virtual int ProcessReq(XrdHttpExtReq &req);
53  // Abstract method in the base class, but does not seem to be used
54  virtual int Init(const char *cfgfile) {return 0;}
55  static constexpr std::string_view OSS_TASK_OPAQUE = "oss.task=httptpc";
56 private:
57 
58  static int sockopt_callback(void * clientp, curl_socket_t curlfd, curlsocktype purpose);
59  static int opensocket_callback(void *clientp,
60  curlsocktype purpose,
61  struct curl_sockaddr *address);
62 
63  static int closesocket_callback(void *clientp, curl_socket_t fd);
64 
65  struct TPCLogRecord {
66 
67  TPCLogRecord(XrdHttpExtReq &req, const TpcType tpcType)
68  : bytes_transferred(-1), status(-1), tpc_status(-1), streams(1), isIPv6(false),
69  allow_local(false), allow_private(false), mReq(req), pmarkManager(mReq, tpcType), mTpcType(tpcType)
70  {
71  gettimeofday(&begT, 0); // Set effective start time
72  }
73 
74  ~TPCLogRecord();
75 
76  std::string log_prefix;
77  std::string local;
78  std::string remote;
79  std::string name;
80  std::string clID;
81  static XrdXrootdTpcMon* tpcMonitor;
82  timeval begT;
83  off_t bytes_transferred;
84  int status;
85  int tpc_status;
86  unsigned int streams;
87  bool isIPv6;
88  bool allow_local;
89  bool allow_private;
90  XrdHttpExtReq & mReq;
91  XrdHttpTpc::PMarkManager pmarkManager;
92  XrdSysError * m_log;
93  TpcType mTpcType;
94  };
95 
96  int ProcessOptionsReq(XrdHttpExtReq &req);
97 
98  static std::string GetAuthz(XrdHttpExtReq &req);
99 
100  // Configure curl handle's CA settings. The CA files present here should
101  // be valid for the lifetime of the process.
102  void ConfigureCurlCA(CURL *curl);
103 
104  // Redirect the transfer according to the contents of an XrdOucErrInfo object.
105  int RedirectTransfer(CURL *curl, const std::string &redirect_resource, XrdHttpExtReq &req,
106  XrdOucErrInfo &error, TPCLogRecord &);
107 
108  int OpenWaitStall(XrdSfsFile &fh, const std::string &resource, int mode,
109  int openMode, const XrdSecEntity &sec,
110  const std::string &authz);
111 
112  int DetermineXferSize(CURL *curl, XrdHttpExtReq &req, TPC::State &state,
113  bool &success, TPCLogRecord &, bool shouldReturnErrorToClient = true);
114 
115  int GetContentLengthTPCPull(CURL *curl, XrdHttpExtReq &req, uint64_t & contentLength, bool & success, TPCLogRecord &rec);
116 
117  // Send a 'performance marker' back to the TPC client, informing it of our
118  // progress. The TPC client will use this information to determine whether
119  // the transfer is making sufficient progress and/or other monitoring info
120  // (such as whether the transfer is happening over IPv4, IPv6, or both).
121  int SendPerfMarker(XrdHttpExtReq &req, TPCLogRecord &rec, TPC::State &state);
122  int SendPerfMarker(XrdHttpExtReq &req, TPCLogRecord &rec, std::vector<State*> &state,
123  off_t bytes_transferred);
124 
125  // Perform the libcurl transfer, periodically sending back chunked updates.
126  int RunCurlWithUpdates(CURL *curl, XrdHttpExtReq &req, TPC::State &state,
127  TPCLogRecord &rec);
128 
129  // Experimental multi-stream version of RunCurlWithUpdates
130  int RunCurlWithStreams(XrdHttpExtReq &req, TPC::State &state,
131  size_t streams, TPCLogRecord &rec);
132  int RunCurlWithStreamsImpl(XrdHttpExtReq &req, TPC::State &state,
133  size_t streams, std::vector<TPC::State*> &streams_handles,
134  std::vector<ManagedCurlHandle> &curl_handles,
135  TPCLogRecord &rec);
136 
137  int ProcessPushReq(const std::string & resource, XrdHttpExtReq &req);
138  int ProcessPullReq(const std::string &resource, XrdHttpExtReq &req);
139 
140  bool ConfigureFSLib(XrdOucStream &Config, std::string &path1, bool &path1_alt,
141  std::string &path2, bool &path2_alt);
142  bool Configure(const char *configfn, XrdOucEnv *myEnv);
143  bool ConfigureLogger(XrdOucStream &Config);
144 
145  // Generate a consistently-formatted log message.
146  void logTransferEvent(LogMask lvl, const TPCLogRecord &record,
147  const std::string &event, const std::string &message="");
148 
149  std::string generateClientErr(std::stringstream &err_ss, const TPCLogRecord &rec, CURLcode cCode = CURLcode::CURLE_OK);
150 
151  std::string prepareURL(XrdHttpExtReq &req);
152 
153  static int m_marker_period;
154  static size_t m_block_size;
155  static size_t m_small_block_size;
156  bool m_allow_local;
157  bool m_allow_private;
158  bool m_desthttps;
159  bool m_fixed_route; // If 'true' the Destination IP in an HTTP-TPC is forced to be the same as the IP used to contact the server
160  // when 'false' any IP available can be selected
161  int m_timeout; // the 'timeout interval'; if no bytes have been received during this time period, abort the transfer.
162  int m_first_timeout; // the 'first timeout interval'; the amount of time we're willing to wait to get the first byte.
163  // Unless explicitly specified, this is 2x the timeout interval.
164  std::string m_cadir; // The directory to use for CAs.
165  std::string m_cafile; // The file to use for CAs in libcurl
166  static XrdSysMutex m_monid_mutex;
167  static uint64_t m_monid;
168  XrdSysError m_log;
169  XrdSfsFileSystem *m_sfs;
170  std::shared_ptr<XrdTlsTempCA> m_ca_file;
171 
172  // 16 blocks in flight at 16 MB each, meaning that there will be up to 256MB
173  // in flight; this is equal to the bandwidth delay product of a 200ms transcontinental
174  // connection at 10Gbps.
175  static const int m_pipelining_multiplier = 16;
176 
177  bool usingEC; // indicate if XrdEC is used
178 
179  // Time to connect the curl socket to the remote server uses the linux's default value
180  // of 60 seconds
181  static const long CONNECT_TIMEOUT = 60;
182 
183  // hdr2cgimap
184  std::map<std::string,std::string> hdr2cgimap;
185 };
186 }
void CURL
void CURL
Utility functions for XrdHTTP.
TPCHandler(XrdSysError *log, const char *config, XrdOucEnv *myEnv)
virtual int ProcessReq(XrdHttpExtReq &req)
virtual ~TPCHandler()
static constexpr std::string_view OSS_TASK_OPAQUE
virtual int Init(const char *cfgfile)
Initializes the external request handler.
virtual bool MatchesPath(const char *verb, const char *path)
Tells if the incoming path is recognized as one of the paths that have to be processed.
std::unique_ptr< CURL, CurlDeleter > ManagedCurlHandle
@ Warning
XrdCmsConfig Config
void operator()(CURL *curl)