2008-09-23 18:29:44 +00:00
|
|
|
#!/usr/bin/env perl
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2016-04-03 20:02:46 +00:00
|
|
|
# Copyright (C) 2016 LEDE project
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2005-03-19 22:51:51 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
2007-01-24 22:38:02 +00:00
|
|
|
use File::Basename;
|
2012-04-10 14:11:45 +00:00
|
|
|
use File::Copy;
|
2005-03-19 22:51:51 +00:00
|
|
|
|
2016-01-16 00:19:41 +00:00
|
|
|
@ARGV > 2 or die "Syntax: $0 <target dir> <filename> <hash> <url filename> [<mirror> ...]\n";
|
2007-09-29 00:05:48 +00:00
|
|
|
|
2015-11-22 19:06:33 +00:00
|
|
|
my $url_filename;
|
2005-03-19 22:51:51 +00:00
|
|
|
my $target = shift @ARGV;
|
|
|
|
my $filename = shift @ARGV;
|
2016-01-16 00:19:41 +00:00
|
|
|
my $file_hash = shift @ARGV;
|
2015-11-22 19:06:33 +00:00
|
|
|
$url_filename = shift @ARGV unless $ARGV[0] =~ /:\/\//;
|
2007-01-24 22:38:02 +00:00
|
|
|
my $scriptdir = dirname($0);
|
2005-04-30 19:47:17 +00:00
|
|
|
my @mirrors;
|
2005-03-19 22:51:51 +00:00
|
|
|
my $ok;
|
|
|
|
|
2015-11-22 19:06:33 +00:00
|
|
|
$url_filename or $url_filename = $filename;
|
|
|
|
|
2007-01-24 22:38:02 +00:00
|
|
|
sub localmirrors {
|
2008-03-18 21:07:22 +00:00
|
|
|
my @mlist;
|
|
|
|
open LM, "$scriptdir/localmirrors" and do {
|
2007-04-06 23:15:39 +00:00
|
|
|
while (<LM>) {
|
|
|
|
chomp $_;
|
2011-07-03 19:33:24 +00:00
|
|
|
push @mlist, $_ if $_;
|
2007-04-06 23:15:39 +00:00
|
|
|
}
|
|
|
|
close LM;
|
|
|
|
};
|
|
|
|
open CONFIG, "<".$ENV{'TOPDIR'}."/.config" and do {
|
|
|
|
while (<CONFIG>) {
|
|
|
|
/^CONFIG_LOCALMIRROR="(.+)"/ and do {
|
|
|
|
chomp;
|
2009-02-20 10:16:47 +00:00
|
|
|
my @local_mirrors = split(/;/, $1);
|
|
|
|
push @mlist, @local_mirrors;
|
2007-04-06 23:15:39 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
close CONFIG;
|
|
|
|
};
|
2007-01-24 22:38:02 +00:00
|
|
|
|
2014-12-12 12:35:23 +00:00
|
|
|
my $mirror = $ENV{'DOWNLOAD_MIRROR'};
|
|
|
|
$mirror and push @mlist, split(/;/, $mirror);
|
|
|
|
|
2008-03-18 21:07:22 +00:00
|
|
|
return @mlist;
|
2007-01-24 22:38:02 +00:00
|
|
|
}
|
|
|
|
|
2006-10-14 00:07:19 +00:00
|
|
|
sub which($) {
|
|
|
|
my $prog = shift;
|
|
|
|
my $res = `which $prog`;
|
|
|
|
$res or return undef;
|
|
|
|
$res =~ /^no / and return undef;
|
|
|
|
$res =~ /not found/ and return undef;
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
|
2016-01-16 00:19:41 +00:00
|
|
|
sub hash_cmd() {
|
|
|
|
my $len = length($file_hash);
|
|
|
|
my $cmd;
|
|
|
|
|
2016-01-16 10:24:15 +00:00
|
|
|
$len == 64 and return "openssl dgst -sha256 | sed -e 's,.*= ,,'";
|
2016-01-16 00:19:41 +00:00
|
|
|
$len == 32 and do {
|
|
|
|
my $cmd = which("md5sum") || which("md5") || die 'no md5 checksum program found, please install md5 or md5sum';
|
|
|
|
chomp $cmd;
|
|
|
|
return $cmd;
|
|
|
|
};
|
|
|
|
return undef;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $hash_cmd = hash_cmd();
|
2006-10-10 16:01:49 +00:00
|
|
|
|
2005-03-19 22:51:51 +00:00
|
|
|
sub download
|
|
|
|
{
|
|
|
|
my $mirror = shift;
|
2012-05-11 18:17:15 +00:00
|
|
|
my $options = $ENV{WGET_OPTIONS} || "";
|
|
|
|
|
|
|
|
$mirror =~ s!/$!!;
|
|
|
|
|
|
|
|
if ($mirror =~ s!^file://!!) {
|
|
|
|
if (! -d "$mirror") {
|
|
|
|
print STDERR "Wrong local cache directory -$mirror-.\n";
|
2009-02-20 10:16:47 +00:00
|
|
|
cleanup();
|
|
|
|
return;
|
|
|
|
}
|
2012-05-11 18:17:15 +00:00
|
|
|
|
|
|
|
if (! -d "$target") {
|
|
|
|
system("mkdir", "-p", "$target/");
|
2009-02-20 10:16:47 +00:00
|
|
|
}
|
2012-05-11 18:17:15 +00:00
|
|
|
|
|
|
|
if (! open TMPDLS, "find $mirror -follow -name $filename 2>/dev/null |") {
|
|
|
|
print("Failed to search for $filename in $mirror\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $link;
|
|
|
|
|
|
|
|
while (defined(my $line = readline TMPDLS)) {
|
|
|
|
chomp ($link = $line);
|
|
|
|
if ($. > 1) {
|
|
|
|
print("$. or more instances of $filename in $mirror found . Only one instance allowed.\n");
|
2012-04-10 14:11:45 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-05-11 18:17:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
close TMPDLS;
|
|
|
|
|
|
|
|
if (! $link) {
|
|
|
|
print("No instances of $filename found in $mirror.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
print("Copying $filename from $link\n");
|
|
|
|
copy($link, "$target/$filename.dl");
|
|
|
|
|
2016-01-16 00:19:41 +00:00
|
|
|
$hash_cmd and do {
|
2016-02-27 16:20:06 +00:00
|
|
|
if (system("cat '$target/$filename.dl' | $hash_cmd > '$target/$filename.hash'")) {
|
2016-01-16 00:19:41 +00:00
|
|
|
print("Failed to generate hash for $filename\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2008-03-18 21:07:22 +00:00
|
|
|
} else {
|
2015-11-22 19:06:33 +00:00
|
|
|
open WGET, "wget -t5 --timeout=20 --no-check-certificate $options -O- '$mirror/$url_filename' |" or die "Cannot launch wget.\n";
|
2016-01-16 00:19:41 +00:00
|
|
|
$hash_cmd and do {
|
|
|
|
open MD5SUM, "| $hash_cmd > '$target/$filename.hash'" or die "Cannot launch $hash_cmd.\n";
|
|
|
|
};
|
2008-03-18 21:07:22 +00:00
|
|
|
open OUTPUT, "> $target/$filename.dl" or die "Cannot create file $target/$filename.dl: $!\n";
|
|
|
|
my $buffer;
|
|
|
|
while (read WGET, $buffer, 1048576) {
|
2016-01-16 00:19:41 +00:00
|
|
|
$hash_cmd and print MD5SUM $buffer;
|
2008-03-18 21:07:22 +00:00
|
|
|
print OUTPUT $buffer;
|
|
|
|
}
|
2016-01-16 00:19:41 +00:00
|
|
|
$hash_cmd and close MD5SUM;
|
2008-03-18 21:07:22 +00:00
|
|
|
close WGET;
|
|
|
|
close OUTPUT;
|
|
|
|
|
2012-05-11 18:17:15 +00:00
|
|
|
if ($? >> 8) {
|
2008-03-18 21:07:22 +00:00
|
|
|
print STDERR "Download failed.\n";
|
|
|
|
cleanup();
|
|
|
|
return;
|
|
|
|
}
|
2005-03-19 22:51:51 +00:00
|
|
|
}
|
2008-03-18 21:07:22 +00:00
|
|
|
|
2016-01-16 00:19:41 +00:00
|
|
|
$hash_cmd and do {
|
|
|
|
my $sum = `cat "$target/$filename.hash"`;
|
|
|
|
$sum =~ /^(\w+)\s*/ or die "Could not generate file hash\n";
|
|
|
|
$sum = $1;
|
2008-03-18 21:07:22 +00:00
|
|
|
|
2016-01-16 00:19:41 +00:00
|
|
|
if ($sum ne $file_hash) {
|
|
|
|
print STDERR "MD5 sum of the downloaded file does not match (file: $sum, requested: $file_hash) - deleting download.\n";
|
|
|
|
cleanup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
2008-03-18 21:07:22 +00:00
|
|
|
|
2005-03-19 22:51:51 +00:00
|
|
|
unlink "$target/$filename";
|
2012-05-11 18:17:15 +00:00
|
|
|
system("mv", "$target/$filename.dl", "$target/$filename");
|
2005-03-19 23:52:32 +00:00
|
|
|
cleanup();
|
2005-03-19 22:51:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub cleanup
|
|
|
|
{
|
|
|
|
unlink "$target/$filename.dl";
|
2016-01-16 00:19:41 +00:00
|
|
|
unlink "$target/$filename.hash";
|
2005-03-19 22:51:51 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 22:38:02 +00:00
|
|
|
@mirrors = localmirrors();
|
|
|
|
|
2005-04-30 19:47:17 +00:00
|
|
|
foreach my $mirror (@ARGV) {
|
2005-03-19 22:51:51 +00:00
|
|
|
if ($mirror =~ /^\@SF\/(.+)$/) {
|
2006-12-08 12:44:26 +00:00
|
|
|
# give sourceforge a few more tries, because it redirects to different mirrors
|
|
|
|
for (1 .. 5) {
|
2012-02-26 09:29:53 +00:00
|
|
|
push @mirrors, "http://downloads.sourceforge.net/$1";
|
2005-03-19 22:51:51 +00:00
|
|
|
}
|
2016-01-17 10:47:32 +00:00
|
|
|
} elsif ($mirror =~ /^\@APACHE\/(.+)$/) {
|
|
|
|
push @mirrors, "http://ftp.tudelft.nl/apache/$1";
|
|
|
|
push @mirrors, "http://apache.openmirror.de/$1";
|
|
|
|
push @mirrors, "http://mirrors.ocf.berkeley.edu/apache/$1";
|
|
|
|
push @mirrors, "http://mirror.cc.columbia.edu/pub/software/apache/$1";
|
|
|
|
push @mirrors, "http://ftp.jaist.ac.jp/pub/apache/$1";
|
2016-04-09 10:25:34 +00:00
|
|
|
} elsif ($mirror =~ /^\@GITHUB\/(.+)$/) {
|
|
|
|
# give github a few more tries (different mirrors)
|
|
|
|
for (1 .. 5) {
|
|
|
|
push @mirrors, "https://raw.githubusercontent.com/$1";
|
|
|
|
}
|
2005-06-08 06:48:19 +00:00
|
|
|
} elsif ($mirror =~ /^\@GNU\/(.+)$/) {
|
2013-02-28 23:49:36 +00:00
|
|
|
push @mirrors, "http://ftpmirror.gnu.org/$1";
|
2013-12-13 16:43:07 +00:00
|
|
|
push @mirrors, "http://ftp.gnu.org/pub/gnu/$1";
|
2007-08-26 18:21:24 +00:00
|
|
|
push @mirrors, "ftp://ftp.belnet.be/mirror/ftp.gnu.org/gnu/$1";
|
|
|
|
push @mirrors, "ftp://ftp.mirror.nl/pub/mirror/gnu/$1";
|
|
|
|
push @mirrors, "http://mirror.switch.ch/ftp/mirror/gnu/$1";
|
2014-10-08 08:01:39 +00:00
|
|
|
} elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) {
|
|
|
|
push @mirrors, "http://download.savannah.gnu.org/releases/$1";
|
|
|
|
push @mirrors, "http://nongnu.uib.no/$1";
|
|
|
|
push @mirrors, "http://ftp.igh.cnrs.fr/pub/nongnu/$1";
|
|
|
|
push @mirrors, "http://download-mirror.savannah.gnu.org/releases/$1";
|
2007-08-26 18:21:24 +00:00
|
|
|
} elsif ($mirror =~ /^\@KERNEL\/(.+)$/) {
|
2011-02-19 15:41:00 +00:00
|
|
|
my @extra = ( $1 );
|
2011-07-03 15:00:24 +00:00
|
|
|
if ($filename =~ /linux-\d+\.\d+(?:\.\d+)?-rc/) {
|
2011-02-19 15:41:00 +00:00
|
|
|
push @extra, "$extra[0]/testing";
|
2011-07-03 15:00:24 +00:00
|
|
|
} elsif ($filename =~ /linux-(\d+\.\d+(?:\.\d+)?)/) {
|
2011-02-19 15:41:00 +00:00
|
|
|
push @extra, "$extra[0]/longterm/v$1";
|
|
|
|
}
|
|
|
|
foreach my $dir (@extra) {
|
2016-05-23 10:55:01 +00:00
|
|
|
push @mirrors, "https://cdn.kernel.org/pub/$dir";
|
|
|
|
push @mirrors, "https://www.kernel.org/pub/$dir";
|
2011-02-19 15:41:00 +00:00
|
|
|
}
|
2008-09-01 21:46:17 +00:00
|
|
|
} elsif ($mirror =~ /^\@GNOME\/(.+)$/) {
|
|
|
|
push @mirrors, "http://ftp.gnome.org/pub/GNOME/sources/$1";
|
2015-12-10 12:40:08 +00:00
|
|
|
push @mirrors, "http://www.mirrorservice.org/sites/ftp.gnome.org/pub/GNOME/sources/$1";
|
2008-09-01 21:46:17 +00:00
|
|
|
push @mirrors, "http://fr2.rpmfind.net/linux/gnome.org/sources/$1";
|
|
|
|
push @mirrors, "http://ftp.acc.umu.se/pub/GNOME/sources/$1";
|
2015-12-10 12:40:08 +00:00
|
|
|
push @mirrors, "http://ftp.belnet.be/ftp.gnome.org/sources/$1";
|
2008-09-01 21:46:17 +00:00
|
|
|
push @mirrors, "ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/$1";
|
|
|
|
push @mirrors, "ftp://ftp.nara.wide.ad.jp/pub/X11/GNOME/sources/$1";
|
|
|
|
}
|
|
|
|
else {
|
2005-04-30 19:47:17 +00:00
|
|
|
push @mirrors, $mirror;
|
2005-03-19 22:51:51 +00:00
|
|
|
}
|
2005-04-30 19:47:17 +00:00
|
|
|
}
|
|
|
|
|
2006-11-26 20:40:10 +00:00
|
|
|
#push @mirrors, 'http://mirror1.openwrt.org';
|
2016-05-12 21:00:40 +00:00
|
|
|
push @mirrors, 'http://sources.lede-project.org';
|
2006-09-06 00:26:15 +00:00
|
|
|
push @mirrors, 'http://mirror2.openwrt.org/sources';
|
2006-11-26 20:40:10 +00:00
|
|
|
push @mirrors, 'http://downloads.openwrt.org/sources';
|
2005-04-30 19:47:17 +00:00
|
|
|
|
|
|
|
while (!$ok) {
|
|
|
|
my $mirror = shift @mirrors;
|
|
|
|
$mirror or die "No more mirrors to try - giving up.\n";
|
2008-03-18 21:07:22 +00:00
|
|
|
|
2005-04-30 19:47:17 +00:00
|
|
|
download($mirror);
|
2005-03-19 22:51:51 +00:00
|
|
|
-f "$target/$filename" and $ok = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$SIG{INT} = \&cleanup;
|
|
|
|
|