3 # Copyright (C) 2006 OpenWrt.org
4 # Copyright (C) 2016 LEDE project
6 # This is free software, licensed under the GNU General Public License v2.
7 # See /LICENSE for more information.
16 @ARGV > 2 or die "Syntax: $0 <target dir> <filename> <hash> <url filename> [<mirror> ...]\n";
19 my $target = 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);
27 $url_filename or $url_filename = $filename;
31 open LM
, "$scriptdir/localmirrors" and do {
34 push @mlist, $_ if $_;
38 open CONFIG
, "<".$ENV{'TOPDIR'}."/.config" and do {
40 /^CONFIG_LOCALMIRROR="(.+)"/ and do {
42 my @local_mirrors = split(/;/, $1);
43 push @mlist, @local_mirrors;
49 my $mirror = $ENV{'DOWNLOAD_MIRROR'};
50 $mirror and push @mlist, split(/;/, $mirror);
57 my $res = `which $prog`;
59 $res =~ /^no / and return undef;
60 $res =~ /not found/ and return undef;
65 my $len = length($file_hash);
68 $len == 64 and return "mkhash sha256";
69 $len == 32 and return "mkhash md5";
77 if (open CURL
, '-|', 'curl', '--version') {
78 if (defined(my $line = readline CURL
)) {
79 $have_curl = 1 if $line =~ /^curl /;
85 ?
(qw(curl --connect-timeout 20 --retry 5 --location --insecure), shellwords
($ENV{CURL_OPTIONS
} || ''), $url)
86 : (qw(wget --tries=5 --timeout=20 --no-check-certificate --output-document=-), shellwords
($ENV{WGET_OPTIONS
} || ''), $url)
90 my $hash_cmd = hash_cmd
();
98 if ($mirror =~ s!^file://!!) {
100 print STDERR
"Wrong local cache directory -$mirror-.\n";
105 if (! -d
"$target") {
106 system("mkdir", "-p", "$target/");
109 if (! open TMPDLS
, "find $mirror -follow -name $filename 2>/dev/null |") {
110 print("Failed to search for $filename in $mirror\n");
116 while (defined(my $line = readline TMPDLS
)) {
117 chomp ($link = $line);
119 print("$. or more instances of $filename in $mirror found . Only one instance allowed.\n");
127 print("No instances of $filename found in $mirror.\n");
131 print("Copying $filename from $link\n");
132 copy
($link, "$target/$filename.dl");
135 if (system("cat '$target/$filename.dl' | $hash_cmd > '$target/$filename.hash'")) {
136 print("Failed to generate hash for $filename\n");
141 my @cmd = download_cmd
("$mirror/$url_filename");
142 open(FETCH_FD
, '-|', @cmd) or die "Cannot launch curl or wget.\n";
144 open MD5SUM
, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";
146 open OUTPUT
, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n";
148 while (read FETCH_FD
, $buffer, 1048576) {
149 $hash_cmd and print MD5SUM
$buffer;
150 print OUTPUT
$buffer;
152 $hash_cmd and close MD5SUM
;
157 print STDERR
"Download failed.\n";
164 my $sum = `cat "$target/$filename.hash"`;
165 $sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
168 if ($sum ne $file_hash) {
169 print STDERR
"MD5 sum of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
175 unlink "$target/$filename";
176 system("mv", "$target/$filename.dl", "$target/$filename");
182 unlink "$target/$filename.dl";
183 unlink "$target/$filename.hash";
186 @mirrors = localmirrors
();
188 foreach my $mirror (@ARGV) {
189 if ($mirror =~ /^\@SF\/(.+)$/) {
190 # give sourceforge a few more tries, because it redirects to different mirrors
192 push @mirrors, "http://downloads.sourceforge.net/$1";
194 } elsif ($mirror =~ /^\@APACHE\/(.+)$/) {
195 push @mirrors, "https://mirror.netcologne.de/apache.org/$1";
196 push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1";
197 push @mirrors, "http://mirror.cogentco.com/pub/apache/$1";
198 push @mirrors, "http://mirror.csclub.uwaterloo.ca/apache/$1";
199 push @mirrors, "http://mirror.navercorp.com/apache/$1";
200 push @mirrors, "http://ftp.jaist.ac.jp/pub/apache/$1";
201 push @mirrors, "ftp://apache.cs.utah.edu/apache.org/$1";
202 push @mirrors, "ftp://apache.mirrors.ovh.net/ftp.apache.org/dist/$1";
203 } elsif ($mirror =~ /^\@GITHUB\/(.+)$/) {
204 # give github a few more tries (different mirrors)
206 push @mirrors, "https://raw.githubusercontent.com/$1";
208 } elsif ($mirror =~ /^\@GNU\/(.+)$/) {
209 push @mirrors, "https://mirrors.rit.edu/gnu/$1";
210 push @mirrors, "https://mirror.netcologne.de/gnu/$1";
211 push @mirrors, "http://ftp.kddilabs.jp/GNU/gnu/$1";
212 push @mirrors, "http://www.nic.funet.fi/pub/gnu/gnu/$1";
213 push @mirrors, "http://mirror.internode.on.net/pub/gnu/$1";
214 push @mirrors, "http://mirror.navercorp.com/gnu/$1";
215 push @mirrors, "ftp://mirror.csclub.uwaterloo.ca/gnu/$1";
216 push @mirrors, "ftp://download.xs4all.nl/pub/gnu/";
217 } elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) {
218 push @mirrors, "https://mirror.netcologne.de/savannah/$1";
219 push @mirrors, "http://mirror.csclub.uwaterloo.ca/nongnu/$1";
220 push @mirrors, "http://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
221 push @mirrors, "http://nongnu.uib.no/$1";
222 push @mirrors, "http://ftp.igh.cnrs.fr/pub/nongnu/$1";
223 push @mirrors, "http://public.p-knowledge.co.jp/Savannah-nongnu-mirror/$1";
224 push @mirrors, "ftp://cdimage.debian.org/mirror/gnu.org/savannah/$1";
225 push @mirrors, "ftp://ftp.acc.umu.se/mirror/gnu.org/savannah/$1";
226 } elsif ($mirror =~ /^\@KERNEL\/(.+)$/) {
228 if ($filename =~ /linux-\d+\.\d+(?:\.\d+)?-rc/) {
229 push @extra, "$extra[0]/testing";
230 } elsif ($filename =~ /linux-(\d+\.\d+(?:\.\d+)?)/) {
231 push @extra, "$extra[0]/longterm/v$1";
233 foreach my $dir (@extra) {
234 push @mirrors, "https://cdn.kernel.org/pub/$dir";
235 push @mirrors, "https://mirror.rackspace.com/kernel.org/$dir";
236 push @mirrors, "http://download.xs4all.nl/ftp.kernel.org/pub/$dir";
237 push @mirrors, "http://mirrors.mit.edu/kernel/$dir";
238 push @mirrors, "http://ftp.nara.wide.ad.jp/pub/kernel.org/$dir";
239 push @mirrors, "http://www.ring.gr.jp/archives/linux/kernel.org/$dir";
240 push @mirrors, "ftp://ftp.riken.jp/Linux/kernel.org/$dir";
241 push @mirrors, "ftp://www.mirrorservice.org/sites/ftp.kernel.org/pub/$dir";
243 } elsif ($mirror =~ /^\@GNOME\/(.+)$/) {
244 push @mirrors, "http://mirror.csclub.uwaterloo.ca/gnome/sources/$1";
245 push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1";
246 push @mirrors, "http://ftp.kaist.ac.kr/gnome/sources/$1";
247 push @mirrors, "http://www.mirrorservice.org/sites/ftp.gnome.org/pub/GNOME/sources/$1";
248 push @mirrors, "http://mirror.internode.on.net/pub/gnome/sources/$1";
249 push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1";
250 push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1";
251 push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1";
254 push @mirrors, $mirror;
258 #push @mirrors, 'http://mirror1.openwrt.org';
259 push @mirrors, 'http://sources.lede-project.org';
260 push @mirrors, 'http://mirror2.openwrt.org/sources';
261 push @mirrors, 'http://downloads.openwrt.org/sources';
263 while (!-f
"$target/$filename") {
264 my $mirror = shift @mirrors;
265 $mirror or die "No more mirrors to try - giving up.\n";
270 $SIG{INT
} = \
&cleanup
;