Class: Pmux::Gateway::Application

Inherits:
Object
  • Object
show all
Defined in:
lib/pmux-gw/application.rb

Instance Method Summary collapse

Constructor Details

#initializeApplication

Returns a new instance of Application.



9
10
11
12
13
14
15
16
# File 'lib/pmux-gw/application.rb', line 9

def initialize
  @config_file_path = "/etc/pmux-gw/pmux-gw.conf"
  @pidfile = "/var/run/pmux-gw.pid"
  @foreground = false
  @reload = false
  @term = false
  @logger = nil
end

Instance Method Details

#argparseObject



18
19
20
21
22
23
24
# File 'lib/pmux-gw/application.rb', line 18

def argparse
  OptionParser.new do |opt|
    opt.on('-c [config_file_path]', '--config [config_file_path]') {|v| @config_file_path = v}
    opt.on('-F', '--foreground') {|v| @foreground = true}
    opt.parse!(ARGV)
  end
end

#daemonizeObject



26
27
28
29
30
31
32
33
34
35
# File 'lib/pmux-gw/application.rb', line 26

def daemonize
  if !@foreground
    exit!(0) if Process.fork
    Process.setsid
    exit!(0) if Process.fork
    STDIN.reopen("/dev/null", "r")
    STDOUT.reopen("/dev/null", "w")
    STDERR.reopen("/dev/null", "w")
  end
end

#load_configObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/pmux-gw/application.rb', line 37

def load_config
  # コンフィグのロード、リロード処理
  # グローバル変数 $config はここで作る
  begin
    $config = YAML.load_file(@config_file_path)
  rescue Errno::ENOENT
    if @logger.nil?
      puts "not found config file (#{@config_file_path})"
    else
      @logger.logging("error", "not found config file (#{@config_file_path})")
    end
  rescue Errno::EACCES
    if @logger.nil?
      puts "can not access config file (#{@config_file_path})"
    else
      @logger.logging("error", "can not access config file (#{@config_file_path})")
    end
  rescue Exception => e
    # コンフィグ読み込み中に予期しないエラーが起きた
    if @logger.nil?
      puts "error occurred in config loading: #{e}"
      puts e.backtrace.join("\n") 
    else
      @logger.logging("error", "error occurred in config loading: #{e}")
      @logger.logging("error", e.backtrace.join("\n"))
    end
  end
  # 必要なディレクトリを作る
  # 作れなければ、ログに残して続行
  begin
    histdir = File.dirname($config["history_file_path"])
    logdir = File.dirname($config["log_file_path"])
    FileUtils.mkdir_p(histdir) unless File.exist?(histdir)
    FileUtils.mkdir_p(logdir) unless File.exist?(logdir)
    FileUtils.chown_R($config["user"], $config["group"], histdir)
    FileUtils.chown_R($config["user"], $config["group"], logdir)
  rescue Exception => e
    if @logger.nil?
      puts "error occurred in directory creating: #{e}"
      puts e.backtrace.join("\n")
    else
      @logger.logging("error", "error occurred in directory creating: #{e}")
      @logger.logging("error", e.backtrace.join("\n"))
    end
  end
end

#load_userdbObject



84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/pmux-gw/application.rb', line 84

def load_userdb
  $userdb = {} if $userdb.nil?
  # パスワードファイルの読み込み
  # パーミッションをチェックする
  # グローバル変数 $userdb はここで作る
  # $userdbがnilなら空のマップにする 
  # 読み込みに何らかの理由で失敗したらログに残し、前の状態から変更しない
  if $config["use_basic_auth"]
    return false if $config["password_file_path"].nil? || $config["password_file_path"] == ""
    stat = File.stat($config["password_file_path"])
    mode = "%o" % stat.mode
    if mode[-3, 3] != "600"
      if @logger.nil?
        puts "password file permission is not 600 (#{$config['password_file_path']})"
      else
        @logger.logging("error", "password file permission is not 600 (#{$config['password_file_path']})")
      end
      return false
    end
    begin
      $userdb = YAML.load_file($config["password_file_path"])
    rescue Errno::ENOENT
      if @logger.nil?
        puts "not found password file (#{$config['password_file_path']})"
      else
        @logger.logging("error", "not found password file (#{$config['password_file_path']})")
      end
    rescue Errno::EACCES
      if @logger.nil?
        puts "can not access password file (#{$config['password_file_path']})"
      else
        @logger.logging("error", "can not access password file (#{$config['password_file_path']})")
      end
    rescue Exception => e
      # password読み込み中に予期しないエラーが起きた
      if @logger.nil?
        puts "error occurred in password loading: #{e}"
        puts e.backtrace.join("\n")
      else
        @logger.logging("error", "error occurred in password loading: #{e}")
        @logger.logging("error", e.backtrace.join("\n"))
      end
    end
  end
  return true
