libzypp 17.31.31
request.cc
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8----------------------------------------------------------------------*/
13#include <zypp-core/zyppng/base/EventDispatcher>
14#include <zypp-core/zyppng/base/private/linuxhelpers_p.h>
15#include <zypp-core/zyppng/core/String>
16#include <zypp-core/fs/PathInfo.h>
18#include <zypp-curl/CurlConfig>
19#include <zypp-curl/auth/CurlAuthData>
20#include <zypp-media/MediaConfig>
21#include <zypp-core/base/String.h>
22#include <zypp-core/base/StringV.h>
23#include <zypp-core/base/IOTools.h>
24#include <zypp-core/Pathname.h>
25#include <curl/curl.h>
26#include <stdio.h>
27#include <fcntl.h>
28#include <utility>
29
30#include <iostream>
31#include <boost/variant.hpp>
32#include <boost/variant/polymorphic_get.hpp>
33
34
35namespace zyppng {
36
37 namespace {
38 static size_t nwr_headerCallback ( char *ptr, size_t size, size_t nmemb, void *userdata ) {
39 if ( !userdata )
40 return 0;
41
42 NetworkRequestPrivate *that = reinterpret_cast<NetworkRequestPrivate *>( userdata );
43 return that->headerfunction( ptr, size * nmemb );
44 }
45 static size_t nwr_writeCallback ( char *ptr, size_t size, size_t nmemb, void *userdata ) {
46 if ( !userdata )
47 return 0;
48
49 NetworkRequestPrivate *that = reinterpret_cast<NetworkRequestPrivate *>( userdata );
50 return that->writefunction( ptr, {}, size * nmemb );
51 }
52
53 //helper for std::visit
54 template<class T> struct always_false : std::false_type {};
55 }
56
58 : _outFile( std::move(prevState._outFile) )
59 , _downloaded( prevState._downloaded )
60 , _partialHelper( std::move(prevState._partialHelper) )
61 { }
62
64 : _partialHelper( std::move(prevState._partialHelper) )
65 { }
66
68 : _outFile( std::move(prevState._outFile) )
69 , _partialHelper( std::move(prevState._partialHelper) )
70 , _downloaded( prevState._downloaded )
71 { }
72
74 : BasePrivate(p)
75 , _url ( std::move(url) )
76 , _targetFile ( std::move( targetFile) )
77 , _fMode ( std::move(fMode) )
78 , _headers( std::unique_ptr< curl_slist, decltype (&curl_slist_free_all) >( nullptr, &curl_slist_free_all ) )
79 { }
80
82 {
83 if ( _easyHandle ) {
84 //clean up for now, later we might reuse handles
85 curl_easy_cleanup( _easyHandle );
86 //reset in request but make sure the request was not enqueued again and got a new handle
87 _easyHandle = nullptr;
88 }
89 }
90
91 bool NetworkRequestPrivate::initialize( std::string &errBuf )
92 {
93 reset();
94
95 if ( _easyHandle )
96 //will reset to defaults but keep live connections, session ID and DNS caches
97 curl_easy_reset( _easyHandle );
98 else
99 _easyHandle = curl_easy_init();
100 return setupHandle ( errBuf );
101 }
102
103 bool NetworkRequestPrivate::setupHandle( std::string &errBuf )
104 {
106 curl_easy_setopt( _easyHandle, CURLOPT_ERRORBUFFER, this->_errorBuf.data() );
107
108 const std::string urlScheme = _url.getScheme();
109 if ( urlScheme == "http" || urlScheme == "https" )
111
112 try {
113
114 setCurlOption( CURLOPT_PRIVATE, this );
116 setCurlOption( CURLOPT_XFERINFODATA, this );
117 setCurlOption( CURLOPT_NOPROGRESS, 0L);
118 setCurlOption( CURLOPT_FAILONERROR, 1L);
119 setCurlOption( CURLOPT_NOSIGNAL, 1L);
120
121 std::string urlBuffer( _url.asString() );
122 setCurlOption( CURLOPT_URL, urlBuffer.c_str() );
123
124 setCurlOption( CURLOPT_WRITEFUNCTION, nwr_writeCallback );
125 setCurlOption( CURLOPT_WRITEDATA, this );
126
128 setCurlOption( CURLOPT_CONNECT_ONLY, 1L );
129 setCurlOption( CURLOPT_FRESH_CONNECT, 1L );
130 }
132 // instead of returning no data with NOBODY, we return
133 // little data, that works with broken servers, and
134 // works for ftp as well, because retrieving only headers
135 // ftp will return always OK code ?
136 // See http://curl.haxx.se/docs/knownbugs.html #58
138 setCurlOption( CURLOPT_NOBODY, 1L );
139 else
140 setCurlOption( CURLOPT_RANGE, "0-1" );
141 }
142
143 //make a local copy of the settings, so headers are not added multiple times
145
146 if ( _dispatcher ) {
147 locSet.setUserAgentString( _dispatcher->agentString().c_str() );
148
149 // add custom headers as configured (bsc#955801)
150 const auto &cHeaders = _dispatcher->hostSpecificHeaders();
151 if ( auto i = cHeaders.find(_url.getHost()); i != cHeaders.end() ) {
152 for ( const auto &[key, value] : i->second ) {
154 "%s: %s", key.c_str(), value.c_str() )
155 ));
156 }
157 }
158 }
159
160 locSet.addHeader("Pragma:");
161
164 {
165 case 4: setCurlOption( CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 ); break;
166 case 6: setCurlOption( CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V6 ); break;
167 default: break;
168 }
169
170 setCurlOption( CURLOPT_HEADERFUNCTION, &nwr_headerCallback );
171 setCurlOption( CURLOPT_HEADERDATA, this );
172
176 setCurlOption( CURLOPT_CONNECTTIMEOUT, locSet.connectTimeout() );
177 // If a transfer timeout is set, also set CURLOPT_TIMEOUT to an upper limit
178 // just in case curl does not trigger its progress callback frequently
179 // enough.
180 if ( locSet.timeout() )
181 {
182 setCurlOption( CURLOPT_TIMEOUT, 3600L );
183 }
184
185 if ( urlScheme == "https" )
186 {
187 // restrict following of redirections from https to https only
188 // but be less restrictive for d.o.o
189 bool allowHttp = ( _url.getHost() == "download.opensuse.org" );
190 if ( :: internal::setCurlRedirProtocols ( _easyHandle, allowHttp ) != CURLE_OK ) {
192 }
193
194 if( locSet.verifyPeerEnabled() ||
195 locSet.verifyHostEnabled() )
196 {
197 setCurlOption(CURLOPT_CAPATH, locSet.certificateAuthoritiesPath().c_str());
198 }
199
200 if( ! locSet.clientCertificatePath().empty() )
201 {
202 setCurlOption(CURLOPT_SSLCERT, locSet.clientCertificatePath().c_str());
203 }
204 if( ! locSet.clientKeyPath().empty() )
205 {
206 setCurlOption(CURLOPT_SSLKEY, locSet.clientKeyPath().c_str());
207 }
208
209#ifdef CURLSSLOPT_ALLOW_BEAST
210 // see bnc#779177
211 setCurlOption( CURLOPT_SSL_OPTIONS, CURLSSLOPT_ALLOW_BEAST );
212#endif
213 setCurlOption(CURLOPT_SSL_VERIFYPEER, locSet.verifyPeerEnabled() ? 1L : 0L);
214 setCurlOption(CURLOPT_SSL_VERIFYHOST, locSet.verifyHostEnabled() ? 2L : 0L);
215 // bnc#903405 - POODLE: libzypp should only talk TLS
216 setCurlOption(CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1);
217 }
218
219 // follow any Location: header that the server sends as part of
220 // an HTTP header (#113275)
221 setCurlOption( CURLOPT_FOLLOWLOCATION, 1L);
222 // 3 redirects seem to be too few in some cases (bnc #465532)
223 setCurlOption( CURLOPT_MAXREDIRS, 6L );
224
225 //set the user agent
226 setCurlOption(CURLOPT_USERAGENT, locSet.userAgentString().c_str() );
227
228
229 /*---------------------------------------------------------------*
230 CURLOPT_USERPWD: [user name]:[password]
231 Url::username/password -> CURLOPT_USERPWD
232 If not provided, anonymous FTP identification
233 *---------------------------------------------------------------*/
234 if ( locSet.userPassword().size() )
235 {
236 setCurlOption(CURLOPT_USERPWD, locSet.userPassword().c_str());
237 std::string use_auth = _settings.authType();
238 if (use_auth.empty())
239 use_auth = "digest,basic"; // our default
241 if( auth != CURLAUTH_NONE)
242 {
243 DBG << _easyHandle << " " << "Enabling HTTP authentication methods: " << use_auth
244 << " (CURLOPT_HTTPAUTH=" << auth << ")" << std::endl;
245 setCurlOption(CURLOPT_HTTPAUTH, auth);
246 }
247 }
248
249 if ( locSet.proxyEnabled() && ! locSet.proxy().empty() )
250 {
251 DBG << _easyHandle << " " << "Proxy: '" << locSet.proxy() << "'" << std::endl;
252 setCurlOption(CURLOPT_PROXY, locSet.proxy().c_str());
253 setCurlOption(CURLOPT_PROXYAUTH, CURLAUTH_BASIC|CURLAUTH_DIGEST|CURLAUTH_NTLM );
254
255 /*---------------------------------------------------------------*
256 * CURLOPT_PROXYUSERPWD: [user name]:[password]
257 *
258 * Url::option(proxyuser and proxypassword) -> CURLOPT_PROXYUSERPWD
259 * If not provided, $HOME/.curlrc is evaluated
260 *---------------------------------------------------------------*/
261
262 std::string proxyuserpwd = locSet.proxyUserPassword();
263
264 if ( proxyuserpwd.empty() )
265 {
267 zypp::media::CurlConfig::parseConfig(curlconf); // parse ~/.curlrc
268 if ( curlconf.proxyuserpwd.empty() )
269 DBG << _easyHandle << " " << "Proxy: ~/.curlrc does not contain the proxy-user option" << std::endl;
270 else
271 {
272 proxyuserpwd = curlconf.proxyuserpwd;
273 DBG << _easyHandle << " " << "Proxy: using proxy-user from ~/.curlrc" << std::endl;
274 }
275 }
276 else
277 {
278 DBG << _easyHandle << " " << _easyHandle << " " << "Proxy: using provided proxy-user '" << _settings.proxyUsername() << "'" << std::endl;
279 }
280
281 if ( ! proxyuserpwd.empty() )
282 {
283 setCurlOption(CURLOPT_PROXYUSERPWD, ::internal::curlUnEscape( proxyuserpwd ).c_str());
284 }
285 }
286#if CURLVERSION_AT_LEAST(7,19,4)
287 else if ( locSet.proxy() == EXPLICITLY_NO_PROXY )
288 {
289 // Explicitly disabled in URL (see fillSettingsFromUrl()).
290 // This should also prevent libcurl from looking into the environment.
291 DBG << _easyHandle << " " << "Proxy: explicitly NOPROXY" << std::endl;
292 setCurlOption(CURLOPT_NOPROXY, "*");
293 }
294
295#endif
296 // else: Proxy: not explicitly set; libcurl may look into the environment
297
299 if ( locSet.minDownloadSpeed() != 0 )
300 {
301 setCurlOption(CURLOPT_LOW_SPEED_LIMIT, locSet.minDownloadSpeed());
302 // default to 10 seconds at low speed
303 setCurlOption(CURLOPT_LOW_SPEED_TIME, 60L);
304 }
305
306#if CURLVERSION_AT_LEAST(7,15,5)
307 if ( locSet.maxDownloadSpeed() != 0 )
308 setCurlOption(CURLOPT_MAX_RECV_SPEED_LARGE, locSet.maxDownloadSpeed());
309#endif
310
312 if ( zypp::str::strToBool( _url.getQueryParam( "cookies" ), true ) )
313 setCurlOption( CURLOPT_COOKIEFILE, _currentCookieFile.c_str() );
314 else
315 MIL << _easyHandle << " " << "No cookies requested" << std::endl;
316 setCurlOption(CURLOPT_COOKIEJAR, _currentCookieFile.c_str() );
317
318#if CURLVERSION_AT_LEAST(7,18,0)
319 // bnc #306272
320 setCurlOption(CURLOPT_PROXY_TRANSFER_MODE, 1L );
321#endif
322
323 // Append settings custom headers to curl.
324 // TransferSettings assert strings are trimmed (HTTP/2 RFC 9113)
325 for ( const auto &header : locSet.headers() ) {
326 if ( !z_func()->addRequestHeader( header.c_str() ) )
328 }
329
330 if ( _headers )
331 setCurlOption( CURLOPT_HTTPHEADER, _headers.get() );
332
333 // set up ranges if required
335 if ( _requestedRanges.size() ) {
336
337 std::sort( _requestedRanges.begin(), _requestedRanges.end(), []( const auto &elem1, const auto &elem2 ){
338 return ( elem1.start < elem2.start );
339 });
340
341 CurlMultiPartHandler *helper = nullptr;
342 if ( auto initState = std::get_if<pending_t>(&_runningMode) ) {
343
345 initState->_partialHelper = std::make_unique<CurlMultiPartHandler>(
346 multiPartMode
349 , *this
350 );
351 helper = initState->_partialHelper.get();
352
353 } else if ( auto pendingState = std::get_if<prepareNextRangeBatch_t>(&_runningMode) ) {
354 helper = pendingState->_partialHelper.get();
355 } else {
356 errBuf = "Request is in invalid state to call setupHandle";
357 return false;
358 }
359
360 if ( !helper->prepare () ) {
361 errBuf = helper->lastErrorMessage ();
362 return false;
363 }
364 }
365 }
366
367 return true;
368
369 } catch ( const zypp::Exception &excp ) {
370 ZYPP_CAUGHT(excp);
371 errBuf = excp.asString();
372 }
373 return false;
374 }
375
377 {
378 auto rmode = std::get_if<NetworkRequestPrivate::running_t>( &_runningMode );
379 if ( !rmode ) {
380 DBG << _easyHandle << "Can only create output file in running mode" << std::endl;
381 return false;
382 }
383 // if we have no open file create or open it
384 if ( !rmode->_outFile ) {
385 std::string openMode = "w+b";
387 openMode = "r+b";
388
389 rmode->_outFile = fopen( _targetFile.asString().c_str() , openMode.c_str() );
390
391 //if the file does not exist create a new one
392 if ( !rmode->_outFile && _fMode == NetworkRequest::WriteShared ) {
393 rmode->_outFile = fopen( _targetFile.asString().c_str() , "w+b" );
394 }
395
396 if ( !rmode->_outFile ) {
398 ,zypp::str::Format("Unable to open target file (%1%). Errno: (%2%:%3%)") % _targetFile.asString() % errno % strerr_cxx() );
399 return false;
400 }
401 }
402
403 return true;
404 }
405
407 {
408 // We can recover from RangeFail errors if the helper indicates it
409 auto rmode = std::get_if<NetworkRequestPrivate::running_t>( &_runningMode );
410 if ( rmode->_partialHelper ) return rmode->_partialHelper->canRecover();
411 return false;
412 }
413
415 {
416 auto rmode = std::get_if<NetworkRequestPrivate::running_t>( &_runningMode );
417 if ( !rmode ) {
418 errBuf = "NetworkRequestPrivate::prepareToContinue called in invalid state";
419 return false;
420 }
421
422 if ( rmode->_partialHelper && rmode->_partialHelper->hasMoreWork() ) {
423
424 bool hadRangeFail = rmode->_partialHelper->lastError () == NetworkRequestError::RangeFail;
425
426 _runningMode = prepareNextRangeBatch_t( std::move(std::get<running_t>( _runningMode )) );
427
428 auto &prepMode = std::get<prepareNextRangeBatch_t>(_runningMode);
429 if ( !prepMode._partialHelper->prepareToContinue() ) {
430 errBuf = prepMode._partialHelper->lastErrorMessage();
431 return false;
432 }
433
434 if ( hadRangeFail ) {
435 // we reset the handle to default values. We do this to not run into
436 // "transfer closed with outstanding read data remaining" error CURL sometimes returns when
437 // we cancel a connection because of a range error to request a smaller batch.
438 // The error will still happen but much less frequently than without resetting the handle.
439 //
440 // Note: Even creating a new handle will NOT fix the issue
441 curl_easy_reset( _easyHandle );
442 }
443 if ( !setupHandle(errBuf))
444 return false;
445 return true;
446 }
447 errBuf = "Request has no more work";
448 return false;
449
450 }
451
453 {
454 // check if we have ranges that have never been requested
455 return std::any_of( _requestedRanges.begin(), _requestedRanges.end(), []( const auto &range ){ return range._rangeState == CurlMultiPartHandler::Pending; });
456 }
457
459 {
460 bool isRangeContinuation = std::holds_alternative<prepareNextRangeBatch_t>( _runningMode );
461 if ( isRangeContinuation ) {
462 MIL << _easyHandle << " " << "Continuing a previously started range batch." << std::endl;
463 _runningMode = running_t( std::move(std::get<prepareNextRangeBatch_t>( _runningMode )) );
464 } else {
465 _runningMode = running_t( std::move(std::get<pending_t>( _runningMode )) );
466 }
467
468 auto &m = std::get<running_t>( _runningMode );
469
470 if ( m._activityTimer ) {
471 DBG_MEDIA << _easyHandle << " Setting activity timeout to: " << _settings.timeout() << std::endl;
472 m._activityTimer->connect( &Timer::sigExpired, *this, &NetworkRequestPrivate::onActivityTimeout );
473 m._activityTimer->start( static_cast<uint64_t>( _settings.timeout() * 1000 ) );
474 }
475
476 if ( !isRangeContinuation )
477 _sigStarted.emit( *z_func() );
478 }
479
481 {
482 if ( std::holds_alternative<running_t>(_runningMode) ) {
483 auto &rmode = std::get<running_t>( _runningMode );
484 if ( rmode._partialHelper )
485 rmode._partialHelper->finalize();
486 }
487 }
488
490 {
491 finished_t resState;
492 resState._result = std::move(err);
493
494 if ( std::holds_alternative<running_t>(_runningMode) ) {
495
496 auto &rmode = std::get<running_t>( _runningMode );
497 resState._downloaded = rmode._downloaded;
498 resState._contentLenght = rmode._contentLenght;
499
501 if ( _requestedRanges.size( ) ) {
502 //we have a successful download lets see if we got everything we needed
503 if ( !rmode._partialHelper->verifyData() ){
504 NetworkRequestError::Type err = rmode._partialHelper->lastError();
505 resState._result = NetworkRequestErrorPrivate::customError( err, std::string(rmode._partialHelper->lastErrorMessage()) );
506 }
507
508 // if we have ranges we need to fill our digest from the full file
510 if ( fseek( rmode._outFile, 0, SEEK_SET ) != 0 ) {
511 resState._result = NetworkRequestErrorPrivate::customError( NetworkRequestError::InternalError, "Unable to set output file pointer." );
512 } else {
513 constexpr size_t bufSize = 4096;
514 char buf[bufSize];
515 while( auto cnt = fread(buf, 1, bufSize, rmode._outFile ) > 0 ) {
516 _fileVerification->_fileDigest.update(buf, cnt);
517 }
518 }
519 }
520 } // if ( _requestedRanges.size( ) )
521 }
522
523 // finally check the file digest if we have one
525 const UByteArray &calcSum = _fileVerification->_fileDigest.digestVector ();
526 const UByteArray &expSum = zypp::Digest::hexStringToUByteArray( _fileVerification->_fileChecksum.checksum () );
527 if ( calcSum != expSum ) {
530 , (zypp::str::Format("Invalid file checksum %1%, expected checksum %2%")
531 % _fileVerification->_fileDigest.digest()
532 % _fileVerification->_fileChecksum.checksum () ) );
533 }
534 }
535
536 rmode._outFile.reset();
537 }
538
539 _runningMode = std::move( resState );
540 _sigFinished.emit( *z_func(), std::get<finished_t>(_runningMode)._result );
541 }
542
544 {
546 _headers.reset( nullptr );
547 _errorBuf.fill( 0 );
549
550 if ( _fileVerification )
551 _fileVerification->_fileDigest.reset ();
552
553 std::for_each( _requestedRanges.begin (), _requestedRanges.end(), []( CurlMultiPartHandler::Range &range ) {
554 range.restart();
555 });
556 }
557
559 {
560 MIL_MEDIA << _easyHandle << " Request timeout interval: " << t.interval()<< " remaining: " << t.remaining() << std::endl;
561 std::map<std::string, boost::any> extraInfo;
562 extraInfo.insert( {"requestUrl", _url } );
563 extraInfo.insert( {"filepath", _targetFile } );
564 _dispatcher->cancel( *z_func(), NetworkRequestErrorPrivate::customError( NetworkRequestError::Timeout, "Download timed out", std::move(extraInfo) ) );
565 }
566
568 {
569 return std::string( _errorBuf.data() );
570 }
571
573 {
574 if ( std::holds_alternative<running_t>( _runningMode ) ){
575 auto &rmode = std::get<running_t>( _runningMode );
576 if ( rmode._activityTimer && rmode._activityTimer->isRunning() )
577 rmode._activityTimer->start();
578 }
579 }
580
581 int NetworkRequestPrivate::curlProgressCallback( void *clientp, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow )
582 {
583 if ( !clientp )
584 return CURLE_OK;
585 NetworkRequestPrivate *that = reinterpret_cast<NetworkRequestPrivate *>( clientp );
586
587 if ( !std::holds_alternative<running_t>(that->_runningMode) ){
588 DBG << that->_easyHandle << " " << "Curl progress callback was called in invalid state "<< that->z_func()->state() << std::endl;
589 return -1;
590 }
591
592 auto &rmode = std::get<running_t>( that->_runningMode );
593
594 //reset the timer
595 that->resetActivityTimer();
596
597 rmode._isInCallback = true;
598 if ( rmode._lastProgressNow != dlnow ) {
599 rmode._lastProgressNow = dlnow;
600 that->_sigProgress.emit( *that->z_func(), dltotal, dlnow, ultotal, ulnow );
601 }
602 rmode._isInCallback = false;
603
604 return rmode._cachedResult ? CURLE_ABORTED_BY_CALLBACK : CURLE_OK;
605 }
606
607 size_t NetworkRequestPrivate::headerfunction( char *ptr, size_t bytes )
608 {
609 //it is valid to call this function with no data to write, just return OK
610 if ( bytes == 0)
611 return 0;
612
614
616
617 std::string_view hdr( ptr, bytes );
618
619 hdr.remove_prefix( std::min( hdr.find_first_not_of(" \t\r\n"), hdr.size() ) );
620 const auto lastNonWhitespace = hdr.find_last_not_of(" \t\r\n");
621 if ( lastNonWhitespace != hdr.npos )
622 hdr.remove_suffix( hdr.size() - (lastNonWhitespace + 1) );
623 else
624 hdr = std::string_view();
625
626 auto &rmode = std::get<running_t>( _runningMode );
627 if ( !hdr.size() ) {
628 return ( bytes );
629 }
630 if ( _expectedFileSize && rmode._partialHelper ) {
631 const auto &repSize = rmode._partialHelper->reportedFileSize ();
632 if ( repSize && repSize != _expectedFileSize ) {
633 rmode._cachedResult = NetworkRequestErrorPrivate::customError( NetworkRequestError::InternalError, "Reported downloaded data length is not what was expected." );
634 return 0;
635 }
636 }
637 if ( zypp::strv::hasPrefixCI( hdr, "HTTP/" ) ) {
638
639 long statuscode = 0;
640 (void)curl_easy_getinfo( _easyHandle, CURLINFO_RESPONSE_CODE, &statuscode);
641
642 // if we have a status 204 we need to create a empty file
643 if( statuscode == 204 && !( _options & NetworkRequest::ConnectionTest ) && !( _options & NetworkRequest::HeadRequest ) )
645
646 } else if ( zypp::strv::hasPrefixCI( hdr, "Location:" ) ) {
647 _lastRedirect = hdr.substr( 9 );
648 DBG << _easyHandle << " " << "redirecting to " << _lastRedirect << std::endl;
649
650 } else if ( zypp::strv::hasPrefixCI( hdr, "Content-Length:") ) {
651 auto lenStr = str::trim( hdr.substr( 15 ), zypp::str::TRIM );
652 auto str = std::string ( lenStr.data(), lenStr.length() );
653 auto len = zypp::str::strtonum<typename zypp::ByteCount::SizeType>( str.data() );
654 if ( len > 0 ) {
655 DBG << _easyHandle << " " << "Got Content-Length Header: " << len << std::endl;
656 rmode._contentLenght = zypp::ByteCount(len, zypp::ByteCount::B);
657 }
658 }
659 }
660
661 return bytes;
662 }
663
664 size_t NetworkRequestPrivate::writefunction( char *data, std::optional<off_t> offset, size_t max )
665 {
667
668 //it is valid to call this function with no data to write, just return OK
669 if ( max == 0)
670 return 0;
671
672 //in case of a HEAD request, we do not write anything
674 return ( max );
675 }
676
677 auto &rmode = std::get<running_t>( _runningMode );
678
679 // if we have no open file create or open it
680 if ( !assertOutputFile() )
681 return 0;
682
683 if ( offset ) {
684 // seek to the given offset
685 if ( fseek( rmode._outFile, *offset, SEEK_SET ) != 0 ) {
687 "Unable to set output file pointer." );
688 return 0;
689 }
690 rmode._currentFileOffset = *offset;
691 }
692
693 if ( _expectedFileSize && rmode._partialHelper ) {
694 const auto &repSize = rmode._partialHelper->reportedFileSize ();
695 if ( repSize && repSize != _expectedFileSize ) {
696 rmode._cachedResult = NetworkRequestErrorPrivate::customError( NetworkRequestError::InternalError, "Reported downloaded data length is not what was expected." );
697 return 0;
698 }
699 }
700
701 //make sure we do not write after the expected file size
702 if ( _expectedFileSize && _expectedFileSize <= static_cast<zypp::ByteCount::SizeType>( rmode._currentFileOffset + max) ) {
703 rmode._cachedResult = NetworkRequestErrorPrivate::customError( NetworkRequestError::InternalError, "Downloaded data exceeds expected length." );
704 return 0;
705 }
706
707 auto written = fwrite( data, 1, max, rmode._outFile );
708 if ( written == 0 )
709 return 0;
710
711 // if we are not downloading in ranges, we can update the file digest on the fly if we have one
712 if ( !rmode._partialHelper && _fileVerification ) {
713 _fileVerification->_fileDigest.update( data, written );
714 }
715
716 rmode._currentFileOffset += written;
717
718 // count the number of real bytes we have downloaded so far
719 rmode._downloaded += written;
720 _sigBytesDownloaded.emit( *z_func(), rmode._downloaded );
721
722 return written;
723 }
724
726
727 NetworkRequest::NetworkRequest(zyppng::Url url, zypp::filesystem::Pathname targetFile, zyppng::NetworkRequest::FileMode fMode)
728 : Base ( *new NetworkRequestPrivate( std::move(url), std::move(targetFile), std::move(fMode), *this ) )
729 {
730 }
731
733 {
734 Z_D();
735
736 if ( d->_dispatcher )
737 d->_dispatcher->cancel( *this, "Request destroyed while still running" );
738 }
739
741 {
742 d_func()->_expectedFileSize = std::move( expectedFileSize );
743 }
744
745 void NetworkRequest::setPriority( NetworkRequest::Priority prio, bool triggerReschedule )
746 {
747 Z_D();
748 d->_priority = prio;
749 if ( state() == Pending && triggerReschedule && d->_dispatcher )
750 d->_dispatcher->reschedule();
751 }
752
754 {
755 return d_func()->_priority;
756 }
757
758 void NetworkRequest::setOptions( Options opt )
759 {
760 d_func()->_options = opt;
761 }
762
763 NetworkRequest::Options NetworkRequest::options() const
764 {
765 return d_func()->_options;
766 }
767
768 void NetworkRequest::addRequestRange(size_t start, size_t len, std::optional<zypp::Digest> &&digest, CheckSumBytes expectedChkSum , std::any userData, std::optional<size_t> digestCompareLen, std::optional<size_t> chksumpad )
769 {
770 Z_D();
771 if ( state() == Running )
772 return;
773
774 d->_requestedRanges.push_back( Range::make( start, len, std::move(digest), std::move( expectedChkSum ), std::move( userData ), digestCompareLen, chksumpad ) );
775 }
776
778 {
779 Z_D();
780 if ( state() == Running )
781 return;
782
783 d->_requestedRanges.push_back( std::move(range) );
784 auto &rng = d->_requestedRanges.back();
785 rng._rangeState = CurlMultiPartHandler::Pending;
786 rng.bytesWritten = 0;
787 if ( rng._digest )
788 rng._digest->reset();
789 }
790
792 {
793 Z_D();
794 if ( state() == Running )
795 return false;
796
797 zypp::Digest fDig;
798 if ( !fDig.create( expected.type () ) )
799 return false;
800
801 d->_fileVerification = NetworkRequestPrivate::FileVerifyInfo{
802 ._fileDigest = std::move(fDig),
803 ._fileChecksum = expected
804 };
805 return true;
806 }
807
809 {
810 Z_D();
811 if ( state() == Running )
812 return;
813 d->_requestedRanges.clear();
814 }
815
816 std::vector<NetworkRequest::Range> NetworkRequest::failedRanges() const
817 {
818 const auto mystate = state();
819 if ( mystate != Finished && mystate != Error )
820 return {};
821
822 Z_D();
823
824 std::vector<Range> failed;
825 for ( auto &r : d->_requestedRanges ) {
826 if ( r._rangeState != CurlMultiPartHandler::Finished ) {
827 failed.push_back( r.clone() );
828 }
829 }
830 return failed;
831 }
832
833 const std::vector<NetworkRequest::Range> &NetworkRequest::requestedRanges() const
834 {
835 return d_func()->_requestedRanges;
836 }
837
838 const std::string &NetworkRequest::lastRedirectInfo() const
839 {
840 return d_func()->_lastRedirect;
841 }
842
844 {
845 return d_func()->_easyHandle;
846 }
847
848 std::optional<zyppng::NetworkRequest::Timings> NetworkRequest::timings() const
849 {
850 const auto myerr = error();
851 const auto mystate = state();
852 if ( mystate != Finished )
853 return {};
854
855 Timings t;
856
857 auto getMeasurement = [ this ]( const CURLINFO info, std::chrono::microseconds &target ){
858 using FPSeconds = std::chrono::duration<double, std::chrono::seconds::period>;
859 double val = 0;
860 const auto res = curl_easy_getinfo( d_func()->_easyHandle, info, &val );
861 if ( CURLE_OK == res ) {
862 target = std::chrono::duration_cast<std::chrono::microseconds>( FPSeconds(val) );
863 }
864 };
865
866 getMeasurement( CURLINFO_NAMELOOKUP_TIME, t.namelookup );
867 getMeasurement( CURLINFO_CONNECT_TIME, t.connect);
868 getMeasurement( CURLINFO_APPCONNECT_TIME, t.appconnect);
869 getMeasurement( CURLINFO_PRETRANSFER_TIME , t.pretransfer);
870 getMeasurement( CURLINFO_TOTAL_TIME, t.total);
871 getMeasurement( CURLINFO_REDIRECT_TIME, t.redirect);
872
873 return t;
874 }
875
876 std::vector<char> NetworkRequest::peekData( off_t offset, size_t count ) const
877 {
878 Z_D();
879
880 if ( !std::holds_alternative<NetworkRequestPrivate::running_t>( d->_runningMode) )
881 return {};
882
883 const auto &rmode = std::get<NetworkRequestPrivate::running_t>( d->_runningMode );
884 return zypp::io::peek_data_fd( rmode._outFile, offset, count );
885 }
886
888 {
889 return d_func()->_url;
890 }
891
892 void NetworkRequest::setUrl(const Url &url)
893 {
894 Z_D();
896 return;
897
898 d->_url = url;
899 }
900
902 {
903 return d_func()->_targetFile;
904 }
905
907 {
908 Z_D();
910 return;
911 d->_targetFile = path;
912 }
913
915 {
916 return d_func()->_fMode;
917 }
918
920 {
921 Z_D();
923 return;
924 d->_fMode = std::move( mode );
925 }
926
927 std::string NetworkRequest::contentType() const
928 {
929 char *ptr = NULL;
930 if ( curl_easy_getinfo( d_func()->_easyHandle, CURLINFO_CONTENT_TYPE, &ptr ) == CURLE_OK && ptr )
931 return std::string(ptr);
932 return std::string();
933 }
934
936 {
937 return std::visit([](auto& arg) -> zypp::ByteCount {
938 using T = std::decay_t<decltype(arg)>;
939 if constexpr (std::is_same_v<T, NetworkRequestPrivate::pending_t> || std::is_same_v<T, NetworkRequestPrivate::prepareNextRangeBatch_t> )
940 return zypp::ByteCount(0);
941 else if constexpr (std::is_same_v<T, NetworkRequestPrivate::running_t>
942 || std::is_same_v<T, NetworkRequestPrivate::finished_t>)
943 return arg._contentLenght;
944 else
945 static_assert(always_false<T>::value, "Unhandled state type");
946 }, d_func()->_runningMode);
947 }
948
950 {
951 return std::visit([](auto& arg) -> zypp::ByteCount {
952 using T = std::decay_t<decltype(arg)>;
953 if constexpr (std::is_same_v<T, NetworkRequestPrivate::pending_t>)
954 return zypp::ByteCount();
955 else if constexpr (std::is_same_v<T, NetworkRequestPrivate::running_t>
956 || std::is_same_v<T, NetworkRequestPrivate::prepareNextRangeBatch_t>
957 || std::is_same_v<T, NetworkRequestPrivate::finished_t>)
958 return arg._downloaded;
959 else
960 static_assert(always_false<T>::value, "Unhandled state type");
961 }, d_func()->_runningMode);
962 }
963
965 {
966 return d_func()->_settings;
967 }
968
970 {
971 return std::visit([this](auto& arg) {
972 using T = std::decay_t<decltype(arg)>;
973 if constexpr (std::is_same_v<T, NetworkRequestPrivate::pending_t>)
974 return Pending;
975 else if constexpr (std::is_same_v<T, NetworkRequestPrivate::running_t> || std::is_same_v<T, NetworkRequestPrivate::prepareNextRangeBatch_t> )
976 return Running;
977 else if constexpr (std::is_same_v<T, NetworkRequestPrivate::finished_t>) {
978 if ( std::get<NetworkRequestPrivate::finished_t>( d_func()->_runningMode )._result.isError() )
979 return Error;
980 else
981 return Finished;
982 }
983 else
984 static_assert(always_false<T>::value, "Unhandled state type");
985 }, d_func()->_runningMode);
986 }
987
989 {
990 const auto s = state();
991 if ( s != Error && s != Finished )
992 return NetworkRequestError();
993 return std::get<NetworkRequestPrivate::finished_t>( d_func()->_runningMode)._result;
994 }
995
997 {
998 if ( !hasError() )
999 return std::string();
1000
1001 return error().nativeErrorString();
1002 }
1003
1005 {
1006 return error().isError();
1007 }
1008
1009 bool NetworkRequest::addRequestHeader( const std::string &header )
1010 {
1011 Z_D();
1012
1013 curl_slist *res = curl_slist_append( d->_headers ? d->_headers.get() : nullptr, header.c_str() );
1014 if ( !res )
1015 return false;
1016
1017 if ( !d->_headers )
1018 d->_headers = std::unique_ptr< curl_slist, decltype (&curl_slist_free_all) >( res, &curl_slist_free_all );
1019
1020 return true;
1021 }
1022
1024 {
1025 return d_func()->_sigStarted;
1026 }
1027
1029 {
1030 return d_func()->_sigBytesDownloaded;
1031 }
1032
1033 SignalProxy<void (NetworkRequest &req, off_t dltotal, off_t dlnow, off_t ultotal, off_t ulnow)> NetworkRequest::sigProgress()
1034 {
1035 return d_func()->_sigProgress;
1036 }
1037
1039 {
1040 return d_func()->_sigFinished;
1041 }
1042
1043}
ZYppCommitResult & _result
Store and operate with byte count.
Definition ByteCount.h:31
static const Unit B
1 Byte
Definition ByteCount.h:42
Unit::ValueType SizeType
Definition ByteCount.h:37
std::string type() const
Definition CheckSum.cc:167
Compute Message Digests (MD5, SHA1 etc)
Definition Digest.h:38
bool create(const std::string &name)
initialize creation of a new message digest
Definition Digest.cc:195
Base class for Exception.
Definition Exception.h:146
std::string asString() const
Error message provided by dumpOn as string.
Definition Exception.cc:75
const char * c_str() const
String representation.
Definition Pathname.h:110
const std::string & asString() const
String representation.
Definition Pathname.h:91
bool empty() const
Test for an empty path.
Definition Pathname.h:114
static long auth_type_str2long(std::string &auth_type_str)
Converts a string of comma separated list of authetication type names into a long of ORed CURLAUTH_* ...
Holds transfer setting.
long maxDownloadSpeed() const
Maximum download speed (bytes per second)
long connectTimeout() const
connection timeout
const std::string & authType() const
get the allowed authentication types
long timeout() const
transfer timeout
const Pathname & clientCertificatePath() const
SSL client certificate file.
std::string userPassword() const
returns the user and password as a user:pass string
long minDownloadSpeed() const
Minimum download speed (bytes per second) until the connection is dropped.
const Headers & headers() const
returns a list of all added headers (trimmed)
const std::string & proxy() const
proxy host
const Pathname & clientKeyPath() const
SSL client key file.
void setUserAgentString(std::string &&val_r)
sets the user agent ie: "Mozilla v3" (trims)
void addHeader(std::string &&val_r)
add a header, on the form "Foo: Bar" (trims)
std::string proxyUserPassword() const
returns the proxy user and password as a user:pass string
bool verifyHostEnabled() const
Whether to verify host for ssl.
const std::string & userAgentString() const
user agent string (trimmed)
bool headRequestsAllowed() const
whether HEAD requests are allowed
bool proxyEnabled() const
proxy is enabled
const std::string & proxyUsername() const
proxy auth username
const Pathname & certificateAuthoritiesPath() const
SSL certificate authorities path ( default: /etc/ssl/certs )
bool verifyPeerEnabled() const
Whether to verify peer for ssl.
The CurlMultiPartHandler class.
const std::string & lastErrorMessage() const
static zyppng::NetworkRequestError customError(NetworkRequestError::Type t, std::string &&errorMsg="", std::map< std::string, boost::any > &&extraInfo={})
The NetworkRequestError class Represents a error that occured in.
Type type() const
type Returns the type of the error
std::string nativeErrorString() const
bool isError() const
isError Will return true if this is a actual error
size_t headerfunction(char *ptr, size_t bytes) override
Definition request.cc:607
std::optional< FileVerifyInfo > _fileVerification
The digest for the full file.
Definition request_p.h:116
enum zyppng::NetworkRequestPrivate::ProtocolMode _protocolMode
const std::string _currentCookieFile
Definition request_p.h:122
Signal< void(NetworkRequest &req, zypp::ByteCount count)> _sigBytesDownloaded
Definition request_p.h:129
NetworkRequestDispatcher * _dispatcher
Definition request_p.h:125
std::vector< NetworkRequest::Range > _requestedRanges
the requested ranges that need to be downloaded
Definition request_p.h:110
size_t writefunction(char *ptr, std::optional< off_t > offset, size_t bytes) override
Definition request.cc:664
static int curlProgressCallback(void *clientp, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow)
Definition request.cc:581
std::string errorMessage() const
Definition request.cc:567
Signal< void(NetworkRequest &req)> _sigStarted
Definition request_p.h:128
NetworkRequest::FileMode _fMode
Definition request_p.h:118
std::variant< pending_t, running_t, prepareNextRangeBatch_t, finished_t > _runningMode
Definition request_p.h:186
bool initialize(std::string &errBuf)
Definition request.cc:91
void onActivityTimeout(Timer &)
Definition request.cc:558
Signal< void(NetworkRequest &req, off_t dltotal, off_t dlnow, off_t ultotal, off_t ulnow)> _sigProgress
Definition request_p.h:130
std::string _lastRedirect
to log/report redirections
Definition request_p.h:121
NetworkRequest::Options _options
Definition request_p.h:108
bool prepareToContinue(std::string &errBuf)
Definition request.cc:414
void setResult(NetworkRequestError &&err)
Definition request.cc:489
std::array< char, CURL_ERROR_SIZE+1 > _errorBuf
Definition request_p.h:94
bool setupHandle(std::string &errBuf)
Definition request.cc:103
NetworkRequestPrivate(Url &&url, zypp::Pathname &&targetFile, NetworkRequest::FileMode fMode, NetworkRequest &p)
Definition request.cc:73
TransferSettings _settings
Definition request_p.h:107
void setCurlOption(CURLoption opt, T data)
Definition request_p.h:97
zypp::ByteCount _expectedFileSize
Definition request_p.h:109
Signal< void(NetworkRequest &req, const NetworkRequestError &err)> _sigFinished
Definition request_p.h:131
std::unique_ptr< curl_slist, decltype(&curl_slist_free_all) > _headers
Definition request_p.h:138
bool setExpectedFileChecksum(const zypp::CheckSum &expected)
Definition request.cc:791
zypp::ByteCount reportedByteCount() const
Returns the number of bytes that are reported from the backend as the full download size,...
Definition request.cc:935
const zypp::Pathname & targetFilePath() const
Returns the target filename path.
Definition request.cc:901
zypp::ByteCount downloadedByteCount() const
Returns the number of already downloaded bytes as reported by the backend.
Definition request.cc:949
void setUrl(const Url &url)
This will change the URL of the request.
Definition request.cc:892
void setExpectedFileSize(zypp::ByteCount expectedFileSize)
Definition request.cc:740
virtual ~NetworkRequest()
Definition request.cc:732
void setPriority(Priority prio, bool triggerReschedule=true)
Definition request.cc:745
std::vector< char > peekData(off_t offset, size_t count) const
Definition request.cc:876
std::string contentType() const
Returns the content type as reported from the server.
Definition request.cc:927
void setFileOpenMode(FileMode mode)
Sets the file open mode to mode.
Definition request.cc:919
bool addRequestHeader(const std::string &header)
Definition request.cc:1009
void setOptions(Options opt)
Definition request.cc:758
FileMode fileOpenMode() const
Returns the currently configured file open mode.
Definition request.cc:914
bool hasError() const
Checks if there was a error with the request.
Definition request.cc:1004
State state() const
Returns the current state the HttpDownloadRequest is in.
Definition request.cc:969
SignalProxy< void(NetworkRequest &req, const NetworkRequestError &err)> sigFinished()
Signals that the download finished.
Definition request.cc:1038
UByteArray CheckSumBytes
Definition request.h:49
Options options() const
Definition request.cc:763
SignalProxy< void(NetworkRequest &req, zypp::ByteCount count)> sigBytesDownloaded()
Signals that new data has been downloaded, this is only the payload and does not include control data...
Definition request.cc:1028
std::optional< Timings > timings() const
After the request is finished query the timings that were collected during download.
Definition request.cc:848
std::string extendedErrorString() const
In some cases, curl can provide extended error information collected at runtime.
Definition request.cc:996
Priority priority() const
Definition request.cc:753
NetworkRequestError error() const
Returns the last set Error.
Definition request.cc:988
void setTargetFilePath(const zypp::Pathname &path)
Changes the target file path of the download.
Definition request.cc:906
void * nativeHandle() const
Definition request.cc:843
void addRequestRange(size_t start, size_t len=0, std::optional< zypp::Digest > &&digest={}, CheckSumBytes expectedChkSum=CheckSumBytes(), std::any userData=std::any(), std::optional< size_t > digestCompareLen={}, std::optional< size_t > chksumpad={})
Definition request.cc:768
std::vector< Range > failedRanges() const
Definition request.cc:816
const std::vector< Range > & requestedRanges() const
Definition request.cc:833
SignalProxy< void(NetworkRequest &req)> sigStarted()
Signals that the dispatcher dequeued the request and actually starts downloading data.
Definition request.cc:1023
SignalProxy< void(NetworkRequest &req, off_t dltotal, off_t dlnow, off_t ultotal, off_t ulnow)> sigProgress()
Signals if there was data read from the download.
Definition request.cc:1033
TransferSettings & transferSettings()
Definition request.cc:964
const std::string & lastRedirectInfo() const
Definition request.cc:838
#define EXPLICITLY_NO_PROXY
#define MIL_MEDIA
#define DBG_MEDIA
std::string curlUnEscape(std::string text_r)
void setupZYPP_MEDIA_CURL_DEBUG(CURL *curl)
Setup CURLOPT_VERBOSE and CURLOPT_DEBUGFUNCTION according to env::ZYPP_MEDIA_CURL_DEBUG.
CURLcode setCurlRedirProtocols(CURL *curl, bool enableHttp)
Definition Arch.h:364
String related utilities and Regular expression matching.
int ZYPP_MEDIA_CURL_IPRESOLVE()
4/6 to force IPv4/v6
Definition curlhelper.cc:45
int assert_file_mode(const Pathname &path, unsigned mode)
Like assert_file but enforce mode even if the file already exists.
Definition PathInfo.cc:1202
constexpr bool always_false
Definition PathInfo.cc:544
std::vector< char > peek_data_fd(FILE *fd, off_t offset, size_t count)
Definition IOTools.cc:171
std::string form(const char *format,...) __attribute__((format(printf
Printf style construction of std::string.
Definition String.cc:36
bool strToBool(const C_Str &str, bool default_r)
Parse str into a bool depending on the default value.
Definition String.h:429
std::string trim(const std::string &s, const Trim trim_r)
Definition String.cc:223
Easy-to use interface to the ZYPP dependency resolver.
ZYPP_IMPL_PRIVATE(Provide)
Structure holding values of curlrc options.
Definition curlconfig.h:27
std::string proxyuserpwd
Definition curlconfig.h:49
static int parseConfig(CurlConfig &config, const std::string &filename="")
Parse a curlrc file and store the result in the config structure.
Definition curlconfig.cc:24
Convenient building of std::string with boost::format.
Definition String.h:253
static Range make(size_t start, size_t len=0, std::optional< zypp::Digest > &&digest={}, CheckSumBytes &&expectedChkSum=CheckSumBytes(), std::any &&userData=std::any(), std::optional< size_t > digestCompareLen={}, std::optional< size_t > _dataBlockPadding={})
running_t(pending_t &&prevState)
Definition request.cc:63
std::chrono::microseconds appconnect
Definition request.h:81
std::chrono::microseconds redirect
Definition request.h:84
std::chrono::microseconds pretransfer
Definition request.h:82
std::chrono::microseconds total
Definition request.h:83
std::chrono::microseconds namelookup
Definition request.h:79
std::chrono::microseconds connect
Definition request.h:80
#define nullptr
Definition Easy.h:55
#define ZYPP_CAUGHT(EXCPT)
Drops a logline telling the Exception was caught (in order to handle it).
Definition Exception.h:436
#define ZYPP_THROW(EXCPT)
Drops a logline and throws the Exception.
Definition Exception.h:428
#define DBG
Definition Logger.h:95
#define MIL
Definition Logger.h:96