2013-03-01 23:45:13 +00:00
|
|
|
# FIXME: Ruby 1.8 users dont have SecureRandom
|
|
|
|
require 'securerandom'
|
|
|
|
|
|
|
|
require 'vagrant/util/retryable'
|
|
|
|
require 'vagrant/util/subprocess'
|
|
|
|
|
|
|
|
require "vagrant-lxc/errors"
|
|
|
|
|
2013-03-01 03:34:51 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
class Container
|
2013-03-01 23:45:13 +00:00
|
|
|
# Include this so we can use `Subprocess` more easily.
|
|
|
|
include Vagrant::Util::Retryable
|
|
|
|
|
2013-03-02 04:18:38 +00:00
|
|
|
# This is raised if the container can't be found when initializing it with
|
|
|
|
# an UUID.
|
|
|
|
class NotFound < StandardError; end
|
|
|
|
|
2013-03-02 19:38:53 +00:00
|
|
|
CONTAINERS_PATH = '/var/lib/lxc'
|
|
|
|
|
2013-03-02 04:18:38 +00:00
|
|
|
attr_reader :name
|
|
|
|
|
2013-03-02 03:55:45 +00:00
|
|
|
def initialize(name)
|
|
|
|
@name = name
|
|
|
|
@logger = Log4r::Logger.new("vagrant::provider::lxc::container")
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
2013-03-02 04:18:38 +00:00
|
|
|
def validate!
|
|
|
|
raise NotFound if @name && ! lxc(:ls).split("\n").include?(@name)
|
|
|
|
end
|
|
|
|
|
2013-03-02 15:17:04 +00:00
|
|
|
def create(metadata = {})
|
2013-03-01 23:45:13 +00:00
|
|
|
# FIXME: Ruby 1.8 users dont have SecureRandom
|
2013-03-02 15:17:04 +00:00
|
|
|
# @logger.info('Creating container...')
|
2013-03-02 19:38:53 +00:00
|
|
|
@name = SecureRandom.hex(6)
|
2013-03-02 15:17:04 +00:00
|
|
|
public_key = Vagrant.source_root.join('keys', 'vagrant.pub').expand_path.to_s
|
|
|
|
|
2013-03-02 02:27:08 +00:00
|
|
|
# TODO: Handle errors
|
2013-03-02 19:38:53 +00:00
|
|
|
lxc :create, '--template', metadata['template-name'], '--name', @name, '--', '-S', public_key, '-T', metadata['tar-cache']
|
|
|
|
|
|
|
|
@name
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_after_create_script(script)
|
|
|
|
private_key = Vagrant.source_root.join('keys', 'vagrant').expand_path.to_s
|
2013-03-02 15:17:04 +00:00
|
|
|
|
2013-03-02 19:38:53 +00:00
|
|
|
@logger.debug 'Running after-create-script from box metadata'
|
|
|
|
cmd = [
|
|
|
|
script,
|
|
|
|
'-r', "#{CONTAINERS_PATH}/#{@name}/rootfs",
|
|
|
|
'-k', private_key,
|
|
|
|
'-i', dhcp_ip
|
|
|
|
]
|
|
|
|
execute *cmd
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def start
|
2013-03-02 03:55:45 +00:00
|
|
|
lxc :start, '-d', '--name', @name
|
2013-03-02 02:08:17 +00:00
|
|
|
wait_until :running
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def halt
|
2013-03-02 04:20:27 +00:00
|
|
|
lxc :shutdown, '--name', @name
|
|
|
|
wait_until :stopped
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2013-03-02 04:34:47 +00:00
|
|
|
lxc :destroy, '--name', @name
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
2013-03-02 02:07:15 +00:00
|
|
|
def wait_until(state)
|
2013-03-02 03:55:45 +00:00
|
|
|
lxc :wait, '--name', @name, '--state', state.to_s.upcase
|
2013-03-02 02:07:15 +00:00
|
|
|
end
|
|
|
|
|
2013-03-02 01:47:02 +00:00
|
|
|
def lxc(command, *args)
|
|
|
|
execute('sudo', "lxc-#{command}", *args)
|
2013-03-01 23:45:13 +00:00
|
|
|
end
|
|
|
|
|
2013-03-01 03:34:51 +00:00
|
|
|
def update!(state)
|
|
|
|
File.open(state_file_path, 'w') { |f| f.print state }
|
|
|
|
end
|
|
|
|
|
2013-03-02 03:05:10 +00:00
|
|
|
def state
|
2013-03-02 04:18:38 +00:00
|
|
|
if @name && lxc(:info, '--name', @name) =~ /^state:[^A-Z]+([A-Z]+)$/
|
2013-03-02 03:05:10 +00:00
|
|
|
$1.downcase.to_sym
|
2013-03-02 03:55:45 +00:00
|
|
|
elsif @name
|
2013-03-01 03:34:51 +00:00
|
|
|
:unknown
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-02 16:55:05 +00:00
|
|
|
def dhcp_ip
|
|
|
|
ip = ''
|
|
|
|
# Right after creation lxc reports the container as running
|
|
|
|
# before DNS is returning the right IP, so have to wait for a while
|
|
|
|
retryable(:on => LXC::Errors::ExecuteError, :tries => 10, :sleep => 1) do
|
|
|
|
# By default LXC supplies a dns server on 10.0.3.1 so we request the IP
|
|
|
|
# of our target from there.
|
|
|
|
# Tks to: https://github.com/neerolyte/vagueant/blob/master/bin/vagueant#L340
|
|
|
|
r = (raw 'dig', @name, '@10.0.3.1', '+short')
|
|
|
|
|
|
|
|
# If the command was a failure then raise an exception that is nicely
|
|
|
|
# handled by Vagrant.
|
|
|
|
if r.exit_code != 0
|
|
|
|
if @interrupted
|
|
|
|
@logger.info("Exit code != 0, but interrupted. Ignoring.")
|
|
|
|
else
|
|
|
|
raise LXC::Errors::ExecuteError, :command => command.inspect
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
ip = r.stdout.gsub("\r\n", "\n").strip
|
|
|
|
if ip.empty?
|
|
|
|
raise LXC::Errors::ExecuteError, 'Unable to identify container ip'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
ip
|
|
|
|
end
|
|
|
|
|
2013-03-01 23:45:13 +00:00
|
|
|
# TODO: Review code below this line, it was pretty much a copy and paste from VirtualBox base driver
|
|
|
|
def execute(*command, &block)
|
|
|
|
# Get the options hash if it exists
|
|
|
|
opts = {}
|
|
|
|
opts = command.pop if command.last.is_a?(Hash)
|
|
|
|
|
|
|
|
tries = 0
|
|
|
|
tries = 3 if opts[:retryable]
|
|
|
|
|
|
|
|
# Variable to store our execution result
|
|
|
|
r = nil
|
|
|
|
|
|
|
|
retryable(:on => LXC::Errors::ExecuteError, :tries => tries, :sleep => 1) do
|
|
|
|
# Execute the command
|
|
|
|
r = raw(*command, &block)
|
|
|
|
|
|
|
|
# If the command was a failure, then raise an exception that is
|
|
|
|
# nicely handled by Vagrant.
|
|
|
|
if r.exit_code != 0
|
|
|
|
if @interrupted
|
|
|
|
@logger.info("Exit code != 0, but interrupted. Ignoring.")
|
|
|
|
else
|
|
|
|
raise LXC::Errors::ExecuteError, :command => command.inspect
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return the output, making sure to replace any Windows-style
|
|
|
|
# newlines with Unix-style.
|
|
|
|
r.stdout.gsub("\r\n", "\n")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Executes a command and returns the raw result object.
|
|
|
|
def raw(*command, &block)
|
|
|
|
int_callback = lambda do
|
|
|
|
@interrupted = true
|
|
|
|
@logger.info("Interrupted.")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Append in the options for subprocess
|
|
|
|
command << { :notify => [:stdout, :stderr] }
|
|
|
|
|
|
|
|
Vagrant::Util::Busy.busy(int_callback) do
|
|
|
|
Vagrant::Util::Subprocess.execute(*command, &block)
|
|
|
|
end
|
|
|
|
end
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|