Sha256: 3972285e89ff54e321764ebc5de601a8b6564b0c7d2aff45725b6ef0cb7ab31a

Contents?: true

Size: 1.82 KB

Versions: 76

Compression:

Stored size: 1.82 KB

Contents

require 'fileutils'
require 'puppet/util/lockfile'

class Puppet::Util::Pidlock

  def initialize(lockfile)
    @lockfile = Puppet::Util::Lockfile.new(lockfile)
  end

  def locked?
    clear_if_stale
    @lockfile.locked?
  end

  def mine?
    Process.pid == lock_pid
  end

  def lock
    return mine? if locked?

    @lockfile.lock(Process.pid)
  end

  def unlock
    if mine?
      return @lockfile.unlock
    else
      false
    end
  end

  def lock_pid
    pid = @lockfile.lock_data
    begin
      Integer(pid)
    rescue ArgumentError, TypeError
      nil
    end
  end

  def file_path
    @lockfile.file_path
  end

  def clear_if_stale
    return @lockfile.unlock if lock_pid.nil?

    errors = [Errno::ESRCH]
    # Win32::Process now throws SystemCallError. Since this could be
    # defined anywhere, only add when on Windows.
    errors << SystemCallError if Puppet::Util::Platform.windows?

    begin
      Process.kill(0, lock_pid)
    rescue *errors
      return @lockfile.unlock
    end

    # Ensure the process associated with this pid is our process. If
    # not, we can unlock the lockfile. For now this is only done on
    # POSIX and Windows platforms (PUP-9247).
    if Puppet.features.posix?
      procname = Puppet::Util::Execution.execute(["ps", "-p", lock_pid, "-o", "comm="]).strip
      args     = Puppet::Util::Execution.execute(["ps", "-p", lock_pid, "-o", "args="]).strip
      @lockfile.unlock unless procname =~ /ruby/ && args =~ /puppet/ || procname =~ /puppet(-.*)?$/
    elsif Puppet.features.microsoft_windows?
      # On Windows, we're checking if the filesystem path name of the running
      # process is our vendored ruby:
      exe_path = Puppet::Util::Windows::Process::get_process_image_name_by_pid(lock_pid)
      @lockfile.unlock unless exe_path =~ /\\bin\\ruby.exe$/
    end
  end
  private :clear_if_stale

end

Version data entries

76 entries across 76 versions & 1 rubygems

Version Path
puppet-5.5.19 lib/puppet/util/pidlock.rb
puppet-5.5.19-x86-mingw32 lib/puppet/util/pidlock.rb
puppet-5.5.19-x64-mingw32 lib/puppet/util/pidlock.rb
puppet-5.5.19-universal-darwin lib/puppet/util/pidlock.rb
puppet-6.12.0 lib/puppet/util/pidlock.rb
puppet-6.12.0-x86-mingw32 lib/puppet/util/pidlock.rb
puppet-6.12.0-x64-mingw32 lib/puppet/util/pidlock.rb
puppet-5.5.18 lib/puppet/util/pidlock.rb
puppet-5.5.18-x86-mingw32 lib/puppet/util/pidlock.rb
puppet-6.4.5 lib/puppet/util/pidlock.rb
puppet-5.5.18-x64-mingw32 lib/puppet/util/pidlock.rb
puppet-6.4.5-x86-mingw32 lib/puppet/util/pidlock.rb
puppet-5.5.18-universal-darwin lib/puppet/util/pidlock.rb
puppet-6.4.5-x64-mingw32 lib/puppet/util/pidlock.rb
puppet-6.4.5-universal-darwin lib/puppet/util/pidlock.rb
puppet-6.12.0-universal-darwin lib/puppet/util/pidlock.rb
puppet-6.11.1 lib/puppet/util/pidlock.rb
puppet-6.11.1-x86-mingw32 lib/puppet/util/pidlock.rb
puppet-6.11.1-x64-mingw32 lib/puppet/util/pidlock.rb
puppet-6.11.1-universal-darwin lib/puppet/util/pidlock.rb