download_helper.cc 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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. };
  160. static std::set<std::string> requestOptions
  161. (vbegin(REQUEST_OPTIONS), vend(REQUEST_OPTIONS));
  162. return requestOptions;
  163. }
  164. static void unfoldURI
  165. (std::vector<std::string>& result, const std::vector<std::string>& args)
  166. {
  167. ParameterizedStringParser p;
  168. PStringBuildVisitor v;
  169. for(std::vector<std::string>::const_iterator itr = args.begin(),
  170. eoi = args.end(); itr != eoi; ++itr) {
  171. v.reset();
  172. p.parse(*itr)->accept(v);
  173. result.insert(result.end(), v.getURIs().begin(), v.getURIs().end());
  174. }
  175. }
  176. template<typename InputIterator>
  177. static void splitURI(std::vector<std::string>& result,
  178. InputIterator begin,
  179. InputIterator end,
  180. size_t numSplit)
  181. {
  182. size_t numURIs = std::distance(begin, end);
  183. if(numURIs >= numSplit) {
  184. result.insert(result.end(), begin, end);
  185. } else if(numURIs > 0) {
  186. for(size_t i = 0; i < numSplit/numURIs; ++i) {
  187. result.insert(result.end(), begin, end);
  188. }
  189. result.insert(result.end(), begin, begin+(numSplit%numURIs));
  190. }
  191. }
  192. static SharedHandle<RequestGroup> createRequestGroup
  193. (const SharedHandle<Option>& option, const std::vector<std::string>& uris,
  194. bool useOutOption = false)
  195. {
  196. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  197. SharedHandle<DownloadContext> dctx
  198. (new DownloadContext
  199. (option->getAsInt(PREF_SEGMENT_SIZE),
  200. 0,
  201. useOutOption&&!option->blank(PREF_OUT)?
  202. util::applyDir(option->get(PREF_DIR), option->get(PREF_OUT)):A2STR::NIL));
  203. dctx->setDir(option->get(PREF_DIR));
  204. dctx->getFirstFileEntry()->setUris(uris);
  205. rg->setDownloadContext(dctx);
  206. return rg;
  207. }
  208. static SharedHandle<MetadataInfo> createMetadataInfo(const std::string& uri)
  209. {
  210. return SharedHandle<MetadataInfo>(new MetadataInfo(uri));
  211. }
  212. static SharedHandle<MetadataInfo> createMetadataInfoDataOnly()
  213. {
  214. return SharedHandle<MetadataInfo>(new MetadataInfo());
  215. }
  216. #ifdef ENABLE_BITTORRENT
  217. static
  218. SharedHandle<RequestGroup>
  219. createBtRequestGroup(const std::string& torrentFilePath,
  220. const SharedHandle<Option>& option,
  221. const std::vector<std::string>& auxUris,
  222. const std::string& torrentData = "")
  223. {
  224. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  225. SharedHandle<DownloadContext> dctx(new DownloadContext());
  226. dctx->setDir(option->get(PREF_DIR));
  227. if(torrentData.empty()) {
  228. bittorrent::load(torrentFilePath, dctx, auxUris);// may throw exception
  229. rg->setMetadataInfo(createMetadataInfo(torrentFilePath));
  230. } else {
  231. bittorrent::loadFromMemory(torrentData, dctx, auxUris, "default"); // may
  232. // throw
  233. // exception
  234. rg->setMetadataInfo(createMetadataInfoDataOnly());
  235. }
  236. dctx->setFileFilter(util::parseIntRange(option->get(PREF_SELECT_FILE)));
  237. std::istringstream indexOutIn(option->get(PREF_INDEX_OUT));
  238. std::map<size_t, std::string> indexPathMap =
  239. util::createIndexPathMap(indexOutIn);
  240. for(std::map<size_t, std::string>::const_iterator i = indexPathMap.begin(),
  241. eoi = indexPathMap.end(); i != eoi; ++i) {
  242. dctx->setFilePathWithIndex
  243. ((*i).first, util::applyDir(dctx->getDir(), (*i).second));
  244. }
  245. rg->setDownloadContext(dctx);
  246. // Remove "metalink" from Accept Type list to avoid server from
  247. // responding Metalink file for web-seeding URIs.
  248. util::removeMetalinkContentTypes(rg);
  249. return rg;
  250. }
  251. static
  252. SharedHandle<RequestGroup>
  253. createBtMagnetRequestGroup(const std::string& magnetLink,
  254. const SharedHandle<Option>& option,
  255. const std::vector<std::string>& auxUris)
  256. {
  257. SharedHandle<RequestGroup> rg(new RequestGroup(option));
  258. SharedHandle<DownloadContext> dctx
  259. (new DownloadContext(METADATA_PIECE_SIZE, 0,
  260. A2STR::NIL));
  261. dctx->setDir(A2STR::NIL);
  262. // We only know info hash. Total Length is unknown at this moment.
  263. dctx->markTotalLengthIsUnknown();
  264. rg->setFileAllocationEnabled(false);
  265. rg->setPreLocalFileCheckEnabled(false);
  266. bittorrent::loadMagnet(magnetLink, dctx);
  267. SharedHandle<TorrentAttribute> torrentAttrs =
  268. bittorrent::getTorrentAttrs(dctx);
  269. dctx->getFirstFileEntry()->setPath(torrentAttrs->name);
  270. rg->setDownloadContext(dctx);
  271. rg->clearPostDownloadHandler();
  272. rg->addPostDownloadHandler
  273. (SharedHandle<UTMetadataPostDownloadHandler>
  274. (new UTMetadataPostDownloadHandler()));
  275. rg->setDiskWriterFactory
  276. (SharedHandle<DiskWriterFactory>(new ByteArrayDiskWriterFactory()));
  277. rg->setMetadataInfo(createMetadataInfo(magnetLink));
  278. return rg;
  279. }
  280. void createRequestGroupForBitTorrent
  281. (std::vector<SharedHandle<RequestGroup> >& result,
  282. const SharedHandle<Option>& option,
  283. const std::vector<std::string>& uris,
  284. const std::string& torrentData)
  285. {
  286. std::vector<std::string> nargs;
  287. if(option->get(PREF_PARAMETERIZED_URI) == V_TRUE) {
  288. unfoldURI(nargs, uris);
  289. } else {
  290. nargs = uris;
  291. }
  292. // we ignore -Z option here
  293. size_t numSplit = option->getAsInt(PREF_SPLIT);
  294. std::vector<std::string> auxUris;
  295. splitURI(auxUris, nargs.begin(), nargs.end(), numSplit);
  296. SharedHandle<RequestGroup> rg =
  297. createBtRequestGroup(option->get(PREF_TORRENT_FILE), option, auxUris,
  298. torrentData);
  299. rg->setNumConcurrentCommand(numSplit);
  300. result.push_back(rg);
  301. }
  302. #endif // ENABLE_BITTORRENT
  303. #ifdef ENABLE_METALINK
  304. void createRequestGroupForMetalink
  305. (std::vector<SharedHandle<RequestGroup> >& result,
  306. const SharedHandle<Option>& option,
  307. const std::string& metalinkData)
  308. {
  309. if(metalinkData.empty()) {
  310. Metalink2RequestGroup().generate(result,
  311. option->get(PREF_METALINK_FILE),
  312. option);
  313. } else {
  314. SharedHandle<ByteArrayDiskWriter> dw(new ByteArrayDiskWriter());
  315. dw->setString(metalinkData);
  316. Metalink2RequestGroup().generate(result, dw, option);
  317. }
  318. }
  319. #endif // ENABLE_METALINK
  320. class AccRequestGroup {
  321. private:
  322. std::vector<SharedHandle<RequestGroup> >& requestGroups_;
  323. ProtocolDetector detector_;
  324. SharedHandle<Option> option_;
  325. bool ignoreLocalPath_;
  326. public:
  327. AccRequestGroup(std::vector<SharedHandle<RequestGroup> >& requestGroups,
  328. const SharedHandle<Option>& option,
  329. bool ignoreLocalPath = false):
  330. requestGroups_(requestGroups), option_(option),
  331. ignoreLocalPath_(ignoreLocalPath) {}
  332. void
  333. operator()(const std::string& uri)
  334. {
  335. if(detector_.isStreamProtocol(uri)) {
  336. std::vector<std::string> streamURIs;
  337. size_t numSplit = option_->getAsInt(PREF_SPLIT);
  338. for(size_t i = 0; i < numSplit; ++i) {
  339. streamURIs.push_back(uri);
  340. }
  341. SharedHandle<RequestGroup> rg =
  342. createRequestGroup(option_, streamURIs);
  343. rg->setNumConcurrentCommand(numSplit);
  344. requestGroups_.push_back(rg);
  345. }
  346. #ifdef ENABLE_BITTORRENT
  347. else if(detector_.guessTorrentMagnet(uri)) {
  348. try {
  349. SharedHandle<RequestGroup> group =
  350. createBtMagnetRequestGroup(uri, option_, std::vector<std::string>());
  351. requestGroups_.push_back(group);
  352. } catch(RecoverableException& e) {
  353. // error occurred while parsing torrent file.
  354. // We simply ignore it.
  355. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  356. }
  357. } else if(!ignoreLocalPath_ && detector_.guessTorrentFile(uri)) {
  358. try {
  359. requestGroups_.push_back
  360. (createBtRequestGroup(uri, option_, std::vector<std::string>()));
  361. } catch(RecoverableException& e) {
  362. // error occurred while parsing torrent file.
  363. // We simply ignore it.
  364. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  365. }
  366. }
  367. #endif // ENABLE_BITTORRENT
  368. #ifdef ENABLE_METALINK
  369. else if(!ignoreLocalPath_ && detector_.guessMetalinkFile(uri)) {
  370. try {
  371. Metalink2RequestGroup().generate(requestGroups_, uri, option_);
  372. } catch(RecoverableException& e) {
  373. // error occurred while parsing metalink file.
  374. // We simply ignore it.
  375. LogFactory::getInstance()->error(EX_EXCEPTION_CAUGHT, e);
  376. }
  377. }
  378. #endif // ENABLE_METALINK
  379. else {
  380. LogFactory::getInstance()->error(MSG_UNRECOGNIZED_URI, (uri).c_str());
  381. }
  382. }
  383. };
  384. class StreamProtocolFilter {
  385. private:
  386. ProtocolDetector detector_;
  387. public:
  388. bool operator()(const std::string& uri) {
  389. return detector_.isStreamProtocol(uri);
  390. }
  391. };
  392. void createRequestGroupForUri
  393. (std::vector<SharedHandle<RequestGroup> >& result,
  394. const SharedHandle<Option>& option,
  395. const std::vector<std::string>& uris,
  396. bool ignoreForceSequential,
  397. bool ignoreLocalPath)
  398. {
  399. std::vector<std::string> nargs;
  400. if(option->get(PREF_PARAMETERIZED_URI) == V_TRUE) {
  401. unfoldURI(nargs, uris);
  402. } else {
  403. nargs = uris;
  404. }
  405. if(!ignoreForceSequential && option->get(PREF_FORCE_SEQUENTIAL) == V_TRUE) {
  406. std::for_each(nargs.begin(), nargs.end(),
  407. AccRequestGroup(result, option, ignoreLocalPath));
  408. } else {
  409. std::vector<std::string>::iterator strmProtoEnd =
  410. std::stable_partition(nargs.begin(), nargs.end(), StreamProtocolFilter());
  411. // let's process http/ftp protocols first.
  412. if(nargs.begin() != strmProtoEnd) {
  413. size_t numSplit = option->getAsInt(PREF_SPLIT);
  414. std::vector<std::string> streamURIs;
  415. splitURI(streamURIs, nargs.begin(), strmProtoEnd,
  416. numSplit);
  417. SharedHandle<RequestGroup> rg =
  418. createRequestGroup(option, streamURIs, true);
  419. rg->setNumConcurrentCommand(numSplit);
  420. result.push_back(rg);
  421. }
  422. // process remaining URIs(local metalink, BitTorrent files)
  423. std::for_each(strmProtoEnd, nargs.end(),
  424. AccRequestGroup(result, option, ignoreLocalPath));
  425. }
  426. }
  427. static void createRequestGroupForUriList
  428. (std::vector<SharedHandle<RequestGroup> >& result,
  429. const SharedHandle<Option>& option,
  430. std::istream& in)
  431. {
  432. UriListParser p(in);
  433. while(p.hasNext()) {
  434. std::vector<std::string> uris;
  435. SharedHandle<Option> tempOption(new Option());
  436. p.parseNext(uris, *tempOption.get());
  437. if(uris.empty()) {
  438. continue;
  439. }
  440. SharedHandle<Option> requestOption(new Option(*option.get()));
  441. for(std::set<std::string>::const_iterator i =
  442. listRequestOptions().begin(), eoi = listRequestOptions().end();
  443. i != eoi; ++i) {
  444. if(tempOption->defined(*i)) {
  445. requestOption->put(*i, tempOption->get(*i));
  446. }
  447. }
  448. createRequestGroupForUri(result, requestOption, uris);
  449. }
  450. }
  451. void createRequestGroupForUriList
  452. (std::vector<SharedHandle<RequestGroup> >& result,
  453. const SharedHandle<Option>& option)
  454. {
  455. if(option->get(PREF_INPUT_FILE) == "-") {
  456. createRequestGroupForUriList(result, option, std::cin);
  457. } else {
  458. if(!File(option->get(PREF_INPUT_FILE)).isFile()) {
  459. throw DL_ABORT_EX
  460. (StringFormat(EX_FILE_OPEN, option->get(PREF_INPUT_FILE).c_str(),
  461. "No such file").str());
  462. }
  463. std::ifstream f(option->get(PREF_INPUT_FILE).c_str(), std::ios::binary);
  464. createRequestGroupForUriList(result, option, f);
  465. }
  466. }
  467. SharedHandle<MetadataInfo>
  468. createMetadataInfoFromFirstFileEntry(const SharedHandle<DownloadContext>& dctx)
  469. {
  470. if(dctx->getFileEntries().empty()) {
  471. return SharedHandle<MetadataInfo>();
  472. } else {
  473. std::vector<std::string> uris;
  474. dctx->getFileEntries()[0]->getUris(uris);
  475. if(uris.empty()) {
  476. return SharedHandle<MetadataInfo>();
  477. }
  478. return SharedHandle<MetadataInfo>(new MetadataInfo(uris[0]));
  479. }
  480. }
  481. } // namespace aria2