end

#runObject



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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
# File 'lib/pmux-gw/application.rb', line 131

def run
  argparse()
  daemonize()
    
  # シグナルを受るとフラグを設定するようにする
  Signal.trap(:INT) { @term = true }
  Signal.trap(:TERM) { @term = true }
  Signal.trap(:HUP) { @reload = true }
    
  # コンフィグの読み込み
  load_config()

  # pidfile作成
  @pidfile = $config["pidfile"] if $config["pidfile"]
  open(@pidfile, 'w') {|f| f << Process.pid } if @pidfile
    
  # ユーザーとグループの情報を取得する
  user = Etc.getpwnam($config["user"])
  group = Etc.getgrnam($config["group"])
    
  # ユーザー情報読み込み
  exit(1) if !load_userdb()

  # syslogラッパーインスタンス作成
  @syslog = SyslogWrapper.instance()

  # ロガーラッパーインスタンスの作成と初期化
  @logger = LoggerWrapper.instance()
  @logger.init(@foreground)
    
  # 履歴処理インスタンスの作成と初期化
  @history = History.instance()
  @history.init($config["history_file_path"], @logger)
    
  begin
    EM.run do
      # httpサーバーを開始する
      EM.start_server($config["bind_address"], $config["bind_port"], HttpHandler)
    
      # ユーザー権限を変更
      Process::GID.change_privilege(group.gid)
      Process::UID.change_privilege(user.uid) 
    
      # pmuxが読み込む環境変数を上書き
      ENV["USER"] = $config["user"]
      ENV["LOGNAME"] = $config["user"]
      ENV["HOME"] = user.dir
    
      # リソースリミットの設定
      soft, hard = Process.getrlimit(Process::RLIMIT_NPROC)
      proc_margin = 32
      if soft - proc_margin < $config["max_tasks"] || hard - proc_margin < $config["max_tasks"]
        proc_limit = $config["max_tasks"] + proc_margin
        Process.setrlimit(Process::RLIMIT_NPROC, proc_limit, proc_limit)
      end

      # syslogのオープン
      @syslog.open($config["use_syslog"],  $config["syslog_facility"])
    
      # ロガーのオープン
      @logger.open($config["log_file_path"], $config["log_level"])
    
      # シグナル受信フラグを処理する定期実行タイマー
      @periodic_timer = EM::PeriodicTimer.new(1) do
        # reloadフラグが立っていればリロードする
        if @reload 
          @logger.logging("info", "config reloading...")
          load_config()
          load_userdb()
          # syslogとロガーをリオープンと履歴処理インスタンスのリセット
          @syslog.open($config["use_syslog"], $config["syslog_facility"])
          @logger.open($config["log_file_path"], $config["log_level"])
          @history.reset($config["history_file_path"])
          @reload = false
        end
        # 終了フラグが立っていると終了処理
        if @term 
          HttpHandler.set_term()
          if HttpHandler.get_task_cnt() == 0
            @logger.logging("info", "shutdown...")
            @periodic_timer.cancel()
            @history.finish()
            @logger.close()
            EM.stop()
          end
        end
        sleep(1)
      end
    end
  rescue Exception => e
    # event machine内で予期せぬ例外で死んだ場合ログに残す
    @logger.logging("error", "error occurred in eventmachine: #{e}")
    @logger.logging("error", e.backtrace.join("\n"))
    @history.finish()
    @logger.close()
    raise e
  end
end