bind10.py.in 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891
  1. #!@PYTHON@
  2. # Copyright (C) 2010 Internet Systems Consortium.
  3. #
  4. # Permission to use, copy, modify, and distribute this software for any
  5. # purpose with or without fee is hereby granted, provided that the above
  6. # copyright notice and this permission notice appear in all copies.
  7. #
  8. # THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SYSTEMS CONSORTIUM
  9. # DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
  10. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
  11. # INTERNET SYSTEMS CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
  12. # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
  13. # FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
  14. # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
  15. # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. """\
  17. This file implements the Boss of Bind (BoB, or bob) program.
  18. Its purpose is to start up the BIND 10 system, and then manage the
  19. processes, by starting and stopping processes, plus restarting
  20. processes that exit.
  21. To start the system, it first runs the c-channel program (msgq), then
  22. connects to that. It then runs the configuration manager, and reads
  23. its own configuration. Then it proceeds to starting other modules.
  24. The Python subprocess module is used for starting processes, but
  25. because this is not efficient for managing groups of processes,
  26. SIGCHLD signals are caught and processed using the signal module.
  27. Most of the logic is contained in the BoB class. However, since Python
  28. requires that signal processing happen in the main thread, we do
  29. signal handling outside of that class, in the code running for
  30. __main__.
  31. """
  32. import sys; sys.path.append ('@@PYTHONPATH@@')
  33. import os
  34. # If B10_FROM_SOURCE is set in the environment, we use data files
  35. # from a directory relative to that, otherwise we use the ones
  36. # installed on the system
  37. if "B10_FROM_SOURCE" in os.environ:
  38. SPECFILE_LOCATION = os.environ["B10_FROM_SOURCE"] + "/src/bin/bind10/bob.spec"
  39. else:
  40. PREFIX = "@prefix@"
  41. DATAROOTDIR = "@datarootdir@"
  42. SPECFILE_LOCATION = "@datadir@/@PACKAGE@/bob.spec".replace("${datarootdir}", DATAROOTDIR).replace("${prefix}", PREFIX)
  43. import subprocess
  44. import signal
  45. import re
  46. import errno
  47. import time
  48. import select
  49. import random
  50. import socket
  51. from optparse import OptionParser, OptionValueError
  52. import io
  53. import pwd
  54. import posix
  55. import isc.cc
  56. import isc.util.process
  57. import isc.net.parse
  58. # Assign this process some longer name
  59. isc.util.process.rename(sys.argv[0])
  60. # This is the version that gets displayed to the user.
  61. # The VERSION string consists of the module name, the module version
  62. # number, and the overall BIND 10 version number (set in configure.ac).
  63. VERSION = "bind10 20100916 (BIND 10 @PACKAGE_VERSION@)"
  64. # This is for bind10.boottime of stats module
  65. _BASETIME = time.gmtime()
  66. class RestartSchedule:
  67. """
  68. Keeps state when restarting something (in this case, a process).
  69. When a process dies unexpectedly, we need to restart it. However, if
  70. it fails to restart for some reason, then we should not simply keep
  71. restarting it at high speed.
  72. A more sophisticated algorithm can be developed, but for now we choose
  73. a simple set of rules:
  74. * If a process was been running for >=10 seconds, we restart it
  75. right away.
  76. * If a process was running for <10 seconds, we wait until 10 seconds
  77. after it was started.
  78. To avoid programs getting into lockstep, we use a normal distribution
  79. to avoid being restarted at exactly 10 seconds."""
  80. def __init__(self, restart_frequency=10.0):
  81. self.restart_frequency = restart_frequency
  82. self.run_start_time = None
  83. self.run_stop_time = None
  84. self.restart_time = None
  85. def set_run_start_time(self, when=None):
  86. if when is None:
  87. when = time.time()
  88. self.run_start_time = when
  89. sigma = self.restart_frequency * 0.05
  90. self.restart_time = when + random.normalvariate(self.restart_frequency,
  91. sigma)
  92. def set_run_stop_time(self, when=None):
  93. """We don't actually do anything with stop time now, but it
  94. might be useful for future algorithms."""
  95. if when is None:
  96. when = time.time()
  97. self.run_stop_time = when
  98. def get_restart_time(self, when=None):
  99. if when is None:
  100. when = time.time()
  101. return max(when, self.restart_time)
  102. class ProcessInfoError(Exception): pass
  103. class ProcessInfo:
  104. """Information about a process"""
  105. dev_null = open(os.devnull, "w")
  106. def __init__(self, name, args, env={}, dev_null_stdout=False,
  107. dev_null_stderr=False, uid=None, username=None):
  108. self.name = name
  109. self.args = args
  110. self.env = env
  111. self.dev_null_stdout = dev_null_stdout
  112. self.dev_null_stderr = dev_null_stderr
  113. self.restart_schedule = RestartSchedule()
  114. self.uid = uid
  115. self.username = username
  116. self._spawn()
  117. def _preexec_work(self):
  118. """Function used before running a program that needs to run as a
  119. different user."""
  120. # First, put us into a separate process group so we don't get
  121. # SIGINT signals on Ctrl-C (the boss will shut everthing down by
  122. # other means).
  123. os.setpgrp()
  124. # Second, set the user ID if one has been specified
  125. if self.uid is not None:
  126. try:
  127. posix.setuid(self.uid)
  128. except OSError as e:
  129. if e.errno == errno.EPERM:
  130. # if we failed to change user due to permission report that
  131. raise ProcessInfoError("Unable to change to user %s (uid %d)" % (self.username, self.uid))
  132. else:
  133. # otherwise simply re-raise whatever error we found
  134. raise
  135. def _spawn(self):
  136. if self.dev_null_stdout:
  137. spawn_stdout = self.dev_null
  138. else:
  139. spawn_stdout = None
  140. if self.dev_null_stderr:
  141. spawn_stderr = self.dev_null
  142. else:
  143. spawn_stderr = None
  144. # Environment variables for the child process will be a copy of those
  145. # of the boss process with any additional specific variables given
  146. # on construction (self.env).
  147. spawn_env = os.environ
  148. spawn_env.update(self.env)
  149. if 'B10_FROM_SOURCE' not in os.environ:
  150. spawn_env['PATH'] = "@@LIBEXECDIR@@:" + spawn_env['PATH']
  151. self.process = subprocess.Popen(self.args,
  152. stdin=subprocess.PIPE,
  153. stdout=spawn_stdout,
  154. stderr=spawn_stderr,
  155. close_fds=True,
  156. env=spawn_env,
  157. preexec_fn=self._preexec_work)
  158. self.pid = self.process.pid
  159. self.restart_schedule.set_run_start_time()
  160. def respawn(self):
  161. self._spawn()
  162. class CChannelConnectError(Exception): pass
  163. class BoB:
  164. """Boss of BIND class."""
  165. def __init__(self, msgq_socket_file=None, auth_port=5300, res_port=5301,
  166. address=None, res_address=None, nocache=False, verbose=False,
  167. setuid=None, username=None):
  168. """
  169. Initialize the Boss of BIND. This is a singleton (only one can run).
  170. The msgq_socket_file specifies the UNIX domain socket file that the
  171. msgq process listens on. If verbose is True, then the boss reports
  172. what it is doing.
  173. """
  174. self.address = None
  175. if address:
  176. self.address = address
  177. self.auth_port = auth_port
  178. self.cc_session = None
  179. self.ccs = None
  180. self.cfg_start_auth = True
  181. self.cfg_start_recurse = False
  182. self.curproc = None
  183. self.dead_processes = {}
  184. self.msgq_socket_file = msgq_socket_file
  185. self.nocache = nocache
  186. self.processes = {}
  187. self.res_address = None
  188. if res_address:
  189. self.res_address = res_address
  190. self.res_port = res_port
  191. self.runnable = False
  192. self.uid = setuid
  193. self.username = username
  194. self.verbose = verbose
  195. def config_handler(self, new_config):
  196. if self.verbose:
  197. sys.stdout.write("[bind10] Handling new configuration: " +
  198. str(new_config) + "\n")
  199. answer = isc.config.ccsession.create_answer(0)
  200. return answer
  201. # TODO
  202. def command_handler(self, command, args):
  203. if self.verbose:
  204. sys.stdout.write("[bind10] Boss got command: " + command + "\n")
  205. answer = isc.config.ccsession.create_answer(1, "command not implemented")
  206. if type(command) != str:
  207. answer = isc.config.ccsession.create_answer(1, "bad command")
  208. else:
  209. cmd = command
  210. if cmd == "shutdown":
  211. sys.stdout.write("[bind10] shutdown command received by Boss\n")
  212. self.runnable = False
  213. answer = isc.config.ccsession.create_answer(0)
  214. else:
  215. answer = isc.config.ccsession.create_answer(1,
  216. "Unknown command")
  217. return answer
  218. def kill_started_processes(self):
  219. """
  220. Called as part of the exception handling when a process fails to
  221. start, this runs through the list of started processes, killing
  222. each one. It then clears that list.
  223. """
  224. if self.verbose:
  225. sys.stdout.write("[bind10] killing started processes:\n")
  226. for pid in self.processes:
  227. if self.verbose:
  228. sys.stdout.write("[bind10] - %s\n" % self.processes[pid].name)
  229. self.processes[pid].process.kill()
  230. self.processes = {}
  231. def read_bind10_config(self):
  232. """
  233. Reads the parameters associated with the BoB module itself.
  234. At present these are the components to start although arguably this
  235. information should be in the configuration for the appropriate
  236. module itself. (However, this would cause difficulty in the case of
  237. xfrin/xfrout and zone manager as we don't need to start those if we
  238. are not running the authoritative server.)
  239. """
  240. if self.verbose:
  241. sys.stdout.write("[bind10] Reading Boss configuration:\n")
  242. config_data = self.ccs.get_full_config()
  243. self.cfg_start_auth = config_data.get("start_auth")
  244. self.cfg_start_recurse = config_data.get("start_recurse")
  245. if self.verbose:
  246. sys.stdout.write("[bind10] - start_auth: %s\n" %
  247. str(self.cfg_start_auth))
  248. sys.stdout.write("[bind10] - start_recurse: %s\n" %
  249. str(self.cfg_start_recurse))
  250. def log_starting(self, process, port = None, address = None):
  251. """
  252. A convenience function to output a "Starting xxx" message if the
  253. verbose option is set. Putting this into a separate method ensures
  254. that the output form is consistent across all processes.
  255. The process name (passed as the first argument) is put into
  256. self.curproc, and is used to indicate which process failed to
  257. start if there is an error (and is used in the "Started" message
  258. on success). The optional port and address information are
  259. appended to the message (if present).
  260. """
  261. self.curproc = process
  262. if self.verbose:
  263. sys.stdout.write("[bind10] Starting %s" % self.curproc)
  264. if port is not None:
  265. sys.stdout.write(" on port %d" % port)
  266. if address is not None:
  267. sys.stdout.write(" (address %s)" % str(address))
  268. sys.stdout.write("\n")
  269. def log_started(self, pid = None):
  270. """
  271. A convenience function to output a 'Started xxxx (PID yyyy)'
  272. message. As with starting_message(), this ensures a consistent
  273. format.
  274. """
  275. if self.verbose:
  276. sys.stdout.write("[bind10] Started %s" % self.curproc)
  277. if pid is not None:
  278. sys.stdout.write(" (PID %d)" % pid)
  279. sys.stdout.write("\n")
  280. # The next few methods start the individual processes of BIND-10. They
  281. # are called via start_all_process(). If any fail, an exception is raised
  282. # which is caught by the caller of start_all_processes(); this kills
  283. # processes started up to that point before terminating the program.
  284. def start_msgq(self, c_channel_env):
  285. """
  286. Start the message queue and connect to the command channel.
  287. """
  288. self.log_starting("b10-msgq")
  289. c_channel = ProcessInfo("b10-msgq", ["b10-msgq"], c_channel_env,
  290. True, not self.verbose, uid=self.uid,
  291. username=self.username)
  292. self.processes[c_channel.pid] = c_channel
  293. self.log_started(c_channel.pid)
  294. # Now connect to the c-channel
  295. cc_connect_start = time.time()
  296. while self.cc_session is None:
  297. # if we have been trying for "a while" give up
  298. if (time.time() - cc_connect_start) > 5:
  299. raise CChannelConnectError("Unable to connect to c-channel after 5 seconds")
  300. # try to connect, and if we can't wait a short while
  301. try:
  302. self.cc_session = isc.cc.Session(self.msgq_socket_file)
  303. except isc.cc.session.SessionError:
  304. time.sleep(0.1)
  305. def start_cfgmgr(self, c_channel_env):
  306. """
  307. Starts the configuration manager process
  308. """
  309. self.log_starting("b10-cfgmgr")
  310. bind_cfgd = ProcessInfo("b10-cfgmgr", ["b10-cfgmgr"],
  311. c_channel_env, uid=self.uid,
  312. username=self.username)
  313. self.processes[bind_cfgd.pid] = bind_cfgd
  314. self.log_started(bind_cfgd.pid)
  315. # sleep until b10-cfgmgr is fully up and running, this is a good place
  316. # to have a (short) timeout on synchronized groupsend/receive
  317. # TODO: replace the sleep by a listen for ConfigManager started
  318. # message
  319. time.sleep(1)
  320. def start_ccsession(self, c_channel_env):
  321. """
  322. Start the CC Session
  323. The argument c_channel_env is unused but is supplied to keep the
  324. argument list the same for all start_xxx methods.
  325. """
  326. self.log_starting("ccsession")
  327. self.ccs = isc.config.ModuleCCSession(SPECFILE_LOCATION,
  328. self.config_handler, self.command_handler)
  329. self.ccs.start()
  330. self.log_started()
  331. # A couple of utility methods for starting processes...
  332. def start_process(self, name, args, c_channel_env, port=None, address=None):
  333. """
  334. Given a set of command arguments, start the process and output
  335. appropriate log messages. If the start is successful, the process
  336. is added to the list of started processes.
  337. The port and address arguments are for log messages only.
  338. """
  339. self.log_starting(name, port, address)
  340. newproc = ProcessInfo(name, args, c_channel_env)
  341. self.processes[newproc.pid] = newproc
  342. self.log_started(newproc.pid)
  343. def start_simple(self, name, c_channel_env, port=None, address=None):
  344. """
  345. Most of the BIND-10 processes are started with the command:
  346. <process-name> [-v]
  347. ... where -v is appended if verbose is enabled. This method
  348. generates the arguments from the name and starts the process.
  349. The port and address arguments are for log messages only.
  350. """
  351. # Set up the command arguments.
  352. args = [name]
  353. if self.verbose:
  354. args += ['-v']
  355. # ... and start the process
  356. self.start_process(name, args, c_channel_env, port, address)
  357. # The next few methods start up the rest of the BIND-10 processes.
  358. # Although many of these methods are little more than a call to
  359. # start_simple, they are retained (a) for testing reasons and (b) as a place
  360. # where modifications can be made if the process start-up sequence changes
  361. # for a given process.
  362. def start_auth(self, c_channel_env):
  363. """
  364. Start the Authoritative server
  365. """
  366. # XXX: this must be read from the configuration manager in the future
  367. authargs = ['b10-auth', '-p', str(self.auth_port)]
  368. if self.address:
  369. authargs += ['-a', str(self.address)]
  370. if self.nocache:
  371. authargs += ['-n']
  372. if self.uid:
  373. authargs += ['-u', str(self.uid)]
  374. if self.verbose:
  375. authargs += ['-v']
  376. # ... and start
  377. self.start_process("b10-auth", authargs, c_channel_env,
  378. self.auth_port, self.address)
  379. def start_recurse(self, c_channel_env):
  380. """
  381. Start the Resolver. At present, all these arguments and switches
  382. are pure speculation. As with the auth daemon, they should be
  383. read from the configuration database.
  384. """
  385. self.curproc = "b10-recurse"
  386. # XXX: this must be read from the configuration manager in the future
  387. resargs = ['b10-recurse', '-p', str(self.res_port)]
  388. if self.res_address:
  389. resargs += ['-a', str(self.res_address)]
  390. if self.nocache:
  391. resargs += ['-n']
  392. if self.uid:
  393. resargs += ['-u', str(self.uid)]
  394. if self.verbose:
  395. resargs += ['-v']
  396. # ... and start
  397. self.start_process("b10-recurse", resargs, c_channel_env,
  398. self.res_port, self.res_address)
  399. def start_xfrout(self, c_channel_env):
  400. self.start_simple("b10-xfrout", c_channel_env)
  401. def start_xfrin(self, c_channel_env):
  402. self.start_simple("b10-xfrin", c_channel_env)
  403. def start_zonemgr(self, c_channel_env):
  404. self.start_simple("b10-zonemgr", c_channel_env)
  405. def start_stats(self, c_channel_env):
  406. self.start_simple("b10-stats", c_channel_env)
  407. def start_cmdctl(self, c_channel_env):
  408. # XXX: we hardcode port 8080
  409. self.start_simple("b10-cmdctl", c_channel_env, 8080)
  410. def start_all_processes(self, c_channel_env):
  411. """
  412. Starts up all the processes. Any exception generated during the
  413. starting of the processes is handled by the caller.
  414. """
  415. self.start_msgq(c_channel_env)
  416. self.start_cfgmgr(c_channel_env)
  417. self.start_ccsession(c_channel_env)
  418. # Extract the parameters associated with Bob. This can only be
  419. # done after the CC Session is started.
  420. self.read_bind10_config()
  421. # Continue starting the processes. The authoritative server (if
  422. # selected):
  423. if self.cfg_start_auth:
  424. self.start_auth(c_channel_env)
  425. # ... and resolver (if selected):
  426. if self.cfg_start_recurse:
  427. self.start_recurse(c_channel_env)
  428. # Everything after the main components can run as non-root
  429. if self.uid is not None:
  430. posix.setuid(self.uid)
  431. # xfrin/xfrout and the zone manager are only meaningful if the
  432. # authoritative server has been started.
  433. if self.cfg_start_auth:
  434. self.start_xfrout(c_channel_env)
  435. self.start_xfrin(c_channel_env)
  436. self.start_zonemgr(c_channel_env)
  437. # ... and finally start the remaining processes
  438. self.start_stats(c_channel_env)
  439. self.start_cmdctl(c_channel_env)
  440. def startup(self):
  441. """
  442. Start the BoB instance.
  443. Returns None if successful, otherwise an string describing the
  444. problem.
  445. """
  446. # Try to connect to the c-channel daemon, to see if it is already
  447. # running
  448. c_channel_env = {}
  449. if self.msgq_socket_file is not None:
  450. c_channel_env["BIND10_MSGQ_SOCKET_FILE"] = self.msgq_socket_file
  451. if self.verbose:
  452. sys.stdout.write("[bind10] Checking for already running b10-msgq\n")
  453. # try to connect, and if we can't wait a short while
  454. try:
  455. self.cc_session = isc.cc.Session(self.msgq_socket_file)
  456. return "b10-msgq already running, or socket file not cleaned , cannot start"
  457. except isc.cc.session.SessionError:
  458. # this is the case we want, where the msgq is not running
  459. pass
  460. # Start all processes. If any one fails to start, kill all started
  461. # processes and exit with an error indication.
  462. try:
  463. self.start_all_processes(c_channel_env)
  464. except Exception as e:
  465. self.kill_started_processes()
  466. return "Unable to start " + self.curproc + ": " + str(e)
  467. # Started successfully
  468. self.runnable = True
  469. return None
  470. def stop_all_processes(self):
  471. """Stop all processes."""
  472. cmd = { "command": ['shutdown']}
  473. self.cc_session.group_sendmsg(cmd, 'Cmdctl', 'Cmdctl')
  474. self.cc_session.group_sendmsg(cmd, "ConfigManager", "ConfigManager")
  475. self.cc_session.group_sendmsg(cmd, "Auth", "Auth")
  476. self.cc_session.group_sendmsg(cmd, "Recurse", "Recurse")
  477. self.cc_session.group_sendmsg(cmd, "Xfrout", "Xfrout")
  478. self.cc_session.group_sendmsg(cmd, "Xfrin", "Xfrin")
  479. self.cc_session.group_sendmsg(cmd, "Zonemgr", "Zonemgr")
  480. self.cc_session.group_sendmsg(cmd, "Boss", "Stats")
  481. def stop_process(self, process):
  482. """Stop the given process, friendly-like."""
  483. # XXX nothing yet
  484. pass
  485. def shutdown(self):
  486. """Stop the BoB instance."""
  487. if self.verbose:
  488. sys.stdout.write("[bind10] Stopping the server.\n")
  489. # first try using the BIND 10 request to stop
  490. try:
  491. self.stop_all_processes()
  492. except:
  493. pass
  494. # XXX: some delay probably useful... how much is uncertain
  495. # I have changed the delay from 0.5 to 1, but sometime it's
  496. # still not enough.
  497. time.sleep(1)
  498. self.reap_children()
  499. # next try sending a SIGTERM
  500. processes_to_stop = list(self.processes.values())
  501. for proc_info in processes_to_stop:
  502. if self.verbose:
  503. sys.stdout.write("[bind10] Sending SIGTERM to %s (PID %d).\n" %
  504. (proc_info.name, proc_info.pid))
  505. try:
  506. proc_info.process.terminate()
  507. except OSError:
  508. # ignore these (usually ESRCH because the child
  509. # finally exited)
  510. pass
  511. # finally, send SIGKILL (unmaskable termination) until everybody dies
  512. while self.processes:
  513. # XXX: some delay probably useful... how much is uncertain
  514. time.sleep(0.1)
  515. self.reap_children()
  516. processes_to_stop = list(self.processes.values())
  517. for proc_info in processes_to_stop:
  518. if self.verbose:
  519. sys.stdout.write("[bind10] Sending SIGKILL to %s (PID %d).\n" %
  520. (proc_info.name, proc_info.pid))
  521. try:
  522. proc_info.process.kill()
  523. except OSError:
  524. # ignore these (usually ESRCH because the child
  525. # finally exited)
  526. pass
  527. if self.verbose:
  528. sys.stdout.write("[bind10] All processes ended, server done.\n")
  529. def reap_children(self):
  530. """Check to see if any of our child processes have exited,
  531. and note this for later handling.
  532. """
  533. while True:
  534. try:
  535. (pid, exit_status) = os.waitpid(-1, os.WNOHANG)
  536. except OSError as o:
  537. if o.errno == errno.ECHILD: break
  538. # XXX: should be impossible to get any other error here
  539. raise
  540. if pid == 0: break
  541. if pid in self.processes:
  542. proc_info = self.processes.pop(pid)
  543. proc_info.restart_schedule.set_run_stop_time()
  544. self.dead_processes[proc_info.pid] = proc_info
  545. if self.verbose:
  546. sys.stdout.write("[bind10] Process %s (PID %d) died.\n" %
  547. (proc_info.name, proc_info.pid))
  548. if proc_info.name == "b10-msgq":
  549. if self.verbose and self.runnable:
  550. sys.stdout.write(
  551. "[bind10] The b10-msgq process died, shutting down.\n")
  552. self.runnable = False
  553. else:
  554. sys.stdout.write("[bind10] Unknown child pid %d exited.\n" % pid)
  555. def restart_processes(self):
  556. """Restart any dead processes.
  557. Returns the time when the next process is ready to be restarted.
  558. If the server is shutting down, returns 0.
  559. If there are no processes, returns None.
  560. The values returned can be safely passed into select() as the
  561. timeout value."""
  562. next_restart = None
  563. # if we're shutting down, then don't restart
  564. if not self.runnable:
  565. return 0
  566. # otherwise look through each dead process and try to restart
  567. still_dead = {}
  568. now = time.time()
  569. for proc_info in self.dead_processes.values():
  570. restart_time = proc_info.restart_schedule.get_restart_time(now)
  571. if restart_time > now:
  572. if (next_restart is None) or (next_restart > restart_time):
  573. next_restart = restart_time
  574. still_dead[proc_info.pid] = proc_info
  575. else:
  576. if self.verbose:
  577. sys.stdout.write("[bind10] Resurrecting dead %s process...\n" %
  578. proc_info.name)
  579. try:
  580. proc_info.respawn()
  581. self.processes[proc_info.pid] = proc_info
  582. if self.verbose:
  583. sys.stdout.write("[bind10] Resurrected %s (PID %d)\n" %
  584. (proc_info.name, proc_info.pid))
  585. except:
  586. still_dead[proc_info.pid] = proc_info
  587. # remember any processes that refuse to be resurrected
  588. self.dead_processes = still_dead
  589. # return the time when the next process is ready to be restarted
  590. return next_restart
  591. # global variables, needed for signal handlers
  592. options = None
  593. boss_of_bind = None
  594. def reaper(signal_number, stack_frame):
  595. """A child process has died (SIGCHLD received)."""
  596. # don't do anything...
  597. # the Python signal handler has been set up to write
  598. # down a pipe, waking up our select() bit
  599. pass
  600. def get_signame(signal_number):
  601. """Return the symbolic name for a signal."""
  602. for sig in dir(signal):
  603. if sig.startswith("SIG") and sig[3].isalnum():
  604. if getattr(signal, sig) == signal_number:
  605. return sig
  606. return "Unknown signal %d" % signal_number
  607. # XXX: perhaps register atexit() function and invoke that instead
  608. def fatal_signal(signal_number, stack_frame):
  609. """We need to exit (SIGINT or SIGTERM received)."""
  610. global options
  611. global boss_of_bind
  612. if options.verbose:
  613. sys.stdout.write("[bind10] Received %s.\n" % get_signame(signal_number))
  614. signal.signal(signal.SIGCHLD, signal.SIG_DFL)
  615. boss_of_bind.runnable = False
  616. def check_port(option, opt_str, value, parser):
  617. """Function to insure that the port we are passed is actually
  618. a valid port number. Used by OptionParser() on startup."""
  619. try:
  620. if opt_str in ['-p', '--port']:
  621. parser.values.auth_port = isc.net.parse.port_parse(value)
  622. elif opt_str in ['-q', '--res-port']:
  623. parser.values.res_port = isc.net.parse.port_parse(value)
  624. else:
  625. raise OptionValueError("Unknown option " + opt_str)
  626. except ValueError as e:
  627. raise OptionValueError(str(e))
  628. def check_addr(option, opt_str, value, parser):
  629. """Function to insure that the address we are passed is actually
  630. a valid address. Used by OptionParser() on startup."""
  631. try:
  632. if opt_str in ['-a', '--address']:
  633. parser.values.address = isc.net.parse.addr_parse(value)
  634. elif opt_str in ['-b', '--res-address']:
  635. parser.values.res_address = isc.net.parse.addr_parse(value)
  636. else:
  637. raise OptionValueError("Unknown option " + opt_str)
  638. except ValueError:
  639. raise OptionValueError("%s requires a valid IPv4 or IPv6 address" % opt_str)
  640. def process_rename(option, opt_str, value, parser):
  641. """Function that renames the process if it is requested by a option."""
  642. isc.util.process.rename(value)
  643. def main():
  644. global options
  645. global boss_of_bind
  646. # Enforce line buffering on stdout, even when not a TTY
  647. sys.stdout = io.TextIOWrapper(sys.stdout.detach(), line_buffering=True)
  648. # Parse any command-line options.
  649. parser = OptionParser(version=VERSION)
  650. parser.add_option("-a", "--address", dest="address", type="string",
  651. action="callback", callback=check_addr, default='',
  652. help="address the b10-auth daemon will use (default: listen on all addresses)")
  653. parser.add_option("-b", "--res-address", dest="res_address",
  654. type="string",
  655. action="callback", callback=check_addr, default='',
  656. help="address the b10-recurse daemon will use (default: listen on all addresses)")
  657. parser.add_option("-m", "--msgq-socket-file", dest="msgq_socket_file",
  658. type="string", default=None,
  659. help="UNIX domain socket file the b10-msgq daemon will use")
  660. parser.add_option("-n", "--no-cache", action="store_true", dest="nocache",
  661. default=False, help="disable hot-spot cache in b10-auth")
  662. parser.add_option("-p", "--port", dest="auth_port", type="int",
  663. action="callback", callback=check_port, default=5300,
  664. help="port the b10-auth daemon will use (default 5300)")
  665. parser.add_option("-q", "--res-port", dest="res_port", type="int",
  666. action="callback", callback=check_port, default=5301,
  667. help="b10-recurse daemon port (default 5301)")
  668. parser.add_option("-u", "--user", dest="user",
  669. type="string", default=None,
  670. help="Change user after startup (must run as root)")
  671. parser.add_option("-v", "--verbose", dest="verbose", action="store_true",
  672. help="display more about what is going on")
  673. parser.add_option("--pretty-name", type="string", action="callback",
  674. callback=process_rename,
  675. help="Set the process name (displayed in ps, top, ...)")
  676. (options, args) = parser.parse_args()
  677. if args:
  678. parser.print_help()
  679. sys.exit(1)
  680. # Check user ID.
  681. setuid = None
  682. username = None
  683. if options.user:
  684. # Try getting information about the user, assuming UID passed.
  685. try:
  686. pw_ent = pwd.getpwuid(int(options.user))
  687. setuid = pw_ent.pw_uid
  688. username = pw_ent.pw_name
  689. except ValueError:
  690. pass
  691. except KeyError:
  692. pass
  693. # Next try getting information about the user, assuming user name
  694. # passed.
  695. # If the information is both a valid user name and user number, we
  696. # prefer the name because we try it second. A minor point, hopefully.
  697. try:
  698. pw_ent = pwd.getpwnam(options.user)
  699. setuid = pw_ent.pw_uid
  700. username = pw_ent.pw_name
  701. except KeyError:
  702. pass
  703. if setuid is None:
  704. sys.stderr.write("bind10: invalid user: '%s'\n" % options.user)
  705. sys.exit(1)
  706. # Announce startup.
  707. if options.verbose:
  708. sys.stdout.write("%s\n" % VERSION)
  709. # TODO: set process name, perhaps by:
  710. # http://code.google.com/p/procname/
  711. # http://github.com/lericson/procname/
  712. # Create wakeup pipe for signal handlers
  713. wakeup_pipe = os.pipe()
  714. signal.set_wakeup_fd(wakeup_pipe[1])
  715. # Set signal handlers for catching child termination, as well
  716. # as our own demise.
  717. signal.signal(signal.SIGCHLD, reaper)
  718. signal.siginterrupt(signal.SIGCHLD, False)
  719. signal.signal(signal.SIGINT, fatal_signal)
  720. signal.signal(signal.SIGTERM, fatal_signal)
  721. # Block SIGPIPE, as we don't want it to end this process
  722. signal.signal(signal.SIGPIPE, signal.SIG_IGN)
  723. # Go bob!
  724. boss_of_bind = BoB(options.msgq_socket_file, options.auth_port,
  725. options.res_port, options.address, options.res_address,
  726. options.nocache, options.verbose, setuid, username)
  727. startup_result = boss_of_bind.startup()
  728. if startup_result:
  729. sys.stderr.write("[bind10] Error on startup: %s\n" % startup_result)
  730. sys.exit(1)
  731. sys.stdout.write("[bind10] BIND 10 started\n")
  732. # send "bind10.boot_time" to b10-stats
  733. time.sleep(1) # wait a second
  734. if options.verbose:
  735. sys.stdout.write("[bind10] send \"bind10.boot_time\" to b10-stats\n")
  736. cmd = isc.config.ccsession.create_command('set',
  737. { "stats_data": {
  738. 'bind10.boot_time': time.strftime('%Y-%m-%dT%H:%M:%SZ', _BASETIME)
  739. }
  740. })
  741. boss_of_bind.cc_session.group_sendmsg(cmd, 'Stats')
  742. # In our main loop, we check for dead processes or messages
  743. # on the c-channel.
  744. wakeup_fd = wakeup_pipe[0]
  745. ccs_fd = boss_of_bind.ccs.get_socket().fileno()
  746. while boss_of_bind.runnable:
  747. # clean up any processes that exited
  748. boss_of_bind.reap_children()
  749. next_restart = boss_of_bind.restart_processes()
  750. if next_restart is None:
  751. wait_time = None
  752. else:
  753. wait_time = max(next_restart - time.time(), 0)
  754. # select() can raise EINTR when a signal arrives,
  755. # even if they are resumable, so we have to catch
  756. # the exception
  757. try:
  758. (rlist, wlist, xlist) = select.select([wakeup_fd, ccs_fd], [], [],
  759. wait_time)
  760. except select.error as err:
  761. if err.args[0] == errno.EINTR:
  762. (rlist, wlist, xlist) = ([], [], [])
  763. else:
  764. sys.stderr.write("[bind10] Error with select(); %s\n" % err)
  765. break
  766. for fd in rlist + xlist:
  767. if fd == ccs_fd:
  768. try:
  769. boss_of_bind.ccs.check_command()
  770. except isc.cc.session.ProtocolError:
  771. if options.verbose:
  772. sys.stderr.write("[bind10] msgq channel disappeared.\n")
  773. break
  774. elif fd == wakeup_fd:
  775. os.read(wakeup_fd, 32)
  776. # shutdown
  777. signal.signal(signal.SIGCHLD, signal.SIG_DFL)
  778. boss_of_bind.shutdown()
  779. sys.exit(0)
  780. if __name__ == "__main__":
  781. main()