start.py 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #!/usr/local/bin/python
  2. import codecs
  3. import glob
  4. import os
  5. import subprocess
  6. import sys
  7. import jinja2
  8. # Utility functions
  9. def log(txt):
  10. print(txt, file=sys.stderr)
  11. def error(txt):
  12. log(txt)
  13. sys.exit(2)
  14. def convert(src, dst, environ):
  15. """Generate a file from a template
  16. Args:
  17. src (str): path to input file
  18. dst (str): path to file to write
  19. environ (dict): environment dictionary, for replacement mappings.
  20. """
  21. with open(src) as infile:
  22. template = infile.read()
  23. rendered = jinja2.Template(template).render(**environ)
  24. with open(dst, "w") as outfile:
  25. outfile.write(rendered)
  26. def generate_config_from_template(config_dir, config_path, environ, ownership):
  27. """Generate a homeserver.yaml from environment variables
  28. Args:
  29. config_dir (str): where to put generated config files
  30. config_path (str): where to put the main config file
  31. environ (dict): environment dictionary
  32. ownership (str): "<user>:<group>" string which will be used to set
  33. ownership of the generated configs
  34. """
  35. for v in ("SYNAPSE_SERVER_NAME", "SYNAPSE_REPORT_STATS"):
  36. if v not in environ:
  37. error(
  38. "Environment variable '%s' is mandatory when generating a config file."
  39. % (v,)
  40. )
  41. # populate some params from data files (if they exist, else create new ones)
  42. environ = environ.copy()
  43. secrets = {
  44. "registration": "SYNAPSE_REGISTRATION_SHARED_SECRET",
  45. "macaroon": "SYNAPSE_MACAROON_SECRET_KEY",
  46. }
  47. for name, secret in secrets.items():
  48. if secret not in environ:
  49. filename = "/data/%s.%s.key" % (environ["SYNAPSE_SERVER_NAME"], name)
  50. # if the file already exists, load in the existing value; otherwise,
  51. # generate a new secret and write it to a file
  52. if os.path.exists(filename):
  53. log("Reading %s from %s" % (secret, filename))
  54. with open(filename) as handle:
  55. value = handle.read()
  56. else:
  57. log("Generating a random secret for {}".format(secret))
  58. value = codecs.encode(os.urandom(32), "hex").decode()
  59. with open(filename, "w") as handle:
  60. handle.write(value)
  61. environ[secret] = value
  62. environ["SYNAPSE_APPSERVICES"] = glob.glob("/data/appservices/*.yaml")
  63. if not os.path.exists(config_dir):
  64. os.mkdir(config_dir)
  65. # Convert SYNAPSE_NO_TLS to boolean if exists
  66. if "SYNAPSE_NO_TLS" in environ:
  67. tlsanswerstring = str.lower(environ["SYNAPSE_NO_TLS"])
  68. if tlsanswerstring in ("true", "on", "1", "yes"):
  69. environ["SYNAPSE_NO_TLS"] = True
  70. else:
  71. if tlsanswerstring in ("false", "off", "0", "no"):
  72. environ["SYNAPSE_NO_TLS"] = False
  73. else:
  74. error(
  75. 'Environment variable "SYNAPSE_NO_TLS" found but value "'
  76. + tlsanswerstring
  77. + '" unrecognized; exiting.'
  78. )
  79. if "SYNAPSE_LOG_CONFIG" not in environ:
  80. environ["SYNAPSE_LOG_CONFIG"] = config_dir + "/log.config"
  81. log("Generating synapse config file " + config_path)
  82. convert("/conf/homeserver.yaml", config_path, environ)
  83. log_config_file = environ["SYNAPSE_LOG_CONFIG"]
  84. log("Generating log config file " + log_config_file)
  85. convert("/conf/log.config", log_config_file, environ)
  86. subprocess.check_output(["chown", "-R", ownership, "/data"])
  87. # Hopefully we already have a signing key, but generate one if not.
  88. subprocess.check_output(
  89. [
  90. "su-exec",
  91. ownership,
  92. "python",
  93. "-m",
  94. "synapse.app.homeserver",
  95. "--config-path",
  96. config_path,
  97. # tell synapse to put generated keys in /data rather than /compiled
  98. "--keys-directory",
  99. config_dir,
  100. "--generate-keys",
  101. ]
  102. )
  103. def run_generate_config(environ, ownership):
  104. """Run synapse with a --generate-config param to generate a template config file
  105. Args:
  106. environ (dict): env var dict
  107. ownership (str): "userid:groupid" arg for chmod
  108. Never returns.
  109. """
  110. for v in ("SYNAPSE_SERVER_NAME", "SYNAPSE_REPORT_STATS"):
  111. if v not in environ:
  112. error("Environment variable '%s' is mandatory in `generate` mode." % (v,))
  113. server_name = environ["SYNAPSE_SERVER_NAME"]
  114. config_dir = environ.get("SYNAPSE_CONFIG_DIR", "/data")
  115. config_path = environ.get("SYNAPSE_CONFIG_PATH", config_dir + "/homeserver.yaml")
  116. data_dir = environ.get("SYNAPSE_DATA_DIR", "/data")
  117. # create a suitable log config from our template
  118. log_config_file = "%s/%s.log.config" % (config_dir, server_name)
  119. if not os.path.exists(log_config_file):
  120. log("Creating log config %s" % (log_config_file,))
  121. convert("/conf/log.config", log_config_file, environ)
  122. # make sure that synapse has perms to write to the data dir.
  123. subprocess.check_output(["chown", ownership, data_dir])
  124. args = [
  125. "python",
  126. "-m",
  127. "synapse.app.homeserver",
  128. "--server-name",
  129. server_name,
  130. "--report-stats",
  131. environ["SYNAPSE_REPORT_STATS"],
  132. "--config-path",
  133. config_path,
  134. "--config-directory",
  135. config_dir,
  136. "--data-directory",
  137. data_dir,
  138. "--generate-config",
  139. "--open-private-ports",
  140. ]
  141. # log("running %s" % (args, ))
  142. os.execv("/usr/local/bin/python", args)
  143. def main(args, environ):
  144. mode = args[1] if len(args) > 1 else None
  145. ownership = "{}:{}".format(environ.get("UID", 991), environ.get("GID", 991))
  146. # In generate mode, generate a configuration and missing keys, then exit
  147. if mode == "generate":
  148. return run_generate_config(environ, ownership)
  149. if mode == "migrate_config":
  150. # generate a config based on environment vars.
  151. config_dir = environ.get("SYNAPSE_CONFIG_DIR", "/data")
  152. config_path = environ.get(
  153. "SYNAPSE_CONFIG_PATH", config_dir + "/homeserver.yaml"
  154. )
  155. return generate_config_from_template(
  156. config_dir, config_path, environ, ownership
  157. )
  158. if mode is not None:
  159. error("Unknown execution mode '%s'" % (mode,))
  160. if "SYNAPSE_SERVER_NAME" in environ:
  161. # backwards-compatibility generate-a-config-on-the-fly mode
  162. if "SYNAPSE_CONFIG_PATH" in environ:
  163. error(
  164. "SYNAPSE_SERVER_NAME and SYNAPSE_CONFIG_PATH are mutually exclusive "
  165. "except in `generate` or `migrate_config` mode."
  166. )
  167. config_path = "/compiled/homeserver.yaml"
  168. log(
  169. "Generating config file '%s' on-the-fly from environment variables.\n"
  170. "Note that this mode is deprecated. You can migrate to a static config\n"
  171. "file by running with 'migrate_config'. See the README for more details."
  172. % (config_path,)
  173. )
  174. generate_config_from_template("/compiled", config_path, environ, ownership)
  175. else:
  176. config_dir = environ.get("SYNAPSE_CONFIG_DIR", "/data")
  177. config_path = environ.get(
  178. "SYNAPSE_CONFIG_PATH", config_dir + "/homeserver.yaml"
  179. )
  180. if not os.path.exists(config_path):
  181. error(
  182. "Config file '%s' does not exist. You should either create a new "
  183. "config file by running with the `generate` argument (and then edit "
  184. "the resulting file before restarting) or specify the path to an "
  185. "existing config file with the SYNAPSE_CONFIG_PATH variable."
  186. % (config_path,)
  187. )
  188. log("Starting synapse with config file " + config_path)
  189. args = [
  190. "su-exec",
  191. ownership,
  192. "python",
  193. "-m",
  194. "synapse.app.homeserver",
  195. "--config-path",
  196. config_path,
  197. ]
  198. os.execv("/sbin/su-exec", args)
  199. if __name__ == "__main__":
  200. main(sys.argv, os.environ)