Class: Machinery::ManagedFilesDatabase
- Defined in:
- lib/managed_files_database.rb
Overview
Copyright © 2013-2016 SUSE LLC
This program is free software; you can redistribute it and/or modify it under the terms of version 3 of the GNU General Public License as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, contact SUSE LLC.
To contact SUSE about this file by physical or electronic mail, you may find current contact information at www.suse.com
Direct Known Subclasses
Defined Under Namespace
Classes: ChangedFile
Instance Method Summary collapse
- #changed_files(&block) ⇒ Object
- #expected_tag?(character, position) ⇒ Boolean
-
#get_file_properties(cur_files) ⇒ Object
get path data for list of files cur_files is guaranteed to not exceed max command line length.
- #get_link_target(link) ⇒ Object
- #get_path_data(paths) ⇒ Object
- #handle_verify_fail(path) ⇒ Object
-
#initialize(system) ⇒ ManagedFilesDatabase
constructor
A new instance of ManagedFilesDatabase.
- #parse_changes_line(line) ⇒ Object
- #parse_stat_line(line) ⇒ Object
Constructor Details
#initialize(system) ⇒ ManagedFilesDatabase
Returns a new instance of ManagedFilesDatabase.
32 33 34 |
# File 'lib/managed_files_database.rb', line 32 def initialize(system) @system = system end |
Instance Method Details
#changed_files(&block) ⇒ Object
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 |
# File 'lib/managed_files_database.rb', line 45 def changed_files(&block) return @changed_files if @changed_files check_requirements result = managed_files_list(&block).lines.inject({}) do |hash, line| line.chomp! next(hash) unless line =~ /^[^ ]+[ ]+. \/.*$/ file, changes, type = parse_changes_line(line) unless hash[file] package_name, package_version = package_for_file_path(file) hash[file] = ChangedFile.new( type, name: file, package_name: package_name, package_version: package_version, status: "changed", changes: [] ) end hash[file].changes |= changes hash end.values paths = result.reject { |f| f.changes.include?("deleted") }.map(&:name) path_data = get_path_data(paths) result.each do |pkg| next unless path_data[pkg.name] path_data[pkg.name].each do |key, value| pkg[key] = value end end @changed_files = result end |
#expected_tag?(character, position) ⇒ Boolean
36 37 38 39 40 41 42 43 |
# File 'lib/managed_files_database.rb', line 36 def expected_tag?(character, position) if @rpm_changes[position] == character true else @unknown_tag ||= ![".", "?"].include?(@rpm_changes[position]) false end end |
#get_file_properties(cur_files) ⇒ Object
get path data for list of files cur_files is guaranteed to not exceed max command line length
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/managed_files_database.rb', line 164 def get_file_properties(cur_files) ret = {} out = @system.run_command( "stat", "--printf", "%a:%U:%G:%u:%g:%F:%n\\n", *cur_files, stdout: :capture, privileged: true ) out.each_line do |l| path, values = parse_stat_line(l) ret[path] = values ret[path][:target] = get_link_target(path) if values[:type] == "link" end ret end |
#get_link_target(link) ⇒ Object
154 155 156 157 158 159 160 |
# File 'lib/managed_files_database.rb', line 154 def get_link_target(link) @system.run_command( "find", link, "-prune", "-printf", "%l", stdout: :capture, privileged: true ).strip end |
#get_path_data(paths) ⇒ Object
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/managed_files_database.rb', line 180 def get_path_data(paths) ret = {} path_index = 0 # arbitrary number for maximum command line length that should always work max_len = 50000 cur_files = [] cur_len = 0 while path_index < paths.size if cur_files.empty? || paths[path_index].size + cur_len + 1 < max_len cur_files << paths[path_index] cur_len += paths[path_index].size + 1 path_index += 1 else ret.merge!(get_file_properties(cur_files)) cur_files.clear cur_len = 0 end end ret.merge!(get_file_properties(cur_files)) unless cur_files.empty? ret end |
#handle_verify_fail(path) ⇒ Object
202 203 204 205 206 |
# File 'lib/managed_files_database.rb', line 202 def handle_verify_fail(path) = "Could not perform all tests on rpm changes for file '#{path}'." Machinery.logger.warn() Machinery::Ui.warn("Warning: #{}") end |
#parse_changes_line(line) ⇒ Object
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 |
# File 'lib/managed_files_database.rb', line 85 def parse_changes_line(line) # rpm provides lines per config file where first 9 characters indicate which # properties of the file are modified @rpm_changes, *fields = line.split(" ") # nine rpm changes are known @unknown_tag = @rpm_changes.size > 9 # For config or documentation files there's an additional field which # contains "c" or "d" type = fields[0].start_with?("/") ? "" : fields.shift path = fields.join(" ") changes = [] if (@rpm_changes == "........." || @rpm_changes == "missing") && path.end_with?(" (replaced)") changes << "replaced" path.slice!(/ \(replaced\)$/) end if @rpm_changes == "missing" changes << "deleted" else changes << "size" if expected_tag?("S", 0) changes << "mode" if expected_tag?("M", 1) changes << "md5" if expected_tag?("5", 2) changes << "device_number" if expected_tag?("D", 3) changes << "link_path" if expected_tag?("L", 4) changes << "user" if expected_tag?("U", 5) changes << "group" if expected_tag?("G", 6) changes << "time" if expected_tag?("T", 7) changes << "capabilities" if @rpm_changes.size > 8 && expected_tag?("P", 8) end if @unknown_tag changes << "other_rpm_changes" end handle_verify_fail(path) if @rpm_changes.include?("?") [path, changes, type] end |
#parse_stat_line(line) ⇒ Object
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 |
# File 'lib/managed_files_database.rb', line 126 def parse_stat_line(line) mode, user, group, uid, gid, type, *path_line = line.split(":") path = path_line.join(":").chomp user = uid if user == "UNKNOWN" group = gid if group == "UNKNOWN" type = case type when "directory" "dir" when "symbolic link" "link" when /file$/ "file" else raise( "The inspection failed because of the unknown type `#{type}` of file `#{path}`." ) end [path, { mode: mode, user: user, group: group, type: type }] end |