XRootD
Loading...
Searching...
No Matches
XrdConfig.hh
Go to the documentation of this file.
1#ifndef _XRD_CONFIG_H
2#define _XRD_CONFIG_H
3/******************************************************************************/
4/* */
5/* X r d C o n f i g . h h */
6/* */
7/* (C) 2004 by the Board of Trustees of the Leland Stanford, Jr., University */
8/* Produced by Andrew Hanushevsky for Stanford University under contract */
9/* DE-AC02-76-SFO0515 with the Deprtment of Energy */
10/* */
11/* This file is part of the XRootD software suite. */
12/* */
13/* XRootD is free software: you can redistribute it and/or modify it under */
14/* the terms of the GNU Lesser General Public License as published by the */
15/* Free Software Foundation, either version 3 of the License, or (at your */
16/* option) any later version. */
17/* */
18/* XRootD is distributed in the hope that it will be useful, but WITHOUT */
19/* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or */
20/* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public */
21/* License for more details. */
22/* */
23/* You should have received a copy of the GNU Lesser General Public License */
24/* along with XRootD in a file called COPYING.LESSER (LGPL license) and file */
25/* COPYING (GPL license). If not, see <http://www.gnu.org/licenses/>. */
26/* */
27/* The copyright holder's institutional names and contributor's names may not */
28/* be used to endorse or promote products derived from this software without */
29/* specific prior written permission of the institution or contributor. */
30/******************************************************************************/
31
32#include <vector>
33
34#include "Xrd/XrdProtLoad.hh"
35#include "Xrd/XrdProtocol.hh"
36
37#include <sys/types.h>
38
39class XrdSysError;
40class XrdTcpMonInfo;
41class XrdNetSecurity;
42class XrdOucStream;
43class XrdInet;
44class XrdConfigProt;
45class XrdMonitor;
46
48{
49public:
50
51int Configure(int argc, char **argv);
52
53int ConfigXeq(char *var, XrdOucStream &Config, XrdSysError *eDest=0);
54
55 XrdConfig();
57
60std::vector<XrdInet*> NetTCP;
61
62private:
63
64int ASocket(const char *path, const char *fname, mode_t mode);
65int ConfigProc(void);
66XrdInet *getNet(int port, bool isTLS);
67int getUG(char *parm, uid_t &theUid, gid_t &theGid);
68void Manifest(const char *pidfn);
69bool PidFile(const char *clpFN, bool optbg);
70void setCFG(bool start);
71int setFDL();
72int Setup(char *dfltp, char *libProt);
73int SetupAPath();
74bool SetupTLS();
75void Usage(int rc);
76int xallow(XrdSysError *edest, XrdOucStream &Config);
77int xapath(XrdSysError *edest, XrdOucStream &Config);
78int xhpath(XrdSysError *edest, XrdOucStream &Config);
79int xbuf(XrdSysError *edest, XrdOucStream &Config);
80int xmaxfd(XrdSysError *edest, XrdOucStream &Config);
81int xnet(XrdSysError *edest, XrdOucStream &Config);
82int xnkap(XrdSysError *edest, char *val);
83int xlog(XrdSysError *edest, XrdOucStream &Config);
84int xpidf(XrdSysError *edest, XrdOucStream &Config);
85int xport(XrdSysError *edest, XrdOucStream &Config);
86int xprot(XrdSysError *edest, XrdOucStream &Config);
87int xrep(XrdSysError *edest, XrdOucStream &Config);
88int xsched(XrdSysError *edest, XrdOucStream &Config);
89int xsit(XrdSysError *edest, XrdOucStream &Config);
90int xtcpmon(XrdSysError *edest, XrdOucStream &Config);
91int xtls(XrdSysError *edest, XrdOucStream &Config);
92int xtlsca(XrdSysError *edest, XrdOucStream &Config);
93int xtlsci(XrdSysError *edest, XrdOucStream &Config);
94int xtrace(XrdSysError *edest, XrdOucStream &Config);
95int xtmo(XrdSysError *edest, XrdOucStream &Config);
96
97static const char *TraceID;
98XrdNetSecurity *Police;
99XrdTcpMonInfo *tmoInfo;
100XrdMonitor *theMon;
101const char *myProg;
102const char *myName;
103const char *myDomain;
104const char *mySitName;
105const char *myInsName;
106char *myInstance;
107char *AdminPath;
108char *HomePath;
109char *PidPath;
110char *tlsCert;
111char *tlsKey;
112char *caDir;
113char *caFile;
114char *ConfigFN;
115char *repDest[2];
116XrdConfigProt *Firstcp;
117XrdConfigProt *Lastcp;
118int Net_Blen;
119int Net_Opts;
120int TLS_Blen;
121int TLS_Opts;
122
123int PortTCP; // TCP Port to listen on
124int PortUDP; // UDP Port to listen on (currently unsupported)
125int PortTLS; // TCP port to listen on for TLS connections
126
127int AdminMode;
128int HomeMode;
129int repInt;
130
131uint64_t tlsOpts;
132bool tlsNoVer;
133bool tlsNoCAD;
134
135char repOpts;
136char ppNet;
137signed char coreV;
138char Specs;
139static const int hpSpec = 0x01;
140
141bool isStrict;
142unsigned int maxFD;
143};
144#endif
static XrdSysError eDest(0,"crypto_")
XrdProtocol_Config ProtInfo
Definition XrdConfig.hh:58
XrdInet * NetADM
Definition XrdConfig.hh:59
std::vector< XrdInet * > NetTCP
Definition XrdConfig.hh:60
int ConfigXeq(char *var, XrdOucStream &Config, XrdSysError *eDest=0)
Definition XrdConfig.cc:801
int Configure(int argc, char **argv)
Definition XrdConfig.cc:325