2013-03-01 23:45:13 +00:00
|
|
|
# FIXME: Ruby 1.8 users dont have SecureRandom
|
|
|
|
require 'securerandom'
|
|
|
|
|
2013-03-10 22:22:58 +00:00
|
|
|
require "vagrant-lxc/errors"
|
|
|
|
require "vagrant-lxc/container/cli"
|
|
|
|
|
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-03-01 03:34:51 +00:00
|
|
|
module Vagrant
|
|
|
|
module LXC
|
|
|
|
class Container
|
2013-03-10 04:54:33 +00:00
|
|
|
# Root folder where containers are stored
|
|
|
|
CONTAINERS_PATH = '/var/lib/lxc'
|
|
|
|
|
2013-03-11 00:57:45 +00:00
|
|
|
# Default LXC configs
|
|
|
|
LXC_DEFAULTS_PATH = '/etc/default/lxc'
|
|
|
|
|
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-03-02 04:18:38 +00:00
|
|
|
class NotFound < StandardError; end
|
|
|
|
|
|
|
|
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-03-02 03:55:45 +00:00
|
|
|
@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!
|
2013-03-10 22:22:58 +00:00
|
|
|
raise NotFound 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
|
|
|
|
Pathname.new("#{base_path}/rootfs")
|
|
|
|
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-08 03:54:15 +00:00
|
|
|
@logger.debug('Creating container using lxc-create...')
|
|
|
|
|
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-11 00:13:29 +00:00
|
|
|
meta_opts = metadata.fetch('template-opts', {}).merge(
|
|
|
|
'--auth-key' => public_key,
|
|
|
|
'--cache' => metadata.fetch('rootfs-cache-path')
|
|
|
|
)
|
2013-03-02 15:17:04 +00:00
|
|
|
|
2013-03-11 00:13:29 +00:00
|
|
|
@cli.name = @name
|
|
|
|
@cli.create(metadata.fetch('template-name'), meta_opts)
|
2013-03-02 19:38:53 +00:00
|
|
|
|
|
|
|
@name
|
|
|
|
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-03-11 00:13:29 +00:00
|
|
|
# http://blog.smartlogicsolutions.com/2009/06/04/mount-options-to-improve-ext4-file-system-performance/
|
2013-03-04 01:42:18 +00:00
|
|
|
config.start_opts << "lxc.mount.entry=#{folder[:hostpath]} #{guestpath} none bind 0 0"
|
|
|
|
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...')
|
|
|
|
|
|
|
|
opts = config.start_opts.dup
|
|
|
|
if ENV['LXC_START_LOG_FILE']
|
|
|
|
opts.merge!('-o' => ENV['LXC_START_LOG_FILE'], '-l' => 'DEBUG')
|
|
|
|
end
|
|
|
|
|
|
|
|
@cli.transition_to(:running) { |c| c.start(opts) }
|
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-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
|
|
|
|
unless File.read(base_path.join('config')) =~ /^lxc\.network\.hwaddr\s*=\s*([a-z0-9:]+)\s*$/
|
|
|
|
raise 'Unknown Container MAC Address'
|
|
|
|
end
|
|
|
|
mac_addr = $1
|
|
|
|
|
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-03-11 00:57:45 +00:00
|
|
|
# See: http://programminglinuxblog.blogspot.com.br/2007/11/detecting-ip-address-from-mac-address.html
|
|
|
|
unless ip = get_container_ip_from_arp(mac_addr)
|
|
|
|
# Ping subnet and try to get ip again
|
2013-03-11 01:15:16 +00:00
|
|
|
ping_subnet!
|
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-03-11 00:57:45 +00:00
|
|
|
def get_container_ip_from_arp(mac_addr)
|
|
|
|
r = raw 'arp', '-n'
|
2013-03-10 04:54:33 +00:00
|
|
|
|
2013-03-11 00:57:45 +00:00
|
|
|
# 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 => ['arp', '-n'].inspect
|
2013-03-03 02:20:52 +00:00
|
|
|
end
|
2013-03-02 16:55:05 +00:00
|
|
|
end
|
2013-03-11 00:57:45 +00:00
|
|
|
|
|
|
|
if r.stdout.gsub("\r\n", "\n").strip =~ /^([0-9.]+).+#{Regexp.escape mac_addr}/
|
|
|
|
return $1.to_s
|
|
|
|
end
|
2013-03-02 16:55:05 +00:00
|
|
|
end
|
|
|
|
|
2013-03-11 00:57:45 +00:00
|
|
|
# FIXME: Should output an error friendly message in case fping is not installed
|
|
|
|
def ping_subnet!
|
|
|
|
raise LXC::Errors::UnknownLxcConfigFile unless File.exists?(LXC_DEFAULTS_PATH)
|
|
|
|
|
|
|
|
raise LXC::Errors::UnknownLxcBridgeAddress unless
|
|
|
|
File.read(LXC_DEFAULTS_PATH) =~ /^LXC_ADDR\="?([0-9.]+)"?.*$/
|
2013-03-01 23:45:13 +00:00
|
|
|
|
2013-03-11 01:15:16 +00:00
|
|
|
cmd = ['fping', '-c', '1', '-g', '-q', "#{$1}/24"]
|
|
|
|
raw(*cmd)
|
|
|
|
|
|
|
|
raise LXC::Errors::ExecuteError, :command => cmd.inspect
|
2013-03-11 00:57:45 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: Review code below this line, it was pretty much a copy and paste from VirtualBox base driver
|
2013-03-01 23:45:13 +00:00
|
|
|
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
|