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-09-10 19:57:51 +00:00
|
|
|
require "etc"
|
|
|
|
|
2013-03-01 03:34:51 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
2013-04-05 05:17:19 +00:00
|
|
|
class Driver
|
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
|
|
|
|
2013-07-29 15:10:25 +00:00
|
|
|
# Root folder where container configs are stored
|
|
|
|
CONTAINERS_PATH = '/var/lib/lxc'
|
|
|
|
|
2013-04-10 02:54:28 +00:00
|
|
|
attr_reader :container_name,
|
|
|
|
:customizations
|
2013-03-02 04:18:38 +00:00
|
|
|
|
2013-07-28 05:17:05 +00:00
|
|
|
def initialize(container_name, sudo_wrapper, cli = nil)
|
2013-04-06 01:28:41 +00:00
|
|
|
@container_name = container_name
|
2013-07-28 05:17:05 +00:00
|
|
|
@sudo_wrapper = sudo_wrapper
|
|
|
|
@cli = cli || CLI.new(sudo_wrapper, container_name)
|
2013-04-06 01:28:41 +00:00
|
|
|
@logger = Log4r::Logger.new("vagrant::provider::lxc::driver")
|
2013-04-10 02:54:28 +00:00
|
|
|
@customizations = []
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
2013-03-02 04:18:38 +00:00
|
|
|
def validate!
|
2013-04-06 01:28:41 +00:00
|
|
|
raise ContainerNotFound if @container_name && ! @cli.list.include?(@container_name)
|
2013-03-02 04:18:38 +00:00
|
|
|
end
|
|
|
|
|
2013-03-10 04:54:33 +00:00
|
|
|
def base_path
|
2013-04-06 01:28:41 +00:00
|
|
|
Pathname.new("#{CONTAINERS_PATH}/#{@container_name}")
|
2013-03-10 04:54:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def rootfs_path
|
2013-11-06 21:29:39 +00:00
|
|
|
Pathname.new(config_string.match(/^lxc\.rootfs\s+=\s+(.+)$/)[1])
|
2013-03-10 04:54:33 +00:00
|
|
|
end
|
|
|
|
|
2013-07-29 15:08:22 +00:00
|
|
|
def mac_address
|
2013-11-06 21:29:39 +00:00
|
|
|
@mac_address ||= config_string.match(/^lxc\.network\.hwaddr\s+=\s+(.+)$/)[1]
|
|
|
|
end
|
|
|
|
|
|
|
|
def config_string
|
|
|
|
@sudo_wrapper.run('cat', base_path.join('config').to_s)
|
2013-07-29 15:08:22 +00:00
|
|
|
end
|
|
|
|
|
2013-06-06 03:04:59 +00:00
|
|
|
def create(name, template_path, config_file, template_options = {})
|
2013-04-06 01:28:41 +00:00
|
|
|
@cli.name = @container_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..."
|
2013-06-06 03:04:59 +00:00
|
|
|
@cli.create template_name, config_file, template_options
|
2013-04-05 06:10:38 +00:00
|
|
|
end
|
2013-03-02 19:38:53 +00:00
|
|
|
end
|
|
|
|
|
2013-04-10 02:54:28 +00:00
|
|
|
def share_folders(folders)
|
2013-03-04 01:42:18 +00:00
|
|
|
folders.each do |folder|
|
|
|
|
guestpath = rootfs_path.join(folder[:guestpath].gsub(/^\//, ''))
|
|
|
|
unless guestpath.directory?
|
|
|
|
begin
|
2013-04-10 02:54:28 +00:00
|
|
|
@logger.debug("Guest path doesn't exist, creating: #{guestpath}")
|
2013-07-28 05:17:05 +00:00
|
|
|
@sudo_wrapper.run('mkdir', '-p', guestpath.to_s)
|
2013-03-04 01:42:18 +00:00
|
|
|
rescue Errno::EACCES
|
2013-04-10 02:54:28 +00:00
|
|
|
raise Vagrant::Errors::SharedFolderCreateFailed, :path => guestpath.to_s
|
2013-03-04 01:42:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-10 02:54:28 +00:00
|
|
|
@customizations << ['mount.entry', "#{folder[:hostpath]} #{guestpath} none bind 0 0"]
|
2013-03-04 01:42:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-10 02:33:30 +00:00
|
|
|
def start(customizations)
|
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-07-29 15:12:41 +00:00
|
|
|
prune_customizations
|
|
|
|
write_customizations(customizations + @customizations)
|
|
|
|
|
2013-09-12 04:12:07 +00:00
|
|
|
@cli.start(extra)
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
|
2013-05-07 14:07:35 +00:00
|
|
|
def forced_halt
|
2013-03-11 00:13:29 +00:00
|
|
|
@logger.info('Shutting down container...')
|
|
|
|
@cli.transition_to(:stopped) { |c| c.shutdown }
|
2013-10-24 13:44:45 +00:00
|
|
|
# REFACTOR: Do not use exception to control the flow
|
|
|
|
rescue CLI::TargetStateNotReached, CLI::ShutdownNotSupported
|
2013-05-07 14:07:35 +00:00
|
|
|
@cli.transition_to(:stopped) { |c| c.stop }
|
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-07-29 15:08:22 +00:00
|
|
|
def attach(*command)
|
|
|
|
@cli.attach(*command)
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
2013-07-29 15:10:59 +00:00
|
|
|
@version ||= @cli.version
|
2013-07-29 15:08:22 +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: Pass in tmpdir so we can clean up from outside
|
|
|
|
target_path = "#{Dir.mktmpdir}/rootfs.tar.gz"
|
|
|
|
|
2013-11-06 21:29:39 +00:00
|
|
|
@logger.info "Compressing '#{rootfs_path}' rootfs to #{target_path}"
|
|
|
|
cmds = [
|
|
|
|
"cd #{base_path}",
|
|
|
|
"rm -f rootfs.tar.gz",
|
|
|
|
"tar --numeric-owner -czf #{target_path} -C #{rootfs_path} './.'"
|
|
|
|
]
|
|
|
|
@sudo_wrapper.su_c(cmds.join(' && '))
|
|
|
|
|
|
|
|
@logger.info "Changing rootfs tarball owner"
|
|
|
|
user_details = Etc.getpwnam(Etc.getlogin)
|
|
|
|
@sudo_wrapper.run('chown', "#{user_details.uid}:#{user_details.gid}", target_path)
|
2013-03-30 22:17:13 +00:00
|
|
|
|
|
|
|
target_path
|
|
|
|
end
|
|
|
|
|
2013-03-02 03:05:10 +00:00
|
|
|
def state
|
2013-04-06 01:28:41 +00:00
|
|
|
if @container_name
|
2013-03-11 00:13:29 +00:00
|
|
|
@cli.state
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-07-29 15:12:41 +00:00
|
|
|
def prune_customizations
|
2013-08-01 01:35:49 +00:00
|
|
|
# Use sed to just strip out the block of code which was inserted by Vagrant
|
2013-07-29 15:12:41 +00:00
|
|
|
@logger.debug 'Prunning vagrant-lxc customizations'
|
|
|
|
@sudo_wrapper.su_c("sed -e '/^# VAGRANT-BEGIN/,/^# VAGRANT-END/ d' -ibak #{base_path.join('config')}")
|
|
|
|
end
|
|
|
|
|
2013-04-05 06:10:38 +00:00
|
|
|
protected
|
|
|
|
|
2013-07-29 15:12:41 +00:00
|
|
|
def write_customizations(customizations)
|
|
|
|
customizations = customizations.map do |key, value|
|
|
|
|
"lxc.#{key}=#{value}"
|
|
|
|
end
|
|
|
|
customizations.unshift '# VAGRANT-BEGIN'
|
|
|
|
customizations << '# VAGRANT-END'
|
|
|
|
|
|
|
|
config_file = base_path.join('config').to_s
|
|
|
|
customizations.each do |line|
|
|
|
|
@sudo_wrapper.su_c("echo '#{line}' >> #{config_file}")
|
|
|
|
end
|
|
|
|
end
|
2013-04-05 06:10:38 +00:00
|
|
|
|
|
|
|
def import_template(path)
|
2013-04-06 01:28:41 +00:00
|
|
|
template_name = "vagrant-tmp-#{@container_name}"
|
2013-04-10 04:09:38 +00:00
|
|
|
tmp_template_path = templates_path.join("lxc-#{template_name}").to_s
|
2013-04-05 06:10:38 +00:00
|
|
|
|
2013-09-21 04:32:15 +00:00
|
|
|
@logger.info 'Copying LXC template into place'
|
2013-07-28 05:17:05 +00:00
|
|
|
@sudo_wrapper.run('cp', path, tmp_template_path)
|
2013-09-21 04:28:01 +00:00
|
|
|
@sudo_wrapper.run('chmod', '+x', tmp_template_path)
|
2013-04-05 06:10:38 +00:00
|
|
|
|
|
|
|
yield template_name
|
|
|
|
ensure
|
2013-09-21 04:32:15 +00:00
|
|
|
@logger.info 'Removing LXC template'
|
2013-09-28 05:58:38 +00:00
|
|
|
if tmp_template_path
|
|
|
|
@sudo_wrapper.run('rm', tmp_template_path)
|
|
|
|
end
|
2013-04-05 06:10:38 +00:00
|
|
|
end
|
2013-04-10 04:09:38 +00:00
|
|
|
|
|
|
|
TEMPLATES_PATH_LOOKUP = %w(
|
|
|
|
/usr/share/lxc/templates
|
|
|
|
/usr/lib/lxc/templates
|
2013-05-25 08:15:25 +00:00
|
|
|
/usr/lib64/lxc/templates
|
|
|
|
/usr/local/lib/lxc/templates
|
2013-04-10 04:09:38 +00:00
|
|
|
)
|
|
|
|
def templates_path
|
|
|
|
return @templates_path if @templates_path
|
|
|
|
|
|
|
|
path = TEMPLATES_PATH_LOOKUP.find { |candidate| File.directory?(candidate) }
|
2013-09-28 05:58:38 +00:00
|
|
|
if !path
|
|
|
|
raise Errors::TemplatesDirMissing.new paths: TEMPLATES_PATH_LOOKUP.inspect
|
|
|
|
end
|
2013-04-10 04:09:38 +00:00
|
|
|
|
|
|
|
@templates_path = Pathname(path)
|
|
|
|
end
|
2013-03-01 03:34:51 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|