fix per-worker listen directive in after_fork hook
[unicorn.git] / lib / unicorn / http_server.rb
blob78d80b404f984f404afa59253d08d4bcabe716be
1 # -*- encoding: binary -*-
3 # This is the process manager of Unicorn. This manages worker
4 # processes which in turn handle the I/O and application process.
5 # Listener sockets are started in the master process and shared with
6 # forked worker children.
8 # Users do not need to know the internals of this class, but reading the
9 # {source}[http://bogomips.org/unicorn.git/tree/lib/unicorn/http_server.rb]
10 # is education for programmers wishing to learn how \Unicorn works.
11 # See Unicorn::Configurator for information on how to configure \Unicorn.
12 class Unicorn::HttpServer
13   # :stopdoc:
14   attr_accessor :app, :request, :timeout, :worker_processes,
15                 :before_fork, :after_fork, :before_exec,
16                 :listener_opts, :preload_app,
17                 :reexec_pid, :orig_app, :init_listeners,
18                 :master_pid, :config, :ready_pipe, :user
19   attr_reader :pid, :logger
20   include Unicorn::SocketHelper
21   include Unicorn::HttpResponse
23   # backwards compatibility with 1.x
24   Worker = Unicorn::Worker
26   # all bound listener sockets
27   LISTENERS = []
29   # This hash maps PIDs to Workers
30   WORKERS = {}
32   # We use SELF_PIPE differently in the master and worker processes:
33   #
34   # * The master process never closes or reinitializes this once
35   # initialized.  Signal handlers in the master process will write to
36   # it to wake up the master from IO.select in exactly the same manner
37   # djb describes in http://cr.yp.to/docs/selfpipe.html
38   #
39   # * The workers immediately close the pipe they inherit from the
40   # master and replace it with a new pipe after forking.  This new
41   # pipe is also used to wakeup from IO.select from inside (worker)
42   # signal handlers.  However, workers *close* the pipe descriptors in
43   # the signal handlers to raise EBADF in IO.select instead of writing
44   # like we do in the master.  We cannot easily use the reader set for
45   # IO.select because LISTENERS is already that set, and it's extra
46   # work (and cycles) to distinguish the pipe FD from the reader set
47   # once IO.select returns.  So we're lazy and just close the pipe when
48   # a (rare) signal arrives in the worker and reinitialize the pipe later.
49   SELF_PIPE = []
51   # signal queue used for self-piping
52   SIG_QUEUE = []
54   # list of signals we care about and trap in master.
55   QUEUE_SIGS = [ :WINCH, :QUIT, :INT, :TERM, :USR1, :USR2, :HUP, :TTIN, :TTOU ]
57   # :startdoc:
58   # We populate this at startup so we can figure out how to reexecute
59   # and upgrade the currently running instance of Unicorn
60   # This Hash is considered a stable interface and changing its contents
61   # will allow you to switch between different installations of Unicorn
62   # or even different installations of the same applications without
63   # downtime.  Keys of this constant Hash are described as follows:
64   #
65   # * 0 - the path to the unicorn/unicorn_rails executable
66   # * :argv - a deep copy of the ARGV array the executable originally saw
67   # * :cwd - the working directory of the application, this is where
68   # you originally started Unicorn.
69   #
70   # To change your unicorn executable to a different path without downtime,
71   # you can set the following in your Unicorn config file, HUP and then
72   # continue with the traditional USR2 + QUIT upgrade steps:
73   #
74   #   Unicorn::HttpServer::START_CTX[0] = "/home/bofh/1.9.2/bin/unicorn"
75   START_CTX = {
76     :argv => ARGV.map { |arg| arg.dup },
77     0 => $0.dup,
78   }
79   # We favor ENV['PWD'] since it is (usually) symlink aware for Capistrano
80   # and like systems
81   START_CTX[:cwd] = begin
82     a = File.stat(pwd = ENV['PWD'])
83     b = File.stat(Dir.pwd)
84     a.ino == b.ino && a.dev == b.dev ? pwd : Dir.pwd
85   rescue
86     Dir.pwd
87   end
88   # :stopdoc:
90   # Creates a working server on host:port (strange things happen if
91   # port isn't a Number).  Use HttpServer::run to start the server and
92   # HttpServer.run.join to join the thread that's processing
93   # incoming requests on the socket.
94   def initialize(app, options = {})
95     @app = app
96     @request = Unicorn::HttpRequest.new
97     self.reexec_pid = 0
98     options = options.dup
99     @ready_pipe = options.delete(:ready_pipe)
100     @init_listeners = options[:listeners] ? options[:listeners].dup : []
101     options[:use_defaults] = true
102     self.config = Unicorn::Configurator.new(options)
103     self.listener_opts = {}
105     # we try inheriting listeners first, so we bind them later.
106     # we don't write the pid file until we've bound listeners in case
107     # unicorn was started twice by mistake.  Even though our #pid= method
108     # checks for stale/existing pid files, race conditions are still
109     # possible (and difficult/non-portable to avoid) and can be likely
110     # to clobber the pid if the second start was in quick succession
111     # after the first, so we rely on the listener binding to fail in
112     # that case.  Some tests (in and outside of this source tree) and
113     # monitoring tools may also rely on pid files existing before we
114     # attempt to connect to the listener(s)
115     config.commit!(self, :skip => [:listeners, :pid])
116     self.orig_app = app
117   end
119   # Runs the thing.  Returns self so you can run join on it
120   def start
121     inherit_listeners!
122     # this pipe is used to wake us up from select(2) in #join when signals
123     # are trapped.  See trap_deferred.
124     init_self_pipe!
126     # setup signal handlers before writing pid file in case people get
127     # trigger happy and send signals as soon as the pid file exists.
128     # Note that signals don't actually get handled until the #join method
129     QUEUE_SIGS.each { |sig| trap(sig) { SIG_QUEUE << sig; awaken_master } }
130     trap(:CHLD) { awaken_master }
131     self.pid = config[:pid]
133     self.master_pid = $$
134     build_app! if preload_app
135     spawn_missing_workers
136     self
137   end
139   # replaces current listener set with +listeners+.  This will
140   # close the socket if it will not exist in the new listener set
141   def listeners=(listeners)
142     cur_names, dead_names = [], []
143     listener_names.each do |name|
144       if ?/ == name[0]
145         # mark unlinked sockets as dead so we can rebind them
146         (File.socket?(name) ? cur_names : dead_names) << name
147       else
148         cur_names << name
149       end
150     end
151     set_names = listener_names(listeners)
152     dead_names.concat(cur_names - set_names).uniq!
154     LISTENERS.delete_if do |io|
155       if dead_names.include?(sock_name(io))
156         IO_PURGATORY.delete_if do |pio|
157           pio.fileno == io.fileno && (pio.close rescue nil).nil? # true
158         end
159         (io.close rescue nil).nil? # true
160       else
161         set_server_sockopt(io, listener_opts[sock_name(io)])
162         false
163       end
164     end
166     (set_names - cur_names).each { |addr| listen(addr) }
167   end
169   def stdout_path=(path); redirect_io($stdout, path); end
170   def stderr_path=(path); redirect_io($stderr, path); end
172   def logger=(obj)
173     Unicorn::HttpRequest::DEFAULTS["rack.logger"] = @logger = obj
174   end
176   # sets the path for the PID file of the master process
177   def pid=(path)
178     if path
179       if x = valid_pid?(path)
180         return path if pid && path == pid && x == $$
181         if x == reexec_pid && pid =~ /\.oldbin\z/
182           logger.warn("will not set pid=#{path} while reexec-ed "\
183                       "child is running PID:#{x}")
184           return
185         end
186         raise ArgumentError, "Already running on PID:#{x} " \
187                              "(or pid=#{path} is stale)"
188       end
189     end
190     unlink_pid_safe(pid) if pid
192     if path
193       fp = begin
194         tmp = "#{File.dirname(path)}/#{rand}.#$$"
195         File.open(tmp, File::RDWR|File::CREAT|File::EXCL, 0644)
196       rescue Errno::EEXIST
197         retry
198       end
199       fp.syswrite("#$$\n")
200       File.rename(fp.path, path)
201       fp.close
202     end
203     @pid = path
204   end
206   # add a given address to the +listeners+ set, idempotently
207   # Allows workers to add a private, per-process listener via the
208   # after_fork hook.  Very useful for debugging and testing.
209   # +:tries+ may be specified as an option for the number of times
210   # to retry, and +:delay+ may be specified as the time in seconds
211   # to delay between retries.
212   # A negative value for +:tries+ indicates the listen will be
213   # retried indefinitely, this is useful when workers belonging to
214   # different masters are spawned during a transparent upgrade.
215   def listen(address, opt = {}.merge(listener_opts[address] || {}))
216     address = config.expand_addr(address)
217     return if String === address && listener_names.include?(address)
219     delay = opt[:delay] || 0.5
220     tries = opt[:tries] || 5
221     begin
222       io = bind_listen(address, opt)
223       unless Kgio::TCPServer === io || Kgio::UNIXServer === io
224         IO_PURGATORY << io
225         io = server_cast(io)
226       end
227       logger.info "listening on addr=#{sock_name(io)} fd=#{io.fileno}"
228       LISTENERS << io
229       io
230     rescue Errno::EADDRINUSE => err
231       logger.error "adding listener failed addr=#{address} (in use)"
232       raise err if tries == 0
233       tries -= 1
234       logger.error "retrying in #{delay} seconds " \
235                    "(#{tries < 0 ? 'infinite' : tries} tries left)"
236       sleep(delay)
237       retry
238     rescue => err
239       logger.fatal "error adding listener addr=#{address}"
240       raise err
241     end
242   end
244   # monitors children and receives signals forever
245   # (or until a termination signal is sent).  This handles signals
246   # one-at-a-time time and we'll happily drop signals in case somebody
247   # is signalling us too often.
248   def join
249     respawn = true
250     last_check = Time.now
252     proc_name 'master'
253     logger.info "master process ready" # test_exec.rb relies on this message
254     if @ready_pipe
255       @ready_pipe.syswrite($$.to_s)
256       @ready_pipe = @ready_pipe.close rescue nil
257     end
258     begin
259       reap_all_workers
260       case SIG_QUEUE.shift
261       when nil
262         # avoid murdering workers after our master process (or the
263         # machine) comes out of suspend/hibernation
264         if (last_check + @timeout) >= (last_check = Time.now)
265           sleep_time = murder_lazy_workers
266         else
267           # wait for workers to wakeup on suspend
268           sleep_time = @timeout/2.0 + 1
269         end
270         maintain_worker_count if respawn
271         master_sleep(sleep_time)
272       when :QUIT # graceful shutdown
273         break
274       when :TERM, :INT # immediate shutdown
275         stop(false)
276         break
277       when :USR1 # rotate logs
278         logger.info "master reopening logs..."
279         Unicorn::Util.reopen_logs
280         logger.info "master done reopening logs"
281         kill_each_worker(:USR1)
282       when :USR2 # exec binary, stay alive in case something went wrong
283         reexec
284       when :WINCH
285         if Process.ppid == 1 || Process.getpgrp != $$
286           respawn = false
287           logger.info "gracefully stopping all workers"
288           kill_each_worker(:QUIT)
289           self.worker_processes = 0
290         else
291           logger.info "SIGWINCH ignored because we're not daemonized"
292         end
293       when :TTIN
294         respawn = true
295         self.worker_processes += 1
296       when :TTOU
297         self.worker_processes -= 1 if self.worker_processes > 0
298       when :HUP
299         respawn = true
300         if config.config_file
301           load_config!
302         else # exec binary and exit if there's no config file
303           logger.info "config_file not present, reexecuting binary"
304           reexec
305         end
306       end
307     rescue => e
308       Unicorn.log_error(@logger, "master loop error", e)
309     end while true
310     stop # gracefully shutdown all workers on our way out
311     logger.info "master complete"
312     unlink_pid_safe(pid) if pid
313   end
315   # Terminates all workers, but does not exit master process
316   def stop(graceful = true)
317     self.listeners = []
318     limit = Time.now + timeout
319     until WORKERS.empty? || Time.now > limit
320       kill_each_worker(graceful ? :QUIT : :TERM)
321       sleep(0.1)
322       reap_all_workers
323     end
324     kill_each_worker(:KILL)
325   end
327   def rewindable_input
328     Unicorn::HttpRequest.input_class.method_defined?(:rewind)
329   end
331   def rewindable_input=(bool)
332     Unicorn::HttpRequest.input_class = bool ?
333                                 Unicorn::TeeInput : Unicorn::StreamInput
334   end
336   def client_body_buffer_size
337     Unicorn::TeeInput.client_body_buffer_size
338   end
340   def client_body_buffer_size=(bytes)
341     Unicorn::TeeInput.client_body_buffer_size = bytes
342   end
344   def trust_x_forwarded
345     Unicorn::HttpParser.trust_x_forwarded?
346   end
348   def trust_x_forwarded=(bool)
349     Unicorn::HttpParser.trust_x_forwarded = bool
350   end
352   private
354   # wait for a signal hander to wake us up and then consume the pipe
355   def master_sleep(sec)
356     IO.select([ SELF_PIPE[0] ], nil, nil, sec) or return
357     SELF_PIPE[0].kgio_tryread(11)
358   end
360   def awaken_master
361     SELF_PIPE[1].kgio_trywrite('.') # wakeup master process from select
362   end
364   # reaps all unreaped workers
365   def reap_all_workers
366     begin
367       wpid, status = Process.waitpid2(-1, Process::WNOHANG)
368       wpid or return
369       if reexec_pid == wpid
370         logger.error "reaped #{status.inspect} exec()-ed"
371         self.reexec_pid = 0
372         self.pid = pid.chomp('.oldbin') if pid
373         proc_name 'master'
374       else
375         worker = WORKERS.delete(wpid) and worker.close rescue nil
376         m = "reaped #{status.inspect} worker=#{worker.nr rescue 'unknown'}"
377         status.success? ? logger.info(m) : logger.error(m)
378       end
379     rescue Errno::ECHILD
380       break
381     end while true
382   end
384   # reexecutes the START_CTX with a new binary
385   def reexec
386     if reexec_pid > 0
387       begin
388         Process.kill(0, reexec_pid)
389         logger.error "reexec-ed child already running PID:#{reexec_pid}"
390         return
391       rescue Errno::ESRCH
392         self.reexec_pid = 0
393       end
394     end
396     if pid
397       old_pid = "#{pid}.oldbin"
398       begin
399         self.pid = old_pid  # clear the path for a new pid file
400       rescue ArgumentError
401         logger.error "old PID:#{valid_pid?(old_pid)} running with " \
402                      "existing pid=#{old_pid}, refusing rexec"
403         return
404       rescue => e
405         logger.error "error writing pid=#{old_pid} #{e.class} #{e.message}"
406         return
407       end
408     end
410     self.reexec_pid = fork do
411       listener_fds = LISTENERS.map { |sock| sock.fileno }
412       ENV['UNICORN_FD'] = listener_fds.join(',')
413       Dir.chdir(START_CTX[:cwd])
414       cmd = [ START_CTX[0] ].concat(START_CTX[:argv])
416       # avoid leaking FDs we don't know about, but let before_exec
417       # unset FD_CLOEXEC, if anything else in the app eventually
418       # relies on FD inheritence.
419       (3..1024).each do |io|
420         next if listener_fds.include?(io)
421         io = IO.for_fd(io) rescue next
422         IO_PURGATORY << io
423         io.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
424       end
425       logger.info "executing #{cmd.inspect} (in #{Dir.pwd})"
426       before_exec.call(self)
427       exec(*cmd)
428     end
429     proc_name 'master (old)'
430   end
432   # forcibly terminate all workers that haven't checked in in timeout seconds.  The timeout is implemented using an unlinked File
433   def murder_lazy_workers
434     t = @timeout
435     next_sleep = 1
436     now = Time.now.to_i
437     WORKERS.dup.each_pair do |wpid, worker|
438       tick = worker.tick
439       0 == tick and next # skip workers that are sleeping
440       diff = now - tick
441       tmp = t - diff
442       if tmp >= 0
443         next_sleep < tmp and next_sleep = tmp
444         next
445       end
446       logger.error "worker=#{worker.nr} PID:#{wpid} timeout " \
447                    "(#{diff}s > #{t}s), killing"
448       kill_worker(:KILL, wpid) # take no prisoners for timeout violations
449     end
450     next_sleep
451   end
453   def after_fork_internal
454     @ready_pipe.close if @ready_pipe
455     Unicorn::Configurator::RACKUP.clear
456     @ready_pipe = @init_listeners = @before_exec = @before_fork = nil
458     srand # http://redmine.ruby-lang.org/issues/4338
460     # The OpenSSL PRNG is seeded with only the pid, and apps with frequently
461     # dying workers can recycle pids
462     OpenSSL::Random.seed(rand.to_s) if defined?(OpenSSL::Random)
463   end
465   def spawn_missing_workers
466     worker_nr = -1
467     until (worker_nr += 1) == @worker_processes
468       WORKERS.value?(worker_nr) and next
469       worker = Worker.new(worker_nr)
470       before_fork.call(self, worker)
471       if pid = fork
472         WORKERS[pid] = worker
473       else
474         after_fork_internal
475         worker_loop(worker)
476         exit
477       end
478     end
479     rescue => e
480       @logger.error(e) rescue nil
481       exit!
482   end
484   def maintain_worker_count
485     (off = WORKERS.size - worker_processes) == 0 and return
486     off < 0 and return spawn_missing_workers
487     WORKERS.dup.each_pair { |wpid,w|
488       w.nr >= worker_processes and kill_worker(:QUIT, wpid) rescue nil
489     }
490   end
492   # if we get any error, try to write something back to the client
493   # assuming we haven't closed the socket, but don't get hung up
494   # if the socket is already closed or broken.  We'll always ensure
495   # the socket is closed at the end of this function
496   def handle_error(client, e)
497     msg = case e
498     when EOFError,Errno::ECONNRESET,Errno::EPIPE,Errno::EINVAL,Errno::EBADF
499       Unicorn::Const::ERROR_500_RESPONSE
500     when Unicorn::RequestURITooLongError
501       Unicorn::Const::ERROR_414_RESPONSE
502     when Unicorn::RequestEntityTooLargeError
503       Unicorn::Const::ERROR_413_RESPONSE
504     when Unicorn::HttpParserError # try to tell the client they're bad
505       Unicorn::Const::ERROR_400_RESPONSE
506     else
507       Unicorn.log_error(@logger, "app error", e)
508       Unicorn::Const::ERROR_500_RESPONSE
509     end
510     client.kgio_trywrite(msg)
511     client.close
512     rescue
513   end
515   # once a client is accepted, it is processed in its entirety here
516   # in 3 easy steps: read request, call app, write app response
517   def process_client(client)
518     status, headers, body = @app.call(env = @request.read(client))
520     if 100 == status.to_i
521       client.write(Unicorn::Const::EXPECT_100_RESPONSE)
522       env.delete(Unicorn::Const::HTTP_EXPECT)
523       status, headers, body = @app.call(env)
524     end
525     @request.headers? or headers = nil
526     http_response_write(client, status, headers, body)
527     client.close # flush and uncork socket immediately, no keepalive
528   rescue => e
529     handle_error(client, e)
530   end
532   # gets rid of stuff the worker has no business keeping track of
533   # to free some resources and drops all sig handlers.
534   # traps for USR1, USR2, and HUP may be set in the after_fork Proc
535   # by the user.
536   def init_worker_process(worker)
537     QUEUE_SIGS.each { |sig| trap(sig, nil) }
538     trap(:CHLD, 'DEFAULT')
539     SIG_QUEUE.clear
540     proc_name "worker[#{worker.nr}]"
541     START_CTX.clear
542     init_self_pipe!
543     WORKERS.clear
544     LISTENERS.each { |sock| sock.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) }
545     after_fork.call(self, worker) # can drop perms
546     worker.user(*user) if user.kind_of?(Array) && ! worker.switched
547     self.timeout /= 2.0 # halve it for select()
548     @config = nil
549     build_app! unless preload_app
550   end
552   def reopen_worker_logs(worker_nr)
553     logger.info "worker=#{worker_nr} reopening logs..."
554     Unicorn::Util.reopen_logs
555     logger.info "worker=#{worker_nr} done reopening logs"
556     init_self_pipe!
557     rescue => e
558       logger.error(e) rescue nil
559       exit!(77) # EX_NOPERM in sysexits.h
560   end
562   # runs inside each forked worker, this sits around and waits
563   # for connections and doesn't die until the parent dies (or is
564   # given a INT, QUIT, or TERM signal)
565   def worker_loop(worker)
566     ppid = master_pid
567     init_worker_process(worker)
568     nr = 0 # this becomes negative if we need to reopen logs
569     l = LISTENERS.dup
570     ready = l.dup
572     # closing anything we IO.select on will raise EBADF
573     trap(:USR1) { nr = -65536; SELF_PIPE[0].close rescue nil }
574     trap(:QUIT) { worker = nil; LISTENERS.each { |s| s.close rescue nil }.clear }
575     [:TERM, :INT].each { |sig| trap(sig) { exit!(0) } } # instant shutdown
576     logger.info "worker=#{worker.nr} ready"
578     begin
579       nr < 0 and reopen_worker_logs(worker.nr)
580       nr = 0
582       worker.tick = Time.now.to_i
583       while sock = ready.shift
584         if client = sock.kgio_tryaccept
585           process_client(client)
586           nr += 1
587           worker.tick = Time.now.to_i
588         end
589         break if nr < 0
590       end
592       # make the following bet: if we accepted clients this round,
593       # we're probably reasonably busy, so avoid calling select()
594       # and do a speculative non-blocking accept() on ready listeners
595       # before we sleep again in select().
596       unless nr == 0 # (nr < 0) => reopen logs (unlikely)
597         ready = l.dup
598         redo
599       end
601       ppid == Process.ppid or return
603       # timeout used so we can detect parent death:
604       worker.tick = Time.now.to_i
605       ret = IO.select(l, nil, SELF_PIPE, @timeout) and ready = ret[0]
606     rescue Errno::EBADF
607       nr < 0 or return
608     rescue => e
609       Unicorn.log_error(@logger, "listen loop error", e) if worker
610     end while worker
611   end
613   # delivers a signal to a worker and fails gracefully if the worker
614   # is no longer running.
615   def kill_worker(signal, wpid)
616     Process.kill(signal, wpid)
617     rescue Errno::ESRCH
618       worker = WORKERS.delete(wpid) and worker.close rescue nil
619   end
621   # delivers a signal to each worker
622   def kill_each_worker(signal)
623     WORKERS.keys.each { |wpid| kill_worker(signal, wpid) }
624   end
626   # unlinks a PID file at given +path+ if it contains the current PID
627   # still potentially racy without locking the directory (which is
628   # non-portable and may interact badly with other programs), but the
629   # window for hitting the race condition is small
630   def unlink_pid_safe(path)
631     (File.read(path).to_i == $$ and File.unlink(path)) rescue nil
632   end
634   # returns a PID if a given path contains a non-stale PID file,
635   # nil otherwise.
636   def valid_pid?(path)
637     wpid = File.read(path).to_i
638     wpid <= 0 and return
639     Process.kill(0, wpid)
640     wpid
641     rescue Errno::ESRCH, Errno::ENOENT
642       # don't unlink stale pid files, racy without non-portable locking...
643   end
645   def load_config!
646     loaded_app = app
647     logger.info "reloading config_file=#{config.config_file}"
648     config[:listeners].replace(@init_listeners)
649     config.reload
650     config.commit!(self)
651     kill_each_worker(:QUIT)
652     Unicorn::Util.reopen_logs
653     self.app = orig_app
654     build_app! if preload_app
655     logger.info "done reloading config_file=#{config.config_file}"
656   rescue StandardError, LoadError, SyntaxError => e
657     Unicorn.log_error(@logger,
658         "error reloading config_file=#{config.config_file}", e)
659     self.app = loaded_app
660   end
662   # returns an array of string names for the given listener array
663   def listener_names(listeners = LISTENERS)
664     listeners.map { |io| sock_name(io) }
665   end
667   def build_app!
668     if app.respond_to?(:arity) && app.arity == 0
669       if defined?(Gem) && Gem.respond_to?(:refresh)
670         logger.info "Refreshing Gem list"
671         Gem.refresh
672       end
673       self.app = app.call
674     end
675   end
677   def proc_name(tag)
678     $0 = ([ File.basename(START_CTX[0]), tag
679           ]).concat(START_CTX[:argv]).join(' ')
680   end
682   def redirect_io(io, path)
683     File.open(path, 'ab') { |fp| io.reopen(fp) } if path
684     io.sync = true
685   end
687   def init_self_pipe!
688     SELF_PIPE.each { |io| io.close rescue nil }
689     SELF_PIPE.replace(Kgio::Pipe.new)
690     SELF_PIPE.each { |io| io.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) }
691   end
693   def inherit_listeners!
694     # inherit sockets from parents, they need to be plain Socket objects
695     # before they become Kgio::UNIXServer or Kgio::TCPServer
696     inherited = ENV['UNICORN_FD'].to_s.split(/,/).map do |fd|
697       io = Socket.for_fd(fd.to_i)
698       set_server_sockopt(io, listener_opts[sock_name(io)])
699       IO_PURGATORY << io
700       logger.info "inherited addr=#{sock_name(io)} fd=#{fd}"
701       server_cast(io)
702     end
704     config_listeners = config[:listeners].dup
705     LISTENERS.replace(inherited)
707     # we start out with generic Socket objects that get cast to either
708     # Kgio::TCPServer or Kgio::UNIXServer objects; but since the Socket
709     # objects share the same OS-level file descriptor as the higher-level
710     # *Server objects; we need to prevent Socket objects from being
711     # garbage-collected
712     config_listeners -= listener_names
713     if config_listeners.empty? && LISTENERS.empty?
714       config_listeners << Unicorn::Const::DEFAULT_LISTEN
715       @init_listeners << Unicorn::Const::DEFAULT_LISTEN
716       START_CTX[:argv] << "-l#{Unicorn::Const::DEFAULT_LISTEN}"
717     end
718     config_listeners.each { |addr| listen(addr) }
719     raise ArgumentError, "no listeners" if LISTENERS.empty?
720   end