xrootd
Loading...
Searching...
No Matches
XrdHttpProtocol.hh
Go to the documentation of this file.
1//------------------------------------------------------------------------------
2// This file is part of XrdHTTP: A pragmatic implementation of the
3// HTTP/WebDAV protocol for the Xrootd framework
4//
5// Copyright (c) 2013 by European Organization for Nuclear Research (CERN)
6// Author: Fabrizio Furano <furano@cern.ch>
7// File Date: Nov 2012
8//------------------------------------------------------------------------------
9// XRootD is free software: you can redistribute it and/or modify
10// it under the terms of the GNU Lesser General Public License as published by
11// the Free Software Foundation, either version 3 of the License, or
12// (at your option) any later version.
13//
14// XRootD is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18//
19// You should have received a copy of the GNU Lesser General Public License
20// along with XRootD. If not, see <http://www.gnu.org/licenses/>.
21//------------------------------------------------------------------------------
22
23
24#ifndef __XRDHTTP_PROTOCOL_H__
25#define __XRDHTTP_PROTOCOL_H__
26
37#include <cstdlib>
38#include <unistd.h>
39#include <sys/types.h>
40
41#include "XrdSys/XrdSysError.hh"
44#include "Xrd/XrdObject.hh"
47#include "Xrd/XrdProtocol.hh"
48#include "XrdOuc/XrdOucHash.hh"
51
52#include <openssl/ssl.h>
53
54#include <vector>
55
56#include "XrdHttpReq.hh"
57
58/******************************************************************************/
59/* D e f i n e s */
60/******************************************************************************/
61
62
63#ifndef __GNUC__
64#define __attribute__(x)
65#endif
66
67class XrdOucTokenizer;
68class XrdOucTrace;
69class XrdBuffer;
70class XrdLink;
74struct XrdVersionInfo;
75class XrdOucGMap;
77
79
80 friend class XrdHttpReq;
81 friend class XrdHttpExtReq;
82
83public:
84
86 static int Configure(char *parms, XrdProtocol_Config *pi);
87
89 void DoIt() {
90 if (Resume) (*this.*Resume)();
91 }
92
95
97 int Process(XrdLink *lp); // Sync: Job->Link.DoIt->Process
98
99
101 void Recycle(XrdLink *lp, int consec, const char *reason);
102
104 int Stats(char *buff, int blen, int do_sync = 0);
105
106
107
108
110 int doStat(char *fname);
111
113 int doChksum(const XrdOucString &fname);
114
118 XrdHttpProtocol(bool imhttps);
120 Cleanup();
121 }
122
125
126
129
130 // XrdHttp checksum handling class
132
135
137 bool isHTTPS() { return ishttps; }
138
139private:
140
141
144
146 static bool InitTLS();
147
149 static bool InitSecurity();
150
152 int StartSimpleResp(int code, const char *desc, const char *header_to_add, long long bodylen, bool keepalive);
153
155 int SendData(const char *body, int bodylen);
156
158 void Cleanup();
159
161 void Reset();
162
166
170
171 // Handle gridmap file mapping if present
172 // Second argument is the OpenSSL hash of the EEC, if present; this allows
173 // a consistent fallback if the user is not in the mapfile.
174 //
175 // @return 0 if successful, otherwise !0
176 int HandleGridMap(XrdLink* lp, const char * eechash);
177
180 int getDataOneShot(int blen, bool wait=false);
181
183 static BIO *CreateBIO(XrdLink *lp);
184
188 struct extHInfo
189 {XrdOucString extHName; // The instance name (1 to 16 characters)
190 XrdOucString extHPath; // The shared library path
191 XrdOucString extHParm; // The parameter (sort of)
192
193 extHInfo(const char *hName, const char *hPath, const char *hParm)
194 : extHName(hName), extHPath(hPath), extHParm(hParm) {}
196 };
198 static int Config(const char *fn, XrdOucEnv *myEnv);
199 static const char *Configed();
204 static int xexthandler(XrdOucStream & Config, std::vector<extHInfo> &hiVec);
221
222 static bool isRequiredXtractor; // If true treat secxtractor errors as fatal
224
225 static bool usingEC; // using XrdEC
226 // Loads the SecXtractor plugin, if available
227 static int LoadSecXtractor(XrdSysError *eDest, const char *libName,
228 const char *libParms);
229
230 // An oldstyle struct array to hold exthandlers
231 #define MAX_XRDHTTPEXTHANDLERS 4
236 static int exthandlercnt;
237
238 // Loads the ExtHandler plugin, if available
239 static int LoadExtHandler(std::vector<extHInfo> &hiVec,
240 const char *cFN, XrdOucEnv &myEnv);
241
242 static int LoadExtHandler(XrdSysError *eDest, const char *libName,
243 const char *configFN, const char *libParms,
244 XrdOucEnv *myEnv, const char *instName);
245
246 // Determines whether one of the loaded ExtHandlers are interested in
247 // handling a given request.
248 //
249 // Returns NULL if there is no matching handler.
251
252 // Tells if an ext handler with the given name has already been loaded
253 static bool ExtHandlerLoaded(const char *handlername);
254
259
262
266 int BuffUsed();
268 int BuffFree();
269
271 void BuffConsume(int blen);
273 int BuffgetData(int blen, char **data, bool wait);
276
278 int SendSimpleResp(int code, const char *desc, const char *header_to_add, const char *body, long long bodylen, bool keepalive);
279
281 // API.
282 int StartChunkedResp(int code, const char *desc, const char *header_to_add, long long bodylen, bool keepalive);
283
285 // indicates that this is the last chunk in the response.
286 int ChunkResp(const char *body, long long bodylen);
287
289 // of the chunk is known but the body is not immediately available.
290 int ChunkRespHeader(long long bodylen);
291
294
297
300
303
305 SSL *ssl;
306
308 BIO *sbio;
309
311 static BIO *sslbio_err;
312
315
320
321protected:
322
323 // Statistical area
324 //
325// static XrdXrootdStats *SI;
326// int numReads; // Count for kXR_read
327// int numReadP; // Count for kXR_read pre-preads
328// int numReadV; // Count for kR_readv
329// int numSegsV; // Count for kR_readv segmens
330// int numWrites; // Count
331// int numFiles; // Count
332//
333// int cumReads; // Count less numReads
334// int cumReadP; // Count less numReadP
335// int cumReadV; // Count less numReadV
336// int cumSegsV; // Count less numSegsV
337// int cumWrites; // Count less numWrites
338// long long totReadP; // Bytes
339
340 static XrdScheduler *Sched; // System scheduler
341 static XrdBuffManager *BPool; // Buffer manager
342 static XrdSysError eDest; // Error message handler
343 static XrdSecService *CIA; // Authentication Server
344
347
350 char *Addr_str;
351
353 static XrdOucGMap *servGMap; // Grid mapping service
354
357
358
362
363
364 //
365 // Processing configuration values
366 //
367
369 static int hailWait;
370
372 static int readWait;
373
375 static int Port;
376
378 static char * Port_str;
379
382
385
387 static char *gridmap;// [s] gridmap file [/etc/grid-security/gridmap]
388 static bool isRequiredGridmap; // If true treat gridmap errors as fatal
389 static bool compatNameGeneration; // If true, utilize the old algorithm for username generation for unknown users.
390
392 static char *secretkey;
393
395 static int sslverifydepth;
396
398 static bool isdesthttps;
399
401 static char *listredir;
402
404 static bool listdeny;
405
407 static bool selfhttps2http;
408
410 static bool embeddedstatic;
411
412 // Url to redirect to in the case a /static is requested
413 static char *staticredir;
414
415 // Hash that keeps preloaded files
417 char *data;
418 int len;
419 };
421
424
426 static std::map< std::string, std::string > hdr2cgimap;
427
429 static int m_bio_type;
430
432 static BIO_METHOD *m_bio_method;
433
435 static char * xrd_cslist;
436};
437#endif
int kXR_int32
Definition XPtypes.hh:89
#define MAX_XRDHTTPEXTHANDLERS
Definition XrdHttpProtocol.hh:231
Main request/response class, handling the logical status of the communication.
Definition XrdBuffer.hh:72
Definition XrdBuffer.hh:42
Definition XrdCryptoFactory.hh:122
Definition XrdHttpChecksumHandler.hh:85
Definition XrdHttpExtHandler.hh:82
Definition XrdHttpExtHandler.hh:45
Definition XrdHttpProtocol.hh:78
void BuffConsume(int blen)
Consume some bytes from the buffer.
static XrdCryptoFactory * myCryptoFactory
Definition XrdHttpProtocol.hh:319
int BuffFree()
How many bytes free in the buffer.
static BIO * sslbio_err
bio to print SSL errors
Definition XrdHttpProtocol.hh:311
void Reset()
Reset values, counters, in order to reutilize an object of this class.
int BuffUsed()
How many bytes in the buffer.
int HandleGridMap(XrdLink *lp, const char *eechash)
static kXR_int32 myRole
Our role.
Definition XrdHttpProtocol.hh:423
static char * sslcafile
Definition XrdHttpProtocol.hh:381
int ChunkRespHeader(long long bodylen)
Send the beginning of a chunked response but not the body; useful when the size.
static int xlistredir(XrdOucStream &Config)
static int LoadExtHandler(std::vector< extHInfo > &hiVec, const char *cFN, XrdOucEnv &myEnv)
static XrdOucHash< StaticPreloadInfo > * staticpreload
Definition XrdHttpProtocol.hh:420
static char * listredir
Url to redirect to in the case a listing is requested.
Definition XrdHttpProtocol.hh:401
static bool InitTLS()
Initialization of the ssl security things.
static int Configure(char *parms, XrdProtocol_Config *pi)
Read and apply the configuration.
static int xsecretkey(XrdOucStream &Config)
static int xembeddedstatic(XrdOucStream &Config)
static const char * Configed()
XrdXrootd::Bridge * Bridge
The Bridge that we use to exercise the xrootd internals.
Definition XrdHttpProtocol.hh:356
static XrdSysError eDest
Definition XrdHttpProtocol.hh:342
static char * xrd_cslist
The list of checksums that were configured via the xrd.cksum parameter on the server config file.
Definition XrdHttpProtocol.hh:435
void Cleanup()
Deallocate resources, in order to reutilize an object of this class.
static bool selfhttps2http
If client is HTTPS, self-redirect with HTTP+token.
Definition XrdHttpProtocol.hh:407
static XrdHttpSecXtractor * secxtractor
Definition XrdHttpProtocol.hh:223
static XrdHttpChecksumHandler cksumHandler
Definition XrdHttpProtocol.hh:131
static int hailWait
Timeout for reading the handshake.
Definition XrdHttpProtocol.hh:369
static int xdesthttps(XrdOucStream &Config)
int doChksum(const XrdOucString &fname)
Perform a checksum request.
static int xexthandler(XrdOucStream &Config, std::vector< extHInfo > &hiVec)
static char * sslcipherfilter
Definition XrdHttpProtocol.hh:381
static int m_bio_type
Type identifier for our custom BIO objects.
Definition XrdHttpProtocol.hh:429
static std::map< std::string, std::string > hdr2cgimap
Rules that turn HTTP headers to cgi tokens in the URL, for internal comsumption.
Definition XrdHttpProtocol.hh:426
XrdHttpProtocol(bool imhttps)
static int xtlsreuse(XrdOucStream &Config)
static int xsslkey(XrdOucStream &Config)
static int LoadExtHandler(XrdSysError *eDest, const char *libName, const char *configFN, const char *libParms, XrdOucEnv *myEnv, const char *instName)
static int xgmap(XrdOucStream &Config)
static char * gridmap
Gridmap file location. The same used by XrdSecGsi.
Definition XrdHttpProtocol.hh:387
static int xselfhttps2http(XrdOucStream &Config)
static int xsslcafile(XrdOucStream &Config)
static int xstaticredir(XrdOucStream &Config)
static bool ExtHandlerLoaded(const char *handlername)
bool ssldone
Definition XrdHttpProtocol.hh:318
XrdLink * Link
The link we are bound to.
Definition XrdHttpProtocol.hh:346
static char * sslkey
Definition XrdHttpProtocol.hh:381
int doStat(char *fname)
Perform a Stat request.
XrdObject< XrdHttpProtocol > ProtLink
Definition XrdHttpProtocol.hh:124
static int readWait
Timeout for reading data.
Definition XrdHttpProtocol.hh:372
void Recycle(XrdLink *lp, int consec, const char *reason)
Recycle this instance.
BIO * sbio
Private SSL bio.
Definition XrdHttpProtocol.hh:308
int ChunkResp(const char *body, long long bodylen)
Send a (potentially partial) body in a chunked response; invoking with NULL body.
static int xsslcipherfilter(XrdOucStream &Config)
static XrdOucGMap * servGMap
The instance of the DN mapper. Created only when a valid path is given.
Definition XrdHttpProtocol.hh:353
void DoIt()
Override from the base class.
Definition XrdHttpProtocol.hh:89
static BIO * CreateBIO(XrdLink *lp)
Create a new BIO object from an XrdLink. Returns NULL on failure.
int GetVOMSData(XrdLink *lp)
XrdOucString tmpline
A nice var to hold the current header line.
Definition XrdHttpProtocol.hh:261
static int xheader2cgi(XrdOucStream &Config)
long ResumeBytes
Tells that we are just waiting to have N bytes in the buffer.
Definition XrdHttpProtocol.hh:302
static int LoadSecXtractor(XrdSysError *eDest, const char *libName, const char *libParms)
static int xsslcert(XrdOucStream &Config)
int BuffgetLine(XrdOucString &dest)
Copy a full line of text from the buffer into dest. Zero if no line can be found in the buffer.
static BIO_METHOD * m_bio_method
C-style vptr table for our custom BIO objects.
Definition XrdHttpProtocol.hh:432
static XrdScheduler * Sched
Definition XrdHttpProtocol.hh:340
static char * sslcadir
Definition XrdHttpProtocol.hh:381
int BuffAvailable()
How many bytes still fit into the buffer in a contiguous way.
static XrdSecService * CIA
Definition XrdHttpProtocol.hh:343
static char * Port_str
Our port, as a string.
Definition XrdHttpProtocol.hh:378
XrdHttpProtocol operator=(const XrdHttpProtocol &rhs)
static XrdBuffManager * BPool
Definition XrdHttpProtocol.hh:341
bool isHTTPS()
called via https
Definition XrdHttpProtocol.hh:137
static int xstaticpreload(XrdOucStream &Config)
static bool compatNameGeneration
Definition XrdHttpProtocol.hh:389
static int Config(const char *fn, XrdOucEnv *myEnv)
Functions related to the configuration.
static int xhttpsmode(XrdOucStream &Config)
int SendData(const char *body, int bodylen)
Send some generic data to the client.
static int xsecxtractor(XrdOucStream &Config)
static bool isdesthttps
True if the redirections must be towards https targets.
Definition XrdHttpProtocol.hh:398
XrdBuffer * myBuff
Circular Buffer used to read the request.
Definition XrdHttpProtocol.hh:256
int getDataOneShot(int blen, bool wait=false)
static char * secretkey
The key used to calculate the url hashes.
Definition XrdHttpProtocol.hh:392
XrdProtocol * Match(XrdLink *lp)
Tells if the oustanding bytes on the socket match this protocol implementation.
SSL * ssl
Private SSL context.
Definition XrdHttpProtocol.hh:305
static char * sslcert
OpenSSL stuff.
Definition XrdHttpProtocol.hh:381
static bool usingEC
Definition XrdHttpProtocol.hh:225
int BuffgetData(int blen, char **data, bool wait)
Get a pointer, valid for up to blen bytes from the buffer. Returns the validity.
static int xlistdeny(XrdOucStream &Config)
static bool isRequiredGridmap
Definition XrdHttpProtocol.hh:388
static int xtrace(XrdOucStream &Config)
int HandleAuthentication(XrdLink *lp)
int StartSimpleResp(int code, const char *desc, const char *header_to_add, long long bodylen, bool keepalive)
Start a response back to the client.
static struct XrdHttpProtocol::XrdHttpExtHandlerInfo exthandler[MAX_XRDHTTPEXTHANDLERS]
static int xsslverifydepth(XrdOucStream &Config)
int Stats(char *buff, int blen, int do_sync=0)
Get activity stats.
int SendSimpleResp(int code, const char *desc, const char *header_to_add, const char *body, long long bodylen, bool keepalive)
Sends a basic response. If the length is < 0 then it is calculated internally.
XrdHttpReq CurrentReq
Definition XrdHttpProtocol.hh:361
static int crlRefIntervalSec
CRL thread refresh interval.
Definition XrdHttpProtocol.hh:384
static bool isRequiredXtractor
Definition XrdHttpProtocol.hh:222
char * GetClientIPStr()
Gets a string that represents the IP address of the client. Must be freed.
int StartChunkedResp(int code, const char *desc, const char *header_to_add, long long bodylen, bool keepalive)
Starts a chunked response; body of request is sent over multiple parts using the SendChunkResp.
static int Port
Our port.
Definition XrdHttpProtocol.hh:375
static XrdHttpReadRangeHandler::Configuration ReadRangeConfig
configuration for the read range handler
Definition XrdHttpProtocol.hh:134
bool ishttps
Tells if the client is https.
Definition XrdHttpProtocol.hh:314
char * myBuffEnd
Definition XrdHttpProtocol.hh:258
static int exthandlercnt
Definition XrdHttpProtocol.hh:236
static bool InitSecurity()
Initialization fo security addon.
int Process(XrdLink *lp)
Process data incoming from the socket.
XrdHttpProtocol(const XrdHttpProtocol &)=default
Ctor, dtors and copy ctor.
static char * staticredir
Definition XrdHttpProtocol.hh:413
~XrdHttpProtocol()
Definition XrdHttpProtocol.hh:119
static int xsslcadir(XrdOucStream &Config)
bool DoingLogin
Tells that we are just logging in.
Definition XrdHttpProtocol.hh:299
char * myBuffStart
The circular pointers.
Definition XrdHttpProtocol.hh:258
static bool listdeny
If true, any form of listing is denied.
Definition XrdHttpProtocol.hh:404
XrdSecEntity SecEntity
Authentication area.
Definition XrdHttpProtocol.hh:128
static XrdObjectQ< XrdHttpProtocol > ProtStack
Definition XrdHttpProtocol.hh:123
int ChunkRespFooter()
Send the footer of the chunk response.
static bool embeddedstatic
If true, use the embedded css and icons.
Definition XrdHttpProtocol.hh:410
char * Addr_str
Definition XrdHttpProtocol.hh:350
int(XrdHttpProtocol::* Resume)()
The resume function.
Definition XrdHttpProtocol.hh:143
static int sslverifydepth
Depth of verification of a certificate chain.
Definition XrdHttpProtocol.hh:395
static XrdHttpExtHandler * FindMatchingExtHandler(const XrdHttpReq &)
Definition XrdHttpReq.hh:71
Definition XrdHttpSecXtractor.hh:42
Definition XrdObject.hh:90
Definition XrdObject.hh:52
Definition XrdOucEnv.hh:42
Definition XrdOucGMap.hh:49
Definition XrdOucHash.hh:128
Definition XrdOucStream.hh:47
Definition XrdOucString.hh:254
Definition XrdOucTokenizer.hh:33
Definition XrdOucTrace.hh:36
Definition XrdProtocol.hh:56
Definition XrdProtocol.hh:125
Definition XrdScheduler.hh:46
Definition XrdSecEntity.hh:65
Definition XrdSecInterface.hh:554
Definition XrdSysError.hh:90
Definition XrdXrootdProtocol.hh:156
Definition XrdXrootdBridge.hh:62
Definition XrdHttpProtocol.hh:416
char * data
Definition XrdHttpProtocol.hh:417
int len
Definition XrdHttpProtocol.hh:418
Definition XrdHttpProtocol.hh:232
char name[16]
Definition XrdHttpProtocol.hh:233
XrdHttpExtHandler * ptr
Definition XrdHttpProtocol.hh:234
Definition XrdHttpProtocol.hh:189
XrdOucString extHParm
Definition XrdHttpProtocol.hh:191
~extHInfo()
Definition XrdHttpProtocol.hh:195
XrdOucString extHPath
Definition XrdHttpProtocol.hh:190
XrdOucString extHName
Definition XrdHttpProtocol.hh:189
extHInfo(const char *hName, const char *hPath, const char *hParm)
Definition XrdHttpProtocol.hh:193
Definition XrdHttpReadRangeHandler.hh:54