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