2013-03-02 23:36:06 +00:00
|
|
|
require "vagrant/util/retryable"
|
|
|
|
require "vagrant/util/subprocess"
|
2013-03-01 23:45:13 +00:00
|
|
|
|
2013-04-05 05:17:19 +00:00
|
|
|
require "vagrant-lxc/errors"
|
|
|
|
require "vagrant-lxc/driver/cli"
|
|
|
|
|
2013-03-01 03:34:51 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
2013-04-05 05:17:19 +00:00
|
|
|
class Driver
|
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
|
2013-03-10 03:39:05 +00:00
|
|
|
# a name.
|
2013-04-05 05:17:19 +00:00
|
|
|
class ContainerNotFound < StandardError; end
|
2013-03-02 04:18:38 +00:00
|
|
|
|
|
|
|
attr_reader :name
|
|
|
|
|
2013-03-10 22:22:58 +00:00
|
|
|
def initialize(name, cli = CLI.new(name))
|
2013-03-02 03:55:45 +00:00
|
|
|
@name = name
|
2013-03-10 22:22:58 +00:00
|
|
|
@cli = cli
|
2013-04-05 05:38:53 +00:00
|
|
|
@logger = Log4r::Logger.new("vagrant::provider::lxc::driver")
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
2013-03-02 04:18:38 +00:00
|
|
|
def validate!
|
2013-04-05 05:17:19 +00:00
|
|
|
raise ContainerNotFound if @name && ! @cli.list.include?(@name)
|
2013-03-02 04:18:38 +00:00
|
|
|
end
|
|
|
|
|
2013-03-10 04:54:33 +00:00
|
|
|
def base_path
|
|
|
|
Pathname.new("#{CONTAINERS_PATH}/#{@name}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def rootfs_path
|
2013-03-29 15:24:37 +00:00
|
|
|
Pathname.new(base_path.join('config').read.match(/^lxc\.rootfs\s+=\s+(.+)$/)[1])
|
2013-03-10 04:54:33 +00:00
|
|
|
end
|
|
|
|
|
2013-04-05 06:10:38 +00:00
|
|
|
def create(name, template_path, template_options = {})
|
|
|
|
@cli.name = @name = name
|
2013-03-08 03:54:15 +00:00
|
|
|
|
2013-04-05 06:10:38 +00:00
|
|
|
import_template(template_path) do |template_name|
|
|
|
|
@logger.debug "Creating container..."
|
|
|
|
@cli.create template_name, template_options
|
|
|
|
end
|
2013-03-02 19:38:53 +00:00
|
|
|
end
|
|
|
|
|
2013-03-04 01:42:18 +00:00
|
|
|
def share_folders(folders, config)
|
|
|
|
folders.each do |folder|
|
|
|
|
guestpath = rootfs_path.join(folder[:guestpath].gsub(/^\//, ''))
|
|
|
|
unless guestpath.directory?
|
|
|
|
begin
|
|
|
|
system "sudo mkdir -p #{guestpath.to_s}"
|
|
|
|
rescue Errno::EACCES
|
|
|
|
raise Vagrant::Errors::SharedFolderCreateFailed,
|
|
|
|
:path => guestpath.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-06 01:08:02 +00:00
|
|
|
# TODO: Move outside
|
|
|
|
config.customize 'mount.entry', "#{folder[:hostpath]} #{guestpath} none bind 0 0"
|
2013-03-04 01:42:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-03 07:37:07 +00:00
|
|
|
def start(config)
|
2013-03-11 00:13:29 +00:00
|
|
|
@logger.info('Starting container...')
|
|
|
|
|
|
|
|
if ENV['LXC_START_LOG_FILE']
|
2013-03-12 18:29:18 +00:00
|
|
|
extra = ['-o', ENV['LXC_START_LOG_FILE'], '-l', 'DEBUG']
|
2013-03-11 00:13:29 +00:00
|
|
|
end
|
|
|
|
|
2013-04-06 01:08:02 +00:00
|
|
|
@cli.transition_to(:running) { |c| c.start(config.customizations, (extra || nil)) }
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def halt
|
2013-03-11 00:13:29 +00:00
|
|
|
@logger.info('Shutting down container...')
|
|
|
|
|
2013-03-04 04:16:45 +00:00
|
|
|
# TODO: issue an lxc-stop if a timeout gets reached
|
2013-03-11 00:13:29 +00:00
|
|
|
@cli.transition_to(:stopped) { |c| c.shutdown }
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2013-03-11 00:13:29 +00:00
|
|
|
@cli.destroy
|
2013-03-01 23:45:13 +00:00
|
|
|
end
|
|
|
|
|
2013-03-30 22:17:13 +00:00
|
|
|
# TODO: This needs to be reviewed and specs needs to be written
|
|
|
|
def compress_rootfs
|
|
|
|
# TODO: Our template should not depend on container's arch
|
|
|
|
arch = base_path.join('config').read.match(/^lxc\.arch\s+=\s+(.+)$/)[1]
|
|
|
|
rootfs_dirname = File.dirname rootfs_path
|
|
|
|
basename = rootfs_path.to_s.gsub(/^#{Regexp.escape rootfs_dirname}\//, '')
|
|
|
|
# TODO: Pass in tmpdir so we can clean up from outside
|
|
|
|
target_path = "#{Dir.mktmpdir}/rootfs.tar.gz"
|
|
|
|
|
|
|
|
Dir.chdir base_path do
|
|
|
|
@logger.info "Compressing '#{rootfs_path}' rootfs to #{target_path}"
|
|
|
|
system "sudo rm -f rootfs.tar.gz && sudo bsdtar -s /#{basename}/rootfs-#{arch}/ --numeric-owner -czf #{target_path} #{basename}/* 2>/dev/null"
|
|
|
|
|
|
|
|
@logger.info "Changing rootfs tarbal owner"
|
|
|
|
system "sudo chown #{ENV['USER']}:#{ENV['USER']} #{target_path}"
|
|
|
|
end
|
|
|
|
|
|
|
|
target_path
|
|
|
|
end
|
|
|
|
|
2013-03-02 03:05:10 +00:00
|
|
|
def state
|
2013-03-11 00:13:29 +00:00
|
|
|
if @name
|
|
|
|
@cli.state
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-10 04:54:33 +00:00
|
|
|
def assigned_ip
|
2013-03-02 16:55:05 +00:00
|
|
|
ip = ''
|
2013-03-03 04:19:20 +00:00
|
|
|
retryable(:on => LXC::Errors::ExecuteError, :tries => 10, :sleep => 3) do
|
2013-04-05 06:23:03 +00:00
|
|
|
unless ip = get_container_ip_from_ip_addr
|
2013-03-19 04:46:44 +00:00
|
|
|
# retry
|
2013-03-29 15:19:55 +00:00
|
|
|
raise LXC::Errors::ExecuteError, :command => "lxc-attach"
|
2013-03-02 16:55:05 +00:00
|
|
|
end
|
2013-03-11 00:57:45 +00:00
|
|
|
end
|
|
|
|
ip
|
|
|
|
end
|
2013-03-02 16:55:05 +00:00
|
|
|
|
2013-04-05 06:23:03 +00:00
|
|
|
# From: https://github.com/lxc/lxc/blob/staging/src/python-lxc/lxc/__init__.py#L371-L385
|
|
|
|
def get_container_ip_from_ip_addr
|
|
|
|
output = @cli.attach '/sbin/ip', '-4', 'addr', 'show', 'scope', 'global', 'eth0', namespaces: 'network'
|
|
|
|
if output =~ /^\s+inet ([0-9.]+)\/[0-9]+\s+/
|
2013-03-11 00:57:45 +00:00
|
|
|
return $1.to_s
|
|
|
|
end
|
2013-03-02 16:55:05 +00:00
|
|
|
end
|
2013-04-05 06:10:38 +00:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
LXC_TEMPLATES_PATH = Pathname.new("/usr/share/lxc/templates")
|
|
|
|
|
|
|
|
# Root folder where container configs are stored
|
|
|
|
CONTAINERS_PATH = '/var/lib/lxc'
|
|
|
|
|
|
|
|
def base_path
|
|
|
|
Pathname.new("#{CONTAINERS_PATH}/#{@name}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def rootfs_path
|
|
|
|
Pathname.new(base_path.join('config').read.match(/^lxc\.rootfs\s+=\s+(.+)$/)[1])
|
|
|
|
end
|
|
|
|
|
|
|
|
def import_template(path)
|
|
|
|
template_name = "vagrant-tmp-#{@name}"
|
|
|
|
tmp_template_path = LXC_TEMPLATES_PATH.join("lxc-#{template_name}").to_s
|
|
|
|
|
|
|
|
@logger.debug 'Copying LXC template into place'
|
|
|
|
system(%Q[sudo su root -c "cp #{path} #{tmp_template_path}"])
|
|
|
|
|
|
|
|
yield template_name
|
|
|
|
ensure
|
|
|
|
system(%Q[sudo su root -c "rm #{tmp_template_path}"])
|
|
|
|
end
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|