Class: OsCtld::Mount::Manager
- Inherits:
-
Object
- Object
- OsCtld::Mount::Manager
- Includes:
- Enumerable, OsCtl::Lib::Utils::Log, Lockable, Utils::SwitchUser
- Defined in:
- lib/osctld/mount/manager.rb
Instance Attribute Summary collapse
-
#ct ⇒ Object
readonly
protected
Returns the value of attribute ct.
-
#entries ⇒ Object
readonly
protected
Returns the value of attribute entries.
-
#shared_dir ⇒ Object
readonly
Returns the value of attribute shared_dir.
Class Method Summary collapse
-
.load(ct, cfg) ⇒ Object
Load mounts from config.
Instance Method Summary collapse
- #<<(mnt) ⇒ Object
-
#activate(mountpoint) ⇒ Object
Mount the directory inside the container.
- #add(mnt) ⇒ Object
-
#all_entries ⇒ Array<Mount::Entry>
Return all mount entries, including internal entries.
-
#clear ⇒ Object
Remove all mounts.
-
#deactivate(mountpoint) ⇒ Object
Unmount the directory from the container.
- #delete_at(mountpoint) ⇒ Object
-
#dump ⇒ Object
Dump mounts into config.
- #dup(new_ct) ⇒ Object
- #each(&block) ⇒ Object
- #find_at(mountpoint) ⇒ Object
-
#initialize(ct, entries: []) ⇒ Manager
constructor
A new instance of Manager.
-
#prune ⇒ Object
Remote temporal mounts.
- #register(mnt) ⇒ Object
- #unmount(mnt) ⇒ Object protected
Methods included from Utils::SwitchUser
Methods included from Lockable
#exclusively, included, #inclusively, #init_lock, #lock, #unlock
Constructor Details
Instance Attribute Details
#ct ⇒ Object (readonly, protected)
Returns the value of attribute ct.
174 175 176 |
# File 'lib/osctld/mount/manager.rb', line 174 def ct @ct end |
#entries ⇒ Object (readonly, protected)
Returns the value of attribute entries.
174 175 176 |
# File 'lib/osctld/mount/manager.rb', line 174 def entries @entries end |
#shared_dir ⇒ Object (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
Instance Method Details
#<<(mnt) ⇒ Object
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.
140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/osctld/mount/manager.rb', line 140 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
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_entries ⇒ Array<Mount::Entry>
Return all mount entries, including internal entries
122 123 124 125 126 127 128 129 130 131 132 |
# File 'lib/osctld/mount/manager.rb', line 122 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 |
#clear ⇒ Object
Remove all mounts
87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/osctld/mount/manager.rb', line 87 def clear exclusively do if ct.fresh_state == :running entries.reverse_each { |m| unmount(m) } end entries.clear end ct.save_config ct.lxc_config.configure_mounts end |
#deactivate(mountpoint) ⇒ Object
Unmount the directory from the container
156 157 158 159 160 161 |
# File 'lib/osctld/mount/manager.rb', line 156 def deactivate(mountpoint) mnt = find_at(mountpoint) raise MountNotFound, mountpoint unless mnt unmount(mnt) end |
#delete_at(mountpoint) ⇒ Object
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 |
#dump ⇒ Object
Dump mounts into config
116 117 118 |
# File 'lib/osctld/mount/manager.rb', line 116 def dump map(&:dump) end |
#dup(new_ct) ⇒ Object
163 164 165 166 167 168 169 170 |
# File 'lib/osctld/mount/manager.rb', line 163 def dup(new_ct) ret = super() ret.init_lock ret.instance_variable_set('@ct', new_ct) ret.instance_variable_set('@entries', entries.map { |v| v.dup(new_ct) }) ret.instance_variable_set('@shared_dir', shared_dir.dup(new_ct)) ret end |
#each(&block) ⇒ Object
107 108 109 110 111 |
# File 'lib/osctld/mount/manager.rb', line 107 def each(&block) inclusively do entries.each(&block) end end |
#find_at(mountpoint) ⇒ Object
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 |
#prune ⇒ Object
Remote temporal mounts
101 102 103 104 105 |
# File 'lib/osctld/mount/manager.rb', line 101 def prune exclusively do entries.delete_if(&:temp?) end end |
#register(mnt) ⇒ Object
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)
176 177 178 179 180 |
# File 'lib/osctld/mount/manager.rb', line 176 def unmount(mnt) ContainerControl::Commands::Unmount.run!(ct, mnt.mountpoint) rescue ContainerControl::Error => e raise UnmountError, e. end |