-
Notifications
You must be signed in to change notification settings - Fork 31
/
errata-import.pl
executable file
·769 lines (674 loc) · 26.8 KB
/
errata-import.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
#!/usr/bin/perl
# This script imports CentOS Errata into your Spacewalk
# It relies on preformatted information since parsing email
# is the road to madness...
#
# To run this script on CentOS 5.x you need
# perl-XML-Simple, perl-Text-Unidecode and perl-Frontier-RPC
#
# Author: Steve Meier
# Date: 28.07.2014
#
# History:
# 20120206 - Initial version
# 20120501 - Modified to include details from Red Hat OVAL, use GetOpt
# This change requires the perl module Text::Unidecode
# 20120507 - Added --publish
# 20120610 - Added type selection (Security, Bug Fix, Enhancement)
# 20120701 - Added --exclude-channels and --include-channels
# 20120707 - Added --sync-channels
# 20120916 - Restore channel membership of packages after publishing errata
# Add CVEs to Security Errata
# 20120922 - Added user permission check
# 20120926 - Fix user permission check (Channel Admin works too)
# 20121105 - Added proper logout (via auth.logout)
# 20130114 - Added checking for existing errata. No longer requiers patched Frontier-Client.pm
# 20130214 - Fix warning if Red Hat OVAL file is not provided
# 20130214 - Small changes to allow Debian support
# 20130222 - Added support for keywords (such as reboot_suggested)
# 20130225 - Added a timer for re-authentication after 90 minutes
# 20130308 - Started working on update feature with code clean-ups
# 20130313 - Added support for API Version 12 in SW 1.9 (Thank you, James)
# 20130321 - Fixed channel sync for API Version 12
# 20130323 - Experimental support for updating existing Errata (adding packages)
# 20130909 - Added support for API Version 13 in SW 2.0 (Thank you, Alex)
# 20131213 - Merge patch from Aron Parsons to introduce --quiet
# 20140311 - Added support for API Version 14 in SW 2.1 (Thank you, Rolf)
# 20140316 - Fixed support for Version 14 (Thanks, Christian)
# 20140723 - Added support for API Version 15 in SW 2.2 (Thank you, Christian)
# 20140728 - Fixed a warning when importing Xen4CentOS errata (Thanks, Aron)
# 20140930 - Added --exclude-errata feature
# 20141002 - Fixed --exclude-errata feature
# 20141007 - Fixed supportedapi array (Thanks, Christian)
# 20141023 - Added support for Ubuntu USN Errata
# 20150402 - Added support for API v16 (Spacewalk 2.3)
#
# To do:
# - Add CVEs to Errata (using errata.set_details) [ DONE! ]
# - "Fix" --publish (works as designed by Spacewalk Developers) [ DONE! ]
# - Call errata.list_unpublished_errata in inventory collection [ DONE! ]
#
# Test for required modules
&eval_modules;
# Load modules
use strict;
use warnings;
use Data::Dumper;
use Getopt::Long;
import Frontier::Client;
import Text::Unidecode;
import XML::Simple;
# Version information
my $version = "20150402";
my @supportedapi = ( '10.9','10.11','11.00','11.1','12','13','13.0','14','14.0','15','15.0','16','16.0' );
# Spacewalk Version => API cheatsheet
# 0.6 => 10.9 == TESTED
# 0.7 => ??
# 0.8 => ??
# 1.0 => 10.11
# 1.1 => 10.11 == TESTED
# 1.2 => 10.15
# 1.3 => ??
# 1.4 => 10.16
# 1.5 => 11.00 == TESTED
# 1.6 => 11.1 == TESTED
# 1.7 => 11.1 == TESTED
# 1.8 => 11.1 == TESTED
# 1.9 => 12 == TESTED
# 2.0 => 13 == TESTED
# 2.1 => 14 == TESTED
# 2.2 => 15 == TESTED
# 2.3 => 16 == TESTED
# Variable declation
$| = 1;
my $server;
my $client;
my $apiversion;
my $user;
my $pass;
my $apisupport = 0;
my ($xml, $erratafile, $rhsaxml, $rhsaovalfile);
my $session;
my (%name2id, %name2channel);
my @empty = ();
my $publish = 0; # do not publish by default
my $security = 0;
my $bugfix = 0;
my $enhancement = 0;
my $created = 0;
my $debug = 0;
my $quiet = 0;
my $syncchannels = 0;
my $synccounter = 0;
my $synctimeout = 600;
my $getopt;
my ($channellist, $channel, @includechannels, @excludechannels);
my ($channeldetails, $lastmodified, $trackmodified, $lastsync, $synctimestamp);
my ($reference, @cves, @keywords, %erratadetails, %erratainfo);
my $result;
my $autopush = 0;
my (@autopushed, $undopush, @inchannel);
my %id2channel;
my ($pkg, $allpkg, $pkgdetails, $package);
my (@packages, @pkgids);
my @channels;
my ($advisory, $advid, $ovalid);
my $getdetails;
my $userroles;
my %existing;
my $authtime;
my $ignoreapiversion;
my $excludeerrata;
# Print call and parameters if in debug mode (GetOptions will clear @ARGV)
if (join(' ',@ARGV) =~ /--debug/) { print STDERR "DEBUG: Called as $0 ".join(' ',@ARGV)."\n"; }
# Parse arguments
$getopt = GetOptions( 'server=s' => \$server,
'errata=s' => \$erratafile,
'user=s' => \$user,
'pass=s' => \$pass,
'rhsa-oval=s' => \$rhsaovalfile,
'debug' => \$debug,
'quiet' => \$quiet,
'publish' => \$publish,
'security' => \$security,
'bugfix' => \$bugfix,
'enhancement' => \$enhancement,
'sync-channels' => \$syncchannels,
'sync-timeout=i' => \$synctimeout,
'include-channels:s{,}' => \@includechannels,
'exclude-channels:s{,}' => \@excludechannels,
'autopush' => \$autopush,
'ignore-api-version' => \$ignoreapiversion,
'exclude-errata=s' => \$excludeerrata
);
# Check for arguments
if ( not(defined($erratafile)) || not(defined($server)) ) {
&usage;
exit 1;
}
# Do we have a proper errata file?
if (not(-f $erratafile)) {
&error("$erratafile is not an errata file!\n");
exit 1;
}
# Output $version string in debug mode
&debug("Version is $version\n");
#############################
# Initialize API connection #
#############################
$client = new Frontier::Client(url => "http://$server/rpc/api");
#########################################
# Get the API version we are talking to #
#########################################
if ($apiversion = $client->call('api.get_version')) {
&info("Server is running API version $apiversion\n");
} else {
&error("Could not determine API version on server\n");
exit 1;
}
#####################################
# Check if API version is supported #
#####################################
foreach (@supportedapi) {
if ($apiversion eq $_) {
&info("API version $apiversion is supported\n");
$apisupport = 1;
}
}
# In case we found an unsupported API
if (not($apisupport)) {
if ($ignoreapiversion) {
&warning("API version $apiversion has not been tested but you wanted to continue.\n");
} else {
&error("API version $apiversion is not supported. Try upgrading this script.\n");
exit 2;
}
}
###########################
# Authenticate to the API #
###########################
if (not(defined($user))) {
&error("--user not set\n");
exit 3;
}
if (not(defined($pass))) {
&error("--pass not set\n");
exit 3;
}
# Call login and check session id
&login;
if ($session =~ /^\w+$/) {
&info("Authentication successful\n");
} else {
&error("Authentication FAILED!\n");
exit 3;
}
##########################
# Check user permissions #
##########################
if ($publish) {
# Publishing Errata requires Satellite or Org Administrator role
$userroles = $client->call('user.list_roles', $session, "$user");
&debug("User is assigned these roles: ".join(' ', @{$userroles})."\n");
if ( (join(' ', @{$userroles}) =~ /satellite_admin/) ||
(join(' ', @{$userroles}) =~ /org_admin/) ||
(join(' ', @{$userroles}) =~ /channel_admin/) ) {
&info("User has administrator access to this server\n");
} else {
&error("User does NOT have administrator access\n");
&error("You have set --publish but your user has insufficient access rights\n");
&error("Either use an account that is Satellite/Org/Channel Administator or omit --publish\n");
&logout;
exit 1;
}
}
############################
# Read the XML errata file #
############################
&info("Loading errata XML\n");
if (not($xml = XMLin($erratafile))) {
&error("Could not parse errata file!\n");
exit 4;
}
&debug("XML loaded successfully\n");
# Check that we can handle the data
if (defined($xml->{meta}->{minver})) {
if ($xml->{meta}->{minver} > $version) {
&error("This script is too old to handle this data file. Please update.\n");
exit 5;
}
}
##################################
# Load optional Red Hat OVAL XML #
##################################
if (defined($rhsaovalfile)) {
if (-f $rhsaovalfile) {
&info("Loading Red Hat OVAL XML\n");
if (not($rhsaxml = XMLin($rhsaovalfile))) {
&error("Could not parse Red Hat OVAL file!\n");
exit 4;
}
&debug("Red Hat OVAL XML loaded successfully\n");
}
}
##################################
# Check if syncRepo is supported #
##################################
if ($syncchannels) {
# API Version must be at least 11
unless ($apiversion =~ /^1[1-9]/) {
&warning("This API version does not support synching\n");
$syncchannels = 0;
}
}
########################
# Get server inventory #
########################
&info("Getting server inventory\n");
# Get a list of all channels
$channellist = $client->call('channel.list_all_channels', $session);
if (scalar(@includechannels) > 0) { &debug("--include-channels set: ".join(" ", @includechannels)."\n"); }
if (scalar(@excludechannels) > 0) { &debug("--exclude-channels set: ".join(" ", @excludechannels)."\n"); }
# Collect unpublished errata
&info("Checking for unpublished errata\n");
my $unpuberrata = $client->call('errata.list_unpublished_errata', $session);
foreach my $errata (@$unpuberrata) {
&debug("Found unpublished errata for $errata->{'advisory_name'}\n");
$existing{$errata->{'advisory_name'}} = 1;
}
# Go through each channel
foreach $channel (sort(@$channellist)) {
# Collect existing errata
my $channelerrata = $client->call('channel.software.list_errata', $session, $channel->{'label'});
foreach my $errata (@$channelerrata) {
&debug("Found existing errata for $errata->{'advisory_name'}\n");
$existing{$errata->{'advisory_name'}} = 1;
}
# Check if channel is included
if (scalar(@includechannels) > 0) {
if (not(grep { /$channel->{'label'}/ } @includechannels)) {
&info("Channel $channel->{'name'} ($channel->{'label'}) is NOT included\n");
next;
}
}
# Check if channel is excluded
if (scalar(@excludechannels) > 0) {
if (grep { /$channel->{'label'}/ } @excludechannels ) {
&info("Excluding channel $channel->{'name'} ($channel->{'label'})\n");
next;
}
}
# Sync channels to repo before scanning
if ($syncchannels) {
&debug("Getting channel.software.get_details for $channel->{'label'}\n");
$channeldetails = $client->call('channel.software.get_details', $session, $channel->{'label'});
if (defined($channeldetails->{'yumrepo_last_sync'})) {
$lastsync = sprintf("%d-%02d-%02d%s%s", unpack('A4A2A2AA8', $channeldetails->{'yumrepo_last_sync'}->value()));
} else {
$lastsync = "never";
}
if (defined($channeldetails->{'last_modified'})) {
$lastmodified = sprintf("%d-%02d-%02d%s%s", unpack('A4A2A2AA8', $channeldetails->{'last_modified'}->value()));
} else {
$lastmodified = "never";
}
&info("Starting Repository Sync for $channel->{'name'}\n");
if ($client->call('channel.software.sync_repo', $session, $channel->{'label'})) {
# Wait for spacewalk-repo-sync to complete
$synctimestamp = $lastsync;
while ($synctimestamp eq $lastsync) {
if ($channeldetails = $client->call('channel.software.get_details', $session, $channel->{'label'})) {
$synctimestamp = sprintf("%d-%02d-%02d%s%s", unpack('A4A2A2AA8', $channeldetails->{'yumrepo_last_sync'}->value()));
$trackmodified = $lastmodified;
$lastmodified = sprintf("%d-%02d-%02d%s%s", unpack('A4A2A2AA8', $channeldetails->{'last_modified'}->value()));
&info("Sync for $channel->{'name'} is still in progress (Last modified: $lastmodified)\n");
# Check if the channel has been modified (e.g. by adding new packages)
if ($trackmodified eq $lastmodified) { $synccounter += 30; &debug("Synccounter set to $synccounter\n"); };
if ($trackmodified ne $lastmodified) { $synccounter = 0; &debug("Synccounter set to $synccounter\n"); };
# Channel is no longer being updated but lastsync hasn't changed. Sync might have failed for some reason
if ($synccounter >= $synctimeout) { &warning("Sync Timeout reached. Please check your reposync log for details\n"); last; }
sleep 30;
} else {
&warning("Could not get Channel Details. Will try again\n");
sleep 1;
}
}
&info("Sync for $channel->{'name'} finished\n");
} else {
&error("Repository Sync for $channel->{'name'} FAILED\n");
}
}
&info("Scanning channel $channel->{'name'}\n");
# Get all packages in current channel
$allpkg = $client->call('channel.software.list_all_packages', $session, $channel->{'label'});
# Go through each package
foreach $pkg (@$allpkg) {
# Get the details of the current package
$pkgdetails = $client->call('packages.get_details', $session, $pkg->{id});
&debug("Package ID $pkg->{id} is $pkgdetails->{'file'}\n");
$name2id{$pkgdetails->{'file'}} = $pkg->{id};
$name2channel{$pkgdetails->{'file'}} = $channel->{'label'};
push(@{$id2channel{$pkg->{id}}}, $channel->{'label'});
}
}
##############################
# Process errata in XML file #
##############################
# Go through each <errata>
foreach $advisory (sort(keys(%{$xml}))) {
# Check for reauthentication
if (time > ($authtime + 5400)) { &reauthenticate; }
# Restore "proper" name of adivsory for CentOS
$advid = $advisory;
$advid =~ s/--/:/; #CEBA-2005--169 -> CEBA-2005:169
@packages = ();
@channels = ();
@cves = ();
@keywords = ();
# Only consider CentOS, Debian, Ubuntu errata
unless($advisory =~ /^CE|^DSA|^USN/) { &debug("Skipping $advid\n"); next; }
# Check if errata matches --exclude-errata
if (defined($excludeerrata)) {
if ($advid =~ /$excludeerrata/i) { ¬ice("Excluding $advid\n"); next; }
}
# Check command line options for errata to consider
if ($security || $bugfix || $enhancement) {
if ( ($advisory =~ /^CESA/) && (not($security)) ) {
&debug("Skipping $advid. Security Errata not selected.\n");
next;
}
if ( ($advisory =~ /^CEBA/) && (not($bugfix)) ) {
&debug("Skipping $advid. Bugfix Errata not selected.\n");
next;
}
if ( ($advisory =~ /^CEEA/) && (not($enhancement)) ) {
&debug("Skipping $advid. Enhancement Errata not selected.\n");
next;
}
}
# Start processing
&debug("Processing $advid\n");
# Generate OVAL ID for security errata
$ovalid = "";
if ($advid =~ /CESA/) {
if ($advid =~ /CESA-(\d+):(\d+)/) {
$ovalid = "oval:com.redhat.rhsa:def:$1".sprintf("%04d", $2);
&debug("Processing $advid -- OVAL ID is $ovalid\n");
}
}
# Check if the errata already exists
if (not(defined($existing{$advid}))) {
# Errata does not exist yet
# Find package IDs mentioned in errata
&find_packages($advisory);
# Create Errata Info hash
%erratainfo = ( "synopsis" => "$xml->{$advisory}->{synopsis}",
"advisory_name" => "$advid",
"advisory_release" => int($xml->{$advisory}->{release}),
"advisory_type" => "$xml->{$advisory}->{type}",
"product" => "$xml->{$advisory}->{product}",
"topic" => "$xml->{$advisory}->{topic}",
"description" => "$xml->{$advisory}->{description}",
"references" => "$xml->{$advisory}->{references}",
"notes" => "$xml->{$advisory}->{notes}",
"solution" => "$xml->{$advisory}->{solution}" );
# Insert description from Red Hat OVAL file, if available (only for Security)
if (defined($ovalid)) {
if ( defined($rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{description}) ) {
&debug("Using description from $ovalid\n");
$erratainfo{'description'} = $rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{description};
# Remove Umlauts -- API throws errors if they are included
$erratainfo{'description'} = unidecode($erratainfo{'description'});
# Limit to length of 4000 bytes (see https://www.redhat.com/archives/spacewalk-list/2012-June/msg00128.html)
if (length($erratainfo{'description'}) > 4000) {
$erratainfo{'description'} = substr($erratainfo{'description'}, 0, 4000);
}
# Add Red Hat's Copyright notice to the Notes field
if ( defined($rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{advisory}->{rights}) ) {
$erratainfo{'notes'} = "The description and CVE numbers have been taken from Red Hat OVAL definitions.\n\n";
$erratainfo{'notes'} .= $rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{advisory}->{rights};
}
}
# Create an array of CVEs from Red Hat OVAL file to add to Errata later
if ( ref($rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{reference}) eq 'ARRAY') {
foreach $reference (@{$rhsaxml->{definitions}->{definition}->{$ovalid}->{metadata}->{reference}}) {
if ($reference->{source} eq 'CVE') {
push(@cves, $reference->{ref_id});
}
}
}
}
# Handle CVEs attached to Debian announcements
if (defined($xml->{$advisory}->{cves})) {
if ( ref($xml->{$advisory}->{cves}) eq 'ARRAY') {
foreach $_ ( @{$xml->{$advisory}->{cves}} ) {
push(@cves, $_);
}
} else {
# one CVE only
push(@cves, $xml->{$advisory}->{cves});
}
}
# Handle keywords attached to CentOS/Debian announcements
if (defined($xml->{$advisory}->{keywords})) {
if ( ref($xml->{$advisory}->{keywords}) eq 'ARRAY') {
foreach $_ ( @{$xml->{$advisory}->{keywords}} ) {
push(@keywords, $_);
}
} else {
# one keyword only
push(@keywords, $xml->{$advisory}->{keywords});
}
}
if (@packages >= 1) {
# If there is at least one matching package create the errata?
if ( ref($xml->{$advisory}->{packages}) eq 'ARRAY') {
&info("Creating errata for $advid ($xml->{$advisory}->{synopsis}) (".($#packages +1)." of ".($#{$xml->{$advisory}->{packages}} +1).")\n");
} else {
&info("Creating errata for $advid ($xml->{$advisory}->{synopsis}) (1 of 1)\n");
}
$result = $client->call('errata.create', $session, \%erratainfo, \@empty, \@empty, \@packages, $client->boolean(0), \@channels);
if (defined($result->{faultCode})) {
&error("Creating Errata $advid FAILED\n");
} else {
$created++;
# Add keywords
if (@keywords >= 1) {
&info("Adding keywords to $advid\n");
&debug("Keywords in $advid: ".join(',', @keywords)."\n");
%erratadetails = ( "keywords" => [ @keywords ] );
$result = $client->call('errata.set_details', $session, $advid, \%erratadetails);
}
# Do extra stuff if --publish is set
if ($publish) {
# Publish the Errata (seperated from creation on purpose)
&info("Publishing Errata for $advid\n");
$result = $client->call('errata.publish', $session, $advid, \@channels);
if (defined($result->{faultCode})) { &error("Publishing Errata $advid FAILED\n"); }
# CVEs can only be added to published errata. Why? I have no idea.
if (@cves >= 1) {
&info("Adding CVE information to $advid\n");
&debug("CVEs in $advid: ".join(',', @cves)."\n");
%erratadetails = ( "cves" => [ @cves ] );
$result = $client->call('errata.set_details', $session, $advid, \%erratadetails);
}
# Reverse useless copying of packages around by publish
if (not($autopush)) {
foreach $pkg (@packages) {
# Log previous and current channel membership
@autopushed = ();
@inchannel = ();
&debug("Previous channel membership for $pkg: ".join(',',@{$id2channel{$pkg}})."\n");
$channellist = $client->call('packages.list_providing_channels', $session, $pkg);
foreach $channel (@$channellist) {
push(@inchannel, $channel->{label});
}
&debug("Current channel membership for $pkg: ".join(',',@inchannel)."\n");
# Check if package was in channel before publishing errata
foreach $channel (@$channellist) {
foreach (@{$id2channel{$pkg}}) {
# It wasn't. Note to @autopushed for removal
if (not(/^$channel->{label}$/)) { push(@autopushed, $channel->{label}); }
}
# I know, ugly hack, again :)
@autopushed = &uniq(@autopushed);
# Remove packages from channel(s) it didn't belong to earlier
if (@autopushed >= 1) {
&debug("Package $pkg has been auto-pushed to ".join(',',@autopushed)."\n");
foreach $undopush (@autopushed) {
&debug("Removing package $pkg from $undopush\n");
$result = $client->call('channel.software.remove_packages', $session, $undopush, $pkg);
}
}
}
}
}
}
}
} else {
# There is no related package so there is no errata created
¬ice("Skipping errata $advid ($xml->{$advisory}->{synopsis}) -- No packages found\n");
}
} else {
&info("Errata for $advid already exists\n");
&list_packages($advid);
&find_packages($advisory);
# Did we find more packages than currently associated?
if (@packages > @pkgids) {
&info("Adding packages to $advid\n");
# Maybe we just need this one call
my $addpackages = $client->call('errata.add_packages', $session, $advid, \@packages);
}
}
}
# FIN
&info("Errata created: $created\n");
if (not($publish)) {
&info("Errata have been created but NOT published!\n");
&info("Please go to: Errata -> Manage Errata -> Unpublished to find them\n");
&info("If you want to publish them please delete the unpublished Errata and run this script again\n");
&info("with the --publish parameter\n");
}
&logout;
exit;
# SUBS
sub debug() {
if ($debug) { print "DEBUG: @_"; }
}
sub info() {
if ($quiet) { return; }
print "INFO: @_";
}
sub warning() {
print "WARNING: @_";
}
sub error() {
print "ERROR: @_";
}
sub notice() {
if ($quiet) { return; }
print "NOTICE: @_";
}
sub usage() {
print "Usage: $0 --server <SERVER> --errata <ERRATA-FILE>\n";
print " [ --rhsa-oval <REDHAT-OVAL-XML> |\n";
print " --include-channels=<CHANNELS> | --exclude-channels=<CHANNELS> |\n";
print " --sync-channels | --sync-timeout=<TIMEOUT> |\n";
print " --bugfix | --security | --enhancement |\n";
print " --publish | --autopush | --ignore-api-version\n";
print " --exclude-errata=<REGEX>\n";
print " --quiet | --debug ]\n";
print "\n";
print "REQUIRED:\n";
print " --server\t\tThe hostname or IP address of your spacewalk server\n";
print " --errata\t\tThe XML file containing errata information\n";
print "\n";
print "OPTIONAL:\n";
print " --rhsa-oval\t\tOVAL XML file from Red Hat (recommended)\n";
print " --include-channels\tOnly consider certain channels (seperated by comma)\n";
print " --exclude-channels\tIgnore certain channels (seperated by comma)\n";
print " --sync-channels\tSync channel with associated repository before scanning\n";
print " --sync-timeout\tAbort sync after n seconds stalled (default: 600)\n";
print " --bugfix\t\tImport Bug Fix Advisories [CEBA] (default: all)\n";
print " --security\t\tImport Security Advisories [CESA] (default: all)\n";
print " --enhancement\t\tImport Enhancement Advisories [CEEA] (default: all)\n";
print " --publish\t\tPublish errata after creation (default: unpublished)\n";
print " --autopush\t\tAllow server to copy packages around (NOT recommended)\n";
print " --ignore-api-version\tContinue if the API version is untested (usually safe)\n";
print " --exclude-errata\tExclude Errata that match provided regex\n";
print "\n";
print "LOGGING:\n";
print " --quiet\t\tOnly print warnings and errors\n";
print " --debug\t\tSet verbosity to debug (use this when reporting issues!)\n";
print "\n";
}
sub eval_modules() {
eval { require Frontier::Client; };
if ($@) { die "ERROR: You are missing Frontier::Client\n CentOS: yum install perl-Frontier-RPC\n"; };
eval { require Text::Unidecode; };
if ($@) { die "ERROR: You are missing Text::Unidecode\n CentOS: yum install perl-Text-Unidecode\n"; };
eval { require XML::Simple; };
if ($@) { die "ERROR: You are missing XML::Simple\n CentOS: yum install perl-XML-Simple\n"; };
}
sub uniq() {
my %all = ();
@all{@_} = 1;
return (keys %all);
}
sub login() {
$session = $client->call('auth.login', "$user", "$pass");
$authtime = time;
}
sub logout() {
&debug("Logging out.\n");
$client->call('auth.logout', $session);
}
sub reauthenticate() {
&info("Reauthentication required\n");
&debug("Current Session ID: $session\n");
&logout;
&login;
&debug("New Session ID: $session\n");
}
sub find_packages() {
# INPUT: Advisory, e.g. CESA-2013:0123
# OUTPUT: Array of Package IDs, Array of Channel Labels
# Find package IDs mentioned in errata
if ( ref($xml->{$_[0]}->{packages}) eq 'ARRAY') {
foreach $package ( @{$xml->{$_[0]}->{packages}} ) {
if (defined($name2id{$package})) {
# We found it, nice
&debug("Package: $package -> $name2id{$package} -> $name2channel{$package} \n");
push(@packages, $name2id{$package});
push(@channels, $name2channel{$package});
# Ugly hack :)
@packages = &uniq(@packages);
@channels = &uniq(@channels);
} else {
# No such package, too bad
&debug("Package: $package not found\n");
}
}
} else {
# errata has only one package
if (defined($name2id{$xml->{$_[0]}->{packages}})) {
# the one and only package is found
&debug("Package: $xml->{$_[0]}->{packages} -> $name2id{$xml->{$_[0]}->{packages}} -> $name2channel{$xml->{$_[0]}->{packages}} \n");
push(@packages, $name2id{$xml->{$_[0]}->{packages}});
push(@channels, $name2channel{$xml->{$_[0]}->{packages}});
} else {
# no hit
&debug("Package: $xml->{$_[0]}->{packages} not found\n");
}
}
}
sub list_packages() {
# INPUT: Advisory, e.g. CESA-2013:0123
# OUTPUT: Array of Package IDs
@pkgids = ();
my $listpackages = $client->call('errata.list_packages', $session, $_[0]);
foreach my $package (@$listpackages) {
push(@pkgids, $package->{'id'});
}
&debug("$_[0] packages: ".join(' ',@pkgids)."\n");
}