Class: OsCtld::Mount::Manager

Inherits:
Object
  • Object
show all
Includes:
Enumerable, OsCtl::Lib::Utils::Log, Lockable, Utils::SwitchUser
Defined in:
lib/osctld/mount/manager.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils::SwitchUser

#ct_attach, #ct_syscmd

Methods included from Lockable

#exclusively, included, #inclusively, #init_lock, #lock, #unlock

Constructor Details

#initialize(ct, entries: []) ⇒ Manager

Returns a new instance of Manager.

Parameters:



20
21
22
23
24
25
# File 'lib/osctld/mount/manager.rb', line 20

def initialize(ct, entries: [])
  init_lock
  @ct = ct
  @entries = entries
  @shared_dir = Mount::SharedDir.new(ct)
end

Instance Attribute Details

#ctObject (readonly, protected)

Returns the value of attribute ct.



160
161
162
# File 'lib/osctld/mount/manager.rb', line 160

def ct
  @ct
end

#entriesObject (readonly, protected)

Returns the value of attribute entries.



160
161
162
# File 'lib/osctld/mount/manager.rb', line 160

def entries
  @entries
end

#shared_dirObject (readonly)

Returns the value of attribute shared_dir.



17
18
19
# File 'lib/osctld/mount/manager.rb', line 17

def shared_dir
  @shared_dir
end

Class Method Details

.load(ct, cfg) ⇒ Object

Load mounts from config

Parameters:



13
14
15
# File 'lib/osctld/mount/manager.rb', line 13

def self.load(ct, cfg)
  new(ct, entries: cfg.map { |v| Mount::Entry.load(ct, v) })
end

Instance Method Details

#<<(mnt) ⇒ Object

Parameters:



46
47
48
# File 'lib/osctld/mount/manager.rb', line 46

def <<(mnt)
  add(mnt)
end

#activate(mountpoint) ⇒ Object

Mount the directory inside the container

WARNING: this method can mount the directory multiple times! It is the caller’s responsibility to ensure that the container is running.

Parameters:

  • mountpoint (String)


126
127
128
129
130
131
132
133
134
135
136
137
138
# File 'lib/osctld/mount/manager.rb', line 126

def activate(mountpoint)
  mnt = find_at(mountpoint)

  if mnt.nil?
    raise MountNotFound, mountpoint
  elsif !mnt.fs || !mnt.type || !mnt.opts
    raise MountInvalid, 'incomplete mount: missing fs, type or opts'
  elsif !%w[bind none].include?(mnt.type)
    raise MountInvalid, "can activate only bind mounts, not #{mnt.type}"
  end

  shared_dir.propagate(mnt)
end

#add(mnt) ⇒ Object

Parameters:



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/osctld/mount/manager.rb', line 28

def add(mnt)
  exclusively do
    entries << mnt
  end

  ct.save_config
  ct.lxc_config.configure_mounts

  return if !mnt.automount? || mnt.type != 'bind'

  ct.exclusively do
    next unless ct.fresh_state == :running

    shared_dir.propagate(mnt)
  end
end

#all_entriesArray<Mount::Entry>

Return all mount entries, including internal entries

Returns:



108
109
110
111
112
113
114
115
116
117
118
# File 'lib/osctld/mount/manager.rb', line 108

def all_entries
  inclusively do
    [Mount::Entry.new(
      shared_dir.path,
      shared_dir.mountpoint,
      'none',
      'bind,create=dir,ro',
      true
    )] + entries.select { |m| m.in_config? || (m.automount? && !m.temp?) }
  end
end

#deactivate(mountpoint) ⇒ Object

Unmount the directory from the container

Parameters:

  • mountpoint (String)

Raises:



142
143
144
145
146
147
# File 'lib/osctld/mount/manager.rb', line 142

def deactivate(mountpoint)
  mnt = find_at(mountpoint)
  raise MountNotFound, mountpoint unless mnt

  unmount(mnt)
end

#delete_at(mountpoint) ⇒ Object

Parameters:

  • mountpoint (String)


68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/osctld/mount/manager.rb', line 68

def delete_at(mountpoint)
  exclusively do
    mnt = entries.detect { |m| m.mountpoint == mountpoint }
    next unless mnt

    ct.exclusively do
      next unless ct.fresh_state == :running

      unmount(mnt)
    end

    entries.delete(mnt)
  end

  ct.save_config
  ct.lxc_config.configure_mounts
end

#dumpObject

Dump mounts into config



102
103
104
# File 'lib/osctld/mount/manager.rb', line 102

def dump
  map(&:dump)
end

#dup(new_ct) ⇒ Object



149
150
151
152
153
154
155
156
# File 'lib/osctld/mount/manager.rb', line 149

def dup(new_ct)
  ret = super()
  ret.init_lock
  ret.instance_variable_set('@ct', new_ct)
  ret.instance_variable_set('@entries', entries.map(&:clone))
  ret.instance_variable_set('@shared_dir', shared_dir.dup(new_ct))
  ret
end

#each(&block) ⇒ Object



93
94
95
96
97
# File 'lib/osctld/mount/manager.rb', line 93

def each(&block)
  inclusively do
    entries.each(&block)
  end
end

#find_at(mountpoint) ⇒ Object

Parameters:

  • mountpoint (String)


61
62
63
64
65
# File 'lib/osctld/mount/manager.rb', line 61

def find_at(mountpoint)
  inclusively do
    entries.detect { |m| m.mountpoint == mountpoint }
  end
end

#pruneObject

Remote temporal mounts



87
88
89
90
91
# File 'lib/osctld/mount/manager.rb', line 87

def prune
  exclusively do
    entries.delete_if(&:temp?)
  end
end

#register(mnt) ⇒ Object

Parameters:



51
52
53
54
55
56
57
58
# File 'lib/osctld/mount/manager.rb', line 51

def register(mnt)
  exclusively do
    entries << mnt
  end

  ct.save_config
  ct.lxc_config.configure_mounts
end

#unmount(mnt) ⇒ Object (protected)



162
163
164
165
166
# File 'lib/osctld/mount/manager.rb', line 162

def unmount(mnt)
  ContainerControl::Commands::Unmount.run!(ct, mnt.mountpoint)
rescue ContainerControl::Error => e
  raise UnmountError, e.message
end