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
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
|
# Author:: Adam Jacob (<adam@opscode.com>)
# Copyright:: Copyright (c) 2008-2015 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'chef/config'
require 'chef/provider/package'
require 'chef/mixin/which'
require 'chef/resource/package'
require 'singleton'
require 'chef/mixin/get_source_from_package'
class Chef
class Provider
class Package
class Yum < Chef::Provider::Package
provides :package, platform_family: %w(rhel fedora)
provides :yum_package, os: "linux"
class RPMUtils
class << self
# RPM::Version version_parse equivalent
def version_parse(evr)
return if evr.nil?
epoch = nil
# assume this is a version
version = evr
release = nil
lead = 0
tail = evr.size
if evr =~ %r{^([\d]+):}
epoch = $1.to_i
lead = $1.length + 1
elsif evr[0].ord == ":".ord
epoch = 0
lead = 1
end
if evr =~ %r{:?.*-(.*)$}
release = $1
tail = evr.length - release.length - lead - 1
if release.empty?
release = nil
end
end
version = evr[lead,tail]
if version.empty?
version = nil
end
[ epoch, version, release ]
end
# verify
def isalnum(x)
isalpha(x) or isdigit(x)
end
def isalpha(x)
v = x.ord
(v >= 65 and v <= 90) or (v >= 97 and v <= 122)
end
def isdigit(x)
v = x.ord
v >= 48 and v <= 57
end
# based on the reference spec in lib/rpmvercmp.c in rpm 4.9.0
def rpmvercmp(x, y)
# easy! :)
return 0 if x == y
if x.nil?
x = ""
end
if y.nil?
y = ""
end
# not so easy :(
#
# takes 2 strings like
#
# x = "1.20.b18.el5"
# y = "1.20.b17.el5"
#
# breaks into purely alpha and numeric segments and compares them using
# some rules
#
# * 10 > 1
# * 1 > a
# * z > a
# * Z > A
# * z > Z
# * leading zeros are ignored
# * separators (periods, commas) are ignored
# * "1.20.b18.el5.extrastuff" > "1.20.b18.el5"
x_pos = 0 # overall string element reference position
x_pos_max = x.length - 1 # number of elements in string, starting from 0
x_seg_pos = 0 # segment string element reference position
x_comp = nil # segment to compare
y_pos = 0
y_seg_pos = 0
y_pos_max = y.length - 1
y_comp = nil
while (x_pos <= x_pos_max and y_pos <= y_pos_max)
# first we skip over anything non alphanumeric
while (x_pos <= x_pos_max) and (isalnum(x[x_pos]) == false)
x_pos += 1 # +1 over pos_max if end of string
end
while (y_pos <= y_pos_max) and (isalnum(y[y_pos]) == false)
y_pos += 1
end
# if we hit the end of either we are done matching segments
if (x_pos == x_pos_max + 1) or (y_pos == y_pos_max + 1)
break
end
# we are now at the start of a alpha or numeric segment
x_seg_pos = x_pos
y_seg_pos = y_pos
# grab segment so we can compare them
if isdigit(x[x_seg_pos].ord)
x_seg_is_num = true
# already know it's a digit
x_seg_pos += 1
# gather up our digits
while (x_seg_pos <= x_pos_max) and isdigit(x[x_seg_pos])
x_seg_pos += 1
end
# copy the segment but not the unmatched character that x_seg_pos will
# refer to
x_comp = x[x_pos,x_seg_pos - x_pos]
while (y_seg_pos <= y_pos_max) and isdigit(y[y_seg_pos])
y_seg_pos += 1
end
y_comp = y[y_pos,y_seg_pos - y_pos]
else
# we are comparing strings
x_seg_is_num = false
while (x_seg_pos <= x_pos_max) and isalpha(x[x_seg_pos])
x_seg_pos += 1
end
x_comp = x[x_pos,x_seg_pos - x_pos]
while (y_seg_pos <= y_pos_max) and isalpha(y[y_seg_pos])
y_seg_pos += 1
end
y_comp = y[y_pos,y_seg_pos - y_pos]
end
# if y_seg_pos didn't advance in the above loop it means the segments are
# different types
if y_pos == y_seg_pos
# numbers always win over letters
return x_seg_is_num ? 1 : -1
end
# move the ball forward before we mess with the segments
x_pos += x_comp.length # +1 over pos_max if end of string
y_pos += y_comp.length
# we are comparing numbers - simply convert them
if x_seg_is_num
x_comp = x_comp.to_i
y_comp = y_comp.to_i
end
# compares ints or strings
# don't return if equal - try the next segment
if x_comp > y_comp
return 1
elsif x_comp < y_comp
return -1
end
# if we've reached here than the segments are the same - try again
end
# we must have reached the end of one or both of the strings and they
# matched up until this point
# segments matched completely but the segment separators were different -
# rpm reference code treats these as equal.
if (x_pos == x_pos_max + 1) and (y_pos == y_pos_max + 1)
return 0
end
# the most unprocessed characters left wins
if (x_pos_max - x_pos) > (y_pos_max - y_pos)
return 1
else
return -1
end
end
end # self
end # RPMUtils
class RPMVersion
include Comparable
def initialize(*args)
if args.size == 1
@e, @v, @r = RPMUtils.version_parse(args[0])
elsif args.size == 3
@e = args[0].to_i
@v = args[1]
@r = args[2]
else
raise ArgumentError, "Expecting either 'epoch-version-release' or 'epoch, " +
"version, release'"
end
end
attr_reader :e, :v, :r
alias :epoch :e
alias :version :v
alias :release :r
def self.parse(*args)
self.new(*args)
end
def <=>(y)
compare_versions(y)
end
def compare(y)
compare_versions(y, false)
end
def partial_compare(y)
compare_versions(y, true)
end
# RPM::Version rpm_version_to_s equivalent
def to_s
if @r.nil?
@v
else
"#{@v}-#{@r}"
end
end
def evr
"#{@e}:#{@v}-#{@r}"
end
private
# Rough RPM::Version rpm_version_cmp equivalent - except much slower :)
#
# partial lets epoch and version segment equality be good enough to return equal, eg:
#
# 2:1.2-1 == 2:1.2
# 2:1.2-1 == 2:
#
def compare_versions(y, partial=false)
x = self
# compare epoch
if (x.e.nil? == false and x.e > 0) and y.e.nil?
return 1
elsif x.e.nil? and (y.e.nil? == false and y.e > 0)
return -1
elsif x.e.nil? == false and y.e.nil? == false
if x.e < y.e
return -1
elsif x.e > y.e
return 1
end
end
# compare version
if partial and (x.v.nil? or y.v.nil?)
return 0
elsif x.v.nil? == false and y.v.nil?
return 1
elsif x.v.nil? and y.v.nil? == false
return -1
elsif x.v.nil? == false and y.v.nil? == false
cmp = RPMUtils.rpmvercmp(x.v, y.v)
return cmp if cmp != 0
end
# compare release
if partial and (x.r.nil? or y.r.nil?)
return 0
elsif x.r.nil? == false and y.r.nil?
return 1
elsif x.r.nil? and y.r.nil? == false
return -1
elsif x.r.nil? == false and y.r.nil? == false
cmp = RPMUtils.rpmvercmp(x.r, y.r)
return cmp
end
return 0
end
end
class RPMPackage
include Comparable
def initialize(*args)
if args.size == 4
@n = args[0]
@version = RPMVersion.new(args[1])
@a = args[2]
@provides = args[3]
elsif args.size == 6
@n = args[0]
e = args[1].to_i
v = args[2]
r = args[3]
@version = RPMVersion.new(e,v,r)
@a = args[4]
@provides = args[5]
else
raise ArgumentError, "Expecting either 'name, epoch-version-release, arch, provides' " +
"or 'name, epoch, version, release, arch, provides'"
end
# We always have one, ourselves!
if @provides.empty?
@provides = [ RPMProvide.new(@n, @version.evr, :==) ]
end
end
attr_reader :n, :a, :version, :provides
alias :name :n
alias :arch :a
def <=>(y)
compare(y)
end
def compare(y)
x = self
# easy! :)
return 0 if x.nevra == y.nevra
# compare name
if x.n.nil? == false and y.n.nil?
return 1
elsif x.n.nil? and y.n.nil? == false
return -1
elsif x.n.nil? == false and y.n.nil? == false
if x.n < y.n
return -1
elsif x.n > y.n
return 1
end
end
# compare version
if x.version > y.version
return 1
elsif x.version < y.version
return -1
end
# compare arch
if x.a.nil? == false and y.a.nil?
return 1
elsif x.a.nil? and y.a.nil? == false
return -1
elsif x.a.nil? == false and y.a.nil? == false
if x.a < y.a
return -1
elsif x.a > y.a
return 1
end
end
return 0
end
def to_s
nevra
end
def nevra
"#{@n}-#{@version.evr}.#{@a}"
end
end
# Simple implementation from rpm and ruby-rpm reference code
class RPMDependency
def initialize(*args)
if args.size == 3
@name = args[0]
@version = RPMVersion.new(args[1])
# Our requirement to other dependencies
@flag = args[2] || :==
elsif args.size == 5
@name = args[0]
e = args[1].to_i
v = args[2]
r = args[3]
@version = RPMVersion.new(e,v,r)
@flag = args[4] || :==
else
raise ArgumentError, "Expecting either 'name, epoch-version-release, flag' or " +
"'name, epoch, version, release, flag'"
end
end
attr_reader :name, :version, :flag
# Parses 2 forms:
#
# "mtr >= 2:0.71-3.0"
# "mta"
def self.parse(string)
if string =~ %r{^(\S+)\s+(>|>=|=|==|<=|<)\s+(\S+)$}
name = $1
if $2 == "="
flag = :==
else
flag = :"#{$2}"
end
version = $3
return self.new(name, version, flag)
else
name = string
return self.new(name, nil, nil)
end
end
# Test if another RPMDependency satisfies our requirements
def satisfy?(y)
unless y.kind_of?(RPMDependency)
raise ArgumentError, "Expecting an RPMDependency object"
end
x = self
# Easy!
if x.name != y.name
return false
end
# Partial compare
#
# eg: x.version 2.3 == y.version 2.3-1
sense = x.version.partial_compare(y.version)
# Thanks to rpmdsCompare() rpmds.c
if sense < 0 and (x.flag == :> || x.flag == :>=) || (y.flag == :<= || y.flag == :<)
return true
elsif sense > 0 and (x.flag == :< || x.flag == :<=) || (y.flag == :>= || y.flag == :>)
return true
elsif sense == 0 and (
((x.flag == :== or x.flag == :<= or x.flag == :>=) and (y.flag == :== or y.flag == :<= or y.flag == :>=)) or
(x.flag == :< and y.flag == :<) or
(x.flag == :> and y.flag == :>)
)
return true
end
return false
end
end
class RPMProvide < RPMDependency; end
class RPMRequire < RPMDependency; end
class RPMDbPackage < RPMPackage
# <rpm parts>, installed, available
def initialize(*args)
@repoid = args.pop
# state
@available = args.pop
@installed = args.pop
super(*args)
end
attr_reader :repoid, :available, :installed
end
# Simple storage for RPMPackage objects - keeps them unique and sorted
class RPMDb
def initialize
# package name => [ RPMPackage, RPMPackage ] of different versions
@rpms = Hash.new
# package nevra => RPMPackage for lookups
@index = Hash.new
# provide name (aka feature) => [RPMPackage, RPMPackage] each providing this feature
@provides = Hash.new
# RPMPackages listed as available
@available = Set.new
# RPMPackages listed as installed
@installed = Set.new
end
def [](package_name)
self.lookup(package_name)
end
# Lookup package_name and return a descending array of package objects
def lookup(package_name)
pkgs = @rpms[package_name]
if pkgs
return pkgs.sort.reverse
else
return nil
end
end
def lookup_provides(provide_name)
@provides[provide_name]
end
# Using the package name as a key, and nevra for an index, keep a unique list of packages.
# The available/installed state can be overwritten for existing packages.
def push(*args)
args.flatten.each do |new_rpm|
unless new_rpm.kind_of?(RPMDbPackage)
raise ArgumentError, "Expecting an RPMDbPackage object"
end
@rpms[new_rpm.n] ||= Array.new
# we may already have this one, like when the installed list is refreshed
idx = @index[new_rpm.nevra]
if idx
# grab the existing package if it's not
curr_rpm = idx
else
@rpms[new_rpm.n] << new_rpm
new_rpm.provides.each do |provide|
@provides[provide.name] ||= Array.new
@provides[provide.name] << new_rpm
end
curr_rpm = new_rpm
end
# Track the nevra -> RPMPackage association to avoid having to compare versions
# with @rpms[new_rpm.n] on the next round
@index[new_rpm.nevra] = curr_rpm
# these are overwritten for existing packages
if new_rpm.available
@available << curr_rpm
end
if new_rpm.installed
@installed << curr_rpm
end
end
end
def <<(*args)
self.push(args)
end
def clear
@rpms.clear
@index.clear
@provides.clear
clear_available
clear_installed
end
def clear_available
@available.clear
end
def clear_installed
@installed.clear
end
def size
@rpms.size
end
alias :length :size
def available_size
@available.size
end
def installed_size
@installed.size
end
def available?(package)
@available.include?(package)
end
def installed?(package)
@installed.include?(package)
end
def whatprovides(rpmdep)
unless rpmdep.kind_of?(RPMDependency)
raise ArgumentError, "Expecting an RPMDependency object"
end
what = []
packages = lookup_provides(rpmdep.name)
if packages
packages.each do |pkg|
pkg.provides.each do |provide|
if provide.satisfy?(rpmdep)
what << pkg
end
end
end
end
return what
end
end
# Cache for our installed and available packages, pulled in from yum-dump.py
class YumCache
include Chef::Mixin::Which
include Chef::Mixin::ShellOut
include Singleton
attr_accessor :yum_binary
def initialize
@rpmdb = RPMDb.new
# Next time @rpmdb is accessed:
# :all - Trigger a run of "yum-dump.py --options --installed-provides", updates
# yum's cache and parses options from /etc/yum.conf. Pulls in Provides
# dependency data for installed packages only - this data is slow to
# gather.
# :provides - Same as :all but pulls in Provides data for available packages as well.
# Used as a last resort when we can't find a Provides match.
# :installed - Trigger a run of "yum-dump.py --installed", only reads the local rpm
# db. Used between client runs for a quick refresh.
# :none - Do nothing, a call to one of the reload methods is required.
@next_refresh = :all
@allow_multi_install = []
@extra_repo_control = nil
# these are for subsequent runs if we are on an interval
Chef::Client.when_run_starts do
YumCache.instance.reload
end
end
attr_reader :extra_repo_control
# Cache management
#
def refresh
case @next_refresh
when :none
return nil
when :installed
reset_installed
# fast
opts=" --installed"
when :all
reset
# medium
opts=" --options --installed-provides"
when :provides
reset
# slow!
opts=" --options --all-provides"
else
raise ArgumentError, "Unexpected value in next_refresh: #{@next_refresh}"
end
if @extra_repo_control
opts << " #{@extra_repo_control}"
end
opts << " --yum-lock-timeout #{Chef::Config[:yum_lock_timeout]}"
one_line = false
error = nil
helper = ::File.join(::File.dirname(__FILE__), 'yum-dump.py')
status = nil
begin
status = shell_out!("#{python_bin} #{helper}#{opts}", :timeout => Chef::Config[:yum_timeout])
status.stdout.each_line do |line|
one_line = true
line.chomp!
if line =~ %r{\[option (.*)\] (.*)}
if $1 == "installonlypkgs"
@allow_multi_install = $2.split
else
raise Chef::Exceptions::Package, "Strange, unknown option line '#{line}' from yum-dump.py"
end
next
end
if line =~ %r{^(\S+) ([0-9]+) (\S+) (\S+) (\S+) \[(.*)\] ([i,a,r]) (\S+)$}
name = $1
epoch = $2
version = $3
release = $4
arch = $5
provides = parse_provides($6)
type = $7
repoid = $8
else
Chef::Log.warn("Problem parsing line '#{line}' from yum-dump.py! " +
"Please check your yum configuration.")
next
end
case type
when "i"
# if yum-dump was called with --installed this may not be true, but it's okay
# since we don't touch the @available Set in reload_installed
available = false
installed = true
when "a"
available = true
installed = false
when "r"
available = true
installed = true
end
pkg = RPMDbPackage.new(name, epoch, version, release, arch, provides, installed, available, repoid)
@rpmdb << pkg
end
error = status.stderr
rescue Mixlib::ShellOut::CommandTimeout => e
Chef::Log.error("#{helper} exceeded timeout #{Chef::Config[:yum_timeout]}")
raise(e)
end
if status.exitstatus != 0
raise Chef::Exceptions::Package, "Yum failed - #{status.inspect} - returns: #{error}"
else
unless one_line
Chef::Log.warn("Odd, no output from yum-dump.py. Please check " +
"your yum configuration.")
end
end
# A reload method must be called before the cache is altered
@next_refresh = :none
end
def python_bin
yum_executable = which(yum_binary)
if yum_executable && shabang?(yum_executable)
shabang_or_fallback(extract_interpreter(yum_executable))
else
Chef::Log.warn("Yum executable not found or doesn't start with #!. Using default python.")
"/usr/bin/python"
end
rescue StandardError => e
Chef::Log.warn("An error occurred attempting to determine correct python executable. Using default.")
Chef::Log.debug(e)
"/usr/bin/python"
end
def extract_interpreter(file)
::File.open(file, 'r', &:readline)[2..-1].strip
end
# dnf based systems have a yum shim that has /bin/bash as the interpreter. Don't use this.
def shabang_or_fallback(interpreter)
if interpreter == '/bin/bash'
Chef::Log.warn("Yum executable interpreter is /bin/bash. Falling back to default python.")
"/usr/bin/python"
else
interpreter
end
end
def shabang?(file)
::File.open(file, 'r') do |f|
f.read(2) == '#!'
end
rescue Errno::ENOENT
false
end
def reload
@next_refresh = :all
end
def reload_installed
@next_refresh = :installed
end
def reload_provides
@next_refresh = :provides
end
def reset
@rpmdb.clear
end
def reset_installed
@rpmdb.clear_installed
end
# Querying the cache
#
# Check for package by name or name+arch
def package_available?(package_name)
refresh
if @rpmdb.lookup(package_name)
return true
else
if package_name =~ %r{^(.*)\.(.*)$}
pkg_name = $1
pkg_arch = $2
if matches = @rpmdb.lookup(pkg_name)
matches.each do |m|
return true if m.arch == pkg_arch
end
end
end
end
return false
end
# Returns a array of packages satisfying an RPMDependency
def packages_from_require(rpmdep)
refresh
@rpmdb.whatprovides(rpmdep)
end
# Check if a package-version.arch is available to install
def version_available?(package_name, desired_version, arch=nil)
version(package_name, arch, true, false) do |v|
return true if desired_version == v
end
return false
end
# Return the source repository for a package-version.arch
def package_repository(package_name, desired_version, arch=nil)
package(package_name, arch, true, false) do |pkg|
return pkg.repoid if desired_version == pkg.version.to_s
end
return nil
end
# Return the latest available version for a package.arch
def available_version(package_name, arch=nil)
version(package_name, arch, true, false)
end
alias :candidate_version :available_version
# Return the currently installed version for a package.arch
def installed_version(package_name, arch=nil)
version(package_name, arch, false, true)
end
# Return an array of packages allowed to be installed multiple times, such as the kernel
def allow_multi_install
refresh
@allow_multi_install
end
def enable_extra_repo_control(arg)
# Don't touch cache if it's the same repos as the last load
unless @extra_repo_control == arg
@extra_repo_control = arg
reload
end
end
def disable_extra_repo_control
# Only force reload when set
if @extra_repo_control
@extra_repo_control = nil
reload
end
end
private
def version(package_name, arch=nil, is_available=false, is_installed=false)
package(package_name, arch, is_available, is_installed) do |pkg|
if block_given?
yield pkg.version.to_s
else
# first match is latest version
return pkg.version.to_s
end
end
if block_given?
return self
else
return nil
end
end
def package(package_name, arch=nil, is_available=false, is_installed=false)
refresh
packages = @rpmdb[package_name]
if packages
packages.each do |pkg|
if is_available
next unless @rpmdb.available?(pkg)
end
if is_installed
next unless @rpmdb.installed?(pkg)
end
if arch
next unless pkg.arch == arch
end
if block_given?
yield pkg
else
# first match is latest version
return pkg
end
end
end
if block_given?
return self
else
return nil
end
end
# Parse provides from yum-dump.py output
def parse_provides(string)
ret = []
# ['atk = 1.12.2-1.fc6', 'libatk-1.0.so.0']
string.split(", ").each do |seg|
# 'atk = 1.12.2-1.fc6'
if seg =~ %r{^'(.*)'$}
ret << RPMProvide.parse($1)
end
end
return ret
end
end # YumCache
include Chef::Mixin::GetSourceFromPackage
def initialize(new_resource, run_context)
super
@yum = YumCache.instance
@yum.yum_binary = yum_binary
end
def yum_binary
@yum_binary ||=
begin
yum_binary = new_resource.yum_binary if new_resource.is_a?(Chef::Resource::YumPackage)
yum_binary ||= ::File.exist?("/usr/bin/yum-deprecated") ? "yum-deprecated" : "yum"
end
end
# Extra attributes
#
def arch_for_name(n)
if @new_resource.respond_to?("arch")
@new_resource.arch
elsif @arch
idx = package_name_array.index(n)
as_array(@arch)[idx]
else
nil
end
end
def arch
if @new_resource.respond_to?("arch")
@new_resource.arch
else
nil
end
end
def set_arch(arch)
if @new_resource.respond_to?("arch")
@new_resource.arch(arch)
end
end
def flush_cache
if @new_resource.respond_to?("flush_cache")
@new_resource.flush_cache
else
{ :before => false, :after => false }
end
end
# Helpers
#
def yum_arch(arch)
arch ? ".#{arch}" : nil
end
def yum_command(command)
command = "#{yum_binary} #{command}"
Chef::Log.debug("#{@new_resource}: yum command: \"#{command}\"")
status = shell_out_with_timeout(command, {:timeout => Chef::Config[:yum_timeout]})
# This is fun: rpm can encounter errors in the %post/%postun scripts which aren't
# considered fatal - meaning the rpm is still successfully installed. These issue
# cause yum to emit a non fatal warning but still exit(1). As there's currently no
# way to suppress this behavior and an exit(1) will break a Chef run we make an
# effort to trap these and re-run the same install command - it will either fail a
# second time or succeed.
#
# A cleaner solution would have to be done in python and better hook into
# yum/rpm to handle exceptions as we see fit.
if status.exitstatus == 1
status.stdout.each_line do |l|
# rpm-4.4.2.3 lib/psm.c line 2182
if l =~ %r{^error: %(post|postun)\(.*\) scriptlet failed, exit status \d+$}
Chef::Log.warn("#{@new_resource} caught non-fatal scriptlet issue: \"#{l}\". Can't trust yum exit status " +
"so running install again to verify.")
status = shell_out_with_timeout(command, {:timeout => Chef::Config[:yum_timeout]})
break
end
end
end
if status.exitstatus > 0
command_output = "STDOUT: #{status.stdout}\nSTDERR: #{status.stderr}"
raise Chef::Exceptions::Exec, "#{command} returned #{status.exitstatus}:\n#{command_output}"
end
end
# Standard Provider methods for Parent
#
def load_current_resource
if flush_cache[:before]
@yum.reload
end
if @new_resource.options
repo_control = []
@new_resource.options.split.each do |opt|
if opt =~ %r{--(enable|disable)repo=.+}
repo_control << opt
end
end
if repo_control.size > 0
@yum.enable_extra_repo_control(repo_control.join(" "))
else
@yum.disable_extra_repo_control
end
else
@yum.disable_extra_repo_control
end
# At this point package_name could be:
#
# 1) a package name, eg: "foo"
# 2) a package name.arch, eg: "foo.i386"
# 3) or a dependency, eg: "foo >= 1.1"
# Check if we have name or name+arch which has a priority over a dependency
package_name_array.each_with_index do |n, index|
unless @yum.package_available?(n)
# If they aren't in the installed packages they could be a dependency
dep = parse_dependency(n, new_version_array[index])
if dep
if @new_resource.package_name.is_a?(Array)
@new_resource.package_name(package_name_array - [n] + [dep.first])
@new_resource.version(new_version_array - [new_version_array[index]] + [dep.last]) if dep.last
else
@new_resource.package_name(dep.first)
@new_resource.version(dep.last) if dep.last
end
end
end
end
@current_resource = Chef::Resource::Package.new(@new_resource.name)
@current_resource.package_name(@new_resource.package_name)
installed_version = []
@candidate_version = []
@arch = []
if @new_resource.source
unless ::File.exists?(@new_resource.source)
raise Chef::Exceptions::Package, "Package #{@new_resource.name} not found: #{@new_resource.source}"
end
Chef::Log.debug("#{@new_resource} checking rpm status")
shell_out_with_timeout!("rpm -qp --queryformat '%{NAME} %{VERSION}-%{RELEASE}\n' #{@new_resource.source}", :timeout => Chef::Config[:yum_timeout]).stdout.each_line do |line|
case line
when /([\w\d_.-]+)\s([\w\d_.-]+)/
@current_resource.package_name($1)
@new_resource.version($2)
end
end
@candidate_version << @new_resource.version
installed_version << @yum.installed_version(@current_resource.package_name, arch)
else
package_name_array.each_with_index do |pkg, idx|
# Don't overwrite an existing arch
if arch
name, parch = pkg, arch
else
name, parch = parse_arch(pkg)
# if we parsed an arch from the name, update the name
# to be just the package name.
if parch
if @new_resource.package_name.is_a?(Array)
@new_resource.package_name[idx] = name
else
@new_resource.package_name(name)
# only set the arch if it's a single package
set_arch(parch)
end
end
end
if @new_resource.version
new_resource =
"#{@new_resource.package_name}-#{@new_resource.version}#{yum_arch(parch)}"
else
new_resource = "#{@new_resource.package_name}#{yum_arch(parch)}"
end
Chef::Log.debug("#{@new_resource} checking yum info for #{new_resource}")
installed_version << @yum.installed_version(name, parch)
@candidate_version << @yum.candidate_version(name, parch)
@arch << parch
end
end
if installed_version.size == 1
@current_resource.version(installed_version[0])
@candidate_version = @candidate_version[0]
@arch = @arch[0]
else
@current_resource.version(installed_version)
end
Chef::Log.debug("#{@new_resource} installed version: #{installed_version || "(none)"} candidate version: " +
"#{@candidate_version || "(none)"}")
@current_resource
end
def install_remote_package(name, version)
# Work around yum not exiting with an error if a package doesn't exist
# for CHEF-2062
all_avail = as_array(name).zip(as_array(version)).any? do |n, v|
@yum.version_available?(n, v, arch_for_name(n))
end
method = log_method = nil
methods = []
if all_avail
# More Yum fun:
#
# yum install of an old name+version will exit(1)
# yum install of an old name+version+arch will exit(0) for some reason
#
# Some packages can be installed multiple times like the kernel
as_array(name).zip(as_array(version)).each do |n, v|
method = "install"
log_method = "installing"
idx = package_name_array.index(n)
unless @yum.allow_multi_install.include?(n)
if RPMVersion.parse(current_version_array[idx]) > RPMVersion.parse(v)
# We allow downgrading only in the evenit of single-package
# rules where the user explicitly allowed it
if allow_downgrade
method = "downgrade"
log_method = "downgrading"
else
# we bail like yum when the package is older
raise Chef::Exceptions::Package, "Installed package #{n}-#{current_version_array[idx]} is newer " +
"than candidate package #{n}-#{v}"
end
end
end
# methods don't count for packages we won't be touching
next if RPMVersion.parse(current_version_array[idx]) == RPMVersion.parse(v)
methods << method
end
# We could split this up into two commands if we wanted to, but
# for now, just don't support this.
if methods.uniq.length > 1
raise Chef::Exceptions::Package, "Multipackage rule #{name} has a mix of upgrade and downgrade packages. Cannot proceed."
end
repos = []
pkg_string_bits = []
as_array(name).zip(as_array(version)).each do |n, v|
idx = package_name_array.index(n)
a = arch_for_name(n)
s = ''
unless v == current_version_array[idx]
s = "#{n}-#{v}#{yum_arch(a)}"
repo = @yum.package_repository(n, v, a)
repos << "#{s} from #{repo} repository"
pkg_string_bits << s
end
end
pkg_string = pkg_string_bits.join(' ')
Chef::Log.info("#{@new_resource} #{log_method} #{repos.join(' ')}")
yum_command("-d0 -e0 -y#{expand_options(@new_resource.options)} #{method} #{pkg_string}")
else
raise Chef::Exceptions::Package, "Version #{version} of #{name} not found. Did you specify both version " +
"and release? (version-release, e.g. 1.84-10.fc6)"
end
end
def install_package(name, version)
if @new_resource.source
yum_command("-d0 -e0 -y#{expand_options(@new_resource.options)} localinstall #{@new_resource.source}")
else
install_remote_package(name, version)
end
if flush_cache[:after]
@yum.reload
else
@yum.reload_installed
end
end
# Keep upgrades from trying to install an older candidate version. Can happen when a new
# version is installed then removed from a repository, now the older available version
# shows up as a viable install candidate.
#
# Can be done in upgrade_package but an upgraded from->to log message slips out
#
# Hacky - better overall solution? Custom compare in Package provider?
def action_upgrade
# Could be uninstalled or have no candidate
if @current_resource.version.nil? || !candidate_version_array.any?
super
elsif candidate_version_array.zip(current_version_array).any? do |c, i|
RPMVersion.parse(c) > RPMVersion.parse(i)
end
super
else
Chef::Log.debug("#{@new_resource} is at the latest version - nothing to do")
end
end
def upgrade_package(name, version)
install_package(name, version)
end
def remove_package(name, version)
if version
remove_str = as_array(name).zip(as_array(version)).map do |n, v|
a = arch_for_name(n)
"#{[n, v].join('-')}#{yum_arch(a)}"
end.join(' ')
else
remove_str = as_array(name).map do |n|
a = arch_for_name(n)
"#{n}#{yum_arch(a)}"
end.join(' ')
end
yum_command("-d0 -e0 -y#{expand_options(@new_resource.options)} remove #{remove_str}")
if flush_cache[:after]
@yum.reload
else
@yum.reload_installed
end
end
def purge_package(name, version)
remove_package(name, version)
end
private
def parse_arch(package_name)
# Allow for foo.x86_64 style package_name like yum uses in it's output
#
if package_name =~ %r{^(.*)\.(.*)$}
new_package_name = $1
new_arch = $2
# foo.i386 and foo.beta1 are both valid package names or expressions of an arch.
# Ensure we don't have an existing package matching package_name, then ensure we at
# least have a match for the new_package+new_arch before we overwrite. If neither
# then fall through to standard package handling.
old_installed = @yum.installed_version(package_name)
old_candidate = @yum.candidate_version(package_name)
new_installed = @yum.installed_version(new_package_name, new_arch)
new_candidate = @yum.candidate_version(new_package_name, new_arch)
if (old_installed.nil? and old_candidate.nil?) and (new_installed or new_candidate)
Chef::Log.debug("Parsed out arch #{new_arch}, new package name is #{new_package_name}")
return new_package_name, new_arch
end
end
return package_name, nil
end
# If we don't have the package we could have been passed a 'whatprovides' feature
#
# eg: yum install "perl(Config)"
# yum install "mtr = 2:0.71-3.1"
# yum install "mtr > 2:0.71"
#
# We support resolving these out of the Provides data imported from yum-dump.py and
# matching them up with an actual package so the standard resource handling can apply.
#
# There is currently no support for filename matching.
def parse_dependency(name,version)
# Transform the package_name into a requirement
# If we are passed a version or a version constraint we have to assume it's a requirement first. If it can't be
# parsed only yum_require.name will be set and @new_resource.version will be left intact
if version
require_string = "#{name} #{version}"
else
# Transform the package_name into a requirement, might contain a version, could just be
# a match for virtual provides
require_string = name
end
yum_require = RPMRequire.parse(require_string)
# and gather all the packages that have a Provides feature satisfying the requirement.
# It could be multiple be we can only manage one
packages = @yum.packages_from_require(yum_require)
if packages.empty?
# Don't bother if we are just ensuring a package is removed - we don't need Provides data
actions = Array(@new_resource.action)
unless actions.size == 1 and (actions[0] == :remove || actions[0] == :purge)
Chef::Log.debug("#{@new_resource} couldn't match #{@new_resource.package_name} in " +
"installed Provides, loading available Provides - this may take a moment")
@yum.reload_provides
packages = @yum.packages_from_require(yum_require)
end
end
unless packages.empty?
new_package_name = packages.first.name
new_package_version = packages.first.version.to_s
debug_msg = "#{name}: Unable to match package '#{name}' but matched #{packages.size} "
debug_msg << (packages.size == 1 ? "package" : "packages")
debug_msg << ", selected '#{new_package_name}' version '#{new_package_version}'"
Chef::Log.debug(debug_msg)
# Ensure it's not the same package under a different architecture
unique_names = []
packages.each do |pkg|
unique_names << "#{pkg.name}-#{pkg.version.evr}"
end
unique_names.uniq!
if unique_names.size > 1
Chef::Log.warn("#{@new_resource} matched multiple Provides for #{@new_resource.package_name} " +
"but we can only use the first match: #{new_package_name}. Please use a more " +
"specific version.")
end
if yum_require.version.to_s.nil?
new_package_version = nil
end
[new_package_name,new_package_version]
end
end
end
end
end
end
|