]> git.proxmox.com Git - pve-manager.git/blame - PVE/APLInfo.pm
aplinfo: improve signature verification
[pve-manager.git] / PVE / APLInfo.pm
CommitLineData
aff192e6
DM
1package PVE::APLInfo;
2
3use strict;
4use IO::File;
5use PVE::SafeSyslog;
c351eda9 6use PVE::Tools;
aff192e6 7use LWP::UserAgent;
aff192e6
DM
8use POSIX qw(strftime);
9
10my $logfile = "/var/log/pveam.log";
c9164975 11my $aplinfodir = "/var/lib/pve-manager/apl-info";
aff192e6 12
aff192e6
DM
13sub logmsg {
14 my ($logfd, $msg) = @_;
15
16 chomp $msg;
17
18 my $tstr = strftime ("%b %d %H:%M:%S", localtime);
19
20 foreach my $line (split (/\n/, $msg)) {
21 print $logfd "$tstr $line\n";
22 }
23}
24
6de794eb
DM
25sub read_aplinfo_from_fh {
26 my ($fh, $list, $source, $update) = @_;
c9164975
DM
27
28 local $/ = "";
29
6de794eb
DM
30 while (my $rec = <$fh>) {
31 chomp $rec;
c9164975 32
6de794eb
DM
33 my $res = {};
34
35 while ($rec) {
36
37 if ($rec =~ s/^Description:\s*([^\n]*)(\n\s+.*)*$//si) {
38 $res->{headline} = $1;
648af5ab 39 my $long = $2 || '';
6de794eb
DM
40 $long =~ s/\n\s+/ /g;
41 $long =~ s/^\s+//g;
42 $long =~ s/\s+$//g;
43 $res->{description} = $long;
44 } elsif ($rec =~ s/^Version:\s*(.*\S)\s*\n//i) {
45 my $version = $1;
f6b20cf9 46 if ($version =~ m/^(\d[a-zA-Z0-9\.\+\-\:\~]*)(-(\d+))?$/) {
6de794eb 47 $res->{version} = $version;
c9164975 48 } else {
6de794eb
DM
49 my $msg = "unable to parse appliance record: version = '$version'\n";
50 $update ? die $msg : warn $msg;
c9164975 51 }
6de794eb
DM
52 } elsif ($rec =~ s/^Type:\s*(.*\S)\s*\n//i) {
53 my $type = $1;
54 if ($type =~ m/^(openvz|lxc)$/) {
55 $res->{type} = $type;
c9164975 56 } else {
6de794eb
DM
57 my $msg = "unable to parse appliance record: unknown type '$type'\n";
58 $update ? die $msg : warn $msg;
c9164975 59 }
6de794eb
DM
60 } elsif ($rec =~ s/^([^:]+):\s*(.*\S)\s*\n//) {
61 $res->{lc $1} = $2;
c9164975 62 } else {
6de794eb 63 my $msg = "unable to parse appliance record: $rec\n";
c9164975 64 $update ? die $msg : warn $msg;
6de794eb
DM
65 $res = {};
66 last;
67 }
68 }
69
70 if ($res->{'package'} eq 'pve-web-news' && $res->{description}) {
71 $list->{'all'}->{$res->{'package'}} = $res;
72 next;
73 }
74
75 $res->{section} = 'unknown' if !$res->{section};
76
77 if ($res->{'package'} && $res->{type} && $res->{os} && $res->{version} &&
78 $res->{infopage}) {
79 my $template;
80 if ($res->{location}) {
81 $template = $res->{location};
7a07d675
DM
82 $template =~ s|.*/([^/]+.tar.[gx]z)$|$1|;
83 if ($res->{location} !~ m|^([a-zA-Z]+)\://|) {
84 # relative localtion (no http:// prefix)
85 $res->{location} = "$source/$res->{location}";
86 }
6de794eb 87 } else {
07c1e6b0
DM
88 my $arch = $res->{architecture} || 'i386';
89 $template = "$res->{os}-$res->{package}_$res->{version}_$arch.tar.gz";
6de794eb 90 $template =~ s/$res->{os}-$res->{os}-/$res->{os}-/;
4886fe07 91 $res->{location} = "$source/$res->{section}/$template";
c9164975 92 }
6de794eb
DM
93 $res->{source} = $source;
94 $res->{template} = $template;
95 $list->{$res->{section}}->{$template} = $res;
96 $list->{'all'}->{$template} = $res;
97 } else {
98 my $msg = "found incomplete appliance records\n";
99 $update ? die $msg : warn $msg;
c9164975 100 }
6de794eb
DM
101 }
102}
103
104sub read_aplinfo {
105 my ($filename, $list, $source, $update) = @_;
106
107 my $fh = IO::File->new("<$filename") ||
108 die "unable to open file '$filename' - $!\n";
109
110 eval { read_aplinfo_from_fh($fh, $list, $source, $update); };
c9164975
DM
111 my $err = $@;
112
113 close($fh);
114
115 die $err if $err;
116
117 return $list;
118}
119
aff192e6
DM
120sub url_get {
121 my ($ua, $url, $file, $logfh) = @_;
122
123 my $req = HTTP::Request->new(GET => $url);
124
125 logmsg ($logfh, "start download $url");
126 my $res = $ua->request($req, $file);
127
128 if ($res->is_success) {
129 logmsg ($logfh, "download finished: " . $res->status_line);
130 return 0;
131 }
132
133 logmsg ($logfh, "download failed: " . $res->status_line);
134
135 return 1;
136}
137
c9164975
DM
138sub download_aplinfo {
139 my ($ua, $aplurl, $host, $logfd) = @_;
aff192e6 140
aff192e6
DM
141 my $aplsrcurl = "$aplurl/aplinfo.dat.gz";
142 my $aplsigurl = "$aplurl/aplinfo.dat.asc";
143
c9164975 144 my $tmp = "$aplinfodir/pveam-${host}.tmp.$$";
aff192e6
DM
145 my $tmpgz = "$tmp.gz";
146 my $sigfn = "$tmp.asc";
147
aff192e6 148 eval {
c9164975
DM
149
150 if (url_get($ua, $aplsigurl, $sigfn, $logfd) != 0) {
151 die "update failed - no signature file '$sigfn'\n";
aff192e6
DM
152 }
153
c9164975
DM
154 if (url_get($ua, $aplsrcurl, $tmpgz, $logfd) != 0) {
155 die "update failed - no data file '$aplsrcurl'\n";
aff192e6
DM
156 }
157
c351eda9
FG
158 eval {
159 PVE::Tools::run_command(["gunzip", "-f", $tmpgz]);
160 };
161 die "update failed: unable to unpack '$tmpgz'\n" if $@;
aff192e6 162
aff192e6 163
aff192e6 164
868801cb
FG
165 # verify signature
166 my $trustedkeyring = "/usr/share/doc/pve-manager/trustedkeys.gpg";
167 my $cmd = "/usr/bin/gpgv -q --keyring $trustedkeyring $sigfn $tmp";
168
169 eval {
170 my $logfunc = sub {
171 my $line = shift;
172 logmsg($logfd, "signature verification: $line");
173 };
174
175 PVE::Tools::run_command($cmd,
176 outfunc => $logfunc,
177 errfunc => $logfunc);
178 };
179 die "unable to verify signature - $@\n" if $@;
aff192e6
DM
180
181 # test syntax
182 eval {
c9164975 183 my $fh = IO::File->new("<$tmp") ||
aff192e6 184 die "unable to open file '$tmp' - $!\n";
c9164975
DM
185 read_aplinfo($tmp, {}, $aplurl, 1);
186 close($fh);
aff192e6
DM
187 };
188 die "update failed: $@" if $@;
189
c351eda9 190 if (!rename($tmp, "$aplinfodir/$host")) {
aff192e6
DM
191 die "update failed: unable to store data\n";
192 }
193
c9164975 194 logmsg($logfd, "update sucessful");
aff192e6
DM
195 };
196
197 my $err = $@;
198
199 unlink $tmp;
200 unlink $tmpgz;
201 unlink $sigfn;
202
c9164975 203 die $err if $err;
aff192e6
DM
204}
205
c9164975
DM
206sub get_apl_sources {
207
208 my $urls = [];
648af5ab 209 push @$urls, "http://download.proxmox.com/images";
06399fd7 210 push @$urls, "https://releases.turnkeylinux.org/pve";
aff192e6 211
c9164975 212 return $urls;
aff192e6
DM
213}
214
c9164975
DM
215sub update {
216 my ($proxy) = @_;
aff192e6 217
c9164975
DM
218 my $size;
219 if (($size = (-s $logfile) || 0) > (1024*50)) {
c351eda9 220 rename($logfile, "$logfile.0");
c9164975
DM
221 }
222 my $logfd = IO::File->new (">>$logfile");
223 logmsg($logfd, "starting update");
aff192e6 224
c9164975
DM
225 my $ua = LWP::UserAgent->new;
226 $ua->agent("PVE/1.0");
aff192e6 227
c9164975 228 if ($proxy) {
49ee2d1a 229 $ua->proxy(['http', 'https'], $proxy);
c9164975
DM
230 } else {
231 $ua->env_proxy;
232 }
aff192e6 233
c9164975 234 my $urls = get_apl_sources();
aff192e6 235
c9164975 236 mkdir $aplinfodir;
aff192e6 237
c9164975
DM
238 my @dlerr = ();
239 foreach my $aplurl (@$urls) {
240 eval {
241 my $uri = URI->new($aplurl);
242 my $host = $uri->host();
243 download_aplinfo($ua, $aplurl, $host, $logfd);
244 };
245 if (my $err = $@) {
246 logmsg ($logfd, $err);
247 push @dlerr, $aplurl;
248 }
249 }
aff192e6 250
c9164975 251 close($logfd);
aff192e6 252
c9164975 253 return 0 if scalar(@dlerr);
aff192e6 254
c9164975 255 return 1;
aff192e6
DM
256}
257
c9164975 258sub load_data {
aff192e6 259
75a6a7f5 260 my $urls = get_apl_sources();
aff192e6 261
c9164975 262 my $list = {};
aff192e6 263
c9164975 264 foreach my $aplurl (@$urls) {
aff192e6 265
c9164975 266 eval {
aff192e6 267
c9164975
DM
268 my $uri = URI->new($aplurl);
269 my $host = $uri->host();
270 read_aplinfo("$aplinfodir/$host", $list, $aplurl);
271 };
272 warn $@ if $@;
273 }
aff192e6 274
c9164975 275 return $list;
aff192e6
DM
276}
277
2781;
279