56 static const std::string
VERSION =
"0.2.0";
58 static const std::string
gUserAgent =
"ROOT/" + std::string(
gROOT->GetVersion()) +
59 " TDavixFile/" +
VERSION +
" davix/" + Davix::version();
62 #define ENVPFX "Davix." 66 using namespace
Davix;
87 if (!str)
return false;
89 if (!strcmp(str,
"n") || !strcmp(str,
"no") || !strcmp(str,
"0") || !strcmp(str,
"false"))
return true;
100 old_flag |= O_RDONLY;
103 old_flag |= (O_CREAT | O_WRONLY | O_TRUNC);
106 old_flag |= (O_RDWR);
119 davix_set_log_level(0);
122 davix_set_log_level(DAVIX_LOG_WARNING);
125 davix_set_log_level(DAVIX_LOG_VERBOSE);
128 davix_set_log_level(DAVIX_LOG_DEBUG);
131 davix_set_log_level(DAVIX_LOG_ALL);
143 char default_proxy[64];
144 const char *genvvar = 0, *genvvar1 = 0;
148 ucert = ukey = genvvar;
150 Info(
"TDavixFile_http_get_ucert",
"Found proxy in gEnv");
155 if (getenv(
"X509_USER_PROXY")) {
157 Info(
"TDavixFile_http_get_ucert",
"Found proxy in X509_USER_PROXY");
158 ucert = ukey = getenv(
"X509_USER_PROXY");
163 snprintf(default_proxy,
sizeof(default_proxy),
"/tmp/x509up_u%d",
166 if (access(default_proxy, R_OK) == 0) {
168 Info(
"TDavixFile_http_get_ucert",
"Found proxy in /tmp");
169 ucert = ukey = default_proxy;
176 if (genvvar || genvvar1) {
178 Info(
"TDavixFile_http_get_ucert",
"Found cert and key in gEnv");
186 if (getenv(
"X509_USER_CERT"))
187 ucert = getenv(
"X509_USER_CERT");
188 if (getenv(
"X509_USER_KEY"))
189 ukey = getenv(
"X509_USER_KEY");
191 if ((ucert.size() > 0) || (ukey.size() > 0)) {
193 Info(
"TDavixFile_http_get_ucert",
"Found cert and key in gEnv");
202 Davix::X509Credential *cert, Davix::DavixError **err)
206 std::string ucert, ukey;
209 if (ucert.empty() || ukey.empty()) {
210 Davix::DavixError::setupError(err,
"TDavixFile",
211 Davix::StatusCode::AuthentificationError,
212 "Could not set the user's proxy or certificate");
215 return cert->loadFromFilePEM(ukey, ucert,
"", err);
244 DavixError *davixErr =
NULL;
247 Error(
"DavixOpen",
"can not open file with davix: %s (%d)",
248 davixErr->getErrMsg().c_str(), davixErr->getStatus());
249 DavixError::clearError(&davixErr);
252 davixPosix->fadvise(fd, 0, 300, Davix::AdviseRandom);
262 DavixError *davixErr =
NULL;
264 Error(
"DavixClose",
"can not to close file with davix: %s (%d)",
265 davixErr->getErrMsg().c_str(), davixErr->getStatus());
266 DavixError::clearError(&davixErr);
274 const char *env_var =
NULL;
277 Info(
"enableGridMode",
" grid mode enabled !");
279 if( ( env_var = getenv(
"X509_CERT_DIR")) ==
NULL){
280 env_var=
"/etc/grid-security/certificates/";
282 davixParam->addCertificateAuthorityPath(env_var);
284 Info(
"enableGridMode",
"Adding CAdir %s", env_var);
290 const std::string ®ion,
const std::string &token)
293 Info(
"setS3Auth",
" Aws S3 tokens configured");
294 if (!region.empty())
Info(
"setS3Auth",
" Aws region configured - using v4 signatures");
295 if (!token.empty())
Info(
"setS3Auth",
" Aws STS token was provided");
297 davixParam->setAwsAuthorizationKeys(secret, access);
298 davixParam->setProtocol(RequestProtocol::AwsS3);
308 const char *env_var =
NULL, *env_var2 =
NULL;
310 davixParam->setTransparentRedirectionSupport(
true);
316 davixParam->addCertificateAuthorityPath(env_var);
318 Info(
"parseConfig",
"Add CAdir: %s", env_var);
321 bool ca_check_local = !
isno(
gEnv->
GetValue(
"Davix.GSI.CACheck", (
const char *)
"y"));
324 Info(
"parseConfig",
"Setting CAcheck to %s", ((ca_check_local) ? (
"true") : (
"false")));
327 if (((env_var =
gEnv->
GetValue(
"Davix.S3.SecretKey", getenv(
"S3_SECRET_KEY"))) !=
NULL)
328 && ((env_var2 =
gEnv->
GetValue(
"Davix.S3.AccessKey", getenv(
"S3_ACCESS_KEY"))) !=
NULL)) {
329 Info(
"parseConfig",
"Setting S3 SecretKey and AccessKey. Access Key : %s ", env_var2);
330 davixParam->setAwsAuthorizationKeys(env_var, env_var2);
333 if ( (env_var =
gEnv->
GetValue(
"Davix.S3.Region", getenv(
"S3_REGION"))) !=
NULL) {
334 Info(
"parseConfig",
"Setting S3 Region to '%s' - v4 signature will be used", env_var);
338 if( (env_var =
gEnv->
GetValue(
"Davix.S3.Token", getenv(
"S3_TOKEN"))) !=
NULL) {
339 Info(
"parseConfig",
"Setting S3 STS temporary credentials");
344 env_var =
gEnv->
GetValue(
"Davix.GSI.GridMode", (
const char *)
"y");
354 std::stringstream ss(option);
356 std::vector<std::string> parsed_options;
358 std::string s3seckey, s3acckey, s3region, s3token;
360 while (std::getline(ss, item,
' ')) {
361 parsed_options.push_back(item);
364 for (std::vector<std::string>::iterator it = parsed_options.begin(); it < parsed_options.end(); ++it) {
387 s3token = std::string(it->c_str() + strlen(
s3_token_opt));
393 if (s3seckey.size() > 0) {
394 setS3Auth(s3seckey, s3acckey, s3region, s3token);
417 DavixError *davixErr =
NULL;
421 Error(
"DavixStat",
"can not stat the file with davix: %s (%d)",
422 davixErr->getErrMsg().c_str(), davixErr->getStatus());
423 DavixError::clearError(&davixErr);
483 Error(
"Seek",
"seeking from end in archive is not (yet) supported");
489 Info(
"Seek",
" move cursor to %lld" 508 Info(
"ReadBuffer",
"%lld bytes of data read sequentially" 509 " (%d requested)", ret, len);
527 Info(
"ReadBuffer",
"%lld bytes of data read from offset" 528 " %lld (%d requested)", ret, pos, len);
540 d_ptr->
davixPosix->fadvise(fd, static_cast<dav_off_t>(offs), static_cast<dav_size_t>(len), Davix::AdviseRandom);
543 Info(
"ReadBufferAsync",
"%d bytes of data prefected from offset" 544 " %lld ", len, offs);
561 Info(
"ReadBuffers",
"%lld bytes of data read from a list of %d buffers",
580 Info(
"WriteBuffer",
"%lld bytes of data write" 581 " %d requested", ret, len);
604 std::vector<void *>::iterator
f = std::find(dirdVec.begin(), dirdVec.end(), fd);
605 return (f != dirdVec.end());
613 dirdVec.push_back(fd);
621 std::vector<void *>::iterator
f = std::find(dirdVec.begin(), dirdVec.end(), fd);
622 if (f != dirdVec.end())
634 Info(
"GetSize",
"file size requested: %lld", (
Long64_t)st.st_size);
665 DavixError *davixErr =
NULL;
670 Error(
"DavixReadBuffer",
"can not read data with davix: %s (%d)",
671 davixErr->getErrMsg().c_str(), davixErr->getStatus());
672 DavixError::clearError(&davixErr);
685 DavixError *davixErr =
NULL;
690 Error(
"DavixWriteBuffer",
"can not write data with davix: %s (%d)",
691 davixErr->getErrMsg().c_str(), davixErr->getStatus());
692 DavixError::clearError(&davixErr);
705 DavixError *davixErr =
NULL;
710 Error(
"DavixPReadBuffer",
"can not read data with davix: %s (%d)",
711 davixErr->getErrMsg().c_str(), davixErr->getStatus());
712 DavixError::clearError(&davixErr);
725 DavixError *davixErr =
NULL;
727 DavIOVecInput in[nbuf];
728 DavIOVecOuput out[nbuf];
731 for (
Int_t i = 0; i < nbuf; ++i) {
732 in[i].diov_buffer = &buf[lastPos];
733 in[i].diov_offset = pos[i];
734 in[i].diov_size = len[i];
740 Error(
"DavixReadBuffers",
"can not read data with davix: %s (%d)",
741 davixErr->getErrMsg().c_str(), davixErr->getStatus());
742 DavixError::clearError(&davixErr);
static void ConfigureDavixLogLevel()
static const std::string gUserAgent
const char * s3_seckey_opt
const char * open_mode_read
const char * open_mode_update
void Init(Bool_t init)
Initialize a TFile object.
static void TDavixFile_http_get_ucert(std::string &ucert, std::string &ukey)
void setS3Auth(const std::string &secret, const std::string &access, const std::string ®ion, const std::string &token)
Davix::RequestParams * davixParam
Small helper to keep current directory context.
virtual void Info(const char *method, const char *msgfmt,...) const
Issue info message.
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
virtual Bool_t ReadBuffer(char *buf, Int_t len)
Read specified byte range from remote file via HTTP.
TDavixFileInternal * d_ptr
Long64_t DavixReadBuffer(Davix_fd *fd, char *buf, Int_t len)
Int_t fReadCalls
Number of read calls ( not counting the cache calls )
virtual Bool_t WriteBuffer(const char *buffer, Int_t bufferLength)
Write a buffer to the file.
void eventStop(Double_t t, Long64_t len)
set TFile state info
Davix_fd * getDavixFileInstance()
const char * open_mode_create
Long64_t DavixReadBuffers(Davix_fd *fd, char *buf, Long64_t *pos, Int_t *len, Int_t nbuf)
Davix::DavPosix * davixPosix
virtual void Seek(Long64_t offset, ERelativeTo pos=kBeg)
Set position from where to start reading.
virtual Long64_t GetSize() const
Returns the current file size.
void Info(const char *location, const char *msgfmt,...)
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
void Error(const char *location, const char *msgfmt,...)
Int_t DavixStat(const char *url, struct stat *st)
static Context * davix_context_s
Long64_t DavixWriteBuffer(Davix_fd *fd, const char *buf, Int_t len)
Long64_t fEND
Last used byte in file.
virtual Bool_t ReadBufferAsync(Long64_t offs, Int_t len)
const char * s3_token_opt
static Davix::Context * getDavixInstance()
virtual Int_t GetValue(const char *name, Int_t dflt)
Returns the integer value for a resource.
void removeDird(void *fd)
bool isno(const char *str)
virtual void Init(Bool_t create)
Initialize a TFile object.
virtual Bool_t ReadBuffers(char *buf, Long64_t *pos, Int_t *len, Int_t nbuf)
Read the nbuf blocks described in arrays pos and len.
const char * GetUrl(Bool_t withDeflt=kFALSE) const
Return full URL.
const char * grid_mode_opt
static const std::string VERSION
The TTimeStamp encapsulates seconds and ns since EPOCH.
const char * s3_acckey_opt
int configure_open_flag(const std::string &str, int old_flag)
const char * s3_region_opt
void enableGridMode()
Enable the grid mode The grid Mode configure automatically all grid-CA path, VOMS authentication and ...
typedef void((*Func_t)())
const char * ca_check_opt
static int TDavixFile_http_authn_cert_X509(void *userdata, const Davix::SessionInfo &info, Davix::X509Credential *cert, Davix::DavixError **err)
Long64_t fArchiveOffset
!Offset at which file starts in archive
TDavixFile(const char *url, Option_t *option="", const char *ftitle="", Int_t compress=1)
Open function for TDavixFile.
Long64_t fOffset
!Seek offset cache
Long64_t DavixPReadBuffer(Davix_fd *fd, char *buf, Long64_t pos, Int_t len)
void setCACheck(Bool_t check)
Enable or disable certificate authority check.
void parseParams(Option_t *option)
intput params
Long64_t fBytesRead
Number of bytes read from this file.
Davix::Context * davixContext
const char * open_mode_new