Class: OsCtld::Daemon

Inherits:
Object
  • Object
show all
Includes:
OsCtl::Lib::Utils::Log, OsCtl::Lib::Utils::System, Assets::Definition
Defined in:
lib/osctld/daemon.rb

Defined Under Namespace

Classes: ClientHandler

Constant Summary collapse

SOCKET =
File.join(RunState::RUNDIR, 'osctld.sock')
@@instance =
nil

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Assets::Definition

#define_assets

Instance Attribute Details

#configConfig (readonly)

Returns:



71
72
73
# File 'lib/osctld/daemon.rb', line 71

def config
  @config
end

#initializedBoolean (readonly)

Returns:

  • (Boolean)


77
78
79
# File 'lib/osctld/daemon.rb', line 77

def initialized
  @initialized
end

#started_atTime (readonly)

Returns:

  • (Time)


74
75
76
# File 'lib/osctld/daemon.rb', line 74

def started_at
  @started_at
end

Class Method Details

.create(config) ⇒ Object

Parameters:

  • config (String)

    path to config file



59
60
61
62
63
# File 'lib/osctld/daemon.rb', line 59

def create(config)
  fail 'Daemon already instantiated' if @instance

  @@instance = new(config)
end

.getObject



65
66
67
# File 'lib/osctld/daemon.rb', line 65

def get
  @@instance
end

Instance Method Details

#abort_shutdownObject



235
236
237
238
239
240
241
242
# File 'lib/osctld/daemon.rb', line 235

def abort_shutdown
  @abort_shutdown = true

  begin
    File.unlink(RunState::SHUTDOWN_MARKER)
  rescue Errno::ENOENT
  end
end

#abort_shutdown?Boolean

Returns:

  • (Boolean)


256
257
258
# File 'lib/osctld/daemon.rb', line 256

def abort_shutdown?
  @abort_shutdown
end

#assetsObject



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
# File 'lib/osctld/daemon.rb', line 177

def assets
  define_assets do |add|
    RunState.assets(add)

    add.socket(
      SOCKET,
      desc: 'Management socket',
      user: 0,
      group: 0,
      mode: 0600
    )

    Devices::V2::BpfProgramCache.assets(add)
  end
end

#begin_shutdownObject



230
231
232
233
# File 'lib/osctld/daemon.rb', line 230

def begin_shutdown
  @abort_shutdown = false
  File.open(RunState::SHUTDOWN_MARKER, 'w', 0000){}
end

#confirm_shutdownObject



244
245
246
247
248
249
250
# File 'lib/osctld/daemon.rb', line 244

def confirm_shutdown
  unless File.exist?(RunState::SHUTDOWN_MARKER)
    File.open(RunState::SHUTDOWN_MARKER, 'w', 0100){}
  end

  File.chmod(0100, RunState::SHUTDOWN_MARKER)
end

#join_serverObject



205
206
207
# File 'lib/osctld/daemon.rb', line 205

def join_server
  @server_thread.join
end

#log_typeObject



260
261
262
# File 'lib/osctld/daemon.rb', line 260

def log_type
  'daemon'
end

#serveObject



193
194
195
196
197
198
199
200
201
202
203
# File 'lib/osctld/daemon.rb', line 193

def serve
  @server_thread = Thread.new do
    log(:info, "Listening on control socket at #{SOCKET}")

    socket = UNIXServer.new(SOCKET)
    File.chmod(0600, SOCKET)

    @server = Generic::Server.new(socket, Daemon::ClientHandler)
    @server.start
  end
end

#setupObject



111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/osctld/daemon.rb', line 111

def setup
  # Setup /run/osctl
  RunState.create

  # Open start config
  start_cfg = RunState.open_start_config

  SystemLimits.instance

  CpuScheduler.setup

  # Increase allowed number of open files
  PrLimits.set(Process.pid, PrLimits::NOFILE, 131072, 131072)

  # Setup shared AppArmor files
  if AppArmor.enabled?
    log(:info, 'AppArmor enabled')
    AppArmor.setup
  else
    log(:info, 'AppArmor disabled')
  end

  # Setup BPF FS
  BpfFs.setup

  # User-control supervisor
  UserControl::Supervisor.instance

  # Send/Receive hooks and server
  SendReceive.setup

  # Setup network interfaces
  NetInterface.setup

  # Start accepting client commands
  serve

  # Load data pools
  if KernelParams.import_pools?
    autostart = KernelParams.autostart_cts?

    Commands::Pool::Import.run(all: true, autostart: autostart)

    unless autostart
      log(:info, 'Container autostart disabled by kernel parameter')
    end
  else
    log(:info, 'Pool autoimport disabled by kernel parameter')
  end

  # Resume shutdown
  if shutdown?
    log(:info, 'Resuming shutdown')
    Commands::Self::Shutdown.run
  end

  # Close start config
  start_cfg.close

  # All components are up
  @initialized = true

  # Wait for the server to finish
  join_server
end

#shutdown?Boolean

Returns:

  • (Boolean)


252
253
254
# File 'lib/osctld/daemon.rb', line 252

def shutdown?
  File.exist?(RunState::SHUTDOWN_MARKER)
end

#stopObject



209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/osctld/daemon.rb', line 209

def stop
  @stopping = true
  log(:info, 'Stopping daemon')
  Eventd.shutdown
  @server.stop if @server
  File.unlink(SOCKET) if File.exist?(SOCKET)
  UserControl.stop
  SendReceive.stop
  DB::Pools.get.each { |pool| pool.stop }
  CpuScheduler.shutdown
  ThreadReaper.stop
  Monitor::Master.stop
  LockRegistry.stop
  log(:info, 'Daemon stopped successfully')
  exit(false)
end

#stopping?Boolean

Returns:

  • (Boolean)


226
227
228
# File 'lib/osctld/daemon.rb', line 226

def stopping?
  @stopping
end