download.pl 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. #!/usr/bin/env perl
  2. #
  3. # Copyright (C) 2006 OpenWrt.org
  4. # Copyright (C) 2016 LEDE project
  5. #
  6. # This is free software, licensed under the GNU General Public License v2.
  7. # See /LICENSE for more information.
  8. #
  9. use strict;
  10. use warnings;
  11. use File::Basename;
  12. use File::Copy;
  13. use Text::ParseWords;
  14. @ARGV > 2 or die "Syntax: $0 <target dir> <filename> <hash> <url filename> [<mirror> ...]\n";
  15. my $url_filename;
  16. my $target = glob(shift @ARGV);
  17. my $filename = shift @ARGV;
  18. my $file_hash = shift @ARGV;
  19. $url_filename = shift @ARGV unless $ARGV[0] =~ /:\/\//;
  20. my $scriptdir = dirname($0);
  21. my @mirrors;
  22. my $ok;
  23. my $check_certificate = $ENV{DOWNLOAD_CHECK_CERTIFICATE} eq "y";
  24. $url_filename or $url_filename = $filename;
  25. sub localmirrors {
  26. my @mlist;
  27. open LM, "$scriptdir/localmirrors" and do {
  28. while (<LM>) {
  29. chomp $_;
  30. push @mlist, $_ if $_;
  31. }
  32. close LM;
  33. };
  34. open CONFIG, "<".$ENV{'TOPDIR'}."/.config" and do {
  35. while (<CONFIG>) {
  36. /^CONFIG_LOCALMIRROR="(.+)"/ and do {
  37. chomp;
  38. my @local_mirrors = split(/;/, $1);
  39. push @mlist, @local_mirrors;
  40. };
  41. }
  42. close CONFIG;
  43. };
  44. my $mirror = $ENV{'DOWNLOAD_MIRROR'};
  45. $mirror and push @mlist, split(/;/, $mirror);
  46. return @mlist;
  47. }
  48. sub which($) {
  49. my $prog = shift;
  50. my $res = `command -v $prog`;
  51. $res or return undef;
  52. return $res;
  53. }
  54. sub hash_cmd() {
  55. my $len = length($file_hash);
  56. my $cmd;
  57. $len == 64 and return "$ENV{'MKHASH'} sha256";
  58. $len == 32 and return "$ENV{'MKHASH'} md5";
  59. return undef;
  60. }
  61. sub tool_present {
  62. my $tool_name = shift;
  63. my $compare_line = shift;
  64. my $present = 0;
  65. if (open TOOL, "$tool_name --version 2>/dev/null |") {
  66. if (defined(my $line = readline TOOL)) {
  67. $present = 1 if $line =~ /^$compare_line /;
  68. }
  69. close TOOL;
  70. }
  71. return $present
  72. }
  73. sub download_cmd {
  74. my $url = shift;
  75. my $filename = shift;
  76. my $additional_mirrors = join(" ", map "$_/$filename", @_);
  77. my @chArray = ('a'..'z', 'A'..'Z', 0..9);
  78. my $rfn = join '', "${filename}_", map{ $chArray[int rand @chArray] } 0..9;
  79. if (tool_present('aria2c', 'aria2')) {
  80. @mirrors=();
  81. return join(" ", "[ -d $ENV{'TMPDIR'}/aria2c ] || mkdir $ENV{'TMPDIR'}/aria2c;",
  82. "touch $ENV{'TMPDIR'}/aria2c/${rfn}_spp;",
  83. qw(aria2c --stderr -c -x2 -s10 -j10 -k1M), $url, $additional_mirrors,
  84. $check_certificate ? () : '--check-certificate=false',
  85. "--server-stat-of=$ENV{'TMPDIR'}/aria2c/${rfn}_spp",
  86. "--server-stat-if=$ENV{'TMPDIR'}/aria2c/${rfn}_spp",
  87. "-d $ENV{'TMPDIR'}/aria2c -o $rfn;",
  88. "cat $ENV{'TMPDIR'}/aria2c/$rfn;",
  89. "rm $ENV{'TMPDIR'}/aria2c/$rfn $ENV{'TMPDIR'}/aria2c/${rfn}_spp");
  90. } elsif (tool_present('curl', 'curl')) {
  91. return (qw(curl -f --connect-timeout 20 --retry 5 --location),
  92. $check_certificate ? () : '--insecure',
  93. shellwords($ENV{CURL_OPTIONS} || ''),
  94. $url);
  95. } else {
  96. return (qw(wget --tries=5 --timeout=20 --output-document=-),
  97. $check_certificate ? () : '--no-check-certificate',
  98. shellwords($ENV{WGET_OPTIONS} || ''),
  99. $url);
  100. }
  101. }
  102. my $hash_cmd = hash_cmd();
  103. $hash_cmd or ($file_hash eq "skip") or die "Cannot find appropriate hash command, ensure the provided hash is either a MD5 or SHA256 checksum.\n";
  104. sub download
  105. {
  106. my $mirror = shift;
  107. my $download_filename = shift;
  108. my @additional_mirrors = @_;
  109. $mirror =~ s!/$!!;
  110. if ($mirror =~ s!^file://!!) {
  111. if (! -d "$mirror") {
  112. print STDERR "Wrong local cache directory -$mirror-.\n";
  113. cleanup();
  114. return;
  115. }
  116. if (! -d "$target") {
  117. system("mkdir", "-p", "$target/");
  118. }
  119. if (! open TMPDLS, "find $mirror -follow -name $filename 2>/dev/null |") {
  120. print("Failed to search for $filename in $mirror\n");
  121. return;
  122. }
  123. my $link;
  124. while (defined(my $line = readline TMPDLS)) {
  125. chomp ($link = $line);
  126. if ($. > 1) {
  127. print("$. or more instances of $filename in $mirror found . Only one instance allowed.\n");
  128. return;
  129. }
  130. }
  131. close TMPDLS;
  132. if (! $link) {
  133. print("No instances of $filename found in $mirror.\n");
  134. return;
  135. }
  136. print("Copying $filename from $link\n");
  137. copy($link, "$target/$filename.dl");
  138. $hash_cmd and do {
  139. if (system("cat '$target/$filename.dl' | $hash_cmd > '$target/$filename.hash'")) {
  140. print("Failed to generate hash for $filename\n");
  141. return;
  142. }
  143. };
  144. } else {
  145. my @cmd = download_cmd("$mirror/$download_filename", $download_filename, @additional_mirrors);
  146. print STDERR "+ ".join(" ",@cmd)."\n";
  147. open(FETCH_FD, '-|', @cmd) or die "Cannot launch aria2c, curl or wget.\n";
  148. $hash_cmd and do {
  149. open MD5SUM, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";
  150. };
  151. open OUTPUT, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n";
  152. my $buffer;
  153. while (read FETCH_FD, $buffer, 1048576) {
  154. $hash_cmd and print MD5SUM $buffer;
  155. print OUTPUT $buffer;
  156. }
  157. $hash_cmd and close MD5SUM;
  158. close FETCH_FD;
  159. close OUTPUT;
  160. if ($? >> 8) {
  161. print STDERR "Download failed.\n";
  162. cleanup();
  163. return;
  164. }
  165. }
  166. $hash_cmd and do {
  167. my $sum = `cat "$target/$filename.hash"`;
  168. $sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
  169. $sum = $1;
  170. if ($sum ne $file_hash) {
  171. print STDERR "Hash of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
  172. cleanup();
  173. return;
  174. }
  175. };
  176. unlink "$target/$filename";
  177. system("mv", "$target/$filename.dl", "$target/$filename");
  178. cleanup();
  179. }
  180. sub cleanup
  181. {
  182. unlink "$target/$filename.dl";
  183. unlink "$target/$filename.hash";
  184. }
  185. @mirrors = localmirrors();
  186. foreach my $mirror (@ARGV) {
  187. if ($mirror =~ /^\@SF\/(.+)$/) {
  188. # give sourceforge a few more tries, because it redirects to different mirrors
  189. for (1 .. 5) {
  190. push @mirrors, "https://downloads.sourceforge.net/$1";
  191. }
  192. } elsif ($mirror =~ /^\@OPENWRT$/) {
  193. # use OpenWrt source server directly
  194. } elsif ($mirror =~ /^\@DEBIAN\/(.+)$/) {
  195. push @mirrors, "https://ftp.debian.org/debian/$1";
  196. push @mirrors, "https://mirror.leaseweb.com/debian/$1";
  197. push @mirrors, "https://mirror.netcologne.de/debian/$1";
  198. push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/debian/$1";
  199. push @mirrors, "https://mirrors.ustc.edu.cn/debian/$1"
  200. } elsif ($mirror =~ /^\@APACHE\/(.+)$/) {
  201. push @mirrors, "https://mirror.netcologne.de/apache.org/$1";
  202. push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1";
  203. push @mirrors, "https://mirror.csclub.uwaterloo.ca/apache/$1";
  204. push @mirrors, "https://archive.apache.org/dist/$1";
  205. push @mirrors, "http://mirror.cogentco.com/pub/apache/$1";
  206. push @mirrors, "http://mirror.navercorp.com/apache/$1";
  207. push @mirrors, "http://ftp.jaist.ac.jp/pub/apache/$1";
  208. push @mirrors, "ftp://apache.cs.utah.edu/apache.org/$1";
  209. push @mirrors, "ftp://apache.mirrors.ovh.net/ftp.apache.org/dist/$1";
  210. push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/apache/$1";
  211. push @mirrors, "https://mirrors.ustc.edu.cn/apache/$1";
  212. } elsif ($mirror =~ /^\@GITHUB\/(.+)$/) {
  213. # give github a few more tries (different mirrors)
  214. for (1 .. 5) {
  215. push @mirrors, "https://raw.githubusercontent.com/$1";
  216. }
  217. } elsif ($mirror =~ /^\@GNU\/(.+)$/) {
  218. push @mirrors, "https://mirror.csclub.uwaterloo.ca/gnu/$1";
  219. push @mirrors, "https://mirror.netcologne.de/gnu/$1";
  220. push @mirrors, "http://ftp.kddilabs.jp/GNU/gnu/$1";
  221. push @mirrors, "http://www.nic.funet.fi/pub/gnu/gnu/$1";
  222. push @mirrors, "http://mirror.internode.on.net/pub/gnu/$1";
  223. push @mirrors, "http://mirror.navercorp.com/gnu/$1";
  224. push @mirrors, "ftp://mirrors.rit.edu/gnu/$1";
  225. push @mirrors, "ftp://download.xs4all.nl/pub/gnu/$1";
  226. push @mirrors, "https://ftp.gnu.org/gnu/$1";
  227. push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/gnu/$1";
  228. push @mirrors, "https://mirrors.ustc.edu.cn/gnu/$1";
  229. } elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) {
  230. push @mirrors, "https://mirror.netcologne.de/savannah/$1";
  231. push @mirrors, "https://mirror.csclub.uwaterloo.ca/nongnu/$1";
  232. push @mirrors, "http://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
  233. push @mirrors, "http://nongnu.uib.no/$1";
  234. push @mirrors, "http://ftp.igh.cnrs.fr/pub/nongnu/$1";
  235. push @mirrors, "ftp://cdimage.debian.org/mirror/gnu.org/savannah/$1";
  236. push @mirrors, "ftp://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
  237. } elsif ($mirror =~ /^\@KERNEL\/(.+)$/) {
  238. my @extra = ( $1 );
  239. if ($filename =~ /linux-\d+\.\d+(?:\.\d+)?-rc/) {
  240. push @extra, "$extra[0]/testing";
  241. } elsif ($filename =~ /linux-(\d+\.\d+(?:\.\d+)?)/) {
  242. push @extra, "$extra[0]/longterm/v$1";
  243. }
  244. foreach my $dir (@extra) {
  245. push @mirrors, "https://cdn.kernel.org/pub/$dir";
  246. push @mirrors, "https://download.xs4all.nl/ftp.kernel.org/pub/$dir";
  247. push @mirrors, "https://mirrors.mit.edu/kernel/$dir";
  248. push @mirrors, "http://ftp.nara.wide.ad.jp/pub/kernel.org/$dir";
  249. push @mirrors, "http://www.ring.gr.jp/archives/linux/kernel.org/$dir";
  250. push @mirrors, "ftp://ftp.riken.jp/Linux/kernel.org/$dir";
  251. push @mirrors, "ftp://www.mirrorservice.org/sites/ftp.kernel.org/pub/$dir";
  252. push @mirrors, "https://mirrors.tuna.tsinghua.edu.cn/kernel/$dir";
  253. push @mirrors, "https://mirrors.ustc.edu.cn/kernel.org/$dir";
  254. }
  255. } elsif ($mirror =~ /^\@GNOME\/(.+)$/) {
  256. push @mirrors, "https://download.gnome.org/sources/$1";
  257. push @mirrors, "https://mirror.csclub.uwaterloo.ca/gnome/sources/$1";
  258. push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1";
  259. push @mirrors, "http://ftp.kaist.ac.kr/gnome/sources/$1";
  260. push @mirrors, "http://www.mirrorservice.org/sites/ftp.gnome.org/pub/GNOME/sources/$1";
  261. push @mirrors, "http://mirror.internode.on.net/pub/gnome/sources/$1";
  262. push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1";
  263. push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1";
  264. push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1";
  265. push @mirrors, "https://mirrors.ustc.edu.cn/gnome/sources/$1";
  266. } else {
  267. push @mirrors, $mirror;
  268. }
  269. }
  270. push @mirrors, 'https://sources.cdn.openwrt.org';
  271. push @mirrors, 'https://sources.openwrt.org';
  272. push @mirrors, 'https://mirror2.openwrt.org/sources';
  273. if (-f "$target/$filename") {
  274. $hash_cmd and do {
  275. if (system("cat '$target/$filename' | $hash_cmd > '$target/$filename.hash'")) {
  276. die "Failed to generate hash for $filename\n";
  277. }
  278. my $sum = `cat "$target/$filename.hash"`;
  279. $sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
  280. $sum = $1;
  281. cleanup();
  282. exit 0 if $sum eq $file_hash;
  283. die "Hash of the local file $filename does not match (file: $sum, requested: $file_hash) - deleting download.\n";
  284. unlink "$target/$filename";
  285. };
  286. }
  287. while (!-f "$target/$filename") {
  288. my $mirror = shift @mirrors;
  289. $mirror or die "No more mirrors to try - giving up.\n";
  290. download($mirror, $url_filename, @mirrors);
  291. if (!-f "$target/$filename" && $url_filename ne $filename) {
  292. download($mirror, $filename, @mirrors);
  293. }
  294. }
  295. $SIG{INT} = \&cleanup;