README.rst 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921
  1. .. contents::
  2. Introduction
  3. ============
  4. Matrix is an ambitious new ecosystem for open federated Instant Messaging and
  5. VoIP. The basics you need to know to get up and running are:
  6. - Everything in Matrix happens in a room. Rooms are distributed and do not
  7. exist on any single server. Rooms can be located using convenience aliases
  8. like ``#matrix:matrix.org`` or ``#test:localhost:8448``.
  9. - Matrix user IDs look like ``@matthew:matrix.org`` (although in the future
  10. you will normally refer to yourself and others using a third party identifier
  11. (3PID): email address, phone number, etc rather than manipulating Matrix user IDs)
  12. The overall architecture is::
  13. client <----> homeserver <=====================> homeserver <----> client
  14. https://somewhere.org/_matrix https://elsewhere.net/_matrix
  15. ``#matrix:matrix.org`` is the official support room for Matrix, and can be
  16. accessed by any client from https://matrix.org/docs/projects/try-matrix-now.html or
  17. via IRC bridge at irc://irc.freenode.net/matrix.
  18. Synapse is currently in rapid development, but as of version 0.5 we believe it
  19. is sufficiently stable to be run as an internet-facing service for real usage!
  20. About Matrix
  21. ============
  22. Matrix specifies a set of pragmatic RESTful HTTP JSON APIs as an open standard,
  23. which handle:
  24. - Creating and managing fully distributed chat rooms with no
  25. single points of control or failure
  26. - Eventually-consistent cryptographically secure synchronisation of room
  27. state across a global open network of federated servers and services
  28. - Sending and receiving extensible messages in a room with (optional)
  29. end-to-end encryption[1]
  30. - Inviting, joining, leaving, kicking, banning room members
  31. - Managing user accounts (registration, login, logout)
  32. - Using 3rd Party IDs (3PIDs) such as email addresses, phone numbers,
  33. Facebook accounts to authenticate, identify and discover users on Matrix.
  34. - Placing 1:1 VoIP and Video calls
  35. These APIs are intended to be implemented on a wide range of servers, services
  36. and clients, letting developers build messaging and VoIP functionality on top
  37. of the entirely open Matrix ecosystem rather than using closed or proprietary
  38. solutions. The hope is for Matrix to act as the building blocks for a new
  39. generation of fully open and interoperable messaging and VoIP apps for the
  40. internet.
  41. Synapse is a reference "homeserver" implementation of Matrix from the core
  42. development team at matrix.org, written in Python/Twisted. It is intended to
  43. showcase the concept of Matrix and let folks see the spec in the context of a
  44. codebase and let you run your own homeserver and generally help bootstrap the
  45. ecosystem.
  46. In Matrix, every user runs one or more Matrix clients, which connect through to
  47. a Matrix homeserver. The homeserver stores all their personal chat history and
  48. user account information - much as a mail client connects through to an
  49. IMAP/SMTP server. Just like email, you can either run your own Matrix
  50. homeserver and control and own your own communications and history or use one
  51. hosted by someone else (e.g. matrix.org) - there is no single point of control
  52. or mandatory service provider in Matrix, unlike WhatsApp, Facebook, Hangouts,
  53. etc.
  54. We'd like to invite you to join #matrix:matrix.org (via
  55. https://matrix.org/docs/projects/try-matrix-now.html), run a homeserver, take a look
  56. at the `Matrix spec <https://matrix.org/docs/spec>`_, and experiment with the
  57. `APIs <https://matrix.org/docs/api>`_ and `Client SDKs
  58. <http://matrix.org/docs/projects/try-matrix-now.html#client-sdks>`_.
  59. Thanks for using Matrix!
  60. [1] End-to-end encryption is currently in beta: `blog post <https://matrix.org/blog/2016/11/21/matrixs-olm-end-to-end-encryption-security-assessment-released-and-implemented-cross-platform-on-riot-at-last>`_.
  61. Synapse Installation
  62. ====================
  63. Synapse is the reference python/twisted Matrix homeserver implementation.
  64. System requirements:
  65. - POSIX-compliant system (tested on Linux & OS X)
  66. - Python 2.7
  67. - At least 1GB of free RAM if you want to join large public rooms like #matrix:matrix.org
  68. Installing from source
  69. ----------------------
  70. (Prebuilt packages are available for some platforms - see `Platform-Specific
  71. Instructions`_.)
  72. Synapse is written in python but some of the libraries it uses are written in
  73. C. So before we can install synapse itself we need a working C compiler and the
  74. header files for python C extensions.
  75. Installing prerequisites on Ubuntu or Debian::
  76. sudo apt-get install build-essential python2.7-dev libffi-dev \
  77. python-pip python-setuptools sqlite3 \
  78. libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
  79. Installing prerequisites on ArchLinux::
  80. sudo pacman -S base-devel python2 python-pip \
  81. python-setuptools python-virtualenv sqlite3
  82. Installing prerequisites on CentOS 7 or Fedora 25::
  83. sudo yum install libtiff-devel libjpeg-devel libzip-devel freetype-devel \
  84. lcms2-devel libwebp-devel tcl-devel tk-devel redhat-rpm-config \
  85. python-virtualenv libffi-devel openssl-devel
  86. sudo yum groupinstall "Development Tools"
  87. Installing prerequisites on Mac OS X::
  88. xcode-select --install
  89. sudo easy_install pip
  90. sudo pip install virtualenv
  91. brew install pkg-config libffi
  92. Installing prerequisites on Raspbian::
  93. sudo apt-get install build-essential python2.7-dev libffi-dev \
  94. python-pip python-setuptools sqlite3 \
  95. libssl-dev python-virtualenv libjpeg-dev
  96. sudo pip install --upgrade pip
  97. sudo pip install --upgrade ndg-httpsclient
  98. sudo pip install --upgrade virtualenv
  99. Installing prerequisites on openSUSE::
  100. sudo zypper in -t pattern devel_basis
  101. sudo zypper in python-pip python-setuptools sqlite3 python-virtualenv \
  102. python-devel libffi-devel libopenssl-devel libjpeg62-devel
  103. Installing prerequisites on OpenBSD::
  104. doas pkg_add python libffi py-pip py-setuptools sqlite3 py-virtualenv \
  105. libxslt
  106. To install the synapse homeserver run::
  107. virtualenv -p python2.7 ~/.synapse
  108. source ~/.synapse/bin/activate
  109. pip install --upgrade pip
  110. pip install --upgrade setuptools
  111. pip install https://github.com/matrix-org/synapse/tarball/master
  112. This installs synapse, along with the libraries it uses, into a virtual
  113. environment under ``~/.synapse``. Feel free to pick a different directory
  114. if you prefer.
  115. In case of problems, please see the _`Troubleshooting` section below.
  116. Alternatively, Silvio Fricke has contributed a Dockerfile to automate the
  117. above in Docker at https://registry.hub.docker.com/u/silviof/docker-matrix/.
  118. Also, Martin Giess has created an auto-deployment process with vagrant/ansible,
  119. tested with VirtualBox/AWS/DigitalOcean - see https://github.com/EMnify/matrix-synapse-auto-deploy
  120. for details.
  121. Configuring synapse
  122. -------------------
  123. Before you can start Synapse, you will need to generate a configuration
  124. file. To do this, run (in your virtualenv, as before)::
  125. cd ~/.synapse
  126. python -m synapse.app.homeserver \
  127. --server-name my.domain.name \
  128. --config-path homeserver.yaml \
  129. --generate-config \
  130. --report-stats=[yes|no]
  131. ... substituting an appropriate value for ``--server-name``. The server name
  132. determines the "domain" part of user-ids for users on your server: these will
  133. all be of the format ``@user:my.domain.name``. It also determines how other
  134. matrix servers will reach yours for `Federation`_. For a test configuration,
  135. set this to the hostname of your server. For a more production-ready setup, you
  136. will probably want to specify your domain (``example.com``) rather than a
  137. matrix-specific hostname here (in the same way that your email address is
  138. probably ``user@example.com`` rather than ``user@email.example.com``) - but
  139. doing so may require more advanced setup - see `Setting up
  140. Federation`_. Beware that the server name cannot be changed later.
  141. This command will generate you a config file that you can then customise, but it will
  142. also generate a set of keys for you. These keys will allow your Home Server to
  143. identify itself to other Home Servers, so don't lose or delete them. It would be
  144. wise to back them up somewhere safe. (If, for whatever reason, you do need to
  145. change your Home Server's keys, you may find that other Home Servers have the
  146. old key cached. If you update the signing key, you should change the name of the
  147. key in the ``<server name>.signing.key`` file (the second word) to something
  148. different. See `the spec`__ for more information on key management.)
  149. .. __: `key_management`_
  150. The default configuration exposes two HTTP ports: 8008 and 8448. Port 8008 is
  151. configured without TLS; it should be behind a reverse proxy for TLS/SSL
  152. termination on port 443 which in turn should be used for clients. Port 8448
  153. is configured to use TLS with a self-signed certificate. If you would like
  154. to do initial test with a client without having to setup a reverse proxy,
  155. you can temporarly use another certificate. (Note that a self-signed
  156. certificate is fine for `Federation`_). You can do so by changing
  157. ``tls_certificate_path``, ``tls_private_key_path`` and ``tls_dh_params_path``
  158. in ``homeserver.yaml``; alternatively, you can use a reverse-proxy, but be sure
  159. to read `Using a reverse proxy with Synapse`_ when doing so.
  160. Apart from port 8448 using TLS, both ports are the same in the default
  161. configuration.
  162. Registering a user
  163. ------------------
  164. You will need at least one user on your server in order to use a Matrix
  165. client. Users can be registered either `via a Matrix client`__, or via a
  166. commandline script.
  167. .. __: `client-user-reg`_
  168. To get started, it is easiest to use the command line to register new users::
  169. $ source ~/.synapse/bin/activate
  170. $ synctl start # if not already running
  171. $ register_new_matrix_user -c homeserver.yaml https://localhost:8448
  172. New user localpart: erikj
  173. Password:
  174. Confirm password:
  175. Make admin [no]:
  176. Success!
  177. This process uses a setting ``registration_shared_secret`` in
  178. ``homeserver.yaml``, which is shared between Synapse itself and the
  179. ``register_new_matrix_user`` script. It doesn't matter what it is (a random
  180. value is generated by ``--generate-config``), but it should be kept secret, as
  181. anyone with knowledge of it can register users on your server even if
  182. ``enable_registration`` is ``false``.
  183. Setting up a TURN server
  184. ------------------------
  185. For reliable VoIP calls to be routed via this homeserver, you MUST configure
  186. a TURN server. See `<docs/turn-howto.rst>`_ for details.
  187. IPv6
  188. ----
  189. As of Synapse 0.19 we finally support IPv6, many thanks to @kyrias and @glyph
  190. for providing PR #1696.
  191. However, for federation to work on hosts with IPv6 DNS servers you **must**
  192. be running Twisted 17.1.0 or later - see https://github.com/matrix-org/synapse/issues/1002
  193. for details. We can't make Synapse depend on Twisted 17.1 by default
  194. yet as it will break most older distributions (see https://github.com/matrix-org/synapse/pull/1909)
  195. so if you are using operating system dependencies you'll have to install your
  196. own Twisted 17.1 package via pip or backports etc.
  197. If you're running in a virtualenv then pip should have installed the newest
  198. Twisted automatically, but if your virtualenv is old you will need to manually
  199. upgrade to a newer Twisted dependency via:
  200. pip install Twisted>=17.1.0
  201. Running Synapse
  202. ===============
  203. To actually run your new homeserver, pick a working directory for Synapse to
  204. run (e.g. ``~/.synapse``), and::
  205. cd ~/.synapse
  206. source ./bin/activate
  207. synctl start
  208. Connecting to Synapse from a client
  209. ===================================
  210. The easiest way to try out your new Synapse installation is by connecting to it
  211. from a web client. The easiest option is probably the one at
  212. http://riot.im/app. You will need to specify a "Custom server" when you log on
  213. or register: set this to ``https://domain.tld`` if you setup a reverse proxy
  214. following the recommended setup, or ``https://localhost:8448`` - remember to specify the
  215. port (``:8448``) if not ``:443`` unless you changed the configuration. (Leave the identity
  216. server as the default - see `Identity servers`_.)
  217. If using port 8448 you will run into errors until you accept the self-signed
  218. certificate. You can easily do this by going to ``https://localhost:8448``
  219. directly with your browser and accept the presented certificate. You can then
  220. go back in your web client and proceed further.
  221. If all goes well you should at least be able to log in, create a room, and
  222. start sending messages.
  223. (The homeserver runs a web client by default at https://localhost:8448/, though
  224. as of the time of writing it is somewhat outdated and not really recommended -
  225. https://github.com/matrix-org/synapse/issues/1527).
  226. .. _`client-user-reg`:
  227. Registering a new user from a client
  228. ------------------------------------
  229. By default, registration of new users via Matrix clients is disabled. To enable
  230. it, specify ``enable_registration: true`` in ``homeserver.yaml``. (It is then
  231. recommended to also set up CAPTCHA - see `<docs/CAPTCHA_SETUP.rst>`_.)
  232. Once ``enable_registration`` is set to ``true``, it is possible to register a
  233. user via `riot.im <https://riot.im/app/#/register>`_ or other Matrix clients.
  234. Your new user name will be formed partly from the ``server_name`` (see
  235. `Configuring synapse`_), and partly from a localpart you specify when you
  236. create the account. Your name will take the form of::
  237. @localpart:my.domain.name
  238. (pronounced "at localpart on my dot domain dot name").
  239. As when logging in, you will need to specify a "Custom server". Specify your
  240. desired ``localpart`` in the 'User name' box.
  241. Security Note
  242. =============
  243. Matrix serves raw user generated data in some APIs - specifically the `content
  244. repository endpoints <http://matrix.org/docs/spec/client_server/latest.html#get-matrix-media-r0-download-servername-mediaid>`_.
  245. Whilst we have tried to mitigate against possible XSS attacks (e.g.
  246. https://github.com/matrix-org/synapse/pull/1021) we recommend running
  247. matrix homeservers on a dedicated domain name, to limit any malicious user generated
  248. content served to web browsers a matrix API from being able to attack webapps hosted
  249. on the same domain. This is particularly true of sharing a matrix webclient and
  250. server on the same domain.
  251. See https://github.com/vector-im/vector-web/issues/1977 and
  252. https://developer.github.com/changes/2014-04-25-user-content-security for more details.
  253. Platform-Specific Instructions
  254. ==============================
  255. Debian
  256. ------
  257. Matrix provides official Debian packages via apt from http://matrix.org/packages/debian/.
  258. Note that these packages do not include a client - choose one from
  259. https://matrix.org/docs/projects/try-matrix-now.html (or build your own with one of our SDKs :)
  260. Fedora
  261. ------
  262. Oleg Girko provides Fedora RPMs at
  263. https://obs.infoserver.lv/project/monitor/matrix-synapse
  264. ArchLinux
  265. ---------
  266. The quickest way to get up and running with ArchLinux is probably with the community package
  267. https://www.archlinux.org/packages/community/any/matrix-synapse/, which should pull in most of
  268. the necessary dependencies. If the default web client is to be served (enabled by default in
  269. the generated config),
  270. https://www.archlinux.org/packages/community/any/python2-matrix-angular-sdk/ will also need to
  271. be installed.
  272. Alternatively, to install using pip a few changes may be needed as ArchLinux
  273. defaults to python 3, but synapse currently assumes python 2.7 by default:
  274. pip may be outdated (6.0.7-1 and needs to be upgraded to 6.0.8-1 )::
  275. sudo pip2.7 install --upgrade pip
  276. You also may need to explicitly specify python 2.7 again during the install
  277. request::
  278. pip2.7 install https://github.com/matrix-org/synapse/tarball/master
  279. If you encounter an error with lib bcrypt causing an Wrong ELF Class:
  280. ELFCLASS32 (x64 Systems), you may need to reinstall py-bcrypt to correctly
  281. compile it under the right architecture. (This should not be needed if
  282. installing under virtualenv)::
  283. sudo pip2.7 uninstall py-bcrypt
  284. sudo pip2.7 install py-bcrypt
  285. During setup of Synapse you need to call python2.7 directly again::
  286. cd ~/.synapse
  287. python2.7 -m synapse.app.homeserver \
  288. --server-name machine.my.domain.name \
  289. --config-path homeserver.yaml \
  290. --generate-config
  291. ...substituting your host and domain name as appropriate.
  292. FreeBSD
  293. -------
  294. Synapse can be installed via FreeBSD Ports or Packages contributed by Brendan Molloy from:
  295. - Ports: ``cd /usr/ports/net-im/py-matrix-synapse && make install clean``
  296. - Packages: ``pkg install py27-matrix-synapse``
  297. OpenBSD
  298. -------
  299. There is currently no port for OpenBSD. Additionally, OpenBSD's security
  300. settings require a slightly more difficult installation process.
  301. 1) Create a new directory in ``/usr/local`` called ``_synapse``. Also, create a
  302. new user called ``_synapse`` and set that directory as the new user's home.
  303. This is required because, by default, OpenBSD only allows binaries which need
  304. write and execute permissions on the same memory space to be run from
  305. ``/usr/local``.
  306. 2) ``su`` to the new ``_synapse`` user and change to their home directory.
  307. 3) Create a new virtualenv: ``virtualenv -p python2.7 ~/.synapse``
  308. 4) Source the virtualenv configuration located at
  309. ``/usr/local/_synapse/.synapse/bin/activate``. This is done in ``ksh`` by
  310. using the ``.`` command, rather than ``bash``'s ``source``.
  311. 5) Optionally, use ``pip`` to install ``lxml``, which Synapse needs to parse
  312. webpages for their titles.
  313. 6) Use ``pip`` to install this repository: ``pip install
  314. https://github.com/matrix-org/synapse/tarball/master``
  315. 7) Optionally, change ``_synapse``'s shell to ``/bin/false`` to reduce the
  316. chance of a compromised Synapse server being used to take over your box.
  317. After this, you may proceed with the rest of the install directions.
  318. NixOS
  319. -----
  320. Robin Lambertz has packaged Synapse for NixOS at:
  321. https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/matrix-synapse.nix
  322. Windows Install
  323. ---------------
  324. Synapse can be installed on Cygwin. It requires the following Cygwin packages:
  325. - gcc
  326. - git
  327. - libffi-devel
  328. - openssl (and openssl-devel, python-openssl)
  329. - python
  330. - python-setuptools
  331. The content repository requires additional packages and will be unable to process
  332. uploads without them:
  333. - libjpeg8
  334. - libjpeg8-devel
  335. - zlib
  336. If you choose to install Synapse without these packages, you will need to reinstall
  337. ``pillow`` for changes to be applied, e.g. ``pip uninstall pillow`` ``pip install
  338. pillow --user``
  339. Troubleshooting:
  340. - You may need to upgrade ``setuptools`` to get this to work correctly:
  341. ``pip install setuptools --upgrade``.
  342. - You may encounter errors indicating that ``ffi.h`` is missing, even with
  343. ``libffi-devel`` installed. If you do, copy the ``.h`` files:
  344. ``cp /usr/lib/libffi-3.0.13/include/*.h /usr/include``
  345. - You may need to install libsodium from source in order to install PyNacl. If
  346. you do, you may need to create a symlink to ``libsodium.a`` so ``ld`` can find
  347. it: ``ln -s /usr/local/lib/libsodium.a /usr/lib/libsodium.a``
  348. Troubleshooting
  349. ===============
  350. Troubleshooting Installation
  351. ----------------------------
  352. Synapse requires pip 1.7 or later, so if your OS provides too old a version you
  353. may need to manually upgrade it::
  354. sudo pip install --upgrade pip
  355. Installing may fail with ``Could not find any downloads that satisfy the requirement pymacaroons-pynacl (from matrix-synapse==0.12.0)``.
  356. You can fix this by manually upgrading pip and virtualenv::
  357. sudo pip install --upgrade virtualenv
  358. You can next rerun ``virtualenv -p python2.7 synapse`` to update the virtual env.
  359. Installing may fail during installing virtualenv with ``InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.``
  360. You can fix this by manually installing ndg-httpsclient::
  361. pip install --upgrade ndg-httpsclient
  362. Installing may fail with ``mock requires setuptools>=17.1. Aborting installation``.
  363. You can fix this by upgrading setuptools::
  364. pip install --upgrade setuptools
  365. If pip crashes mid-installation for reason (e.g. lost terminal), pip may
  366. refuse to run until you remove the temporary installation directory it
  367. created. To reset the installation::
  368. rm -rf /tmp/pip_install_matrix
  369. pip seems to leak *lots* of memory during installation. For instance, a Linux
  370. host with 512MB of RAM may run out of memory whilst installing Twisted. If this
  371. happens, you will have to individually install the dependencies which are
  372. failing, e.g.::
  373. pip install twisted
  374. On OS X, if you encounter clang: error: unknown argument: '-mno-fused-madd' you
  375. will need to export CFLAGS=-Qunused-arguments.
  376. Troubleshooting Running
  377. -----------------------
  378. If synapse fails with ``missing "sodium.h"`` crypto errors, you may need
  379. to manually upgrade PyNaCL, as synapse uses NaCl (http://nacl.cr.yp.to/) for
  380. encryption and digital signatures.
  381. Unfortunately PyNACL currently has a few issues
  382. (https://github.com/pyca/pynacl/issues/53) and
  383. (https://github.com/pyca/pynacl/issues/79) that mean it may not install
  384. correctly, causing all tests to fail with errors about missing "sodium.h". To
  385. fix try re-installing from PyPI or directly from
  386. (https://github.com/pyca/pynacl)::
  387. # Install from PyPI
  388. pip install --user --upgrade --force pynacl
  389. # Install from github
  390. pip install --user https://github.com/pyca/pynacl/tarball/master
  391. Running out of File Handles
  392. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  393. If synapse runs out of filehandles, it typically fails badly - live-locking
  394. at 100% CPU, and/or failing to accept new TCP connections (blocking the
  395. connecting client). Matrix currently can legitimately use a lot of file handles,
  396. thanks to busy rooms like #matrix:matrix.org containing hundreds of participating
  397. servers. The first time a server talks in a room it will try to connect
  398. simultaneously to all participating servers, which could exhaust the available
  399. file descriptors between DNS queries & HTTPS sockets, especially if DNS is slow
  400. to respond. (We need to improve the routing algorithm used to be better than
  401. full mesh, but as of June 2017 this hasn't happened yet).
  402. If you hit this failure mode, we recommend increasing the maximum number of
  403. open file handles to be at least 4096 (assuming a default of 1024 or 256).
  404. This is typically done by editing ``/etc/security/limits.conf``
  405. Separately, Synapse may leak file handles if inbound HTTP requests get stuck
  406. during processing - e.g. blocked behind a lock or talking to a remote server etc.
  407. This is best diagnosed by matching up the 'Received request' and 'Processed request'
  408. log lines and looking for any 'Processed request' lines which take more than
  409. a few seconds to execute. Please let us know at #matrix-dev:matrix.org if
  410. you see this failure mode so we can help debug it, however.
  411. ArchLinux
  412. ~~~~~~~~~
  413. If running `$ synctl start` fails with 'returned non-zero exit status 1',
  414. you will need to explicitly call Python2.7 - either running as::
  415. python2.7 -m synapse.app.homeserver --daemonize -c homeserver.yaml
  416. ...or by editing synctl with the correct python executable.
  417. Upgrading an existing Synapse
  418. =============================
  419. The instructions for upgrading synapse are in `UPGRADE.rst`_.
  420. Please check these instructions as upgrading may require extra steps for some
  421. versions of synapse.
  422. .. _UPGRADE.rst: UPGRADE.rst
  423. .. _federation:
  424. Setting up Federation
  425. =====================
  426. Federation is the process by which users on different servers can participate
  427. in the same room. For this to work, those other servers must be able to contact
  428. yours to send messages.
  429. As explained in `Configuring synapse`_, the ``server_name`` in your
  430. ``homeserver.yaml`` file determines the way that other servers will reach
  431. yours. By default, they will treat it as a hostname and try to connect to
  432. port 8448. This is easy to set up and will work with the default configuration,
  433. provided you set the ``server_name`` to match your machine's public DNS
  434. hostname.
  435. For a more flexible configuration, you can set up a DNS SRV record. This allows
  436. you to run your server on a machine that might not have the same name as your
  437. domain name. For example, you might want to run your server at
  438. ``synapse.example.com``, but have your Matrix user-ids look like
  439. ``@user:example.com``. (A SRV record also allows you to change the port from
  440. the default 8448. However, if you are thinking of using a reverse-proxy on the
  441. federation port, which is not recommended, be sure to read
  442. `Reverse-proxying the federation port`_ first.)
  443. To use a SRV record, first create your SRV record and publish it in DNS. This
  444. should have the format ``_matrix._tcp.<yourdomain.com> <ttl> IN SRV 10 0 <port>
  445. <synapse.server.name>``. The DNS record should then look something like::
  446. $ dig -t srv _matrix._tcp.example.com
  447. _matrix._tcp.example.com. 3600 IN SRV 10 0 8448 synapse.example.com.
  448. You can then configure your homeserver to use ``<yourdomain.com>`` as the domain in
  449. its user-ids, by setting ``server_name``::
  450. python -m synapse.app.homeserver \
  451. --server-name <yourdomain.com> \
  452. --config-path homeserver.yaml \
  453. --generate-config
  454. python -m synapse.app.homeserver --config-path homeserver.yaml
  455. If you've already generated the config file, you need to edit the ``server_name``
  456. in your ``homeserver.yaml`` file. If you've already started Synapse and a
  457. database has been created, you will have to recreate the database.
  458. If all goes well, you should be able to `connect to your server with a client`__,
  459. and then join a room via federation. (Try ``#matrix-dev:matrix.org`` as a first
  460. step. "Matrix HQ"'s sheer size and activity level tends to make even the
  461. largest boxes pause for thought.)
  462. .. __: `Connecting to Synapse from a client`_
  463. Troubleshooting
  464. ---------------
  465. You can use the federation tester to check if your homeserver is all set:
  466. ``https://matrix.org/federationtester/api/report?server_name=<your_server_name>``
  467. If any of the attributes under "checks" is false, federation won't work.
  468. The typical failure mode with federation is that when you try to join a room,
  469. it is rejected with "401: Unauthorized". Generally this means that other
  470. servers in the room couldn't access yours. (Joining a room over federation is a
  471. complicated dance which requires connections in both directions).
  472. So, things to check are:
  473. * If you are trying to use a reverse-proxy, read `Reverse-proxying the
  474. federation port`_.
  475. * If you are not using a SRV record, check that your ``server_name`` (the part
  476. of your user-id after the ``:``) matches your hostname, and that port 8448 on
  477. that hostname is reachable from outside your network.
  478. * If you *are* using a SRV record, check that it matches your ``server_name``
  479. (it should be ``_matrix._tcp.<server_name>``), and that the port and hostname
  480. it specifies are reachable from outside your network.
  481. Running a Demo Federation of Synapses
  482. -------------------------------------
  483. If you want to get up and running quickly with a trio of homeservers in a
  484. private federation, there is a script in the ``demo`` directory. This is mainly
  485. useful just for development purposes. See `<demo/README>`_.
  486. Using PostgreSQL
  487. ================
  488. As of Synapse 0.9, `PostgreSQL <http://www.postgresql.org>`_ is supported as an
  489. alternative to the `SQLite <http://sqlite.org/>`_ database that Synapse has
  490. traditionally used for convenience and simplicity.
  491. The advantages of Postgres include:
  492. * significant performance improvements due to the superior threading and
  493. caching model, smarter query optimiser
  494. * allowing the DB to be run on separate hardware
  495. * allowing basic active/backup high-availability with a "hot spare" synapse
  496. pointing at the same DB master, as well as enabling DB replication in
  497. synapse itself.
  498. For information on how to install and use PostgreSQL, please see
  499. `docs/postgres.rst <docs/postgres.rst>`_.
  500. .. _reverse-proxy:
  501. Using a reverse proxy with Synapse
  502. ==================================
  503. It is recommended to put a reverse proxy such as
  504. `nginx <https://nginx.org/en/docs/http/ngx_http_proxy_module.html>`_,
  505. `Apache <https://httpd.apache.org/docs/current/mod/mod_proxy_http.html>`_ or
  506. `HAProxy <http://www.haproxy.org/>`_ in front of Synapse. One advantage of
  507. doing so is that it means that you can expose the default https port (443) to
  508. Matrix clients without needing to run Synapse with root privileges.
  509. The most important thing to know here is that Matrix clients and other Matrix
  510. servers do not necessarily need to connect to your server via the same
  511. port. Indeed, clients will use port 443 by default, whereas servers default to
  512. port 8448. Where these are different, we refer to the 'client port' and the
  513. 'federation port'.
  514. The next most important thing to know is that using a reverse-proxy on the
  515. federation port has a number of pitfalls. It is possible, but be sure to read
  516. `Reverse-proxying the federation port`_.
  517. The recommended setup is therefore to configure your reverse-proxy on port 443
  518. to port 8008 of synapse for client connections, but to also directly expose port
  519. 8448 for server-server connections. All the Matrix endpoints begin ``/_matrix``,
  520. so an example nginx configuration might look like::
  521. server {
  522. listen 443 ssl;
  523. listen [::]:443 ssl;
  524. server_name matrix.example.com;
  525. location /_matrix {
  526. proxy_pass http://localhost:8008;
  527. proxy_set_header X-Forwarded-For $remote_addr;
  528. }
  529. }
  530. You will also want to set ``bind_addresses: ['127.0.0.1']`` and ``x_forwarded: true``
  531. for port 8008 in ``homeserver.yaml`` to ensure that client IP addresses are
  532. recorded correctly.
  533. Having done so, you can then use ``https://matrix.example.com`` (instead of
  534. ``https://matrix.example.com:8448``) as the "Custom server" when `Connecting to
  535. Synapse from a client`_.
  536. Reverse-proxying the federation port
  537. ------------------------------------
  538. There are two issues to consider before using a reverse-proxy on the federation
  539. port:
  540. * Due to the way SSL certificates are managed in the Matrix federation protocol
  541. (see `spec`__), Synapse needs to be configured with the path to the SSL
  542. certificate, *even if you do not terminate SSL at Synapse*.
  543. .. __: `key_management`_
  544. * Synapse does not currently support SNI on the federation protocol
  545. (`bug #1491 <https://github.com/matrix-org/synapse/issues/1491>`_), which
  546. means that using name-based virtual hosting is unreliable.
  547. Furthermore, a number of the normal reasons for using a reverse-proxy do not
  548. apply:
  549. * Other servers will connect on port 8448 by default, so there is no need to
  550. listen on port 443 (for federation, at least), which avoids the need for root
  551. privileges and virtual hosting.
  552. * A self-signed SSL certificate is fine for federation, so there is no need to
  553. automate renewals. (The certificate generated by ``--generate-config`` is
  554. valid for 10 years.)
  555. If you want to set up a reverse-proxy on the federation port despite these
  556. caveats, you will need to do the following:
  557. * In ``homeserver.yaml``, set ``tls_certificate_path`` to the path to the SSL
  558. certificate file used by your reverse-proxy, and set ``no_tls`` to ``True``.
  559. (``tls_private_key_path`` will be ignored if ``no_tls`` is ``True``.)
  560. * In your reverse-proxy configuration:
  561. * If there are other virtual hosts on the same port, make sure that the
  562. *default* one uses the certificate configured above.
  563. * Forward ``/_matrix`` to Synapse.
  564. * If your reverse-proxy is not listening on port 8448, publish a SRV record to
  565. tell other servers how to find you. See `Setting up Federation`_.
  566. When updating the SSL certificate, just update the file pointed to by
  567. ``tls_certificate_path``: there is no need to restart synapse. (You may like to
  568. use a symbolic link to help make this process atomic.)
  569. The most common mistake when setting up federation is not to tell Synapse about
  570. your SSL certificate. To check it, you can visit
  571. ``https://matrix.org/federationtester/api/report?server_name=<your_server_name>``.
  572. Unfortunately, there is no UI for this yet, but, you should see
  573. ``"MatchingTLSFingerprint": true``. If not, check that
  574. ``Certificates[0].SHA256Fingerprint`` (the fingerprint of the certificate
  575. presented by your reverse-proxy) matches ``Keys.tls_fingerprints[0].sha256``
  576. (the fingerprint of the certificate Synapse is using).
  577. Identity Servers
  578. ================
  579. Identity servers have the job of mapping email addresses and other 3rd Party
  580. IDs (3PIDs) to Matrix user IDs, as well as verifying the ownership of 3PIDs
  581. before creating that mapping.
  582. **They are not where accounts or credentials are stored - these live on home
  583. servers. Identity Servers are just for mapping 3rd party IDs to matrix IDs.**
  584. This process is very security-sensitive, as there is obvious risk of spam if it
  585. is too easy to sign up for Matrix accounts or harvest 3PID data. In the longer
  586. term, we hope to create a decentralised system to manage it (`matrix-doc #712
  587. <https://github.com/matrix-org/matrix-doc/issues/712>`_), but in the meantime,
  588. the role of managing trusted identity in the Matrix ecosystem is farmed out to
  589. a cluster of known trusted ecosystem partners, who run 'Matrix Identity
  590. Servers' such as `Sydent <https://github.com/matrix-org/sydent>`_, whose role
  591. is purely to authenticate and track 3PID logins and publish end-user public
  592. keys.
  593. You can host your own copy of Sydent, but this will prevent you reaching other
  594. users in the Matrix ecosystem via their email address, and prevent them finding
  595. you. We therefore recommend that you use one of the centralised identity servers
  596. at ``https://matrix.org`` or ``https://vector.im`` for now.
  597. To reiterate: the Identity server will only be used if you choose to associate
  598. an email address with your account, or send an invite to another user via their
  599. email address.
  600. URL Previews
  601. ============
  602. Synapse 0.15.0 introduces a new API for previewing URLs at
  603. ``/_matrix/media/r0/preview_url``. This is disabled by default. To turn it on
  604. you must enable the ``url_preview_enabled: True`` config parameter and
  605. explicitly specify the IP ranges that Synapse is not allowed to spider for
  606. previewing in the ``url_preview_ip_range_blacklist`` configuration parameter.
  607. This is critical from a security perspective to stop arbitrary Matrix users
  608. spidering 'internal' URLs on your network. At the very least we recommend that
  609. your loopback and RFC1918 IP addresses are blacklisted.
  610. This also requires the optional lxml and netaddr python dependencies to be
  611. installed. This in turn requires the libxml2 library to be available - on
  612. Debian/Ubuntu this means ``apt-get install libxml2-dev``, or equivalent for
  613. your OS.
  614. Password reset
  615. ==============
  616. If a user has registered an email address to their account using an identity
  617. server, they can request a password-reset token via clients such as Vector.
  618. A manual password reset can be done via direct database access as follows.
  619. First calculate the hash of the new password::
  620. $ source ~/.synapse/bin/activate
  621. $ ./scripts/hash_password
  622. Password:
  623. Confirm password:
  624. $2a$12$xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  625. Then update the `users` table in the database::
  626. UPDATE users SET password_hash='$2a$12$xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
  627. WHERE name='@test:test.com';
  628. Synapse Development
  629. ===================
  630. Before setting up a development environment for synapse, make sure you have the
  631. system dependencies (such as the python header files) installed - see
  632. `Installing from source`_.
  633. To check out a synapse for development, clone the git repo into a working
  634. directory of your choice::
  635. git clone https://github.com/matrix-org/synapse.git
  636. cd synapse
  637. Synapse has a number of external dependencies, that are easiest
  638. to install using pip and a virtualenv::
  639. virtualenv -p python2.7 env
  640. source env/bin/activate
  641. python synapse/python_dependencies.py | xargs pip install
  642. pip install lxml mock
  643. This will run a process of downloading and installing all the needed
  644. dependencies into a virtual env.
  645. Once this is done, you may wish to run Synapse's unit tests, to
  646. check that everything is installed as it should be::
  647. PYTHONPATH="." trial tests
  648. This should end with a 'PASSED' result::
  649. Ran 143 tests in 0.601s
  650. PASSED (successes=143)
  651. Building Internal API Documentation
  652. ===================================
  653. Before building internal API documentation install sphinx and
  654. sphinxcontrib-napoleon::
  655. pip install sphinx
  656. pip install sphinxcontrib-napoleon
  657. Building internal API documentation::
  658. python setup.py build_sphinx
  659. Help!! Synapse eats all my RAM!
  660. ===============================
  661. Synapse's architecture is quite RAM hungry currently - we deliberately
  662. cache a lot of recent room data and metadata in RAM in order to speed up
  663. common requests. We'll improve this in future, but for now the easiest
  664. way to either reduce the RAM usage (at the risk of slowing things down)
  665. is to set the almost-undocumented ``SYNAPSE_CACHE_FACTOR`` environment
  666. variable. The default is 0.5, which can be decreased to reduce RAM usage
  667. in memory constrained enviroments, or increased if performance starts to
  668. degrade.
  669. .. _`key_management`: https://matrix.org/docs/spec/server_server/unstable.html#retrieving-server-keys