Module: ZfsMgmt
- Defined in:
- lib/zfs_mgmt.rb,
lib/zfs_mgmt/version.rb
Defined Under Namespace
Modules: Restic, ZfsMgr Classes: ZfsGetError
Constant Summary collapse
- VERSION =
"0.4.9"
Class Attribute Summary collapse
-
.global_options ⇒ Object
Returns the value of attribute global_options.
Class Method Summary collapse
- .custom_properties ⇒ Object
- .dq(s) ⇒ Object
- .find_saved_reason(saved, snap) ⇒ Object
- .key_comp?(h, p, v = method(:prop_on?)) ⇒ Boolean
- .local_epoch_to_datetime(e) ⇒ Object
- .lock(options) ⇒ Object
- .match_filter?(zfs, filter) ⇒ Boolean
- .mbuffer_command(options) ⇒ Object
-
.policy_parser(str) ⇒ Object
parse a policy string into a hash of integers.
- .prop_on?(v) ⇒ Boolean
- .pv_command(options, estimate) ⇒ Object
- .recv_command_prefix(options, props) ⇒ Object
- .set_log_level(sev) ⇒ Object
-
.snapshot_create(noop: false, filter: '.+') ⇒ Object
snapshot all filesystems configured for snapshotting.
- .snapshot_destroy(noop: false, verbose: false, filter: '.+') ⇒ Object
- .snapshot_destroy_policy(zfs, props, snaps) ⇒ Object
- .snapshot_policy(filter: '.+') ⇒ Object
- .sq(s) ⇒ Object
- .system_com(com, noop = false) ⇒ Object
- .timespec_to_seconds(spec) ⇒ Object
- .unlock(lock) ⇒ Object
- .zfs_hold(hold, snapshot) ⇒ Object
- .zfs_holds(snapshot) ⇒ Object
- .zfs_managed_list(filter: '.+', properties: ['all'], property_match: { 'zfsmgmt:manage' => method(:prop_on?) }) ⇒ Object
- .zfs_recv_com(options, extra_opts, props, target) ⇒ Object
- .zfs_release(hold, snapshot) ⇒ Object
- .zfs_send(options, zfs, props, snaps) ⇒ Object
- .zfs_send_all(options) ⇒ Object
- .zfs_send_com(options, props, extra_opts, target) ⇒ Object
- .zfs_send_estimate(com) ⇒ Object
- .zfsget(properties: ['all'], types: ['filesystem','volume'], zfs: '', command_prefix: []) ⇒ Object
Class Attribute Details
.global_options ⇒ Object
Returns the value of attribute global_options.
45 46 47 |
# File 'lib/zfs_mgmt.rb', line 45 def @global_options end |
Class Method Details
.custom_properties ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# File 'lib/zfs_mgmt.rb', line 49 def self.custom_properties() return [ 'policy', 'manage', 'strategy', 'minage', 'matchsnaps', 'ignoresnaps', 'prefersnaps', 'snapshot', 'snap_prefix', 'snap_timestamp', 'send', 'remote', 'destination', ].map do |p| ['zfsmgmt',p].join(':') end end |
.dq(s) ⇒ Object
636 637 638 |
# File 'lib/zfs_mgmt.rb', line 636 def self.dq(s) "\"#{s}\"" end |
.find_saved_reason(saved, snap) ⇒ Object
152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/zfs_mgmt.rb', line 152 def self.find_saved_reason(saved,snap) results = {} $date_patterns.each do |d,dk| if saved.has_key?(d) saved[d].each do |k,s| if snap == s results[d]=k break end end end end return [results['hourly'],results['daily'],results['weekly'],results['monthly'],results['yearly']] end |
.key_comp?(h, p, v = method(:prop_on?)) ⇒ Boolean
645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 |
# File 'lib/zfs_mgmt.rb', line 645 def self.key_comp?(h,p,v = method(:prop_on?)) #$logger.debug("p:#{p}\th[p]:#{h[p]}\tv:#{v}") return false unless h.has_key?(p) if v.kind_of?(Array) return v.include?(h[p]) elsif v.kind_of?(Hash) return v.keys.include?(h[p]) elsif v.kind_of?(Method) return v.call(h[p]) elsif v.kind_of?(Regexp) return v =~ h[p] else # string, boolean, numbers? return h[p] == v end end |
.local_epoch_to_datetime(e) ⇒ Object
149 150 151 |
# File 'lib/zfs_mgmt.rb', line 149 def self.local_epoch_to_datetime(e) return Time.at(e).to_datetime end |
.lock(options) ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 694 def self.lock() # open lock file, try to lock file until lock_wait has expired or # lock is obtained, write pid? return nil unless [:lock] begin lock = File.open([:lock_file], File::RDWR|File::CREAT, 0644) rescue Errno::ENOENT => error $logger.error("unable to open lock file (#{[:lock_file]}), possibly the directory doesn't exist") raise end if lock.flock(File::LOCK_EX|File::LOCK_NB) lock.flock(File::LOCK_UN) else # we failed to lock so locked without NB is likely to block for some amount of time $logger.info("attempting to lock control file, this may block") end if [:lock_wait] > 0 begin status = Timeout::timeout([:lock_wait]) do return lock if lock.flock(File::LOCK_EX) $logger.error("flock of #{[:lock_file]} failed") raise "flock failed" end rescue Timeout::Error => error $logger.error("timed out waiting to lock") raise end else # zero is wait forever! return lock if lock.flock(File::LOCK_EX) $logger.error("flock of #{[:lock_file]} failed") raise "flock failed" end $logger.error("unable to obtain lock") raise "unknown failure in locking file" end |
.match_filter?(zfs, filter) ⇒ Boolean
642 643 644 |
# File 'lib/zfs_mgmt.rb', line 642 def self.match_filter?(zfs, filter) /#{filter}/ =~ zfs end |
.mbuffer_command(options) ⇒ Object
526 527 528 529 530 531 532 |
# File 'lib/zfs_mgmt.rb', line 526 def self.mbuffer_command() mbuffer_command = [ ZfsMgmt.[:mbuffer_binary] ] mbuffer_command.push('-q') unless [:verbose] == 'mbuffer' mbuffer_command.push('-m',[:mbuffer_size]) if [:mbuffer_size] mbuffer_command.push('|') mbuffer_command end |
.policy_parser(str) ⇒ Object
parse a policy string into a hash of integers
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/zfs_mgmt.rb', line 339 def self.policy_parser(str) res = {} $date_patterns.keys.each do |tf| res[tf]=0 end p = str.scan(/\d+[#{$time_pattern_map.keys.join('')}]/i) unless p.length > 0 raise ArgumentError.new("unable to parse the policy configuration #{str}") end p.each do |pi| scn = /(\d+)([#{$time_pattern_map.keys.join('')}])/i.match(pi) res[$time_pattern_map[scn[2].downcase]] = scn[1].to_i end res end |
.prop_on?(v) ⇒ Boolean
639 640 641 |
# File 'lib/zfs_mgmt.rb', line 639 def self.prop_on?(v) ['true','on'].include?(v) end |
.pv_command(options, estimate) ⇒ Object
623 624 625 626 627 628 629 630 631 |
# File 'lib/zfs_mgmt.rb', line 623 def self.pv_command(,estimate) a = [] a += [[:pv_binary], '-prb' ] if estimate a += ['-e', '-s', estimate ] end a.push('|') a end |
.recv_command_prefix(options, props) ⇒ Object
595 596 597 598 599 |
# File 'lib/zfs_mgmt.rb', line 595 def self.recv_command_prefix(,props) ( ([:remote] or props['zfsmgmt:remote']) ? [ 'ssh', ( [:remote] ? [:remote] : props['zfsmgmt:remote'] ) ] : [] ) end |
.set_log_level(sev) ⇒ Object
661 662 663 664 665 666 667 668 669 670 671 672 673 674 |
# File 'lib/zfs_mgmt.rb', line 661 def self.set_log_level(sev) case sev when 'debug' $logger.level = Logger::DEBUG when 'info' $logger.level = Logger::INFO when 'warn' $logger.level = Logger::WARN when 'error' $logger.level = Logger::ERROR when 'fatal' $logger.level = Logger::FATAL end end |
.snapshot_create(noop: false, filter: '.+') ⇒ Object
snapshot all filesystems configured for snapshotting
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 |
# File 'lib/zfs_mgmt.rb', line 355 def self.snapshot_create(noop: false, filter: '.+') dt = DateTime.now zfsget.select { |zfs,props| # must match filter match_filter?(zfs, filter) and # snapshot must be on or true ( key_comp?(props,'zfsmgmt:snapshot') or # or snapshot can be recursive and local, but only if the source is local or received ( key_comp?(props,'zfsmgmt:snapshot',['recursive','local']) and key_comp?(props,'zfsmgmt:snapshot@source',['local','received']) ) ) }.each do |zfs,props| prefix = ( props.has_key?('zfsmgmt:snap_prefix') ? props['zfsmgmt:snap_prefix'] : 'zfsmgmt' ) ts = ( props.has_key?('zfsmgmt:snap_timestamp') ? props['zfsmgmt:snap_timestamp'] : '%FT%T%z' ) com = [['zfs_binary'],'snapshot'] if key_comp?(props,'zfsmgmt:snapshot','recursive') and key_comp?(props,'zfsmgmt:snapshot@source',['local','received']) com.push('-r') end com.push("#{zfs}@#{[prefix,dt.strftime(ts)].join('-')}") system_com(com,noop) end end |
.snapshot_destroy(noop: false, verbose: false, filter: '.+') ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 296 def self.snapshot_destroy(noop: false, verbose: false, filter: '.+') zfs_managed_list(filter: filter).each do |zfs,props,snaps| unless props.has_key?('zfsmgmt:policy') $logger.error("zfs_mgmt is configured to manage #{zfs}, but there is no policy configuration in zfsmgmt:policy, skipping") next # zfs end begin # call the function that decides who to save and who to delete (saved,saved_snaps,deleteme) = snapshot_destroy_policy(zfs,props,snaps) rescue ArgumentError $logger.error("zfs_mgmt is configured to manage #{zfs}, but there is no valid policy configuration, skipping") next end $logger.info("deleting #{deleteme.length} snapshots for #{zfs}") deleteme.reverse! # oldest first for removal deleteme.each do |snap_name| $logger.debug("delete: #{snap_name} #{local_epoch_to_datetime(snaps[snap_name]['creation']).strftime('%F %T')}") end com_base = [ZfsMgmt.[:zfs_binary], 'destroy'] com_base.push('-d') if deleteme.length > 0 # why? com_base.push('-n') if noop com_base.push('-v') if verbose while deleteme.length > 0 for i in 0..(deleteme.length - 1) do max = deleteme.length - 1 - i $logger.debug("attempting to remove snaps 0 through #{max} out of #{deleteme.length} snapshots") bigarg = "#{zfs}@#{deleteme[0..max].map { |s| s.split('@')[1] }.join(',')}" com = com_base + [bigarg] $logger.debug("size of bigarg: #{bigarg.length} size of com: #{com.length}") if bigarg.length >= 131072 or com.length >= (2097152-10000) next end deleteme = deleteme - deleteme[0..max] system_com(com) # pass -n, always run the command though break end end end end |
.snapshot_destroy_policy(zfs, props, snaps) ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 166 def self.snapshot_destroy_policy(zfs,props,snaps) minage = 0 if props.has_key?('zfsmgmt:minage') minage = timespec_to_seconds(props['zfsmgmt:minage']) end strategy = 'oldest' if props.has_key?('zfsmgmt:strategy') and props['zfsmgmt:strategy'] == 'youngest' strategy = 'youngest' end sorted = snaps.keys.sort { |a,b| snaps[b]['creation'] <=> snaps[a]['creation'] } counters = policy_parser(props['zfsmgmt:policy']) $logger.debug(counters) saved = {} # set the counters variable to track the number of saved daily/hourly/etc. snapshots $date_patterns.each do |d,p| saved[d] = {} end sorted.each do |snap_name| if props.has_key?('zfsmgmt:ignoresnaps') and /#{props['zfsmgmt:ignoresnaps']}/ =~ snap_name.split('@')[1] $logger.debug("skipping #{snap_name} because it matches ignoresnaps pattern: #{props['zfsmgmt:ignoresnaps']}") next end if props.has_key?('zfsmgmt:matchsnaps') and not /#{props['zfsmgmt:matchsnaps']}/ =~ snap_name.split('@')[1] $logger.debug("skipping #{snap_name} because it does not match matchsnaps pattern: #{props['zfsmgmt:matchsnaps']}") next end snaptime = local_epoch_to_datetime(snaps[snap_name]['creation']) $date_patterns.each do |d,p| pat = snaptime.strftime(p) if saved[d].has_key?(pat) #pp props['zfsmgmt:prefersnaps'],snap_name.split('@')[1], saved[d][pat].split('@')[1] if props.has_key?('zfsmgmt:prefersnaps') and /#{props['zfsmgmt:prefersnaps']}/ !~ saved[d][pat].split('@')[1] and /#{props['zfsmgmt:prefersnaps']}/ =~ snap_name.split('@')[1] $logger.debug("updating the saved snapshot, we prefer this one: \"#{pat}\" to #{snap_name} at #{snaptime}") saved[d][pat] = snap_name elsif strategy == 'oldest' and ( not props.has_key?('zfsmgmt:prefersnaps') or /#{props['zfsmgmt:prefersnaps']}/ =~ snap_name.split('@')[1] ) # update the existing current save snapshot for this timeframe $logger.debug("updating the saved snapshot for \"#{pat}\" to #{snap_name} at #{snaptime}") saved[d][pat] = snap_name else $logger.debug("not updating the saved snapshot for \"#{pat}\" to #{snap_name} at #{snaptime}, we have a younger snap") end elsif counters[d] > 0 # new pattern, and we want to save more snaps of this type $logger.debug("new pattern \"#{pat}\" n#{counters[d]} #{d} snapshot, saving #{snap_name} at #{snaptime}") counters[d] -= 1 saved[d][pat] = snap_name end end end # create a list of unique saved snap shots saved_snaps = [] saved.each do |d,saved| saved_snaps += saved.values() end saved_snaps = saved_snaps.sort.uniq # delete everything not in the list of saved snapshots deleteme = sorted - saved_snaps deleteme = deleteme.select { |snap| if props.has_key?('zfsmgmt:ignoresnaps') and /#{props['zfsmgmt:ignoresnaps']}/ =~ snap.split('@')[1] $logger.debug("skipping #{snap} because it matches ignoresnaps pattern: #{props['zfsmgmt:ignoresnaps']}") false elsif minage > 0 and Time.at(snaps[snap]['creation'] + minage) > Time.now() $logger.debug("skipping due to minage: #{snap} #{local_epoch_to_datetime(snaps[snap]['creation']).strftime('%F %T')}") false elsif snap == sorted[0] # the very newest snap $logger.debug("skipping due to newest: #{snap} #{local_epoch_to_datetime(snaps[snap]['creation']).strftime('%F %T')}") false else true end } return saved,saved_snaps,deleteme end |
.snapshot_policy(filter: '.+') ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 267 def self.snapshot_policy(filter: '.+') zfs_managed_list(filter: filter).each do |zfs,props,snaps| unless props.has_key?('zfsmgmt:policy') $logger.error("zfs_mgmt is configured to manage #{zfs}, but there is no policy configuration in zfsmgmt:policy, skipping") next # zfs end begin # call the function that decides who to save and who to delete (saved,saved_snaps,deleteme) = snapshot_destroy_policy(zfs,props,snaps) rescue ArgumentError $logger.error("zfs_mgmt is configured to manage #{zfs}, but there is no valid policy configuration, skipping") next end if saved_snaps.length == 0 $logger.info("no snapshots marked as saved by policy for #{zfs}") next end # print a table of saved snapshots with the reasons it is being saved table = Text::Table.new table.head = [zfs,'creation','hourly','daily','weekly','monthly','yearly'] table.rows = [] saved_snaps.sort { |a,b| snaps[b]['creation'] <=> snaps[a]['creation'] }.each do |snap| table.rows << [snap.split('@')[1],local_epoch_to_datetime(snaps[snap]['creation'])] + find_saved_reason(saved,snap) end print table.to_s end end |
.sq(s) ⇒ Object
633 634 635 |
# File 'lib/zfs_mgmt.rb', line 633 def self.sq(s) "'#{s}'" end |
.system_com(com, noop = false) ⇒ Object
377 378 379 380 381 382 383 384 385 386 |
# File 'lib/zfs_mgmt.rb', line 377 def self.system_com(com, noop = false) comstr = com.join(' ') $logger.info(comstr) unless noop system(comstr) unless $?.success? $logger.error("command failed: #{$?.exitstatus}") end end end |
.timespec_to_seconds(spec) ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/zfs_mgmt.rb', line 68 def self.timespec_to_seconds(spec) md = /^(\d+)([smhdw]?)/i.match(spec) unless md.length == 3 raise 'SpecParseError' end if md[2] and md[2].length > 0 return md[1].to_i * $time_specs[md[2].downcase] else return md[1].to_i end end |
.unlock(lock) ⇒ Object
731 732 733 734 735 736 |
# File 'lib/zfs_mgmt.rb', line 731 def self.unlock(lock) unless lock.nil? lock.flock(File::LOCK_UN) lock.close() end end |
.zfs_hold(hold, snapshot) ⇒ Object
96 97 98 99 100 101 102 103 104 |
# File 'lib/zfs_mgmt.rb', line 96 def self.zfs_hold(hold,snapshot) com = [['zfs_binary'], 'hold', hold, snapshot] system_com(com) unless $?.success? errstr = "unable to set hold: #{hold} for snapshot: #{snapshot}" $logger.error(errstr) raise errstr end end |
.zfs_holds(snapshot) ⇒ Object
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/zfs_mgmt.rb', line 80 def self.zfs_holds(snapshot) com = [['zfs_binary'], 'holds', '-H', snapshot] $logger.debug("#{com.join(' ')}") out = %x(#{com.join(' ')}) unless $?.success? errstr = "unable to retrieves holds for snapshot: #{snapshot}" $logger.error(errstr) raise errstr end a = [] out.split("\n").each do |ln| a.push(ln.split("\t")[1]) end a end |
.zfs_managed_list(filter: '.+', properties: ['all'], property_match: { 'zfsmgmt:manage' => method(:prop_on?) }) ⇒ Object
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
# File 'lib/zfs_mgmt.rb', line 244 def self.zfs_managed_list(filter: '.+', properties: ['all'], property_match: { 'zfsmgmt:manage' => method(:prop_on?) } ) zfss = [] # array of arrays zfsget(properties: properties).each do |zfs,props| unless /#{filter}/ =~ zfs next end managed = true property_match.each do |k,v| unless key_comp?(props,k,v) managed = false break end end next unless managed snaps = self.zfsget(properties: ['name','creation','userrefs','used','written','referenced'],types: ['snapshot'], zfs: zfs) if snaps.length == 0 $logger.debug("not processing #{zfs} as there are no snapshots") next end zfss.push([zfs,props,snaps]) end return zfss end |
.zfs_recv_com(options, extra_opts, props, target) ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 556 def self.zfs_recv_com(,extra_opts,props,target) zfs_recv_com = [ ZfsMgmt.[:zfs_binary], 'recv', '-F', '-s' ] recv_opts = { 'noop' => '-n', 'drop_holds' => '-h', 'unmount' => '-u', #'discard_last' => '-e', #'discard_first' => '-d', } recv_opts.each do |p,o| # allow the command line options to override the properties value if key_comp?(,p,[true,false]) zfs_recv_com.push(o) if key_comp?(,p,true) elsif key_comp?(props,"zfsmgmt:recv_#{p}") zfs_recv_com.push(o) end end zfs_recv_com.push('-v') if key_comp?(, 'verbose', ['receive', 'recv']) if [:exclude] [:exclude].each do |x| zfs_recv_com.push('-x',x) end end if [:option] [:option].each do |x| zfs_recv_com.push('-o',x) end end zfs_recv_com += extra_opts zfs_recv_com.push(dq(target)) if [:remote] or props['zfsmgmt:remote'] if [:mbuffer] zfs_recv_com = mbuffer_command() + zfs_recv_com end zfs_recv_com = recv_command_prefix(,props) + [ sq(zfs_recv_com.join(' ')) ] end zfs_recv_com end |
.zfs_release(hold, snapshot) ⇒ Object
106 107 108 109 110 111 112 113 114 |
# File 'lib/zfs_mgmt.rb', line 106 def self.zfs_release(hold,snapshot) com = [@global_options['zfs_binary'], 'release', hold, snapshot] system_com(com) unless $?.success? errstr = "unable to release hold: #{hold} for snapshot: #{snapshot}" $logger.error(errstr) raise errstr end end |
.zfs_send(options, zfs, props, snaps) ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 387 def self.zfs_send(,zfs,props,snaps) sorted = snaps.keys.sort { |a,b| snaps[a]['creation'] <=> snaps[b]['creation'] } # compute the zfs "path" # ternary operator 4eva destination_path = ( [:destination] ? [:destination] : props['zfsmgmt:destination'] ) if props['zfsmgmt:destination@source'] == 'local' destination_path = File.join( destination_path, File.basename(zfs) ) elsif m = /inherited from (.+)/.match(props['zfsmgmt:destination@source']) destination_path = File.join( destination_path, File.basename(m[1]), zfs.sub(m[1],'') ) else $logger.error("fatal error: #{props['zfsmgmt:destination']} source: #{props['zfsmgmt:destination@source']}") exit(1) end # does the destination zfs already exist? remote_zfs_state = '' begin recv_zfs = zfsget(zfs: destination_path, command_prefix: recv_command_prefix(,props), #properties: ['receive_resume_token'], ) rescue ZfsGetError $logger.debug("recv filesystem doesn't exist: #{destination_path}") remote_zfs_state = 'missing' else if recv_zfs[destination_path].has_key?('receive_resume_token') remote_zfs_state = recv_zfs[destination_path]['receive_resume_token'] else remote_zfs_state = 'present' end end if remote_zfs_state == 'missing' # the zfs does not exist, send initial (oldest?) snapshot com = [] source = sorted[0] if [:initial_snapshot] == 'newest' or key_comp?(, 'replicate') or key_comp?(props, 'zfsmgmt:send_replicate') source = sorted[-1] end com += zfs_send_com(, props, [], source, ) e = zfs_send_estimate(com) if [:verbose] == 'pv' com += mbuffer_command() if [:mbuffer] com += pv_command(,e) if [:verbose] == 'pv' com += zfs_recv_com(,[],props,destination_path) system_com(com) unless $?.success? return end elsif remote_zfs_state != 'present' # should be resumable! com = [ ] com.push( ZfsMgmt.[:zfs_binary], 'send', '-t', remote_zfs_state ) com.push('-v','-P') if key_comp?(, 'verbose', 'send') com.push('|') e = zfs_send_estimate(com) if [:verbose] == 'pv' com += mbuffer_command() if [:mbuffer] com += pv_command(,e) if [:verbose] == 'pv' recv = [ ZfsMgmt.[:zfs_binary], 'recv', '-s' ] recv.push('-n') if [:noop] recv.push('-u') if [:unmount] recv.push('-v') if [:verbose] and ( [:verbose] == 'receive' or [:verbose] == 'recv' ) recv.push(dq(destination_path)) if [:remote] or props['zfsmgmt:remote'] if [:mbuffer] recv = mbuffer_command() + recv end recv = recv_command_prefix(,props) + [ sq(recv.join(' ')) ] end com += recv system_com(com) unless $?.success? return end end # the zfs already exists, so update with incremental? begin remote_snaps = zfsget(zfs: destination_path, types: ['snapshot'], command_prefix: recv_command_prefix(,props), properties: ['creation','userrefs'], ) rescue ZfsGetError $logger.error("unable to get remote snapshot information for #{destination_path}") return end unless remote_snaps and remote_snaps.keys.length > 0 $logger.error("receiving filesystem has NO snapshots, it must be destroyed: #{destination_path}") return end if remote_snaps.has_key?(sorted[-1].sub(zfs,destination_path)) $logger.info("the most recent local snapshot (#{sorted[-1]}) already exists on the remote side (#{sorted[-1].sub(zfs,destination_path)})") return end remote_snaps.sort_by { |k,v| -v['creation'] }.each do |rsnap,v| # oldest first #pp rsnap,rsnap.sub(destination_path,zfs) #pp snaps if snaps.has_key?(rsnap.sub(destination_path,zfs)) $logger.debug("process #{rsnap} to #{sorted[-1]}") com = [] i_opt = '-i' # allow the command line option for intermediary to override the property if key_comp?(,'intermediary',[true,false]) i_opt = '-I' if key_comp?(, 'intermediary', true) elsif key_comp?(props, 'zfsmgmt:send_intermediary') i_opt = '-I' end com += zfs_send_com(,props,[i_opt, dq('@' + rsnap.split('@')[1])], sorted[-1]) e = zfs_send_estimate(com) if [:verbose] == 'pv' com += mbuffer_command() if [:mbuffer] com += pv_command(,e) if [:verbose] == 'pv' com += zfs_recv_com(,[],props,destination_path) system_com(com) return end $logger.debug("skipping remote snapshot #{rsnap} because the same snapshot doesn't exist locally #{rsnap.sub(destination_path,zfs)}") end $logger.error("receiving filesystem has no snapshots that still exists on the sending side, it must be destroyed: #{destination_path}") end |
.zfs_send_all(options) ⇒ Object
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 |
# File 'lib/zfs_mgmt.rb', line 675 def self.zfs_send_all() zfs_managed_list(filter: [:filter], property_match: { 'zfsmgmt:send' => method(:prop_on?) }).each do |zfs,props,snaps| if props['zfsmgmt:send@source'] == 'received' $logger.debug("skipping received filesystem: #{zfs}") next end if key_comp?(props,'zfsmgmt:send_replicate') and props['zfsmgmt:send_replicate@source'] != 'local' $logger.debug("skipping descendant of replicated filesystems: #{zfs}") next end unless props['zfsmgmt:destination'] $logger.error("#{zfs}: you must specify a destination zfs path via the user property zfsmgmt:destination, even if using --destination on the command line, skipping") next end zfs_send(,zfs,props,snaps) end end |
.zfs_send_com(options, props, extra_opts, target) ⇒ Object
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 |
# File 'lib/zfs_mgmt.rb', line 533 def self.zfs_send_com(,props,extra_opts,target) zfs_send_com = [ ZfsMgmt.[:zfs_binary], 'send' ] zfs_send_com.push('-v','-P') if key_comp?(,'verbose','send') send_opts = { 'backup' => '-b', 'compressed' => '-c', 'embed' => '-e', 'holds' => '-h', 'large_block' => '-L', 'props' => '-p', 'raw' => '-w', 'replicate' => '-R', } send_opts.each do |p,o| # allow the command line options to override the properties value if key_comp?(,p,[true,false]) zfs_send_com.push(o) if key_comp?(,p,true) elsif key_comp?(props,"zfsmgmt:send_#{p}") zfs_send_com.push(o) end end zfs_send_com + extra_opts + [dq(target),'|'] end |
.zfs_send_estimate(com) ⇒ Object
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 |
# File 'lib/zfs_mgmt.rb', line 600 def self.zfs_send_estimate(com) lcom = com.dup lcom.pop() # remove the pipe symbol precom = [ lcom.shift, lcom.shift ] lcom.unshift('-P') unless lcom.include?('-P') lcom.unshift('-n') lcom.push('2>&1') lcom = precom + lcom $logger.debug(lcom.join(' ')) total = 0 %x[#{lcom.join(' ')}].each_line do |l| if m = /^size\s+(\d+)$/.match(l) return m[1].to_i elsif m = /^incremental\s+.+?\s+.+?\s+(\d+)$/.match(l) total = total + m[1].to_i end end if total > 0 return total end $logger.error("no estimate available") return nil end |
.zfsget(properties: ['all'], types: ['filesystem','volume'], zfs: '', command_prefix: []) ⇒ Object
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 |
# File 'lib/zfs_mgmt.rb', line 116 def self.zfsget(properties: ['all'],types: ['filesystem','volume'],zfs: '', command_prefix: []) results={} com = [ZfsMgmt.[:zfs_binary], 'get', '-Hp', properties.join(','), '-t', types.join(','), zfs] $logger.debug((command_prefix+com).join(' ')) so,se,status = Open3.capture3((command_prefix+com).join(' ')) if status.signaled? $logger.error("process was signalled \"#{com.join(' ')}\", termsig #{status.termsig}") raise ZfsGetError, "process was signalled \"#{com.join(' ')}\", termsig #{status.termsig}" end unless status.success? $logger.error("failed to execute \"#{com.join(' ')}\", exit status #{status.exitstatus}") so.split("\n").each { |l| $logger.debug("stdout: #{l}") } se.split("\n").each { |l| $logger.error("stderr: #{l}") } raise ZfsGetError, "failed to execute \"#{com.join(' ')}\", exit status #{status.exitstatus}" end so.split("\n").each do |line| params = line.split("\t") unless results.has_key?(params[0]) results[params[0]] = {} end if params[2] != '-' if $properties_xlate.has_key?(params[1]) results[params[0]][params[1]] = $properties_xlate[params[1]].call(params[2]) else results[params[0]][params[1]] = params[2] end end if params[3] != '-' results[params[0]]["#{params[1]}@source"] = params[3] end end return results end |