download.pl 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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 download_cmd {
  62. my $url = shift;
  63. my $have_curl = 0;
  64. my $have_aria2c = 0;
  65. my $filename = shift;
  66. my $additional_mirrors = join(" ", map "$_/$filename", @_);
  67. my @chArray = ('a'..'z', 'A'..'Z', 0..9);
  68. my $rfn = join '', map{ $chArray[int rand @chArray] } 0..9;
  69. if (open CURL, '-|', 'curl', '--version') {
  70. if (defined(my $line = readline CURL)) {
  71. $have_curl = 1 if $line =~ /^curl /;
  72. }
  73. close CURL;
  74. }
  75. if (open ARIA2C, '-|', 'aria2c', '--version') {
  76. if (defined(my $line = readline ARIA2C)) {
  77. $have_aria2c = 1 if $line =~ /^aria2 /;
  78. }
  79. close ARIA2C;
  80. }
  81. if ($have_aria2c) {
  82. return join(" ", "touch /dev/shm/${rfn}_spp;",
  83. qw(aria2c --stderr -c -x2 -s10 -j10 -k1M), $url, $additional_mirrors,
  84. $check_certificate ? () : '--check-certificate=false',
  85. "--server-stat-of=/dev/shm/${rfn}_spp",
  86. "--server-stat-if=/dev/shm/${rfn}_spp",
  87. "-d /dev/shm -o $rfn;",
  88. "cat /dev/shm/$rfn;", "rm /dev/shm/$rfn /dev/shm/${rfn}_spp");
  89. } elsif ($have_curl) {
  90. return (qw(curl -f --connect-timeout 20 --retry 5 --location),
  91. $check_certificate ? () : '--insecure',
  92. shellwords($ENV{CURL_OPTIONS} || ''),
  93. $url);
  94. } else {
  95. return (qw(wget --tries=5 --timeout=20 --output-document=-),
  96. $check_certificate ? () : '--no-check-certificate',
  97. shellwords($ENV{WGET_OPTIONS} || ''),
  98. $url);
  99. }
  100. }
  101. my $hash_cmd = hash_cmd();
  102. $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";
  103. sub download
  104. {
  105. my $mirror = shift;
  106. my $download_filename = shift;
  107. my @additional_mirrors = @_;
  108. $mirror =~ s!/$!!;
  109. if ($mirror =~ s!^file://!!) {
  110. if (! -d "$mirror") {
  111. print STDERR "Wrong local cache directory -$mirror-.\n";
  112. cleanup();
  113. return;
  114. }
  115. if (! -d "$target") {
  116. system("mkdir", "-p", "$target/");
  117. }
  118. if (! open TMPDLS, "find $mirror -follow -name $filename 2>/dev/null |") {
  119. print("Failed to search for $filename in $mirror\n");
  120. return;
  121. }
  122. my $link;
  123. while (defined(my $line = readline TMPDLS)) {
  124. chomp ($link = $line);
  125. if ($. > 1) {
  126. print("$. or more instances of $filename in $mirror found . Only one instance allowed.\n");
  127. return;
  128. }
  129. }
  130. close TMPDLS;
  131. if (! $link) {
  132. print("No instances of $filename found in $mirror.\n");
  133. return;
  134. }
  135. print("Copying $filename from $link\n");
  136. copy($link, "$target/$filename.dl");
  137. $hash_cmd and do {
  138. if (system("cat '$target/$filename.dl' | $hash_cmd > '$target/$filename.hash'")) {
  139. print("Failed to generate hash for $filename\n");
  140. return;
  141. }
  142. };
  143. } else {
  144. my @cmd = download_cmd("$mirror/$download_filename", $download_filename, @additional_mirrors);
  145. print STDERR "+ ".join(" ",@cmd)."\n";
  146. open(FETCH_FD, '-|', @cmd) or die "Cannot launch aria2c, curl or wget.\n";
  147. $hash_cmd and do {
  148. open MD5SUM, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";
  149. };
  150. open OUTPUT, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n";
  151. my $buffer;
  152. while (read FETCH_FD, $buffer, 1048576) {
  153. $hash_cmd and print MD5SUM $buffer;
  154. print OUTPUT $buffer;
  155. }
  156. $hash_cmd and close MD5SUM;
  157. close FETCH_FD;
  158. close OUTPUT;
  159. if ($? >> 8) {
  160. print STDERR "Download failed.\n";
  161. cleanup();
  162. return;
  163. }
  164. }
  165. $hash_cmd and do {
  166. my $sum = `cat "$target/$filename.hash"`;
  167. $sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
  168. $sum = $1;
  169. if ($sum ne $file_hash) {
  170. print STDERR "Hash of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
  171. cleanup();
  172. return;
  173. }
  174. };
  175. unlink "$target/$filename";
  176. system("mv", "$target/$filename.dl", "$target/$filename");
  177. cleanup();
  178. }
  179. sub cleanup
  180. {
  181. unlink "$target/$filename.dl";
  182. unlink "$target/$filename.hash";
  183. }
  184. @mirrors = localmirrors();
  185. foreach my $mirror (@ARGV) {
  186. if ($mirror =~ /^\@SF\/(.+)$/) {
  187. # give sourceforge a few more tries, because it redirects to different mirrors
  188. for (1 .. 5) {
  189. push @mirrors, "https://downloads.sourceforge.net/$1";
  190. }
  191. } elsif ($mirror =~ /^\@OPENWRT$/) {
  192. # use OpenWrt source server directly
  193. } elsif ($mirror =~ /^\@DEBIAN\/(.+)$/) {
  194. push @mirrors, "https://ftp.debian.org/debian/$1";
  195. push @mirrors, "https://mirror.leaseweb.com/debian/$1";
  196. push @mirrors, "https://mirror.netcologne.de/debian/$1";
  197. } elsif ($mirror =~ /^\@APACHE\/(.+)$/) {
  198. push @mirrors, "https://mirror.netcologne.de/apache.org/$1";
  199. push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1";
  200. push @mirrors, "https://mirror.csclub.uwaterloo.ca/apache/$1";
  201. push @mirrors, "https://archive.apache.org/dist/$1";
  202. push @mirrors, "http://mirror.cogentco.com/pub/apache/$1";
  203. push @mirrors, "http://mirror.navercorp.com/apache/$1";
  204. push @mirrors, "http://ftp.jaist.ac.jp/pub/apache/$1";
  205. push @mirrors, "ftp://apache.cs.utah.edu/apache.org/$1";
  206. push @mirrors, "ftp://apache.mirrors.ovh.net/ftp.apache.org/dist/$1";
  207. } elsif ($mirror =~ /^\@GITHUB\/(.+)$/) {
  208. # give github a few more tries (different mirrors)
  209. for (1 .. 5) {
  210. push @mirrors, "https://raw.githubusercontent.com/$1";
  211. }
  212. } elsif ($mirror =~ /^\@GNU\/(.+)$/) {
  213. push @mirrors, "https://mirror.csclub.uwaterloo.ca/gnu/$1";
  214. push @mirrors, "https://mirror.netcologne.de/gnu/$1";
  215. push @mirrors, "http://ftp.kddilabs.jp/GNU/gnu/$1";
  216. push @mirrors, "http://www.nic.funet.fi/pub/gnu/gnu/$1";
  217. push @mirrors, "http://mirror.internode.on.net/pub/gnu/$1";
  218. push @mirrors, "http://mirror.navercorp.com/gnu/$1";
  219. push @mirrors, "ftp://mirrors.rit.edu/gnu/$1";
  220. push @mirrors, "ftp://download.xs4all.nl/pub/gnu/$1";
  221. push @mirrors, "https://ftp.gnu.org/gnu/$1";
  222. } elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) {
  223. push @mirrors, "https://mirror.netcologne.de/savannah/$1";
  224. push @mirrors, "https://mirror.csclub.uwaterloo.ca/nongnu/$1";
  225. push @mirrors, "http://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
  226. push @mirrors, "http://nongnu.uib.no/$1";
  227. push @mirrors, "http://ftp.igh.cnrs.fr/pub/nongnu/$1";
  228. push @mirrors, "ftp://cdimage.debian.org/mirror/gnu.org/savannah/$1";
  229. push @mirrors, "ftp://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
  230. } elsif ($mirror =~ /^\@KERNEL\/(.+)$/) {
  231. my @extra = ( $1 );
  232. if ($filename =~ /linux-\d+\.\d+(?:\.\d+)?-rc/) {
  233. push @extra, "$extra[0]/testing";
  234. } elsif ($filename =~ /linux-(\d+\.\d+(?:\.\d+)?)/) {
  235. push @extra, "$extra[0]/longterm/v$1";
  236. }
  237. foreach my $dir (@extra) {
  238. push @mirrors, "https://cdn.kernel.org/pub/$dir";
  239. push @mirrors, "https://download.xs4all.nl/ftp.kernel.org/pub/$dir";
  240. push @mirrors, "https://mirrors.mit.edu/kernel/$dir";
  241. push @mirrors, "http://ftp.nara.wide.ad.jp/pub/kernel.org/$dir";
  242. push @mirrors, "http://www.ring.gr.jp/archives/linux/kernel.org/$dir";
  243. push @mirrors, "ftp://ftp.riken.jp/Linux/kernel.org/$dir";
  244. push @mirrors, "ftp://www.mirrorservice.org/sites/ftp.kernel.org/pub/$dir";
  245. }
  246. } elsif ($mirror =~ /^\@GNOME\/(.+)$/) {
  247. push @mirrors, "https://download.gnome.org/sources/$1";
  248. push @mirrors, "https://mirror.csclub.uwaterloo.ca/gnome/sources/$1";
  249. push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1";
  250. push @mirrors, "http://ftp.kaist.ac.kr/gnome/sources/$1";
  251. push @mirrors, "http://www.mirrorservice.org/sites/ftp.gnome.org/pub/GNOME/sources/$1";
  252. push @mirrors, "http://mirror.internode.on.net/pub/gnome/sources/$1";
  253. push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1";
  254. push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1";
  255. push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1";
  256. } else {
  257. push @mirrors, $mirror;
  258. }
  259. }
  260. push @mirrors, 'https://sources.cdn.openwrt.org';
  261. push @mirrors, 'https://sources.openwrt.org';
  262. push @mirrors, 'https://mirror2.openwrt.org/sources';
  263. if (-f "$target/$filename") {
  264. $hash_cmd and do {
  265. if (system("cat '$target/$filename' | $hash_cmd > '$target/$filename.hash'")) {
  266. die "Failed to generate hash for $filename\n";
  267. }
  268. my $sum = `cat "$target/$filename.hash"`;
  269. $sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
  270. $sum = $1;
  271. cleanup();
  272. exit 0 if $sum eq $file_hash;
  273. die "Hash of the local file $filename does not match (file: $sum, requested: $file_hash) - deleting download.\n";
  274. unlink "$target/$filename";
  275. };
  276. }
  277. while (!-f "$target/$filename") {
  278. my $mirror = shift @mirrors;
  279. $mirror or die "No more mirrors to try - giving up.\n";
  280. download($mirror, $url_filename, @mirrors);
  281. if (!-f "$target/$filename" && $url_filename ne $filename) {
  282. download($mirror, $filename, @mirrors);
  283. }
  284. @mirrors=();
  285. }
  286. $SIG{INT} = \&cleanup;