xrootd
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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"
42 #include "XrdSys/XrdSysPthread.hh"
44 #include "Xrd/XrdObject.hh"
46 #include "XrdOuc/XrdOucStream.hh"
47 #include "Xrd/XrdProtocol.hh"
48 #include "XrdOuc/XrdOucHash.hh"
49 
50 #include <openssl/ssl.h>
51 
52 #include <vector>
53 
54 #include "XrdHttpReq.hh"
55 
56 /******************************************************************************/
57 /* D e f i n e s */
58 /******************************************************************************/
59 
60 
61 #ifndef __GNUC__
62 #define __attribute__(x)
63 #endif
64 
65 class XrdOucTokenizer;
66 class XrdOucTrace;
67 class XrdBuffer;
68 class XrdLink;
69 class XrdXrootdProtocol;
70 class XrdHttpSecXtractor;
71 class XrdHttpExtHandler;
72 struct XrdVersionInfo;
73 class XrdOucGMap;
74 class XrdCryptoFactory;
75 
76 class XrdHttpProtocol : public XrdProtocol {
77 
78  friend class XrdHttpReq;
79  friend class XrdHttpExtReq;
80 
81 public:
82 
84  static int Configure(char *parms, XrdProtocol_Config *pi);
85 
87  void DoIt() {
88  if (Resume) (*this.*Resume)();
89  }
90 
93 
95  int Process(XrdLink *lp); // Sync: Job->Link.DoIt->Process
96 
97 
99  void Recycle(XrdLink *lp, int consec, const char *reason);
100 
102  int Stats(char *buff, int blen, int do_sync = 0);
103 
104 
105 
106 
108  int doStat(char *fname);
109 
111  int doChksum(const XrdOucString &fname);
112 
114  XrdHttpProtocol(const XrdHttpProtocol&) = default;
116  XrdHttpProtocol(bool imhttps);
118  Cleanup();
119  }
120 
123 
124 
127 
129  bool isHTTPS() { return ishttps; }
130 
131 private:
132 
133 
136 
138  static bool InitTLS();
139 
141  static bool InitSecurity();
142 
144  int StartSimpleResp(int code, const char *desc, const char *header_to_add, long long bodylen, bool keepalive);
145 
147  int SendData(const char *body, int bodylen);
148 
150  void Cleanup();
151 
153  void Reset();
154 
157  int HandleAuthentication(XrdLink* lp);
158 
161  int GetVOMSData(XrdLink *lp);
162 
163  // Handle gridmap file mapping if present
164  // Second argument is the OpenSSL hash of the EEC, if present; this allows
165  // a consistent fallback if the user is not in the mapfile.
166  //
167  // @return 0 if successful, otherwise !0
168  int HandleGridMap(XrdLink* lp, const char * eechash);
169 
172  int getDataOneShot(int blen, bool wait=false);
173 
175  static BIO *CreateBIO(XrdLink *lp);
176 
180  struct extHInfo
181  {XrdOucString extHName; // The instance name (1 to 16 characters)
182  XrdOucString extHPath; // The shared library path
183  XrdOucString extHParm; // The parameter (sort of)
184 
185  extHInfo(const char *hName, const char *hPath, const char *hParm)
186  : extHName(hName), extHPath(hPath), extHParm(hParm) {}
188  };
190  static int Config(const char *fn, XrdOucEnv *myEnv);
191  static const char *Configed();
192  static int xtrace(XrdOucStream &Config);
193  static int xsslcert(XrdOucStream &Config);
194  static int xsslkey(XrdOucStream &Config);
195  static int xsecxtractor(XrdOucStream &Config);
196  static int xexthandler(XrdOucStream & Config, std::vector<extHInfo> &hiVec);
197  static int xsslcadir(XrdOucStream &Config);
198  static int xsslcipherfilter(XrdOucStream &Config);
199  static int xdesthttps(XrdOucStream &Config);
200  static int xlistdeny(XrdOucStream &Config);
201  static int xlistredir(XrdOucStream &Config);
202  static int xselfhttps2http(XrdOucStream &Config);
203  static int xembeddedstatic(XrdOucStream &Config);
204  static int xstaticredir(XrdOucStream &Config);
205  static int xstaticpreload(XrdOucStream &Config);
206  static int xgmap(XrdOucStream &Config);
207  static int xsslcafile(XrdOucStream &Config);
208  static int xsslverifydepth(XrdOucStream &Config);
209  static int xsecretkey(XrdOucStream &Config);
210  static int xheader2cgi(XrdOucStream &Config);
211  static int xhttpsmode(XrdOucStream &Config);
212  static int xtlsreuse(XrdOucStream &Config);
213 
214  static bool isRequiredXtractor; // If true treat secxtractor errors as fatal
216 
217  static bool usingEC; // using XrdEC
218  // Loads the SecXtractor plugin, if available
219  static int LoadSecXtractor(XrdSysError *eDest, const char *libName,
220  const char *libParms);
221 
222  // An oldstyle struct array to hold exthandlers
223  #define MAX_XRDHTTPEXTHANDLERS 4
224  static struct XrdHttpExtHandlerInfo {
225  char name[16];
228  static int exthandlercnt;
229 
230  // Loads the ExtHandler plugin, if available
231  static int LoadExtHandler(std::vector<extHInfo> &hiVec,
232  const char *cFN, XrdOucEnv &myEnv);
233 
234  static int LoadExtHandler(XrdSysError *eDest, const char *libName,
235  const char *configFN, const char *libParms,
236  XrdOucEnv *myEnv, const char *instName);
237 
238  // Determines whether one of the loaded ExtHandlers are interested in
239  // handling a given request.
240  //
241  // Returns NULL if there is no matching handler.
243 
244  // Tells if an ext handler with the given name has already been loaded
245  static bool ExtHandlerLoaded(const char *handlername);
246 
251 
254 
256  int BuffAvailable();
258  int BuffUsed();
260  int BuffFree();
261 
263  void BuffConsume(int blen);
265  int BuffgetData(int blen, char **data, bool wait);
267  int BuffgetLine(XrdOucString &dest);
268 
270  int SendSimpleResp(int code, const char *desc, const char *header_to_add, const char *body, long long bodylen, bool keepalive);
271 
273  // API.
274  int StartChunkedResp(int code, const char *desc, const char *header_to_add, bool keepalive);
275 
277  // indicates that this is the last chunk in the response.
278  int ChunkResp(const char *body, long long bodylen);
279 
281  char *GetClientIPStr();
282 
285 
288 
290  SSL *ssl;
291 
293  BIO *sbio;
294 
296  static BIO *sslbio_err;
297 
299  bool ishttps;
300 
303  bool ssldone;
305 
306 protected:
307 
308  // Statistical area
309  //
310 // static XrdXrootdStats *SI;
311 // int numReads; // Count for kXR_read
312 // int numReadP; // Count for kXR_read pre-preads
313 // int numReadV; // Count for kR_readv
314 // int numSegsV; // Count for kR_readv segmens
315 // int numWrites; // Count
316 // int numFiles; // Count
317 //
318 // int cumReads; // Count less numReads
319 // int cumReadP; // Count less numReadP
320 // int cumReadV; // Count less numReadV
321 // int cumSegsV; // Count less numSegsV
322 // int cumWrites; // Count less numWrites
323 // long long totReadP; // Bytes
324 
325  static XrdScheduler *Sched; // System scheduler
326  static XrdBuffManager *BPool; // Buffer manager
327  static XrdSysError eDest; // Error message handler
328  static XrdSecService *CIA; // Authentication Server
329 
332 
335  char *Addr_str;
336 
338  static XrdOucGMap *servGMap; // Grid mapping service
339 
342 
343 
347 
348 
349  //
350  // Processing configuration values
351  //
352 
354  static int hailWait;
355 
357  static int readWait;
358 
360  static int Port;
361 
363  static char * Port_str;
364 
367 
369  static int crlRefIntervalSec;
370 
372  static char *gridmap;// [s] gridmap file [/etc/grid-security/gridmap]
373  static bool isRequiredGridmap; // If true treat gridmap errors as fatal
374  static bool compatNameGeneration; // If true, utilize the old algorithm for username generation for unknown users.
375 
377  static char *secretkey;
378 
380  static int sslverifydepth;
381 
383  static bool isdesthttps;
384 
386  static char *listredir;
387 
389  static bool listdeny;
390 
392  static bool selfhttps2http;
393 
395  static bool embeddedstatic;
396 
397  // Url to redirect to in the case a /static is requested
398  static char *staticredir;
399 
400  // Hash that keeps preloaded files
402  char *data;
403  int len;
404  };
406 
409 
411  static std::map< std::string, std::string > hdr2cgimap;
412 
414  static int m_bio_type;
415 
417  static BIO_METHOD *m_bio_method;
418 };
419 #endif
static char * secretkey
The key used to calculate the url hashes.
Definition: XrdHttpProtocol.hh:377
static XrdObjectQ< XrdHttpProtocol > ProtStack
Definition: XrdHttpProtocol.hh:121
static int xgmap(XrdOucStream &Config)
char * Addr_str
Definition: XrdHttpProtocol.hh:335
static BIO * CreateBIO(XrdLink *lp)
Create a new BIO object from an XrdLink. Returns NULL on failure.
int(XrdHttpProtocol::* Resume)()
The resume function.
Definition: XrdHttpProtocol.hh:135
static char * sslcafile
Definition: XrdHttpProtocol.hh:366
static int exthandlercnt
Definition: XrdHttpProtocol.hh:228
void Cleanup()
Deallocate resources, in order to reutilize an object of this class.
static bool isdesthttps
True if the redirections must be towards https targets.
Definition: XrdHttpProtocol.hh:383
static char * Port_str
Our port, as a string.
Definition: XrdHttpProtocol.hh:363
static int xheader2cgi(XrdOucStream &Config)
static kXR_int32 myRole
Our role.
Definition: XrdHttpProtocol.hh:408
static int xsecxtractor(XrdOucStream &Config)
static int readWait
Timeout for reading data.
Definition: XrdHttpProtocol.hh:357
static XrdHttpExtHandler * FindMatchingExtHandler(const XrdHttpReq &)
static char * sslcadir
Definition: XrdHttpProtocol.hh:366
char * GetClientIPStr()
Gets a string that represents the IP address of the client. Must be freed.
XrdSecEntity SecEntity
Authentication area.
Definition: XrdHttpProtocol.hh:126
static int Config(const char *fn, XrdOucEnv *myEnv)
Functions related to the configuration.
char * myBuffEnd
Definition: XrdHttpProtocol.hh:250
static int xsecretkey(XrdOucStream &Config)
static int xsslkey(XrdOucStream &Config)
Definition: XrdSecInterface.hh:553
int len
Definition: XrdHttpProtocol.hh:403
void BuffConsume(int blen)
Consume some bytes from the buffer.
Definition: XrdHttpReq.hh:77
XrdHttpReq CurrentReq
Definition: XrdHttpProtocol.hh:346
static int xlistredir(XrdOucStream &Config)
int doStat(char *fname)
Perform a Stat request.
static bool compatNameGeneration
Definition: XrdHttpProtocol.hh:374
XrdHttpProtocol(const XrdHttpProtocol &)=default
Ctor, dtors and copy ctor.
static char * sslcipherfilter
Definition: XrdHttpProtocol.hh:366
static char * gridmap
Gridmap file location. The same used by XrdSecGsi.
Definition: XrdHttpProtocol.hh:372
int getDataOneShot(int blen, bool wait=false)
static int xstaticredir(XrdOucStream &Config)
Definition: XrdOucStream.hh:46
Definition: XrdHttpProtocol.hh:224
Definition: XrdXrootdBridge.hh:61
static int xhttpsmode(XrdOucStream &Config)
static bool listdeny
If true, any form of listing is denied.
Definition: XrdHttpProtocol.hh:389
XrdBuffer * myBuff
Circular Buffer used to read the request.
Definition: XrdHttpProtocol.hh:248
int ChunkResp(const char *body, long long bodylen)
Send a (potentially partial) body in a chunked response; invoking with NULL body. ...
bool isHTTPS()
called via https
Definition: XrdHttpProtocol.hh:129
static int xstaticpreload(XrdOucStream &Config)
static bool InitTLS()
Initialization of the ssl security things.
XrdObject< XrdHttpProtocol > ProtLink
Definition: XrdHttpProtocol.hh:122
Definition: XrdProtocol.hh:124
static XrdHttpSecXtractor * secxtractor
Definition: XrdHttpProtocol.hh:215
char * myBuffStart
The circular pointers.
Definition: XrdHttpProtocol.hh:250
static bool ExtHandlerLoaded(const char *handlername)
Definition: XrdXrootdProtocol.hh:154
static bool isRequiredXtractor
Definition: XrdHttpProtocol.hh:214
static XrdOucHash< StaticPreloadInfo > * staticpreload
Definition: XrdHttpProtocol.hh:405
static const char * Configed()
static bool isRequiredGridmap
Definition: XrdHttpProtocol.hh:373
Definition: XrdBuffer.hh:71
static BIO * sslbio_err
bio to print SSL errors
Definition: XrdHttpProtocol.hh:296
static XrdSecService * CIA
Definition: XrdHttpProtocol.hh:328
static int Configure(char *parms, XrdProtocol_Config *pi)
Read and apply the configuration.
Definition: XrdOucTrace.hh:35
Definition: XrdSysError.hh:89
int BuffUsed()
How many bytes in the buffer.
char * data
Definition: XrdHttpProtocol.hh:402
XrdHttpExtHandler * ptr
Definition: XrdHttpProtocol.hh:226
int BuffgetData(int blen, char **data, bool wait)
Get a pointer, valid for up to blen bytes from the buffer. Returns the validity.
BIO * sbio
Private SSL bio.
Definition: XrdHttpProtocol.hh:293
int BuffAvailable()
How many bytes still fit into the buffer in a contiguous way.
int doChksum(const XrdOucString &fname)
Perform a checksum request.
Definition: XrdScheduler.hh:45
static int Port
Our port.
Definition: XrdHttpProtocol.hh:360
static int sslverifydepth
Depth of verification of a certificate chain.
Definition: XrdHttpProtocol.hh:380
int SendData(const char *body, int bodylen)
Send some generic data to the client.
static int xsslcadir(XrdOucStream &Config)
static int xselfhttps2http(XrdOucStream &Config)
static XrdScheduler * Sched
Definition: XrdHttpProtocol.hh:325
Definition: XrdHttpProtocol.hh:180
static int xsslverifydepth(XrdOucStream &Config)
int GetVOMSData(XrdLink *lp)
~extHInfo()
Definition: XrdHttpProtocol.hh:187
char name[16]
Definition: XrdHttpProtocol.hh:225
static int LoadSecXtractor(XrdSysError *eDest, const char *libName, const char *libParms)
XrdXrootd::Bridge * Bridge
The Bridge that we use to exercise the xrootd internals.
Definition: XrdHttpProtocol.hh:341
static bool selfhttps2http
If client is HTTPS, self-redirect with HTTP+token.
Definition: XrdHttpProtocol.hh:392
XrdProtocol * Match(XrdLink *lp)
Tells if the oustanding bytes on the socket match this protocol implementation.
Definition: XrdOucGMap.hh:48
~XrdHttpProtocol()
Definition: XrdHttpProtocol.hh:117
static int crlRefIntervalSec
CRL thread refresh interval.
Definition: XrdHttpProtocol.hh:369
static int xlistdeny(XrdOucStream &Config)
static XrdBuffManager * BPool
Definition: XrdHttpProtocol.hh:326
Definition: XrdProtocol.hh:55
Definition: XrdOucEnv.hh:41
#define MAX_XRDHTTPEXTHANDLERS
Definition: XrdHttpProtocol.hh:223
int HandleAuthentication(XrdLink *lp)
void DoIt()
Override from the base class.
Definition: XrdHttpProtocol.hh:87
static XrdOucGMap * servGMap
The instance of the DN mapper. Created only when a valid path is given.
Definition: XrdHttpProtocol.hh:338
XrdLink * Link
The link we are bound to.
Definition: XrdHttpProtocol.hh:331
Definition: XrdHttpExtHandler.hh:82
static int xsslcipherfilter(XrdOucStream &Config)
void Reset()
Reset values, counters, in order to reutilize an object of this class.
static int xexthandler(XrdOucStream &Config, std::vector< extHInfo > &hiVec)
XrdOucString extHName
Definition: XrdHttpProtocol.hh:181
static int hailWait
Timeout for reading the handshake.
Definition: XrdHttpProtocol.hh:354
bool ishttps
Tells if the client is https.
Definition: XrdHttpProtocol.hh:299
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:411
static XrdSysError eDest
Definition: XrdHttpProtocol.hh:327
static int m_bio_type
Type identifier for our custom BIO objects.
Definition: XrdHttpProtocol.hh:414
Definition: XrdHttpProtocol.hh:76
static char * sslcert
OpenSSL stuff.
Definition: XrdHttpProtocol.hh:366
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 &lt; 0 then it is calculated internally.
static bool InitSecurity()
Initialization fo security addon.
XrdOucString tmpline
A nice var to hold the current header line.
Definition: XrdHttpProtocol.hh:253
static BIO_METHOD * m_bio_method
C-style vptr table for our custom BIO objects.
Definition: XrdHttpProtocol.hh:417
int StartChunkedResp(int code, const char *desc, const char *header_to_add, bool keepalive)
Starts a chunked response; body of request is sent over multiple parts using the SendChunkResp.
static XrdCryptoFactory * myCryptoFactory
Definition: XrdHttpProtocol.hh:304
static int LoadExtHandler(std::vector< extHInfo > &hiVec, const char *cFN, XrdOucEnv &myEnv)
long ResumeBytes
Tells that we are just waiting to have N bytes in the buffer.
Definition: XrdHttpProtocol.hh:287
int HandleGridMap(XrdLink *lp, const char *eechash)
static bool usingEC
Definition: XrdHttpProtocol.hh:217
Definition: XrdHttpSecXtractor.hh:41
SSL * ssl
Private SSL context.
Definition: XrdHttpProtocol.hh:290
int Stats(char *buff, int blen, int do_sync=0)
Get activity stats.
static char * listredir
Url to redirect to in the case a listing is requested.
Definition: XrdHttpProtocol.hh:386
Definition: XrdOucHash.hh:127
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 char * staticredir
Definition: XrdHttpProtocol.hh:398
int kXR_int32
Definition: XPtypes.hh:89
XrdOucString extHParm
Definition: XrdHttpProtocol.hh:183
Definition: XrdOucTokenizer.hh:32
Definition: XrdCryptoFactory.hh:121
int BuffFree()
How many bytes free in the buffer.
static bool embeddedstatic
If true, use the embedded css and icons.
Definition: XrdHttpProtocol.hh:395
Definition: XrdSecEntity.hh:63
static int xembeddedstatic(XrdOucStream &Config)
static int xtrace(XrdOucStream &Config)
Main request/response class, handling the logical status of the communication.
static char * sslkey
Definition: XrdHttpProtocol.hh:366
bool DoingLogin
Tells that we are just logging in.
Definition: XrdHttpProtocol.hh:284
int Process(XrdLink *lp)
Process data incoming from the socket.
XrdOucString extHPath
Definition: XrdHttpProtocol.hh:182
Definition: XrdHttpExtHandler.hh:45
bool ssldone
Definition: XrdHttpProtocol.hh:303
static int xsslcafile(XrdOucStream &Config)
Definition: XrdHttpProtocol.hh:401
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...
Definition: XrdOucString.hh:254
extHInfo(const char *hName, const char *hPath, const char *hParm)
Definition: XrdHttpProtocol.hh:185
void Recycle(XrdLink *lp, int consec, const char *reason)
Recycle this instance.
Definition: XrdBuffer.hh:41
static int xsslcert(XrdOucStream &Config)
static int xtlsreuse(XrdOucStream &Config)
static struct XrdHttpProtocol::XrdHttpExtHandlerInfo exthandler[MAX_XRDHTTPEXTHANDLERS]
static int xdesthttps(XrdOucStream &Config)
XrdHttpProtocol operator=(const XrdHttpProtocol &rhs)