download_helper.cc 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "download_helper.h"
  36. #include <iostream>
  37. #include <fstream>
  38. #include <algorithm>
  39. #include <sstream>
  40. #include "RequestGroup.h"
  41. #include "Option.h"
  42. #include "prefs.h"
  43. #include "Metalink2RequestGroup.h"
  44. #include "ProtocolDetector.h"
  45. #include "ParameterizedStringParser.h"
  46. #include "PStringBuildVisitor.h"
  47. #include "UriListParser.h"
  48. #include "DownloadContext.h"
  49. #include "RecoverableException.h"
  50. #include "DlAbortEx.h"
  51. #include "message.h"
  52. #include "StringFormat.h"
  53. #include "FileEntry.h"
  54. #include "LogFactory.h"
  55. #include "File.h"
  56. #include "util.h"
  57. #include "array_fun.h"
  58. #include "OptionHandler.h"
  59. #include "ByteArrayDiskWriter.h"
  60. #include "a2functional.h"
  61. #include "ByteArrayDiskWriterFactory.h"
  62. #include "MetadataInfo.h"
  63. #ifdef ENABLE_BITTORRENT
  64. # include "bittorrent_helper.h"
  65. # include "BtConstants.h"
  66. # include "UTMetadataPostDownloadHandler.h"
  67. #endif // ENABLE_BITTORRENT
  68. namespace aria2 {
  69. const std::set<std::string>& listRequestOptions()
  70. {
  71. static const std::string REQUEST_OPTIONS[] = {
  72. PREF_DIR,
  73. PREF_CHECK_INTEGRITY,
  74. PREF_CONTINUE,
  75. PREF_ALL_PROXY,
  76. PREF_ALL_PROXY_USER,
  77. PREF_ALL_PROXY_PASSWD,
  78. PREF_CONNECT_TIMEOUT,
  79. PREF_DRY_RUN,
  80. PREF_LOWEST_SPEED_LIMIT,
  81. PREF_MAX_FILE_NOT_FOUND,
  82. PREF_MAX_TRIES,
  83. PREF_NO_PROXY,
  84. PREF_OUT,
  85. PREF_PROXY_METHOD,
  86. PREF_REMOTE_TIME,
  87. PREF_SPLIT,
  88. PREF_TIMEOUT,
  89. PREF_HTTP_AUTH_CHALLENGE,
  90. PREF_HTTP_NO_CACHE,
  91. PREF_HTTP_USER,
  92. PREF_HTTP_PASSWD,
  93. PREF_HTTP_PROXY,
  94. PREF_HTTP_PROXY_USER,
  95. PREF_HTTP_PROXY_PASSWD,
  96. PREF_HTTPS_PROXY,
  97. PREF_HTTPS_PROXY_USER,
  98. PREF_HTTPS_PROXY_PASSWD,
  99. PREF_REFERER,
  100. PREF_ENABLE_HTTP_KEEP_ALIVE,
  101. PREF_ENABLE_HTTP_PIPELINING,
  102. PREF_HEADER,
  103. PREF_USE_HEAD,
  104. PREF_USER_AGENT,
  105. PREF_FTP_USER,
  106. PREF_FTP_PASSWD,
  107. PREF_FTP_PASV,
  108. PREF_FTP_PROXY,
  109. PREF_FTP_PROXY_USER,
  110. PREF_FTP_PROXY_PASSWD,
  111. PREF_FTP_TYPE,
  112. PREF_FTP_REUSE_CONNECTION,
  113. PREF_NO_NETRC,
  114. PREF_REUSE_URI,
  115. PREF_SELECT_FILE,
  116. PREF_BT_ENABLE_LPD,
  117. PREF_BT_EXTERNAL_IP,
  118. PREF_BT_HASH_CHECK_SEED,
  119. PREF_BT_MAX_OPEN_FILES,
  120. PREF_BT_MAX_PEERS,
  121. PREF_BT_METADATA_ONLY,
  122. PREF_BT_MIN_CRYPTO_LEVEL,
  123. PREF_BT_PRIORITIZE_PIECE,
  124. PREF_BT_REQUIRE_CRYPTO,
  125. PREF_BT_REQUEST_PEER_SPEED_LIMIT,
  126. PREF_BT_SAVE_METADATA,
  127. PREF_BT_SEED_UNVERIFIED,
  128. PREF_BT_STOP_TIMEOUT,
  129. PREF_BT_TRACKER_INTERVAL,
  130. PREF_BT_TRACKER_TIMEOUT,
  131. PREF_BT_TRACKER_CONNECT_TIMEOUT,
  132. PREF_ENABLE_PEER_EXCHANGE,
  133. PREF_FOLLOW_TORRENT,
  134. PREF_INDEX_OUT,
  135. PREF_MAX_UPLOAD_LIMIT,
  136. PREF_SEED_RATIO,
  137. PREF_SEED_TIME,
  138. PREF_FOLLOW_METALINK,
  139. PREF_METALINK_SERVERS,
  140. PREF_METALINK_LANGUAGE,
  141. PREF_METALINK_LOCATION,
  142. PREF_METALINK_OS,
  143. PREF_METALINK_VERSION,
  144. PREF_METALINK_PREFERRED_PROTOCOL,
  145. PREF_METALINK_ENABLE_UNIQUE_PROTOCOL,
  146. PREF_ALLOW_OVERWRITE,
  147. PREF_ALLOW_PIECE_LENGTH_CHANGE,
  148. PREF_ASYNC_DNS,
  149. PREF_AUTO_FILE_RENAMING,
  150. PREF_FILE_ALLOCATION,
  151. PREF_MAX_DOWNLOAD_LIMIT,
  152. PREF_NO_FILE_ALLOCATION_LIMIT,
  153. PREF_PARAMETERIZED_URI,
  154. PREF_REALTIME_CHUNK_CHECKSUM,
  155. PREF_REMOVE_CONTROL_FILE,
  156. PREF_ALWAYS_RESUME,
  157. PREF_MAX_RESUME_FAILURE_TRIES,
  158. PREF_HTTP_ACCEPT_GZIP,
  159. PREF_MAX_CONNECTION_PER_SERVER,
  160. PREF_MIN_SPLIT_SIZE,
  161. PREF_CONDITIONAL_GET,
  162. PREF_ENABLE_ASYNC_DNS6,
  163. PREF_BT_TRACKER,
  164. PREF_BT_EXCLUDE_TRACKER
  165. };
  166. static std::set<std::string> requestOptions
  167. (vbegin(REQUEST_OPTIONS), vend(REQUEST_OPTIONS));
  168. return requestOptions;
  169. }
  170. static void unfoldURI
  171. (std::vector<std::string>& result, const std::vector<std::string>& args)
  172. {
  173. ParameterizedStringParser p;
  174. PStringBuildVisitor v;
  175. for(std::vector<std::string>::const_iterator itr = args.begin(),
  176. eoi = args.end(); itr != eoi; ++itr) {
  177. v.reset();
  178. p.parse(*itr)->accept(v);
  179. result.insert(result.end(), v.getURIs().begin(), v.getURIs().end());
  180. }
  181. }
  182. template<typename InputIterator>
  183. static void splitURI(std::vector<std::string>& result,
  184. InputIterator begin,
  185. InputIterator end,
  186. size_t numSplit,
  187. size_t maxIter)
  188. {
  189. size_t numURIs = std::distance(begin, end);
  190. if(numURIs >= numSplit) {
  191. result.insert(result.end(), begin, end);
  192. } else if(numURIs > 0) {
  193. size_t num = std::min(numSplit/numURIs, maxIter);
  194. for(size_t i = 0; i < num; ++i) {
  195. result.insert(result.end(), begin, end);
  196. }
  197. if(num < maxIter) {
  198. result.insert(result.end(), begin, begin+(numSplit%numURIs));
  199. }
  200. }
  201. }
  202. static SharedHandle<RequestGroup> createRequestGroup
  203. (const SharedHandle<Option>& option, const std::vector<std::string>& uris,
  204. bool useOutOption = false)
  205. {
  206. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  207. SharedHandle<DownloadContext> dctx
  208. (new DownloadContext
  209. (option->getAsInt(PREF_SEGMENT_SIZE),
  210. 0,
  211. useOutOption&&!option->blank(PREF_OUT)?
  212. util::applyDir(option->get(PREF_DIR), option->get(PREF_OUT)):A2STR::NIL));
  213. dctx->setDir(option->get(PREF_DIR));
  214. dctx->getFirstFileEntry()->setUris(uris);
  215. dctx->getFirstFileEntry()->setMaxConnectionPerServer
  216. (option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER));
  217. rg->setDownloadContext(dctx);
  218. return rg;
  219. }
  220. static SharedHandle<MetadataInfo> createMetadataInfo(const std::string& uri)
  221. {
  222. return SharedHandle<MetadataInfo>(new MetadataInfo(uri));
  223. }
  224. static SharedHandle<MetadataInfo> createMetadataInfoDataOnly()
  225. {
  226. return SharedHandle<MetadataInfo>(new MetadataInfo());
  227. }
  228. #ifdef ENABLE_BITTORRENT
  229. static
  230. SharedHandle<RequestGroup>
  231. createBtRequestGroup(const std::string& torrentFilePath,
  232. const SharedHandle<Option>& option,
  233. const std::vector<std::string>& auxUris,
  234. const std::string& torrentData = "",
  235. bool adjustAnnounceUri = true)
  236. {
  237. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  238. SharedHandle<DownloadContext> dctx(new DownloadContext());
  239. dctx->setDir(option->get(PREF_DIR));
  240. if(torrentData.empty()) {
  241. bittorrent::load(torrentFilePath, dctx, auxUris);// may throw exception
  242. rg->setMetadataInfo(createMetadataInfo(torrentFilePath));
  243. } else {
  244. bittorrent::loadFromMemory(torrentData, dctx, auxUris, "default"); // may
  245. // throw
  246. // exception
  247. rg->setMetadataInfo(createMetadataInfoDataOnly());
  248. }
  249. if(adjustAnnounceUri) {
  250. bittorrent::adjustAnnounceUri(bittorrent::getTorrentAttrs(dctx), option);
  251. }
  252. dctx->setFileFilter(util::parseIntRange(option->get(PREF_SELECT_FILE)));
  253. std::istringstream indexOutIn(option->get(PREF_INDEX_OUT));
  254. std::map<size_t, std::string> indexPathMap =
  255. util::createIndexPathMap(indexOutIn);
  256. for(std::map<size_t, std::string>::const_iterator i = indexPathMap.begin(),
  257. eoi = indexPathMap.end(); i != eoi; ++i) {
  258. dctx->setFilePathWithIndex
  259. ((*i).first, util::applyDir(dctx->getDir(), (*i).second));
  260. }
  261. rg->setDownloadContext(dctx);
  262. // Remove "metalink" from Accept Type list to avoid server from
  263. // responding Metalink file for web-seeding URIs.
  264. util::removeMetalinkContentTypes(rg);
  265. return rg;
  266. }
  267. static
  268. SharedHandle<RequestGroup>
  269. createBtMagnetRequestGroup(const std::string& magnetLink,
  270. const SharedHandle<Option>& option,
  271. const std::vector<std::string>& auxUris)
  272. {
  273. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  274. SharedHandle<DownloadContext> dctx
  275. (new DownloadContext(METADATA_PIECE_SIZE, 0,
  276. A2STR::NIL));
  277. dctx->setDir(A2STR::NIL);
  278. // We only know info hash. Total Length is unknown at this moment.
  279. dctx->markTotalLengthIsUnknown();
  280. rg->setFileAllocationEnabled(false);
  281. rg->setPreLocalFileCheckEnabled(false);
  282. bittorrent::loadMagnet(magnetLink, dctx);
  283. SharedHandle<TorrentAttribute> torrentAttrs =
  284. bittorrent::getTorrentAttrs(dctx);
  285. bittorrent::adjustAnnounceUri(torrentAttrs, rg->getOption());
  286. dctx->getFirstFileEntry()->setPath(torrentAttrs->name);
  287. rg->setDownloadContext(dctx);
  288. rg->clearPostDownloadHandler();
  289. rg->addPostDownloadHandler
  290. (SharedHandle<UTMetadataPostDownloadHandler>
  291. (new UTMetadataPostDownloadHandler()));
  292. rg->setDiskWriterFactory
  293. (SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
  294. rg->setMetadataInfo(createMetadataInfo(magnetLink));
  295. return rg;
  296. }
  297. void createRequestGroupForBitTorrent
  298. (std::vector<SharedHandle<RequestGroup> >& result,
  299. const SharedHandle<Option>& option,
  300. const std::vector<std::string>& uris,
  301. const std::string& torrentData,
  302. bool adjustAnnounceUri)
  303. {
  304. std::vector<std::string> nargs;
  305. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  306. unfoldURI(nargs, uris);
  307. } else {
  308. nargs = uris;
  309. }
  310. // we ignore -Z option here
  311. size_t numSplit = option->getAsInt(PREF_SPLIT);
  312. SharedHandle<RequestGroup> rg =
  313. createBtRequestGroup(option->get(PREF_TORRENT_FILE), option, nargs,
  314. torrentData, adjustAnnounceUri);
  315. rg->setNumConcurrentCommand(numSplit);
  316. result.push_back(rg);
  317. }
  318. #endif // ENABLE_BITTORRENT
  319. #ifdef ENABLE_METALINK
  320. void createRequestGroupForMetalink
  321. (std::vector<SharedHandle<RequestGroup> >& result,
  322. const SharedHandle<Option>& option,
  323. const std::string& metalinkData)
  324. {
  325. if(metalinkData.empty()) {
  326. Metalink2RequestGroup().generate(result,
  327. option->get(PREF_METALINK_FILE),
  328. option);
  329. } else {
  330. SharedHandle<ByteArrayDiskWriter> dw(new ByteArrayDiskWriter());
  331. dw->setString(metalinkData);
  332. Metalink2RequestGroup().generate(result, dw, option);
  333. }
  334. }
  335. #endif // ENABLE_METALINK
  336. namespace {
  337. class AccRequestGroup {
  338. private:
  339. std::vector<SharedHandle<RequestGroup> >& requestGroups_;
  340. ProtocolDetector detector_;
  341. SharedHandle<Option> option_;
  342. bool ignoreLocalPath_;
  343. public:
  344. AccRequestGroup(std::vector<SharedHandle<RequestGroup> >& requestGroups,
  345. const SharedHandle<Option>& option,
  346. bool ignoreLocalPath = false):
  347. requestGroups_(requestGroups), option_(option),
  348. ignoreLocalPath_(ignoreLocalPath) {}
  349. void
  350. operator()(const std::string& uri)
  351. {
  352. if(detector_.isStreamProtocol(uri)) {
  353. std::vector<std::string> streamURIs;
  354. size_t numIter = option_->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  355. size_t numSplit = option_->getAsInt(PREF_SPLIT);
  356. size_t num = std::min(numIter, numSplit);
  357. for(size_t i = 0; i < num; ++i) {
  358. streamURIs.push_back(uri);
  359. }
  360. SharedHandle<RequestGroup> rg = createRequestGroup(option_, streamURIs);
  361. rg->setNumConcurrentCommand(numSplit);
  362. requestGroups_.push_back(rg);
  363. }
  364. #ifdef ENABLE_BITTORRENT
  365. else if(detector_.guessTorrentMagnet(uri)) {
  366. try {
  367. SharedHandle<RequestGroup> group =
  368. createBtMagnetRequestGroup(uri, option_, std::vector<std::string>());
  369. requestGroups_.push_back(group);
  370. } catch(RecoverableException& e) {
  371. // error occurred while parsing torrent file.
  372. // We simply ignore it.
  373. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  374. }
  375. } else if(!ignoreLocalPath_ && detector_.guessTorrentFile(uri)) {
  376. try {
  377. requestGroups_.push_back
  378. (createBtRequestGroup(uri, option_, std::vector<std::string>()));
  379. } catch(RecoverableException& e) {
  380. // error occurred while parsing torrent file.
  381. // We simply ignore it.
  382. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  383. }
  384. }
  385. #endif // ENABLE_BITTORRENT
  386. #ifdef ENABLE_METALINK
  387. else if(!ignoreLocalPath_ && detector_.guessMetalinkFile(uri)) {
  388. try {
  389. Metalink2RequestGroup().generate(requestGroups_, uri, option_);
  390. } catch(RecoverableException& e) {
  391. // error occurred while parsing metalink file.
  392. // We simply ignore it.
  393. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  394. }
  395. }
  396. #endif // ENABLE_METALINK
  397. else {
  398. LogFactory::getInstance()->error(MSG_UNRECOGNIZED_URI, (uri).c_str());
  399. }
  400. }
  401. };
  402. }
  403. namespace {
  404. class StreamProtocolFilter {
  405. private:
  406. ProtocolDetector detector_;
  407. public:
  408. bool operator()(const std::string& uri) {
  409. return detector_.isStreamProtocol(uri);
  410. }
  411. };
  412. }
  413. void createRequestGroupForUri
  414. (std::vector<SharedHandle<RequestGroup> >& result,
  415. const SharedHandle<Option>& option,
  416. const std::vector<std::string>& uris,
  417. bool ignoreForceSequential,
  418. bool ignoreLocalPath)
  419. {
  420. std::vector<std::string> nargs;
  421. if(option->get(PREF_PARAMETERIZED_URI) == A2_V_TRUE) {
  422. unfoldURI(nargs, uris);
  423. } else {
  424. nargs = uris;
  425. }
  426. if(!ignoreForceSequential && option->get(PREF_FORCE_SEQUENTIAL) == A2_V_TRUE) {
  427. std::for_each(nargs.begin(), nargs.end(),
  428. AccRequestGroup(result, option, ignoreLocalPath));
  429. } else {
  430. std::vector<std::string>::iterator strmProtoEnd =
  431. std::stable_partition(nargs.begin(), nargs.end(), StreamProtocolFilter());
  432. // let's process http/ftp protocols first.
  433. if(nargs.begin() != strmProtoEnd) {
  434. size_t numIter = option->getAsInt(PREF_MAX_CONNECTION_PER_SERVER);
  435. size_t numSplit = option->getAsInt(PREF_SPLIT);
  436. std::vector<std::string> streamURIs;
  437. splitURI(streamURIs, nargs.begin(), strmProtoEnd, numSplit, numIter);
  438. SharedHandle<RequestGroup> rg =
  439. createRequestGroup(option, streamURIs, true);
  440. rg->setNumConcurrentCommand(numSplit);
  441. result.push_back(rg);
  442. }
  443. // process remaining URIs(local metalink, BitTorrent files)
  444. std::for_each(strmProtoEnd, nargs.end(),
  445. AccRequestGroup(result, option, ignoreLocalPath));
  446. }
  447. }
  448. static void createRequestGroupForUriList
  449. (std::vector<SharedHandle<RequestGroup> >& result,
  450. const SharedHandle<Option>& option,
  451. std::istream& in)
  452. {
  453. UriListParser p(in);
  454. while(p.hasNext()) {
  455. std::vector<std::string> uris;
  456. SharedHandle<Option> tempOption(new Option());
  457. p.parseNext(uris, *tempOption.get());
  458. if(uris.empty()) {
  459. continue;
  460. }
  461. SharedHandle<Option> requestOption(new Option(*option.get()));
  462. for(std::set<std::string>::const_iterator i =
  463. listRequestOptions().begin(), eoi = listRequestOptions().end();
  464. i != eoi; ++i) {
  465. if(tempOption->defined(*i)) {
  466. requestOption->put(*i, tempOption->get(*i));
  467. }
  468. }
  469. createRequestGroupForUri(result, requestOption, uris);
  470. }
  471. }
  472. void createRequestGroupForUriList
  473. (std::vector<SharedHandle<RequestGroup> >& result,
  474. const SharedHandle<Option>& option)
  475. {
  476. if(option->get(PREF_INPUT_FILE) == "-") {
  477. createRequestGroupForUriList(result, option, std::cin);
  478. } else {
  479. if(!File(option->get(PREF_INPUT_FILE)).isFile()) {
  480. throw DL_ABORT_EX
  481. (StringFormat(EX_FILE_OPEN, option->get(PREF_INPUT_FILE).c_str(),
  482. "No such file").str());
  483. }
  484. std::ifstream f(option->get(PREF_INPUT_FILE).c_str(), std::ios::binary);
  485. createRequestGroupForUriList(result, option, f);
  486. }
  487. }
  488. SharedHandle<MetadataInfo>
  489. createMetadataInfoFromFirstFileEntry(const SharedHandle<DownloadContext>& dctx)
  490. {
  491. if(dctx->getFileEntries().empty()) {
  492. return SharedHandle<MetadataInfo>();
  493. } else {
  494. std::vector<std::string> uris;
  495. dctx->getFileEntries()[0]->getUris(uris);
  496. if(uris.empty()) {
  497. return SharedHandle<MetadataInfo>();
  498. }
  499. return SharedHandle<MetadataInfo>(new MetadataInfo(uris[0]));
  500. }
  501. }
  502. } // namespace aria2