3 require 'unicorn/socket_helper'
4 require 'unicorn/const'
5 require 'unicorn/http_request'
6 require 'unicorn/http_response'
7 require 'unicorn/configurator'
10 # Unicorn module containing all of the classes (include C extensions) for running
11 # a Unicorn web server. It contains a minimalist HTTP server with just enough
12 # functionality to service web application requests fast as possible.
15 def run(app, options = {})
16 HttpServer.new(app, options).start.join
20 # This is the process manager of Unicorn. This manages worker
21 # processes which in turn handle the I/O and application process.
22 # Listener sockets are started in the master process and shared with
23 # forked worker children.
26 include ::Unicorn::SocketHelper
28 # prevents IO objects in here from being GC-ed
31 # all bound listener sockets
34 # This hash maps PIDs to Workers
37 # See: http://cr.yp.to/docs/selfpipe.html
40 # signal queue used for self-piping
43 # We populate this at startup so we can figure out how to reexecute
44 # and upgrade the currently running instance of Unicorn
46 :argv => ARGV.map { |arg| arg.dup },
47 # don't rely on Dir.pwd here since it's not symlink-aware, and
48 # symlink dirs are the default with Capistrano...
49 :cwd => `/bin/sh -c pwd`.chomp("\n"),
53 Worker = Struct.new(:nr, :tempfile) unless defined?(Worker)
55 # worker objects may be compared to just plain numbers
61 # Creates a working server on host:port (strange things happen if
62 # port isn't a Number). Use HttpServer::run to start the server and
63 # HttpServer.run.join to join the thread that's processing
64 # incoming requests on the socket.
65 def initialize(app, options = {})
69 @init_listeners = options[:listeners] ? options[:listeners].dup : []
70 @config = Configurator.new(options.merge(:use_defaults => true))
72 @config.commit!(self, :skip => [:listeners, :pid])
75 # Runs the thing. Returns self so you can run join on it
77 BasicSocket.do_not_reverse_lookup = true
79 # inherit sockets from parents, they need to be plain Socket objects
80 # before they become UNIXServer or TCPServer
81 inherited = ENV['UNICORN_FD'].to_s.split(/,/).map do |fd|
82 io = Socket.for_fd(fd.to_i)
83 set_server_sockopt(io, @listener_opts[sock_name(io)])
85 logger.info "inherited addr=#{sock_name(io)} fd=#{fd}"
89 config_listeners = @config[:listeners].dup
90 LISTENERS.replace(inherited)
92 # we start out with generic Socket objects that get cast to either
93 # TCPServer or UNIXServer objects; but since the Socket objects
94 # share the same OS-level file descriptor as the higher-level *Server
95 # objects; we need to prevent Socket objects from being garbage-collected
96 config_listeners -= listener_names
97 if config_listeners.empty? && LISTENERS.empty?
98 config_listeners << Unicorn::Const::DEFAULT_LISTEN
100 config_listeners.each { |addr| listen(addr) }
101 raise ArgumentError, "no listeners" if LISTENERS.empty?
102 self.pid = @config[:pid]
103 build_app! if @preload_app
104 File.open(@stderr_path, "a") { |fp| $stderr.reopen(fp) } if @stderr_path
105 File.open(@stdout_path, "a") { |fp| $stdout.reopen(fp) } if @stdout_path
106 $stderr.sync = $stdout.sync = true
107 spawn_missing_workers
111 # replaces current listener set with +listeners+. This will
112 # close the socket if it will not exist in the new listener set
113 def listeners=(listeners)
114 cur_names, dead_names = [], []
115 listener_names.each do |name|
117 # mark unlinked sockets as dead so we can rebind them
118 (File.socket?(name) ? cur_names : dead_names) << name
123 set_names = listener_names(listeners)
124 dead_names += cur_names - set_names
127 LISTENERS.delete_if do |io|
128 if dead_names.include?(sock_name(io))
129 IO_PURGATORY.delete_if do |pio|
130 pio.fileno == io.fileno && (pio.close rescue nil).nil? # true
132 (io.close rescue nil).nil? # true
134 set_server_sockopt(io, @listener_opts[sock_name(io)])
139 (set_names - cur_names).each { |addr| listen(addr) }
142 # sets the path for the PID file of the master process
145 if x = valid_pid?(path)
146 return path if @pid && path == @pid && x == $$
147 raise ArgumentError, "Already running on PID:#{x} " \
148 "(or pid=#{path} is stale)"
151 unlink_pid_safe(@pid) if @pid
152 File.open(path, 'wb') { |fp| fp.syswrite("#$$\n") } if path
156 # add a given address to the +listeners+ set, idempotently
157 # Allows workers to add a private, per-process listener via the
158 # @after_fork hook. Very useful for debugging and testing.
159 def listen(address, opt = {}.merge(@listener_opts[address] || {}))
160 return if String === address && listener_names.include?(address)
162 if io = bind_listen(address, opt)
163 unless TCPServer === io || UNIXServer === io
167 logger.info "listening on addr=#{sock_name(io)} fd=#{io.fileno}"
170 logger.error "adding listener failed addr=#{address} (in use)"
171 raise Errno::EADDRINUSE, address
175 # monitors children and receives signals forever
176 # (or until a termination signal is sent). This handles signals
177 # one-at-a-time time and we'll happily drop signals in case somebody
178 # is signalling us too often.
180 # this pipe is used to wake us up from select(2) in #join when signals
181 # are trapped. See trap_deferred
182 SELF_PIPE.replace(IO.pipe)
186 QUEUE_SIGS.each { |sig| trap_deferred(sig) }
187 trap(:CHLD) { |sig_nr| awaken_master }
189 logger.info "master process ready" # test_exec.rb relies on this message
193 case (mode = SIG_QUEUE.shift)
196 spawn_missing_workers if respawn
198 when :QUIT # graceful shutdown
200 when :TERM, :INT # immediate shutdown
203 when :USR1 # rotate logs
204 logger.info "master reopening logs..."
205 Unicorn::Util.reopen_logs
206 logger.info "master done reopening logs"
207 kill_each_worker(:USR1)
208 when :USR2 # exec binary, stay alive in case something went wrong
211 if Process.ppid == 1 || Process.getpgrp != $$
213 logger.info "gracefully stopping all workers"
214 kill_each_worker(:QUIT)
216 logger.info "SIGWINCH ignored because we're not daemonized"
220 if @config.config_file
222 redo # immediate reaping since we may have QUIT workers
223 else # exec binary and exit if there's no config file
224 logger.info "config_file not present, reexecuting binary"
229 logger.error "master process in unknown mode: #{mode}"
235 logger.error "Unhandled master loop exception #{e.inspect}."
236 logger.error e.backtrace.join("\n")
239 stop # gracefully shutdown all workers on our way out
240 logger.info "master complete"
241 unlink_pid_safe(@pid) if @pid
244 # Terminates all workers, but does not exit master process
245 def stop(graceful = true)
246 kill_each_worker(graceful ? :QUIT : :TERM)
253 (timeleft -= step) > 0 and next
254 kill_each_worker(:KILL)
262 # list of signals we care about and trap in master.
263 QUEUE_SIGS = [ :WINCH, :QUIT, :INT, :TERM, :USR1, :USR2, :HUP ].freeze
265 # defer a signal for later processing in #join (master process)
266 def trap_deferred(signal)
267 trap(signal) do |sig_nr|
268 if SIG_QUEUE.size < 5
272 logger.error "ignoring SIG#{signal}, queue=#{SIG_QUEUE.inspect}"
277 # wait for a signal hander to wake us up and then consume the pipe
278 # Wake up every second anyways to run murder_lazy_workers
281 ready = IO.select([SELF_PIPE.first], nil, nil, 1)
282 ready && ready[0] && ready[0][0] or return
283 loop { SELF_PIPE.first.read_nonblock(Const::CHUNK_SIZE) }
284 rescue Errno::EAGAIN, Errno::EINTR
290 SELF_PIPE.last.write_nonblock('.') # wakeup master process from select
291 rescue Errno::EAGAIN, Errno::EINTR
292 # pipe is full, master should wake up anyways
297 # reaps all unreaped workers
301 pid, status = Process.waitpid2(-1, Process::WNOHANG)
303 if @reexec_pid == pid
304 logger.error "reaped #{status.inspect} exec()-ed"
306 self.pid = @pid.chomp('.oldbin') if @pid
309 worker = WORKERS.delete(pid)
310 worker.tempfile.close rescue nil
311 logger.info "reaped #{status.inspect} " \
312 "worker=#{worker.nr rescue 'unknown'}"
319 # reexecutes the START_CTX with a new binary
323 Process.kill(0, @reexec_pid)
324 logger.error "reexec-ed child already running PID:#{@reexec_pid}"
332 old_pid = "#{@pid}.oldbin"
335 self.pid = old_pid # clear the path for a new pid file
337 logger.error "old PID:#{valid_pid?(old_pid)} running with " \
338 "existing pid=#{old_pid}, refusing rexec"
341 logger.error "error writing pid=#{old_pid} #{e.class} #{e.message}"
346 @reexec_pid = fork do
347 listener_fds = LISTENERS.map { |sock| sock.fileno }
348 ENV['UNICORN_FD'] = listener_fds.join(',')
349 Dir.chdir(START_CTX[:cwd])
350 cmd = [ START_CTX[:zero] ] + START_CTX[:argv]
352 # avoid leaking FDs we don't know about, but let before_exec
353 # unset FD_CLOEXEC, if anything else in the app eventually
354 # relies on FD inheritence.
355 (3..1024).each do |io|
356 next if listener_fds.include?(io)
357 io = IO.for_fd(io) rescue nil
360 io.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
362 logger.info "executing #{cmd.inspect} (in #{Dir.pwd})"
363 @before_exec.call(self)
366 proc_name 'master (old)'
369 # forcibly terminate all workers that haven't checked in in @timeout
370 # seconds. The timeout is implemented using an unlinked tempfile
371 # shared between the parent process and each worker. The worker
372 # runs File#chmod to modify the ctime of the tempfile. If the ctime
373 # is stale for >@timeout seconds, then we'll kill the corresponding
375 def murder_lazy_workers
377 WORKERS.each_pair do |pid, worker|
378 (now - worker.tempfile.ctime) <= @timeout and next
379 logger.error "worker=#{worker.nr} PID:#{pid} is too old, killing"
380 kill_worker(:KILL, pid) # take no prisoners for @timeout violations
381 worker.tempfile.close rescue nil
385 def spawn_missing_workers
386 return if WORKERS.size == @worker_processes
387 (0...@worker_processes).each do |worker_nr|
388 WORKERS.values.include?(worker_nr) and next
390 Dir.chdir(START_CTX[:cwd])
391 rescue Errno::ENOENT => err
392 logger.fatal "#{err.inspect} (#{START_CTX[:cwd]})"
393 SIG_QUEUE << :QUIT # forcibly emulate SIGQUIT
396 tempfile = Tempfile.new('') # as short as possible to save dir space
397 tempfile.unlink # don't allow other processes to find or see it
398 worker = Worker.new(worker_nr, tempfile)
399 @before_fork.call(self, worker)
400 pid = fork { worker_loop(worker) }
401 WORKERS[pid] = worker
405 # once a client is accepted, it is processed in its entirety here
406 # in 3 easy steps: read request, call app, write app response
407 def process_client(client)
408 # one syscall less than "client.nonblock = false":
409 client.fcntl(Fcntl::F_SETFL, File::RDWR)
410 HttpResponse.write(client, @app.call(@request.read(client)))
411 # if we get any error, try to write something back to the client
412 # assuming we haven't closed the socket, but don't get hung up
413 # if the socket is already closed or broken. We'll always ensure
414 # the socket is closed at the end of this function
415 rescue EOFError,Errno::ECONNRESET,Errno::EPIPE,Errno::EINVAL,Errno::EBADF
416 client.write_nonblock(Const::ERROR_500_RESPONSE) rescue nil
417 rescue HttpParserError # try to tell the client they're bad
418 client.write_nonblock(Const::ERROR_400_RESPONSE) rescue nil
420 client.write_nonblock(Const::ERROR_500_RESPONSE) rescue nil
421 logger.error "Read error: #{e.inspect}"
422 logger.error e.backtrace.join("\n")
425 client.closed? or client.close
427 logger.error "Client error: #{e.inspect}"
428 logger.error e.backtrace.join("\n")
433 # gets rid of stuff the worker has no business keeping track of
434 # to free some resources and drops all sig handlers.
435 # traps for USR1, USR2, and HUP may be set in the @after_fork Proc
437 def init_worker_process(worker)
438 QUEUE_SIGS.each { |sig| trap(sig, 'DEFAULT') }
439 trap(:CHLD, 'DEFAULT')
441 proc_name "worker[#{worker.nr}]"
443 SELF_PIPE.each { |x| x.close rescue nil }
445 WORKERS.values.each { |other| other.tempfile.close rescue nil }
447 LISTENERS.each { |sock| sock.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) }
448 worker.tempfile.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
449 @after_fork.call(self, worker) # can drop perms
450 @request = HttpRequest.new(logger)
451 build_app! unless @preload_app
454 # runs inside each forked worker, this sits around and waits
455 # for connections and doesn't die until the parent dies (or is
456 # given a INT, QUIT, or TERM signal)
457 def worker_loop(worker)
458 master_pid = Process.ppid # slightly racy, but less memory usage
459 init_worker_process(worker)
460 nr = 0 # this becomes negative if we need to reopen logs
461 alive = worker.tempfile # tempfile is our lifeline to the master process
465 rd.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
466 wr.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
468 # closing anything we IO.select on will raise EBADF
469 trap(:USR1) { nr = -65536; rd.close rescue nil }
470 trap(:QUIT) { alive = nil; LISTENERS.each { |s| s.close rescue nil } }
471 [:TERM, :INT].each { |sig| trap(sig) { exit(0) } } # instant shutdown
472 @logger.info "worker=#{worker.nr} ready"
474 while alive && master_pid == Process.ppid
476 @logger.info "worker=#{worker.nr} reopening logs..."
477 Unicorn::Util.reopen_logs
478 @logger.info "worker=#{worker.nr} done reopening logs"
481 rd.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
482 wr.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
484 # we're a goner in @timeout seconds anyways if alive.chmod
485 # breaks, so don't trap the exception. Using fchmod() since
486 # futimes() is not available in base Ruby and I very strongly
487 # prefer temporary files to be unlinked for security,
488 # performance and reliability reasons, so utime is out. No-op
489 # changes with chmod doesn't update ctime on all filesystems; so
490 # we change our counter each and every time (after process_client
491 # and before IO.select).
502 process_client(client)
503 rescue Errno::ECONNABORTED
504 # client closed the socket even before accept
505 client.close rescue nil
507 alive.chmod(nr += 1) if client
513 # make the following bet: if we accepted clients this round,
514 # we're probably reasonably busy, so avoid calling select()
515 # and do a speculative accept_nonblock on every listener
516 # before we sleep again in select().
517 if nr != 0 # (nr < 0) => reopen logs
522 # timeout used so we can detect parent death:
523 ret = IO.select(LISTENERS, nil, [rd], @timeout/2.0) or next
527 rescue Errno::EBADF => e
528 nr < 0 or exit(alive ? 1 : 0)
531 rescue SignalException, SystemExit => e
535 logger.error "Unhandled listen loop exception #{e.inspect}."
536 logger.error e.backtrace.join("\n")
542 # delivers a signal to a worker and fails gracefully if the worker
543 # is no longer running.
544 def kill_worker(signal, pid)
546 Process.kill(signal, pid)
548 worker = WORKERS.delete(pid) and worker.tempfile.close rescue nil
552 # delivers a signal to each worker
553 def kill_each_worker(signal)
554 WORKERS.keys.each { |pid| kill_worker(signal, pid) }
557 # unlinks a PID file at given +path+ if it contains the current PID
558 # useful as an at_exit handler.
559 def unlink_pid_safe(path)
560 (File.read(path).to_i == $$ and File.unlink(path)) rescue nil
563 # returns a PID if a given path contains a non-stale PID file,
566 if File.exist?(path) && (pid = File.read(path).to_i) > 1
578 logger.info "reloading config_file=#{@config.config_file}"
579 @config[:listeners].replace(@init_listeners)
581 @config.commit!(self)
582 kill_each_worker(:QUIT)
583 logger.info "done reloading config_file=#{@config.config_file}"
585 logger.error "error reloading config_file=#{@config.config_file}: " \
586 "#{e.class} #{e.message}"
590 # returns an array of string names for the given listener array
591 def listener_names(listeners = LISTENERS)
592 listeners.map { |io| sock_name(io) }
596 @app = @app.call if @app.respond_to?(:arity) && @app.arity == 0
600 $0 = ([ File.basename(START_CTX[:zero]), tag ] +
601 START_CTX[:argv]).join(' ')