45 #include <sys/param.h>
46 #include <sys/resource.h>
47 #include <sys/types.h>
53 #include "XrdVersion.hh"
95 #if defined(__linux__) || defined(__GNU__)
96 #include <netinet/tcp.h>
98 #if defined(__linux__)
99 #include <sys/epoll.h>
102 #include <AvailabilityMacros.h>
146 void TlsError(
const char *tid,
const char *msg,
bool sslmsg)
154 const char *XrdConfig::TraceID =
"Config";
160 #define TS_Xeq(x,m) if (!strcmp(x,var)) return m(eDest, Config);
191 {
for (
int i = 0; i < numP; i++)
192 if (pnum == portVec[i])
193 {tlsVec[i] = isTLS;
return true;}
195 portVec[numP] = pnum; tlsVec[numP] = isTLS;
200 void Reset(
char *ln,
char *pp,
int np=-1,
bool to=
false)
201 {
if (libpath) free(libpath);
203 if (parms) free(parms);
205 memset(portVec, 0,
sizeof(portVec));
207 memset(tlsVec, 0,
sizeof(tlsVec));
214 : Next(0), proname(pn), libpath(ln), parms(pp), numP(1)
215 {memset(portVec, 0,
sizeof(portVec)); port = np;
216 memset(tlsVec, 0,
sizeof(tlsVec)); dotls =
to;
221 if (libpath) free(libpath);
222 if (parms) free(parms);
237 : KingPin(drctv,
theEnv, errR, &myVer)
261 AdminPath= strdup(
"/tmp");
263 PidPath = strdup(
"/tmp");
287 Firstcp = Lastcp = 0;
289 ProtInfo.eDest = &
Log;
292 ProtInfo.Sched = &
Sched;
293 ProtInfo.ConfigFN= 0;
295 ProtInfo.AdmPath = AdminPath;
296 ProtInfo.AdmMode = AdminMode;
297 ProtInfo.theEnv = &
theEnv;
298 ProtInfo.xrdFlags= 0;
301 memset(ProtInfo.rsvd3, 0,
sizeof(ProtInfo.rsvd3));
303 ProtInfo.ConnMax = -1;
304 ProtInfo.readWait = 3*1000;
305 ProtInfo.idleWait = 0;
306 ProtInfo.hailWait =30*1000;
307 ProtInfo.DebugON = 0;
310 ProtInfo.tlsPort = 0;
335 const char *xrdInst=
"XRDINSTANCE=";
337 int retc, NoGo = 0, clPort = -1;
339 char c, buff[512], *dfltProt, *libProt = 0;
343 extern int optind, opterr;
345 int pipeFD[2] = {-1, -1};
346 const char *pidFN = 0;
347 static const int myMaxc = 80;
348 char **urArgv, *myArgv[myMaxc], argBuff[myMaxc*3+8];
349 char *argbP = argBuff, *argbE = argbP+
sizeof(argBuff)-4;
351 int myArgc = 1, urArgc = argc, i;
352 bool noV6, ipV4 =
false, ipV6 =
false, rootChk =
true, optbg =
false;
357 for (
int k = 1; k < argc; k++)
358 {CmdLine +=
' '; CmdLine += argv[k];}
362 retc = strlen(argv[0]);
363 while(retc--)
if (argv[0][retc] ==
'/')
break;
364 myProg = &argv[0][retc+1];
371 {
char *p = dfltProt = strdup(myProg);
372 while(*p && (*p ==
'.' || *p ==
'-')) p++;
374 {
char *dot = index(p,
'.'), *dash = index(p,
'-');
375 if (dot && (dot < dash || !dash)) p = dot;
376 else if (dash) p = dash;
379 if (!strcmp(
"xrootd", dfltProt)) dfltProt[5] = 0;
380 else if (!strcmp(
"cmsd", dfltProt)) dfltProt[3] = 0;
390 {
if (*(argv[i]) ==
'-' && *(argv[i]+1) ==
'+')
391 {
int n = strlen(argv[i]+2), j = i+1, k = 1;
392 if (urArgc == argc) urArgc = i;
393 if (n) memcpy(buff, argv[i]+2, (n > 256 ? 256 : n));
394 strcpy(&(buff[n]),
".argv**");
395 while(j < argc && (*(argv[j]) !=
'-' || *(argv[j]+1) !=
'+')) j++;
396 urArgv =
new char*[j-i+1];
399 while(i < j) urArgv[k++] = argv[i++];
402 strcpy(&(buff[n]),
".argc");
412 if (argc > 1 &&
'-' == *argv[1])
413 while ((c = getopt(urArgc,argv,
":a:A:bc:dhHI:k:l:L:n:N:p:P:R:s:S:vw:W:z"))
414 && ((
unsigned char)c != 0xff))
417 case 'a':
if (AdminPath) free(AdminPath);
418 AdminPath = strdup(optarg);
419 AdminMode = ProtInfo.AdmMode = S_IRWXU;
422 case 'A':
if (AdminPath) free(AdminPath);
423 AdminPath = strdup(optarg);
424 AdminMode = ProtInfo.AdmMode = S_IRWXU | S_IRWXG;
427 case 'b': optbg =
true;
429 case 'c':
if (ConfigFN) free(ConfigFN);
430 ConfigFN = strdup(optarg);
433 ProtInfo.DebugON = 1;
440 case 'I':
if (!strcmp(
"v4", optarg)) {ipV4 =
true; ipV6 =
false;}
441 else if (!strcmp(
"v6", optarg)) {ipV4 =
false; ipV6 =
true;}
442 else {
Log.
Emsg(
"Config",
"Invalid -I argument -",optarg);
447 {
Log.
Emsg(
"Config",
"Invalid -k argument -",optarg);
451 case 'l': LogInfo.
logArg = optarg;
453 case 'L':
if (!*optarg)
454 {
Log.
Emsg(
"Config",
"Protocol library path not specified.");
457 if (libProt) free(libProt);
458 libProt = strdup(optarg);
460 case 'n': myInsName = (!strcmp(optarg,
"anon")||!strcmp(optarg,
"default")
467 case 'P':
if (dfltProt) free(dfltProt);
468 dfltProt = strdup(optarg);
470 case 'R':
if (!(getUG(optarg, myUid, myGid)))
Usage(1);
473 case 's': pidFN = optarg;
475 case 'S': mySitName = optarg;
477 case ':': buff[0] =
'-'; buff[1] =
optopt; buff[2] = 0;
478 Log.
Emsg(
"Config", buff,
"parameter not specified.");
481 case 'v': std::cerr <<XrdVSTRING <<std::endl;
484 case 'w':
if (HomePath) free(HomePath);
485 HomePath = strdup(optarg);
489 case 'W':
if (HomePath) free(HomePath);
490 HomePath = strdup(optarg);
491 HomeMode = S_IRWXU | S_IRGRP | S_IXGRP;
494 case 'z': LogInfo.
hiRes =
true;
498 {
Log.
Emsg(
"Config",
"Long options are not supported.");
501 if (myArgc >= myMaxc || argbP >= argbE)
502 {
Log.
Emsg(
"Config",
"Too many command line arguments.");
505 myArgv[myArgc++] = argbP;
506 *argbP++ =
'-'; *argbP++ =
optopt; *argbP++ = 0;
514 {
Log.
Emsg(
"Config",
"Command line adminpath is not absolute.");
520 if (HomePath && *HomePath !=
'/')
521 {
Log.
Emsg(
"Config",
"Command line home path is not absolute.");
528 if (ConfigFN) setCFG(
true);
534 else if (ipV6){
if (noV6)
Log.
Say(
"Config warning: ipV6 appears to be broken;"
535 " forced ipV6 mode not advised!");
538 else if (noV6)
Log.
Say(
"Config warning: ipV6 is misconfigured or "
539 "unavailable; reverting to ipV4.");
547 if (myGid && setegid(myGid))
548 {
Log.
Emsg(
"Config", errno,
"set effective gid"); exit(17);}
549 if (myUid && seteuid(myUid))
550 {
Log.
Emsg(
"Config", errno,
"set effective uid"); exit(17);}
554 if (rootChk && geteuid() == 0)
555 {
Log.
Emsg(
"Config",
"Security reasons prohibit running as "
556 "superuser; program is terminating.");
562 if (urArgc-
optind+2 >= myMaxc)
563 {
Log.
Emsg(
"Config",
"Too many command line arguments.");
571 ProtInfo.argc = myArgc;
572 ProtInfo.argv = myArgv;
581 if (pipe( pipeFD ) == -1)
582 {
Log.
Emsg(
"Config", errno,
"create a pipe"); exit(17);}
591 auto envName = getenv(
"XRDHOST");
592 const char *ipAddrName;
596 }
else if ((ipAddrName = myIPAddr->
Name(0, &temp))) {
604 ProtInfo.myName = myName.c_str();
605 ProtInfo.myAddr = myIPAddr->
SockAddr();
607 ProtInfo.myProg = myProg;
613 sprintf(buff,
"%s%s %s@%s", xrdInst, myProg, ProtInfo.myInst, myName.c_str());
614 myInstance = strdup(buff);
616 myInstance += strlen(xrdInst);
625 LogInfo.
iName = myInsName;
626 LogInfo.
cfgFn = ConfigFN;
637 {
Log.
Emsg(
"Config",
"Unable to determine host name; ",
638 (temp ? temp :
"reason unknown"),
639 "; execution terminated.");
649 strcpy(buff,
"Starting on ");
661 {
Log.
Emsg(
"Config",myName.c_str(),
"does not appear to be registered in the DNS.");
662 Log.
Emsg(
"Config",
"Verify that the '/etc/hosts' file is correct and "
663 "this machine is registered in DNS.");
664 Log.
Emsg(
"Config",
"Execution continues but connection failures may occur.");
666 }
else if (!(
myDomain = index(myName.c_str(),
'.')))
667 Log.
Say(
"Config warning: this hostname, ", myName.c_str(),
668 ", is registered without a domain qualification.");
672 Firstcp = Lastcp =
new XrdConfigProt(strdup(dfltProt), libProt, 0);
676 Log.
Say(
"++++++ ", myInstance,
" initialization started.");
680 devNull = XrdSysFD_Open(
"/dev/null", O_RDONLY);
682 {
Log.
Emsg(
"Config", errno,
"open '/dev/null' which is required!");
689 {
Log.
Say(
"Config using configuration file ", ConfigFN);
690 ProtInfo.ConfigFN = ConfigFN;
693 if (clPort >= 0) PortTCP = clPort;
694 if (ProtInfo.DebugON)
701 NoGo |= SetupAPath();
706 {
if (!tlsCert) ProtInfo.tlsCtx= 0;
707 else {
Log.
Say(
"++++++ ", myInstance,
" TLS initialization started.");
709 {
Log.
Say(
"------ ",myInstance,
" TLS initialization ended.");
714 Log.
Say(
"------ ",myInstance,
" TLS initialization failed.");
724 {
Log.
Say(
"Config TLS port specification ignored; TLS not configured!");
728 ProtInfo.tlsPort = (PortTLS > 0 ? PortTLS : 0);
744 {
Log.
Emsg(
"Config",
"Unable to determine interface addresses!");
750 if ((myInsName || HomePath)
759 if (!PidFile(pidFN, optbg)) NoGo = 1;
763 if (!NoGo) Manifest(pidFN);
767 if (!NoGo) NoGo = Setup(dfltProt, libProt);
776 if (tmoInfo && !NoGo)
778 if (!theGS)
Log.
Say(
"Config warning: TCP monitoring not enabled; "
779 "tcpmonlib plugin not loaded!");
780 else {tmoInfo->theEnv.PutPtr(
"TcpMon.gStream*", theGS);
781 TcpMonPin = tmoInfo->KingPin.Load(
"TcpMonPin");
791 int status = NoGo ? 1 : 0;
792 if(
write( pipeFD[1], &status,
sizeof( status ) )) {};
799 temp = (NoGo ?
" initialization failed." :
" initialization completed.");
800 sprintf(buff,
"%s:%d", myInstance, PortTCP);
801 Log.
Say(
"------ ", buff, temp);
803 {strcat(buff,
" running ");
821 if (
eDest) dynamic = 1;
835 TS_Xeq(
"adminpath", xapath);
837 TS_Xeq(
"homepath", xhpath);
841 TS_Xeq(
"protocol", xprot);
844 TS_Xeq(
"tcpmonlib", xtcpmon);
848 TS_Xeq(
"tlsciphers", xtlsci);
853 eDest->
Say(
"Config warning: ignoring unknown xrd directive '",var,
"'.");
865 int XrdConfig::ASocket(
const char *path,
const char *fname, mode_t mode)
867 struct sockaddr_un unixvar;
868 int plen = strlen(path), flen = strlen(fname);
872 if ((plen + flen + 3) > (
int)
sizeof(unixvar.sun_path))
873 {
Log.
Emsg(
"Config",
"admin path", path,
"too long");
908 int XrdConfig::ConfigProc()
911 int cfgFD, retc, NoGo = 0;
917 if ( (cfgFD =
open(ConfigFN, O_RDONLY, 0)) < 0)
918 {
Log.
Emsg(
"Config", errno,
"open config file", ConfigFN);
925 while((var =
Config.GetMyFirstWord()))
926 if (!strncmp(var,
"xrd.", 4)
927 || !strcmp (var,
"all.adminpath")
928 || !strcmp (var,
"all.pidpath")
929 || !strcmp (var,
"all.sitename" ))
930 if (ConfigXeq(var+4,
Config)) {
Config.Echo(); NoGo = 1;}
934 if ((retc =
Config.LastError()))
935 NoGo =
Log.
Emsg(
"Config", retc,
"read config file", ConfigFN);
947 XrdInet *XrdConfig::getNet(
int port,
bool isTLS)
949 int the_Opts, the_Blen;
953 for (
int i = 0; i < (int)NetTCP.size(); i++)
954 if (port == NetTCP[i]->Port())
return NetTCP[i];
959 NetTCP.push_back(newNet);
964 {the_Opts = TLS_Opts; the_Blen = TLS_Blen;
966 the_Opts = Net_Opts; the_Blen = Net_Blen;
968 if (the_Opts || the_Blen) newNet->
setDefaults(the_Opts, the_Blen);
976 if (newNet->
BindSD(port,
"tcp") == 0)
return newNet;
985 int XrdConfig::getUG(
char *parm, uid_t &newUid, gid_t &newGid)
992 {
Log.
Emsg(
"Config",
"-R user not specified.");
return 0;}
995 {
if (!(newUid = atol(parm)))
996 {
Log.
Emsg(
"Config",
"-R", parm,
"is invalid");
return 0;}
997 pp = getpwuid(newUid);
999 else pp = getpwnam(parm);
1004 {
Log.
Emsg(
"Config", errno,
"retrieve -R user password entry");
1007 if (!(newUid = pp->pw_uid))
1008 {
Log.
Emsg(
"Config",
"-R", parm,
"is still unacceptably a superuser!");
1011 newGid = pp->pw_gid;
1019 void XrdConfig::Manifest(
const char *pidfn)
1022 char envBuff[8192], pwdBuff[2048], manBuff[1024], *pidP, *sP, *xP;
1027 if (!getcwd(pwdBuff,
sizeof(pwdBuff)))
1028 {
Log.
Emsg(
"Config",
"Unable to get current working directory!");
1034 if (HomePath) free(HomePath);
1035 HomePath = strdup(pwdBuff);
1039 strcpy(envBuff, ProtInfo.AdmPath);
1040 envLen = strlen(envBuff);
1041 if (envBuff[envLen-1] !=
'/') {envBuff[envLen] =
'/'; envLen++;}
1042 strcpy(envBuff+envLen,
".xrd/");
1043 xP = envBuff+envLen+5;
1047 if ((sP = getenv(
"XRDCONFIGFN")))
1048 {sprintf(xP,
"=/conf/%s.cf", myProg);
1054 sprintf(xP,
"=/core/%s", myProg);
1059 if ((sP = getenv(
"XRDLOGDIR")))
1060 {sprintf(xP,
"=/logs/%s", myProg);
1067 sprintf(xP,
"=/proc/%s", myProg);
1068 sprintf(manBuff,
"/proc/%d", getpid());
1074 envLen = snprintf(envBuff,
sizeof(envBuff),
"pid=%d&host=%s&inst=%s&ver=%s"
1075 "&home=%s&cfgfn=%s&cwd=%s&apath=%s&logfn=%s",
1076 static_cast<int>(getpid()), ProtInfo.myName,
1077 ProtInfo.myInst, XrdVSTRING, HomePath,
1078 (getenv(
"XRDCONFIGFN") ? getenv(
"XRDCONFIGFN") :
""),
1083 if (pidfn && (Slash = rindex(pidfn,
'/')))
1084 {strncpy(manBuff, pidfn, Slash-pidfn); pidP = manBuff+(Slash-pidfn);}
1085 else {strcpy(manBuff, ProtInfo.AdmPath); pidP = manBuff+strlen(ProtInfo.AdmPath);}
1089 snprintf(pidP,
sizeof(manBuff)-(pidP-manBuff),
"/%s.%s.env",
1090 ProtInfo.myProg, ProtInfo.myInst);
1095 if ((envFD =
open(manBuff, O_WRONLY|O_CREAT|O_TRUNC, 0664)) < 0)
1096 {
Log.
Emsg(
"Config", errno,
"create envfile", manBuff);
1102 if (
write(envFD, envBuff, envLen) < 0)
1103 Log.
Emsg(
"Config", errno,
"write to envfile", manBuff);
1111 bool XrdConfig::PidFile(
const char *clpFN,
bool optbg)
1114 char *ppath, buff[32], pidFN[1200];
1115 const char *xop = 0;
1129 {xop =
"create"; snprintf(pidFN,
sizeof(pidFN),
"%s", ppath); errno = rc;}
1130 else {snprintf(pidFN,
sizeof(pidFN),
"%s/%s.pid", ppath, myProg);
1132 if ((xfd =
open(pidFN, O_WRONLY|O_CREAT|O_TRUNC,0644)) < 0)
1134 else {
if (
write(xfd,buff,snprintf(buff,
sizeof(buff),
"%d",
1135 static_cast<int>(getpid()))) < 0) xop =
"write";
1143 if (xop)
Log.
Emsg(
"Config", errno, xop, pidFN);
1151 void XrdConfig::setCFG(
bool start)
1156 if (!ConfigFN || !(*ConfigFN))
1180 if (*ConfigFN !=
'/')
1181 {
char cwdBuff[1024];
1182 if (getcwd(cwdBuff,
sizeof(cwdBuff)-strlen(ConfigFN)-2))
1183 {
int n = strlen(cwdBuff);
1184 if (cwdBuff[n-1] !=
'/') cwdBuff[n++] =
'/';
1185 strcpy(cwdBuff+n, ConfigFN);
1187 ConfigFN = strdup(cwdBuff);
1200 const char *cvec[] = {
"*** ", myProg,
" config from '", ConfigFN,
"':", 0 };
1208 int XrdConfig::setFDL()
1215 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0)
1216 return Log.
Emsg(
"Config", errno,
"get FD limit");
1220 if (rlim.rlim_max == RLIM_INFINITY || (isStrict && rlim.rlim_max > maxFD))
1221 rlim.rlim_cur = maxFD;
1222 else rlim.rlim_cur = rlim.rlim_max;
1223 #if (defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_5))
1224 if (rlim.rlim_cur > OPEN_MAX) rlim.rlim_max = rlim.rlim_cur = OPEN_MAX;
1226 #if defined(__linux__)
1228 unsigned int epoll_max_fd = (INT_MAX /
sizeof(
struct epoll_event));
1229 if (rlim.rlim_cur > (rlim_t)epoll_max_fd) rlim.rlim_max = rlim.rlim_cur = epoll_max_fd;
1231 if (setrlimit(RLIMIT_NOFILE, &rlim) < 0)
1232 return Log.
Emsg(
"Config", errno,
"set FD limit");
1236 if (getrlimit(RLIMIT_NOFILE, &rlim) < 0)
1237 return Log.
Emsg(
"Config", errno,
"get FD limit");
1241 ProtInfo.ConnMax = rlim.rlim_cur;
1242 sprintf(buff,
"%d", ProtInfo.ConnMax);
1243 Log.
Say(
"Config maximum number of connections restricted to ", buff);
1247 #if !defined( __solaris__ ) && defined(RLIMIT_CORE)
1249 {
if (getrlimit(RLIMIT_CORE, &rlim) < 0)
1250 Log.
Emsg(
"Config", errno,
"get core limit");
1251 else {rlim.rlim_cur = (coreV ? rlim.rlim_max : 0);
1252 if (setrlimit(RLIMIT_CORE, &rlim) < 0)
1253 Log.
Emsg(
"Config", errno,
"set core limit");
1260 #if ( defined(__linux__) || defined(__GNU__) || (defined(__FreeBSD_kernel__) && defined(__GLIBC__)) ) && defined(RLIMIT_NPROC)
1264 if (getrlimit(RLIMIT_NPROC, &rlim) < 0)
1265 return Log.
Emsg(
"Config", errno,
"get thread limit");
1269 int nthr =
static_cast<int>(rlim.rlim_cur);
1270 if (nthr < 8192 || ProtInfo.DebugON)
1271 {sprintf(buff,
"%d",
static_cast<int>(rlim.rlim_cur));
1272 Log.
Say(
"Config maximum number of threads restricted to ", buff);
1283 int XrdConfig::Setup(
char *dfltp,
char *libProt)
1286 int xport, protNum = 0;
1290 if (setFDL())
return 1;
1294 #if ( defined(__linux__) || defined(__GNU__) ) && defined(TCP_CORK)
1295 {
int sokFD, setON = 1;
1296 if ((sokFD = socket(PF_INET, SOCK_STREAM, 0)) >= 0)
1298 &setON,
sizeof(setON));
1299 if (setsockopt(sokFD, SOL_TCP, TCP_CORK, &setON,
sizeof(setON)) < 0)
1335 for (
int i = 0; i < cp->
numP; i++)
1338 "configured with a TLS-only port "
1339 "but TLS is not configured!");
1343 xport = (cp->dotls ? PortTLS : PortTCP);
1344 ProtInfo.Port = (cp->port < 0 ? xport : cp->port);
1347 if (cp->port < 0)
return 1;
1348 for (
int i = 1; i < cp->
numP; i++)
1349 if (cp->port == cp->portVec[i]) cp->portVec[i] = -1;
1357 ProtInfo.myName, Firstcp->port,
1358 ProtInfo.myInst, ProtInfo.myProg, mySitName);
1359 ProtInfo.Stats->Export(
theEnv);
1365 xport = (strcmp(
"xroot", Firstcp->proname) ? 0 : Firstcp->port);
1374 while((cp = Firstcp))
1375 {
for (
int i = 0; i < cp->
numP; i++)
1376 {
if (cp->portVec[i] < 0)
continue;
1377 if (!(cp->portVec[i]) && arbNet) theNet = arbNet;
1378 else {theNet = getNet(cp->portVec[i], cp->tlsVec[i]);
1379 if (!theNet)
return 1;
1380 if (!(cp->portVec[i])) arbNet = theNet;
1383 ProtInfo.
Port = theNet->Port();
1384 ProtInfo.NetTCP = theNet;
1385 ProtInfo.WSize = theNet->WSize();
1392 cp->
parms, &ProtInfo,
1394 if (!protNum)
return 1;
1397 if (!strcmp(
"http", cp->
proname) && xport)
1398 {
for (
int i = 0; i < cp->
numP; i++)
1399 {
if (cp->portVec[i] == xport) {xport = 0;
break;}}
1402 Firstcp = cp->
Next;
delete cp;
1414 if (repDest[0] != 0 && (repOpts[0] || repOpts[1]))
1415 ProtInfo.Stats->Init(repDest, repInt, repOpts[0], repOpts[1]);
1426 int XrdConfig::SetupAPath()
1435 else ProtInfo.AdmPath = AdminPath;
1444 {
Log.
Emsg(
"Config", rc,
"create admin path", AdminPath);
1451 if (chmod(AdminPath, AdminMode & ~S_IWGRP))
1452 {
Log.
Emsg(
"Config", errno,
"set permission for admin path", AdminPath);
1460 return ASocket(AdminPath,
"admin", (mode_t)AdminMode);
1467 bool XrdConfig::SetupTLS()
1472 if (!caDir && !caFile && !tlsNoVer)
1474 Log.
Say(
"Config failure: the tlsca directive was not specified!");
1475 else Log.
Say(
"Config failure: the tlsca directive did not specify "
1476 "a certdir or certfile!");
1498 static XrdTlsContext xrdTLS(tlsCert, tlsKey, caDir, caFile, tlsOpts);
1502 if (!xrdTLS.isOK())
return false;
1514 void XrdConfig::Usage(
int rc)
1520 std::cerr <<
"\nUsage: " <<myProg <<
" [-b] [-c <cfn>] [-d] [-h] [-H] [-I {v4|v6}]\n"
1521 "[-k {n|sz|sig}] [-l [=]<fn>] [-n <name>] [-N <hname>] [-p <port>]\n"
1522 "[-P <prot>] [-L <libprot>] [-R] [-s pidfile] [-S site] [-v] [-z]\n"
1523 "[<protocol_options>]" <<std::endl;
1524 _exit(rc > 0 ? rc : 0);
1547 mode_t mode = S_IRWXU;
1552 if (!pval || !pval[0])
1553 {
eDest->
Emsg(
"Config",
"adminpath not specified");
return 1;}
1558 {
eDest->
Emsg(
"Config",
"adminpath not absolute");
return 1;}
1562 if (AdminPath) free(AdminPath);
1563 AdminPath = strdup(pval);
1567 if ((val =
Config.GetWord()) && val[0])
1568 {
if (!strcmp(
"group", val)) mode |= S_IRWXG;
1569 else {
eDest->
Emsg(
"Config",
"invalid admin path modifier -", val);
1573 AdminMode = ProtInfo.AdmMode = mode;
1597 if (!(val =
Config.GetWord()))
1598 {
eDest->
Emsg(
"Config",
"allow type not specified");
return 1;}
1600 if (!strcmp(val,
"host")) ishost = 1;
1601 else if (!strcmp(val,
"netgroup")) ishost = 0;
1602 else {
eDest->
Emsg(
"Config",
"invalid allow type -", val);
1606 if (!(val =
Config.GetWord()))
1607 {
eDest->
Emsg(
"Config",
"allow target name not specified");
return 1;}
1612 if (ishost) Police->AddHost(val);
1613 else Police->AddNetGroup(val);
1638 {
eDest->
Say(
"Config warning: command line homepath cannot be overridden.");
1645 if (HomePath) {free(HomePath); HomePath = 0;}
1650 return (HomePath ? 0 : 1);
1671 static const long long minBSZ = 1024*1024*2+1;
1672 static const long long maxBSZ = 1024*1024*1024;
1677 if (!(val =
Config.GetWord()))
1678 {
eDest->
Emsg(
"Config",
"buffer memory limit not specified");
return 1;}
1680 if (!strcmp(
"maxbsz", val))
1681 {
if (!(val =
Config.GetWord()))
1682 {
eDest->
Emsg(
"Config",
"max buffer size not specified");
return 1;}
1686 if (!(val =
Config.GetWord()))
return 0;
1690 (
long long)1024*1024))
return 1;
1692 if ((val =
Config.GetWord()))
1718 long long minV = 1024, maxV = 1024LL*1024LL;
1722 if ((val =
Config.GetWord()))
1723 {
if (!strcmp(val,
"strict"))
1726 }
else isStrict =
false;
1730 {
eDest->
Emsg(
"Config",
"file descriptor limit not specified");
return 1;}
1735 maxFD =
static_cast<unsigned int>(fdVal);
1772 int i, n, V_keep = -1, V_nodnr = 0, V_istls = 0, V_blen = -1, V_ct = -1;
1773 int V_assumev4 = -1, v_rpip = -1, V_dyndns = -1, V_udpref = -1;
1775 struct netopts {
const char *opname;
int hasarg;
int opval;
1776 int *oploc;
const char *etxt;}
1779 {
"assumev4", 0, 1, &V_assumev4,
"option"},
1780 {
"keepalive", 0, 1, &V_keep,
"option"},
1781 {
"nokeepalive",0, 0, &V_keep,
"option"},
1782 {
"kaparms", 4, 0, &V_keep,
"option"},
1783 {
"buffsz", 1, 0, &V_blen,
"network buffsz"},
1784 {
"cache", 2, 0, &V_ct,
"cache time"},
1785 {
"dnr", 0, 0, &V_nodnr,
"option"},
1786 {
"nodnr", 0, 1, &V_nodnr,
"option"},
1787 {
"dyndns", 0, 1, &V_dyndns,
"option"},
1788 {
"nodyndns", 0, 0, &V_dyndns,
"option"},
1789 {
"routes", 3, 1, 0,
"routes"},
1790 {
"rpipa", 0, 1, &v_rpip,
"rpipa"},
1791 {
"norpipa", 0, 0, &v_rpip,
"norpipa"},
1792 {
"tls", 0, 1, &V_istls,
"option"},
1793 {
"udprefresh", 2, 1, &V_udpref,
"udprefresh"}
1795 int numopts =
sizeof(ntopts)/
sizeof(
struct netopts);
1797 if (!(val =
Config.GetWord()))
1798 {
eDest->
Emsg(
"Config",
"net option not specified");
return 1;}
1801 {
for (i = 0; i < numopts; i++)
1802 if (!strcmp(val, ntopts[i].opname))
1803 {
if (!ntopts[i].hasarg) *ntopts[i].oploc = ntopts[i].opval;
1804 else {
if (!(val =
Config.GetWord()))
1806 ntopts[i].opname,
"argument missing");
1809 if (ntopts[i].hasarg == 4)
1810 {
if (xnkap(
eDest, val))
return 1;
1813 if (ntopts[i].hasarg == 3)
1814 {
if (!strcmp(val,
"split"))
1816 else if (!strcmp(val,
"common"))
1818 else if (!strcmp(val,
"local"))
1820 else {
eDest->
Emsg(
"Config",
"Invalid routes argument -",val);
1823 if (!(val =
Config.GetWord())|| !(*val))
break;
1824 if (strcmp(val,
"use"))
continue;
1825 if (!(val =
Config.GetWord())|| !(*val))
1826 {
eDest->
Emsg(
"Config",
"network routes i/f names "
1834 if (ntopts[i].hasarg == 2)
1837 *ntopts[i].oploc = n;
1841 *ntopts[i].oploc = (int)llp;
1847 eDest->
Say(
"Config warning: ignoring invalid net option '",val,
"'.");
1848 else if (!val)
break;
1853 {
if (V_blen >= 0) TLS_Blen = V_blen;
1857 if (V_blen >= 0) Net_Blen = V_blen;
1865 {
if (V_dyndns && V_ct < 0) V_ct = 0;
1901 if ((comma = index(val,
','))) {val = comma+1; *comma = 0;}
1908 if (!(karg = val))
return 0;
1909 if ((comma = index(val,
','))) {val = comma+1; *comma = 0;}
1945 if (!val || !val[0])
1946 {
eDest->
Emsg(
"Config",
"pidpath not specified");
return 1;}
1950 if (PidPath) free(PidPath);
1951 PidPath = strdup(val);
1972 {
int rc, istls = 0, pnum = 0;
1973 char *val, cport[32];
1975 do {
if (!(val =
Config.GetWord()))
1976 {
eDest->
Emsg(
"Config",
"tcp port not specified");
return 1;}
1977 if (strcmp(
"tls", val) || istls)
break;
1981 strncpy(cport, val,
sizeof(cport)-1); cport[
sizeof(cport)-1] =
'\0';
1983 if ((val =
Config.GetWord()) && !strcmp(
"if", val))
1985 ProtInfo.myInst, myProg)) <= 0)
1986 {
if (!rc)
Config.noEcho();
return (rc < 0);}
1989 if (istls) PortTLS = pnum;
1990 else PortTCP = PortUDP = pnum;
2017 char *val, *parms, *lib, proname[64], buff[2048];
2021 do {
if (!(val =
Config.GetWord()))
2022 {
eDest->
Emsg(
"Config",
"protocol name not specified");
return 1;}
2023 if (dotls || strcmp(
"tls", val))
break;
2027 if (strlen(val) >
sizeof(proname)-1)
2028 {
eDest->
Emsg(
"Config",
"protocol name is too long");
return 1;}
2029 strcpy(proname, val);
2031 if ((val = index(proname,
':')))
2036 if (!(val =
Config.GetWord()))
2037 {
eDest->
Emsg(
"Config",
"protocol library not specified");
return 1;}
2038 if (!strcmp(
"*", val)) lib = 0;
2039 else if (*val ==
'+')
2040 {
if (strcmp(val,
"+port"))
2041 {
eDest->
Emsg(
"Config",
"invalid library specification -",val);
2044 if ((cpp = Firstcp))
2045 do {
if (!strcmp(proname, cpp->
proname))
2046 {
if (cpp->
AddPort(portnum, dotls))
return 0;
2047 eDest->
Emsg(
"Config",
"port add limit exceeded!");
2050 }
while((cpp = cpp->
Next));
2051 eDest->
Emsg(
"Config",
"protocol",proname,
"not previously defined!");
2054 else lib = strdup(val);
2059 if (!lib && Firstcp && strcmp(proname, Firstcp->proname))
2061 snprintf(eBuff,
sizeof(eBuff),
"the %s protocol is '%s' not '%s'; "
2062 "assuming you meant '%s'",
2063 (Firstcp->libpath ?
"assigned" :
"builtin"),
2064 Firstcp->proname, proname, Firstcp->proname);
2065 eDest->
Say(
"Config warning: ", eBuff,
" but please correct "
2066 "the following directive!");
2067 snprintf(proname,
sizeof(proname),
"%s", Firstcp->proname);
2071 if (!
Config.GetRest(buff,
sizeof(buff)))
2072 {
eDest->
Emsg(
"Config",
"Too many parms for protocol", proname);
2075 parms = (*buff ? strdup(buff) : 0);
2077 if ((cpp = Firstcp))
2078 do {
if (!strcmp(proname, cpp->
proname))
2079 {cpp->
Reset(lib, parms, portnum, dotls);
2082 }
while((cpp = cpp->
Next));
2084 cpp =
new XrdConfigProt(strdup(proname), lib, parms, portnum, dotls);
2085 if (!lib) {cpp->
Next = Firstcp; Firstcp = cpp;
2086 if (!Lastcp) Lastcp = cpp;
2088 else {
if (Lastcp) Lastcp->
Next = cpp;
2118 static struct repopts {
const char *opname;
int opval;
bool jOK;} rpopts[] =
2135 int i, neg, numopts =
sizeof(rpopts)/
sizeof(
struct repopts);
2139 if (!(val =
Config.GetWord()))
2140 {
eDest->
Emsg(
"Config",
"report parameters not specified");
return 1;}
2144 if (repDest[0]) {free(repDest[0]); repDest[0] = 0;}
2145 if (repDest[1]) {free(repDest[1]); repDest[1] = 0;}
2146 repOpts[0] = 0; repOpts[1] = 0;
2151 if ((cp = (
char *)index(val,
',')))
2153 {
eDest->
Emsg(
"Config",
"malformed report destination -",val);
return 1;}
2154 else { repDest[1] = cp+1; *cp =
'\0';}
2157 for (i = 0; i < 2; i++)
2158 {
if (!(val = repDest[i]))
break;
2159 if (*val !=
'/' && (!(cp = index(val, (
int)
':')) || !atoi(cp+1)))
2160 {
eDest->
Emsg(
"Config",
"report dest port missing or invalid in",val);
2163 repDest[i] = strdup(val);
2168 if (repDest[0] && repDest[1] && !strcmp(repDest[0], repDest[1]))
2169 {
eDest->
Emsg(
"Config",
"Warning, report dests are identical.");
2170 free(repDest[1]); repDest[1] = 0;
2175 if (!(val =
Config.GetWord()))
2180 if (!strcmp(
"every", val))
2181 {
if (!(val =
Config.GetWord()))
2182 {
eDest->
Emsg(
"Config",
"report every value not specified");
return 1;}
2190 {
if (!strcmp(val,
"json"))
2192 val =
Config.GetWord();
continue;
2194 if (!strcmp(val,
"off"))
2195 {repOpts[isJSON] = 0;
2196 val =
Config.GetWord();
continue;
2198 if ((neg = (val[0] ==
'-' && val[1]))) val++;
2199 for (i = 0; i < numopts; i++)
2200 {
if (!strcmp(val, rpopts[i].opname))
2201 {
if (neg) repOpts[isJSON] &= ~rpopts[i].opval;
2202 else {
if (isJSON && !rpopts[i].jOK)
2203 {
eDest->
Emsg(
"Config",val,
"does not support JSON");
2206 repOpts[isJSON] |= rpopts[i].opval;
2212 eDest->
Say(
"Config warning: ignoring invalid report option '",val,
"'.");
2272 int V_mint = -1, V_maxt = -1, V_idle = -1, V_avlt = -1;
2273 struct schedopts {
const char *opname;
int minv;
int *oploc;
2274 const char *opmsg;} scopts[] =
2276 {
"stksz", 0, 0,
"sched stksz"},
2277 {
"mint", 1, &V_mint,
"sched mint"},
2278 {
"maxt", 1, &V_maxt,
"sched maxt"},
2279 {
"avlt", 1, &V_avlt,
"sched avlt"},
2280 {
"core", 1, 0,
"sched core"},
2281 {
"idle", 0, &V_idle,
"sched idle"}
2283 int numopts =
sizeof(scopts)/
sizeof(
struct schedopts);
2285 if (!(val =
Config.GetWord()))
2286 {
eDest->
Emsg(
"Config",
"sched option not specified");
return 1;}
2289 {
for (i = 0; i < numopts; i++)
2290 if (!strcmp(val, scopts[i].opname))
2291 {
if (!(val =
Config.GetWord()))
2292 {
eDest->
Emsg(
"Config",
"sched", scopts[i].opname,
2293 "value not specified");
2296 if (*scopts[i].opname ==
'i')
2298 &ppp, scopts[i].minv))
return 1;
2300 else if (*scopts[i].opname ==
'c')
2301 {
if (!strcmp(
"asis", val)) coreV = -1;
2302 else if (!strcmp(
"max", val)) coreV = 1;
2303 else if (!strcmp(
"off", val)) coreV = 0;
2304 else {
eDest->
Emsg(
"Config",
"invalid sched core value -",val);
2308 else if (*scopts[i].opname ==
's')
2310 &lpp, scopts[i].minv))
return 1;
2315 &ppp,scopts[i].minv))
return 1;
2316 *scopts[i].oploc = ppp;
2320 eDest->
Say(
"Config warning: ignoring invalid sched option '",val,
"'.");
2327 {
if (V_mint > 0 && V_mint > V_maxt)
2328 {
eDest->
Emsg(
"Config",
"sched mint must be less than maxt");
2331 if (V_avlt > 0 && V_avlt > V_maxt)
2332 {
eDest->
Emsg(
"Config",
"sched avlt must be less than maxt");
2362 if (!(val =
Config.GetWord()))
2363 {
eDest->
Emsg(
"Config",
"sitename value not specified");
return 1;}
2365 if (mySitName)
eDest->
Emsg(
"Config",
"sitename already specified, using '",
2388 char *val, parms[2048];
2393 if ((val =
Config.GetWord()))
2394 {
if (!strcmp(val,
"++"))
2403 {
eDest->
Emsg(
"Config",
"tcpmonlib not specified");
return 1;}
2408 {
eDest->
Emsg(
"Config",
"tcpmonlib path is not absolute");
return 1;}
2416 if (!
Config.GetRest(parms,
sizeof(parms)))
2417 {
eDest->
Emsg(
"Config",
"tcpmonlib parameters too long");
return 1;}
2425 tmoInfo->KingPin.Add(path.c_str(), (*parms ? parms : 0), push);
2454 if (!(val =
Config.GetWord()))
2455 {
eDest->
Emsg(
"Config",
"tls cert path not specified");
return 1;}
2458 {
eDest->
Emsg(
"Config",
"tls cert path not absolute");
return 1;}
2460 if (tlsCert) free(tlsCert);
2461 tlsCert = strdup(val);
2462 if (tlsKey) free(tlsKey);
2465 if (!(val =
Config.GetWord()))
return 0;
2468 {tlsKey = strdup(val);
2469 if (!(val =
Config.GetWord()))
return 0;
2472 do {
if (!strcmp(val,
"detail")) SSLmsgs =
true;
2473 else if (!strcmp(val,
"nodetail")) SSLmsgs =
false;
2474 else if (!strcmp(val,
"hsto" ))
2475 {
if (!(val =
Config.GetWord()))
2476 {
eDest->
Emsg(
"Config",
"tls hsto value not specified");
2483 else {
eDest->
Emsg(
"Config",
"invalid tls option -",val);
return 1;}
2484 }
while ((val =
Config.GetWord()));
2521 char *val, **cadest, kword[16];
2525 if (!(val =
Config.GetWord()))
2526 {
eDest->
Emsg(
"Config",
"tlsca parameter not specified");
return 1;}
2529 if (!strcmp(val,
"noverify"))
2531 if (caDir) {free(caDir); caDir = 0;}
2532 if (caFile) {free(caFile); caFile = 0;}
2538 do {
if (!strcmp(val,
"proxies") || !strcmp(
"noproxies", val))
2544 if (strlen(val) >= (
int)
sizeof(kword))
2545 {
eDest->
Emsg(
"Config",
"Invalid tlsca parameter -", val);
2550 if (!(val =
Config.GetWord()))
2551 {
eDest->
Emsg(
"Config",
"tlsca", kword,
"value not specified");
2554 if ((isdir = !strcmp(kword,
"certdir"))
2555 || !strcmp(kword,
"certfile"))
2557 {
eDest->
Emsg(
"Config",
"tlsca",kword,
"path is not absolute.");
2560 cadest = (isdir ? &caDir : &caFile);
2561 if (*cadest) free(*cadest);
2562 *cadest = strdup(val);
2564 else if (!strcmp(kword,
"crlcheck"))
2568 else if ( strcmp(val,
"external"))
2569 {
eDest->
Emsg(
"Config",
"Invalid tlsca crlcheck "
2574 else if (!strcmp(kword,
"log"))
2575 {
if (!strcmp(val,
"off"))
2577 else if (!strcmp(val,
"failure"))
2579 else {
eDest->
Emsg(
"Config",
"Invalid tlsca log argument -",val);
2583 else if (!strcmp(kword,
"refresh"))
2586 if (rt < 60) rt = 60;
2587 else if (rt % 60) rt += 60;
2591 else if (!strcmp(kword,
"verdepth"))
2596 else {
eDest->
Emsg(
"Config",
"invalid tlsca option -",kword);
return 1;}
2598 }
while((val =
Config.GetWord()));
2618 char *val, *ciphers;
2620 if (!(val =
Config.GetWord()))
2621 {
eDest->
Emsg(
"Config",
"tlsciphers parameter not specified");
return 1;}
2623 ciphers = strdup(val);
2625 if ((val =
Config.GetWord()))
2626 {
eDest->
Emsg(
"Config",
"Invalid tlsciphers argument -",val);
2660 int V_read = -1, V_idle = -1, V_hail = -1, V_kill = -1;
2661 struct tmoopts {
const char *opname;
int istime;
int minv;
2662 int *oploc;
const char *etxt;}
2665 {
"read", 1, 1, &V_read,
"timeout read"},
2666 {
"hail", 1, 1, &V_hail,
"timeout hail"},
2667 {
"idle", 1, 0, &V_idle,
"timeout idle"},
2668 {
"kill", 1, 0, &V_kill,
"timeout kill"}
2670 int numopts =
sizeof(tmopts)/
sizeof(
struct tmoopts);
2672 if (!(val =
Config.GetWord()))
2673 {
eDest->
Emsg(
"Config",
"timeout option not specified");
return 1;}
2676 {
for (i = 0; i < numopts; i++)
2677 if (!strcmp(val, tmopts[i].opname))
2678 {
if (!(val =
Config.GetWord()))
2679 {
eDest->
Emsg(
"Config",
"timeout", tmopts[i].opname,
2680 "value not specified");
2683 rc = (tmopts[i].istime ?
2689 *tmopts[i].oploc = ppp;
2693 eDest->
Say(
"Config warning: ignoring invalid timeout option '",val,
"'.");
2699 if (V_read > 0) ProtInfo.readWait = V_read*1000;
2700 if (V_hail >= 0) ProtInfo.hailWait = V_hail*1000;
2701 if (V_idle >= 0) ProtInfo.idleWait = V_idle;
2723 static struct traceopts {
const char *opname;
int opval;} tropts[] =
2740 int i, neg, trval = 0, numopts =
sizeof(tropts)/
sizeof(
struct traceopts);
2742 if (!(val =
Config.GetWord()))
2743 {
eDest->
Emsg(
"Config",
"trace option not specified");
return 1;}
2745 {
if (!strcmp(val,
"off")) trval = 0;
2746 else {
if ((neg = (val[0] ==
'-' && val[1]))) val++;
2747 for (i = 0; i < numopts; i++)
2748 {
if (!strcmp(val, tropts[i].opname))
2750 if (tropts[i].opval) trval &= ~tropts[i].opval;
2752 else if (tropts[i].opval) trval |= tropts[i].opval;
2758 eDest->
Say(
"Config warning: ignoring invalid trace option '",val,
"'.");
void Usage(const char *msg)
static XrdSysError eDest(0,"crypto_")
ssize_t write(int fildes, const void *buf, size_t nbyte)
#define TLS_SET_VDEPTH(cOpts, vdv)
#define TLS_SET_HSTO(cOpts, hstv)
#define TLS_SET_REFINT(cOpts, refi)
void Set(int maxmem=-1, int minw=-1)
void Reset(char *ln, char *pp, int np=-1, bool to=false)
XrdConfigProt(char *pn, char *ln, char *pp, int np=-1, bool to=false)
bool AddPort(int pnum, bool isTLS)
int ConfigXeq(char *var, XrdOucStream &Config, XrdSysError *eDest=0)
int Configure(int argc, char **argv)
int BindSD(int port, const char *contype="tcp")
static void SetAssumeV4(bool newVal)
static int Setup(int maxfds, int idlewt)
static void setKWT(int wkSec, int kwSec)
const sockaddr * SockAddr()
const char * Name(const char *eName=0, const char **eText=0)
static void SetCache(int keeptime)
static void SetDynDNS(bool onoff)
static void SetRPIPA(bool rval)
static int GetIF(XrdOucTList **ifList, const char **eText=0)
static void Routing(netType nettype)
static void SetMsgs(XrdSysError *erp)
static bool SetIFNames(char *ifnames)
static void SetFQN(const char *fqn)
static void Start(XrdSysLogger *logP, XrdScheduler *sP)
static int ProtoID(const char *pName)
static int ServPort(const char *sName, bool isUDP=false, const char **eText=0)
void setDomain(const char *dname)
void setDefaults(int options, int buffsz=0)
void PutInt(const char *varname, long value)
static int Export(const char *Var, const char *Val)
void * GetPtr(const char *varname)
void PutPtr(const char *varname, void *value)
void Put(const char *varname, const char *value)
static bool configLog(XrdSysError &eDest, configLogInfo &logInfo)
static const char * Set(const char *name, int maxlen=15)
static XrdOucString * Capture()
const char * c_str() const
static char * parseHome(XrdSysError &eDest, XrdOucStream &Config, int &mode)
static const mode_t pathMode
static char * genPath(const char *path, const char *inst, const char *psfx=0)
static int ReLink(const char *path, const char *target, mode_t mode=0)
static const char * InstName(int TranOpt=0)
static int doIf(XrdSysError *eDest, XrdOucStream &Config, const char *what, const char *hname, const char *nname, const char *pname)
static int makePath(char *path, mode_t mode, bool reset=false)
static bool PidFile(XrdSysError &eDest, const char *path)
static void makeHome(XrdSysError &eDest, const char *inst)
static void Undercover(XrdSysError &eDest, int noLog, int *pipeFD=0)
static int a2i(XrdSysError &, const char *emsg, const char *item, int *val, int minv=-1, int maxv=-1)
static int a2sz(XrdSysError &, const char *emsg, const char *item, long long *val, long long minv=-1, long long maxv=-1)
static int a2tm(XrdSysError &, const char *emsg, const char *item, int *val, int minv=-1, int maxv=-1)
static int a2p(XrdSysError &, const char *ptype, const char *val, bool anyOK=true)
static int Setup(int numfd)
static const int PortoMax
static int Port(const char *lname, const char *pname, char *parms, XrdProtocol_Config *pi)
static int Load(const char *lname, const char *pname, char *parms, XrdProtocol_Config *pi, bool istls)
int Stats(char *buff, int blen, int do_sync=0)
void setParms(int minw, int maxw, int avlt, int maxi, int once=0)
void setNproc(const bool limlower)
int Emsg(const char *esfx, int ecode, const char *text1, const char *text2=0)
void Say(const char *text1, const char *text2=0, const char *txt3=0, const char *text4=0, const char *text5=0, const char *txt6=0)
XrdSysLogger * logger(XrdSysLogger *lp=0)
void AddMsg(const char *msg)
int ParseKeep(const char *arg)
static void setDebug(XrdSysError *erp)
static void setStackSize(size_t stsz, bool force=false)
static int FmtUname(char *buff, int blen)
XrdOucPinKing< XrdTcpMonPin > KingPin
XrdTcpMonInfo(const char *drctv, const char *cfn, XrdSysError &errR)
static const int crlRS
Bits to shift vdept.
static void SetDefaultCiphers(const char *ciphers)
static const uint64_t servr
This is a server context.
static const uint64_t nopxy
Do not allow proxy certs.
static const uint64_t logVF
Log verify failures.
static const uint64_t crlFC
Full crl chain checking.
static const uint64_t crlON
Enables crl checking.
static const uint64_t crlRF
Mask to isolate crl refresh in min.
static void SetMsgCB(msgCB_t cbP)
static const int dbgSIO
Turn debugging in for socket I/O.
static const int dbgSOK
Turn debugging in for socket operations.
static const int dbgALL
Turn debugging for everything.
static const int dbgCTX
Turn debugging in for context operations.
static void SetDebug(int opts, XrdSysLogger *logP=0)
XrdVERSIONINFODEF(myVersion, cmsclient, XrdVNUMBER, XrdVERSION)
XrdNetRefresh * NetRefresh
static INT to(const char *buffer)