Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵ | Erik Johnston | 2018-08-09 | 1 | -2/+11 | |
| |\| | | | | | | | | | | erikj/split_federation | |||||
| * | | Add EDU/query handling over replication | Erik Johnston | 2018-08-06 | 1 | -11/+13 | |
| | | | ||||||
| * | | Add replication APIs for persisting federation events | Erik Johnston | 2018-08-06 | 1 | -9/+35 | |
| | | | ||||||
* | | | Remove redundant room_version checks | Erik Johnston | 2018-08-20 | 1 | -1/+1 | |
| | | | ||||||
* | | | Choose state algorithm based on room version | Erik Johnston | 2018-08-09 | 1 | -2/+6 | |
| |/ |/| | ||||||
* | | include known room versions in outgoing make_joins | Richard van der Hoff | 2018-08-06 | 1 | -2/+11 | |
|/ | ||||||
* | Merge branch 'master' into develop | Richard van der Hoff | 2018-08-02 | 1 | -6/+23 | |
|\ | ||||||
| * | Avoid extra db lookups | Richard van der Hoff | 2018-08-02 | 1 | -27/+11 | |
| | | | | | | | | | | Since we're about to look up the events themselves anyway, we can skip the extra db queries here. | |||||
| * | Validation for events/rooms in fed requests | Richard van der Hoff | 2018-08-02 | 1 | -1/+34 | |
| | | | | | | | | | | | | | | When we get a federation request which refers to an event id, make sure that said event is in the room the caller claims it is in. (patch supplied by @turt2live) | |||||
* | | Merge pull request #3621 from matrix-org/erikj/split_fed_store | Erik Johnston | 2018-08-02 | 1 | -87/+88 | |
|\ \ | | | | | | | Split out DB writes in federation handler | |||||
| * | | update docs | Erik Johnston | 2018-08-01 | 1 | -3/+5 | |
| | | | ||||||
| * | | _persist_auth_tree no longer returns anything | Erik Johnston | 2018-08-01 | 1 | -1/+1 | |
| | | | ||||||
| * | | Merge branch 'develop' of github.com:matrix-org/synapse into ↵ | Erik Johnston | 2018-07-30 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | | | | | erikj/split_fed_store | |||||
| * | | | Split out DB writes in federation handler | Erik Johnston | 2018-07-25 | 1 | -83/+82 | |
| | | | | | | | | | | | | | | | | | | | | | | | | This will allow us to easily add an internal replication API to proxy these reqeusts to master, so that we can move federation APIs to workers. | |||||
* | | | | rename replication_layer to federation_client | Richard van der Hoff | 2018-07-31 | 1 | -14/+14 | |
| |/ / |/| | | | | | | | | | | | I have HAD ENOUGH of trying to remember wtf a replication layer is in terms of classes. | |||||
* | | | Fix a minor documentation typo in on_make_leave | Travis Ralston | 2018-07-25 | 1 | -1/+1 | |
|/ / | ||||||
* | | Handle delta_ids being None in _update_context_for_auth_events | Richard van der Hoff | 2018-07-23 | 1 | -7/+6 | |
| | | | | | | | | | | | | | | it's easier to create the new state group as a delta from the existing one. (There's an outside chance this will help with https://github.com/matrix-org/synapse/issues/3364) | |||||
* | | Add support for updating state | Erik Johnston | 2018-07-23 | 1 | -9/+23 | |
| | | ||||||
* | | Use new getters | Erik Johnston | 2018-07-23 | 1 | -7/+16 | |
| | | ||||||
* | | Make the rest of the .iterwhatever go away (#3562) | Amber Brown | 2018-07-21 | 1 | -9/+9 | |
| | | ||||||
* | | Merge pull request #3367 from matrix-org/rav/drop_re_signing_hacks | Richard van der Hoff | 2018-07-18 | 1 | -43/+0 | |
|\ \ | |/ |/| | Remove event re-signing hacks | |||||
| * | Merge branch 'develop' into rav/drop_re_signing_hacks | Richard van der Hoff | 2018-07-04 | 1 | -51/+153 | |
| |\ | ||||||
| * | | Remove event re-signing hacks | Richard van der Hoff | 2018-06-07 | 1 | -43/+0 | |
| | | | | | | | | | | | | | | | | | | These "temporary fixes" have been here three and a half years, and I can't find any events in the matrix.org database where the calculated signature differs from what's in the db. It's time for them to go away. | |||||
* | | | Move filter_events_for_server out of FederationHandler | Richard van der Hoff | 2018-07-16 | 1 | -138/+6 | |
| | | | | | | | | | | | | for easier unit testing. | |||||
* | | | run isort | Amber Brown | 2018-07-09 | 1 | -18/+22 | |
| |/ |/| | ||||||
* | | try and clean up | Amber Brown | 2018-06-27 | 1 | -3/+6 | |
| | | ||||||
* | | pep8 | Amber Brown | 2018-06-27 | 1 | -6/+4 | |
| | | ||||||
* | | cleanups | Amber Brown | 2018-06-27 | 1 | -13/+15 | |
| | | ||||||
* | | handle federation not telling us about prev_events | Amber Brown | 2018-06-27 | 1 | -25/+62 | |
| | | ||||||
* | | Actually fix it | Erik Johnston | 2018-06-25 | 1 | -3/+3 | |
| | | ||||||
* | | Comment | Erik Johnston | 2018-06-25 | 1 | -0/+8 | |
| | | ||||||
* | | Fix bug with assuming wrong type | Erik Johnston | 2018-06-25 | 1 | -2/+2 | |
| | | ||||||
* | | Add fast path to _filter_events_for_server | Erik Johnston | 2018-06-25 | 1 | -1/+34 | |
| | | | | | | | | | | | | Most rooms have a trivial history visibility like "shared" or "world_readable", especially large rooms, so lets not bother getting the full membership of those rooms in that case. | |||||
* | | Revert "Revert "Merge pull request #3431 from ↵ | Erik Johnston | 2018-06-25 | 1 | -0/+13 | |
| | | | | | | | | | | | | matrix-org/rav/erasure_visibility"" This reverts commit 1d009013b3c3e814177afc59f066e02a202b21cd. | |||||
* | | Revert "Merge pull request #3431 from matrix-org/rav/erasure_visibility" | Richard van der Hoff | 2018-06-22 | 1 | -13/+0 | |
| | | | | | | | | | | This reverts commit ce0d911156b355c5bf452120bfb08653dad96497, reversing changes made to b4a5d767a94f1680d07edfd583aae54ce422573e. | |||||
* | | Merge pull request #3431 from matrix-org/rav/erasure_visibility | Erik Johnston | 2018-06-22 | 1 | -0/+13 | |
|\ \ | | | | | | | Support hiding events from deleted users | |||||
| * | | Filter out erased messages | Richard van der Hoff | 2018-06-12 | 1 | -0/+13 | |
| | | | | | | | | | | | | Redact any messges sent by erased users. | |||||
* | | | Merge pull request #3428 from matrix-org/erikj/persisted_pdu | Erik Johnston | 2018-06-22 | 1 | -18/+26 | |
|\| | | | | | | | | Simplify get_persisted_pdu | |||||
| * | | simplify get_persisted_pdu | Richard van der Hoff | 2018-06-12 | 1 | -18/+26 | |
| | | | | | | | | | | | | | | | it doesn't make much sense to use get_persisted_pdu on the receive path: just get the event straight from the store. | |||||
* | | | Remove run_on_reactor (#3395) | Amber Brown | 2018-06-14 | 1 | -5/+1 | |
|/ / | ||||||
* / | Fix event filtering in get_missing_events handler | Richard van der Hoff | 2018-06-08 | 1 | -0/+4 | |
|/ | ||||||
* | Consistently use six's iteritems and wrap lazy keys/values in list() if ↵ | Amber Brown | 2018-05-31 | 1 | -9/+8 | |
| | | | | they're not meant to be lazy (#3307) | |||||
* | Misc. py3 fixes | Adrian Tschira | 2018-05-24 | 1 | -4/+5 | |
| | | | | Signed-off-by: Adrian Tschira <nota@notafile.com> | |||||
* | Merge pull request #3261 from matrix-org/erikj/pagination_fixes | Erik Johnston | 2018-05-24 | 1 | -9/+22 | |
|\ | | | | | Fix federation backfill bugs | |||||
| * | Use iter* methods | Erik Johnston | 2018-05-22 | 1 | -7/+7 | |
| | | ||||||
| * | Fix that states is a dict of dicts | Erik Johnston | 2018-05-22 | 1 | -1/+4 | |
| | | ||||||
| * | get_domains_from_state returns list of tuples | Erik Johnston | 2018-05-22 | 1 | -2/+12 | |
| | | ||||||
* | | s/values/itervalues/ | Erik Johnston | 2018-05-23 | 1 | -1/+1 | |
| | | ||||||
* | | Use iter* methods for _filter_events_for_server | Erik Johnston | 2018-05-23 | 1 | -4/+4 | |
|/ | ||||||
* | Make sure we reject attempts to invite the notices user | Richard van der Hoff | 2018-05-18 | 1 | -0/+8 | |
| | ||||||
* | Merge pull request #3153 from NotAFile/py3-httplib | Richard van der Hoff | 2018-04-30 | 1 | -3/+3 | |
|\ | | | | | move httplib import to six | |||||
| * | move httplib import to six | Adrian Tschira | 2018-04-28 | 1 | -3/+3 | |
| | | ||||||
* | | Merge remote-tracking branch 'origin/develop' into rav/use_run_in_background | Richard van der Hoff | 2018-04-27 | 1 | -6/+10 | |
|\| | ||||||
| * | reraise exceptions more carefully | Richard van der Hoff | 2018-04-27 | 1 | -6/+10 | |
| | | | | | | | | | | | | | | We need to be careful (under python 2, at least) that when we reraise an exception after doing some error handling, we actually reraise the original exception rather than anything that might have been raised (and handled) during the error handling. | |||||
* | | Use run_in_background in preference to preserve_fn | Richard van der Hoff | 2018-04-27 | 1 | -6/+10 | |
|/ | | | | | | While I was going through uses of preserve_fn for other PRs, I converted places which only use the wrapped function once to use run_in_background, to avoid creating the function object. | |||||
* | Merge pull request #3118 from matrix-org/rav/reject_prev_events | Richard van der Hoff | 2018-04-23 | 1 | -7/+71 | |
|\ | | | | | Reject events which have lots of prev_events | |||||
| * | Remove spurious param | Richard van der Hoff | 2018-04-23 | 1 | -1/+0 | |
| | | ||||||
| * | accept stupid events over backfill | Richard van der Hoff | 2018-04-20 | 1 | -4/+9 | |
| | | ||||||
| * | Add some comments | Richard van der Hoff | 2018-04-18 | 1 | -3/+12 | |
| | | ||||||
| * | Check events on backfill too | Richard van der Hoff | 2018-04-18 | 1 | -15/+42 | |
| | | ||||||
| * | Reject events which have too many auth_events or prev_events | Richard van der Hoff | 2018-04-18 | 1 | -4/+28 | |
| | | | | | | | | | | ... this should protect us from being dossed by people making silly events (deliberately or otherwise) | |||||
* | | Refactor store.have_events | Richard van der Hoff | 2018-04-20 | 1 | -19/+12 | |
|/ | | | | | | It turns out that most of the time we were calling have_events, we were only using half of the result. Replace have_events with have_seen_events and get_rejection_reasons, so that we can see what's going on a bit more clearly. | |||||
* | s/replication_client/federation_client/ | Erik Johnston | 2018-03-13 | 1 | -1/+1 | |
| | ||||||
* | Split replication layer into two | Erik Johnston | 2018-03-13 | 1 | -3/+1 | |
| | ||||||
* | Move RoomMemberHandler out of Handlers | Erik Johnston | 2018-03-01 | 1 | -2/+2 | |
| | ||||||
* | Delete from push_actions_staging in federation too | Erik Johnston | 2018-02-20 | 1 | -9/+17 | |
| | ||||||
* | Merge pull request #2847 from matrix-org/erikj/separate_event_creation | Erik Johnston | 2018-02-06 | 1 | -10/+9 | |
|\ | | | | | Split event creation into a separate handler | |||||
| * | Update copyright | Erik Johnston | 2018-02-06 | 1 | -0/+1 | |
| | | ||||||
| * | s/_create_new_client_event/create_new_client_event/ | Erik Johnston | 2018-02-06 | 1 | -5/+5 | |
| | | ||||||
| * | Update places where we create events | Erik Johnston | 2018-02-05 | 1 | -10/+8 | |
| | | ||||||
* | | Store state groups separately from events (#2784) | Erik Johnston | 2018-02-06 | 1 | -7/+17 | |
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Split state group persist into seperate storage func * Add per database engine code for state group id gen * Move store_state_group to StateReadStore This allows other workers to use it, and so resolve state. * Hook up store_state_group * Fix tests * Rename _store_mult_state_groups_txn * Rename StateGroupReadStore * Remove redundant _have_persisted_state_group_txn * Update comments * Comment compute_event_context * Set start val for state_group_id_seq ... otherwise we try to recreate old state groups * Update comments * Don't store state for outliers * Update comment * Update docstring as state groups are ints | |||||
* | Rename resolve_state_groups -> resolve_state_groups_for_events | Richard van der Hoff | 2018-02-01 | 1 | -6/+5 | |
| | | | | (to make way for a method that actually just does the state group resolution) | |||||
* | Add federation_domain_whitelist option (#2820) | Matthew Hodgson | 2018-01-22 | 1 | -0/+4 | |
| | | | | | | Add federation_domain_whitelist gives a way to restrict which domains your HS is allowed to federate with. useful mainly for gracefully preventing a private but internet-connected HS from trying to federate to the wider public Matrix network | |||||
* | s/items/iteritems/ | Richard van der Hoff | 2017-11-08 | 1 | -2/+2 | |
| | ||||||
* | Update deltas when doing auth resolution | Richard van der Hoff | 2017-11-07 | 1 | -3/+7 | |
| | | | | | Fixes a bug where the persisted state groups were different to those actually being used after auth resolution. | |||||
* | factor out _update_context_for_auth_events | Richard van der Hoff | 2017-11-07 | 1 | -20/+42 | |
| | | | | This is duplicated, so let's factor it out before fixing it | |||||
* | replace 'except:' with 'except Exception:' | Richard van der Hoff | 2017-10-23 | 1 | -8/+8 | |
| | | | | what could possibly go wrong | |||||
* | Merge pull request #2490 from matrix-org/erikj/drop_left_room_events | Erik Johnston | 2017-10-10 | 1 | -0/+22 | |
|\ | | | | | Ignore incoming events for rooms that we have left | |||||
| * | Update comments | Erik Johnston | 2017-10-03 | 1 | -1/+1 | |
| | | ||||||
| * | Remove spurious line feed | Erik Johnston | 2017-10-03 | 1 | -1/+0 | |
| | | ||||||
| * | Ignore incoming events for rooms that we have left | Erik Johnston | 2017-10-03 | 1 | -0/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When synapse receives an event for a room its not in over federation, it double checks with the remote server to see if it is in fact in the room. This is done so that if the server has forgotten about the room (usually as a result of the database being dropped) it can recover from it. However, in the presence of state resets in large rooms, this can cause a lot of work for servers that have legitimately left. As a hacky solution that supports both cases we drop incoming events for rooms that we have explicitly left. This means that we no longer support the case of servers having forgotten that they've rejoined a room, but that is sufficiently rare that we're not going to support it for now. | |||||
* | | Fix up deferred handling in federation.py | Richard van der Hoff | 2017-10-06 | 1 | -24/+21 | |
| | | | | | | | | | | | | | | * Avoid preserve_context_over_deferred, which is broken * set consumeErrors=True on defer.gatherResults, to avoid spurious "unhandled failure" erros | |||||
* | | Spam checking: add the invitee to user_may_invite | David Baker | 2017-10-05 | 1 | -5/+7 | |
| | | ||||||
* | | pass room id too | David Baker | 2017-10-03 | 1 | -1/+1 | |
| | | ||||||
* | | Fix param name & lint | David Baker | 2017-10-03 | 1 | -2/+4 | |
| | | ||||||
* | | Allow spam checker to reject invites too | David Baker | 2017-10-03 | 1 | -0/+4 | |
|/ | ||||||
* | Add a config option to block all room invites (#2457) | Richard van der Hoff | 2017-09-19 | 1 | -0/+3 | |
| | | | | | - allows sysadmins the ability to lock down their servers so that people can't send their users room invites. | |||||
* | add some comments to on_exchange_third_party_invite_request | Richard van der Hoff | 2017-09-19 | 1 | -0/+11 | |
| | ||||||
* | Fix overzealous kicking of guest users (#2453) | Richard van der Hoff | 2017-09-19 | 1 | -1/+1 | |
| | | | We should only kick guest users if the guest access event is authorised. | |||||
* | Don't compute push actions for backfilled events | Erik Johnston | 2017-07-11 | 1 | -1/+1 | |
| | ||||||
* | Fix bug where pusherpool didn't start and broke some rooms | Erik Johnston | 2017-07-06 | 1 | -1/+2 | |
| | | | | | | | | Since we didn't instansiate the PusherPool at start time it could fail at run time, which it did for some users. This may or may not fix things for those users, but it should happen at start time and stop the server from starting. | |||||
* | Improve the error handling for bad invites received over federation | Mark Haines | 2017-06-30 | 1 | -2/+17 | |
| | ||||||
* | Add shutdown room API | Erik Johnston | 2017-06-19 | 1 | -0/+4 | |
| | ||||||
* | Comment | Erik Johnston | 2017-06-09 | 1 | -0/+2 | |
| | ||||||
* | Mark remote invite rejections as outliers | Erik Johnston | 2017-06-09 | 1 | -0/+1 | |
| | ||||||
* | Only store event_auth for state events | Erik Johnston | 2017-05-24 | 1 | -6/+14 | |
| | ||||||
* | Store ActionGenerator in HomeServer | Erik Johnston | 2017-05-19 | 1 | -3/+2 | |
| | ||||||
* | Remove redundant reset of destination timers | Erik Johnston | 2017-05-05 | 1 | -7/+0 | |
| | ||||||
* | Merge together redundant calculations/logging | Erik Johnston | 2017-05-03 | 1 | -9/+2 | |
| | ||||||
* | Fixup | Erik Johnston | 2017-04-28 | 1 | -10/+4 | |
| | ||||||
* | Remove unncessary call in _get_missing_events_for_pdu | Erik Johnston | 2017-04-28 | 1 | -13/+11 | |
| | ||||||
* | Don't fetch state for missing events that we fetched | Erik Johnston | 2017-04-28 | 1 | -0/+6 | |
| | ||||||
* | Typo | Erik Johnston | 2017-04-27 | 1 | -1/+1 | |
| | ||||||
* | Add some extra logging for edge cases of federation | Erik Johnston | 2017-04-27 | 1 | -2/+22 | |
| | ||||||
* | Remove redundant try/except clauses | Richard van der Hoff | 2017-04-21 | 1 | -23/+11 | |
| | | | | | | | | | | The `except SynapseError` clauses were pointless because the wrapped functions would never throw a `SynapseError` (they either throw a `CodeMessageException` or a `RuntimeError`). The `except CodeMessageException` is now also pointless because the caller treats all exceptions equally, so we may as well just throw the `CodeMessageException`. | |||||
* | Merge branch 'master' of github.com:matrix-org/synapse into develop | Erik Johnston | 2017-04-11 | 1 | -4/+4 | |
|\ | ||||||
| * | When we do an invite rejection, save the signed leave event to the db | Richard van der Hoff | 2017-04-07 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | | | | | During a rejection of an invite received over federation, we ask a remote server to make us a `leave` event, then sign it, then send that with `send_leave`. We were saving the *unsigned* version of the event (which has a different event id to the signed version) to our db (and sending it to the clients), whereas other servers in the room will have seen the *signed* version. We're not aware of any actual problems that caused, except that it makes the database confusing to look at and generally leaves the room in a weird state. | |||||
* | | Merge pull request #2095 from matrix-org/rav/cull_log_preserves | Richard van der Hoff | 2017-04-03 | 1 | -24/+19 | |
|\ \ | |/ |/| | Cull spurious PreserveLoggingContexts | |||||
| * | Remove more spurious `PreserveLoggingContext`s | Richard van der Hoff | 2017-04-03 | 1 | -24/+19 | |
| | | | | | | | | | | Remove `PreserveLoggingContext` around calls to `Notifier.on_new_room_event`; there is no problem if the logcontext is set when calling it. | |||||
* | | Accept join events from all servers | Richard van der Hoff | 2017-04-03 | 1 | -3/+13 | |
|/ | | | | | | | Make sure that we accept join events from any server, rather than just the origin server, to make the federation join dance work correctly. (Fixes #1893). | |||||
* | Merge pull request #2027 from matrix-org/rav/logcontext_leaks | Richard van der Hoff | 2017-03-20 | 1 | -2/+3 | |
|\ | | | | | A few fixes to logcontext things | |||||
| * | Stop preserve_fn leaking context into the reactor | Richard van der Hoff | 2017-03-18 | 1 | -2/+3 | |
| | | | | | | | | | | | | | | | | Fix a bug in ``logcontext.preserve_fn`` which made it leak context into the reactor, and add a test for it. Also, get rid of ``logcontext.reset_context_after_deferred``, which tried to do the same thing but had its own, different, set of bugs. | |||||
* | | Refactoring and cleanups | Richard van der Hoff | 2017-03-17 | 1 | -0/+10 | |
|/ | | | | | | | | | | | | A few non-functional changes: * A bunch of docstrings to document types * Split `EventsStore._persist_events_txn` up a bit. Hopefully it's a bit more readable. * Rephrase `EventFederationStore._update_min_depth_for_room_txn` to avoid mind-bending conditional. * Rephrase rejected/outlier conditional in `_update_outliers_txn` to avoid mind-bending conditional. | |||||
* | Queue up federation PDUs while a room join is in progress | Richard van der Hoff | 2017-03-15 | 1 | -24/+44 | |
| | | | | | | | This just takes the existing `room_queues` logic and moves it out to `on_receive_pdu` instead of `_process_received_pdu`, which ensures that we don't start trying to fetch prev_events and whathaveyou until the join has completed. | |||||
* | Move FederationServer._handle_new_pdu to FederationHandler | Richard van der Hoff | 2017-03-09 | 1 | -5/+197 | |
| | | | | | | | | | | | Unfortunately this significantly increases the size of the already-rather-big FederationHandler, but the code fits more naturally here, and it paves the way for the tighter integration that I need between handling incoming PDUs and doing the join dance. Other than renaming the existing `FederationHandler.on_receive_pdu` to `_process_received_pdu` to make way for it, this just consists of the move, and replacing `self.handler` with `self` and `self` with `self.replication_layer`. | |||||
* | Pop with default value to stop throwing | Erik Johnston | 2017-02-28 | 1 | -1/+1 | |
| | ||||||
* | Pop rather than del from dict | Erik Johnston | 2017-02-27 | 1 | -1/+1 | |
| | ||||||
* | Derive current_state_events from state groups | Erik Johnston | 2017-01-20 | 1 | -1/+0 | |
| | ||||||
* | Merge pull request #1822 from matrix-org/erikj/statE_logging | Erik Johnston | 2017-01-18 | 1 | -1/+1 | |
|\ | | | | | Change resolve_state_groups call site logging to DEBUG | |||||
| * | Change resolve_state_groups call site logging to DEBUG | Erik Johnston | 2017-01-17 | 1 | -1/+1 | |
| | | ||||||
* | | Fix couple of federation state bugs | Erik Johnston | 2017-01-17 | 1 | -1/+1 | |
| | | ||||||
* | | Optimise state resolution | Erik Johnston | 2017-01-17 | 1 | -1/+1 | |
|/ | ||||||
* | Fix case | Matthew Hodgson | 2017-01-05 | 1 | -1/+1 | |
| | ||||||
* | add logging for all the places we call resolve_state_groups. my kingdom for ↵ | Matthew Hodgson | 2017-01-05 | 1 | -0/+1 | |
| | | | | a backtrace that actually works. | |||||
* | Only send events that originate on this server. | Mark Haines | 2017-01-05 | 1 | -0/+4 | |
| | | | | | | Or events that are sent via the federation "send_join" API. This should match the behaviour from before v0.18.5 and #1635 landed. | |||||
* | Comment | Erik Johnston | 2016-12-14 | 1 | -0/+2 | |
| | ||||||
* | Fix /backfill returning events it shouldn't | Erik Johnston | 2016-12-14 | 1 | -2/+3 | |
| | ||||||
* | Shuffle receipt handler around so that worker apps don't need to load it | Erik Johnston | 2016-11-23 | 1 | -1/+0 | |
| | ||||||
* | Remove explicit calls to send_pdu | Erik Johnston | 2016-11-21 | 1 | -53/+0 | |
| | ||||||
* | Use new federation_sender DI | Erik Johnston | 2016-11-16 | 1 | -3/+4 | |
| | ||||||
* | Add comments | Erik Johnston | 2016-09-22 | 1 | -0/+3 | |
| | ||||||
* | Allow invites via 3pid to bypass sender sig check | Erik Johnston | 2016-09-22 | 1 | -6/+6 | |
| | | | | | | | | | | | | | | When a server sends a third party invite another server may be the one that the inviting user registers with. In this case it is that remote server that will issue an actual invitation, and wants to do it "in the name of" the original invitee. However, the new proper invite will not be signed by the original server, and thus other servers would reject the invite if it was seen as coming from the original user. To fix this, a special case has been added to the auth rules whereby another server can send an invite "in the name of" another server's user, so long as that user had previously issued a third party invite that is now being accepted. | |||||
* | Ensure we don't mutate state cache entries | Erik Johnston | 2016-09-14 | 1 | -0/+4 | |
| | ||||||
* | Use get_joined_users_from_context instead of manually looking up hosts | Erik Johnston | 2016-09-05 | 1 | -8/+11 | |
| | ||||||
* | Merge pull request #1064 from matrix-org/erikj/on_receive_check | Erik Johnston | 2016-09-02 | 1 | -6/+18 | |
|\ | | | | | Only check if host is in room if we have state and auth_chain | |||||
| * | Comment on when auth chain and state are None | Erik Johnston | 2016-09-02 | 1 | -0/+3 | |
| | | ||||||
| * | Comment | Erik Johnston | 2016-09-02 | 1 | -0/+3 | |
| | | ||||||
| * | Only check if host is in room if we have state and auth_chain | Erik Johnston | 2016-09-02 | 1 | -6/+12 | |
| | | ||||||
* | | Docstrings | Erik Johnston | 2016-09-02 | 1 | -0/+4 | |
| | | ||||||
* | | Only pull out IDs from DB for /state_ids/ request | Erik Johnston | 2016-09-02 | 1 | -0/+26 | |
|/ | ||||||
* | Correctly handle the difference between prev and current state | Erik Johnston | 2016-08-31 | 1 | -9/+22 | |
| | ||||||
* | Measure _filter_events_for_server | Erik Johnston | 2016-08-26 | 1 | -0/+2 | |
| | ||||||
* | Don't pull out full state for _filter_events_for_server | Erik Johnston | 2016-08-26 | 1 | -1/+25 | |
| | ||||||
* | Merge branch 'develop' of github.com:matrix-org/synapse into erikj/state_ids | Erik Johnston | 2016-08-26 | 1 | -1/+3 | |
|\ | ||||||
| * | Fix None check in backfill | Erik Johnston | 2016-08-25 | 1 | -1/+3 | |
| | | ||||||
* | | Replace context.current_state with context.current_state_ids | Erik Johnston | 2016-08-25 | 1 | -48/+64 | |
| | | ||||||
* | | Pull out event ids rather than full events for state | Erik Johnston | 2016-08-25 | 1 | -0/+12 | |
|/ | ||||||
* | Merge branch 'develop' of github.com:matrix-org/synapse into ↵ | Erik Johnston | 2016-08-24 | 1 | -2/+2 | |
|\ | | | | | | | erikj/preserve_log_contexts | |||||
| * | Add None checks to backfill | Erik Johnston | 2016-08-24 | 1 | -2/+2 | |
| | | ||||||
* | | Preserve some logcontexts | Erik Johnston | 2016-08-24 | 1 | -13/+15 | |
|/ | ||||||
* | Limit number of extremeties in backfill request | Erik Johnston | 2016-08-16 | 1 | -4/+5 | |
| | | | | | This works around a bug where if we make a backfill request with too many extremeties it causes the request URI to be too long. | |||||
* | Also check if server is in the room | Erik Johnston | 2016-08-10 | 1 | -2/+7 | |
| | ||||||
* | Correctly auth /event/ requests | Erik Johnston | 2016-08-10 | 1 | -5/+6 | |
| | ||||||
* | Only resign our own events | Erik Johnston | 2016-08-10 | 1 | -9/+10 | |
| | ||||||
* | Fix backfill auth events | Erik Johnston | 2016-08-05 | 1 | -21/+50 | |
| | ||||||
* | Merge pull request #940 from matrix-org/erikj/fed_state_cache | Erik Johnston | 2016-08-02 | 1 | -6/+1 | |
|\ | | | | | Cache federation state responses | |||||
| * | Cache federation state responses | Erik Johnston | 2016-07-21 | 1 | -6/+1 | |
| | | ||||||
* | | Mention that func will fetch auth events | Erik Johnston | 2016-07-29 | 1 | -0/+2 | |
| | | ||||||
* | | Update docstring | Erik Johnston | 2016-07-29 | 1 | -0/+6 | |
| | | ||||||
* | | Handle the case of missing auth events when joining a room | Erik Johnston | 2016-07-28 | 1 | -4/+23 | |
|/ | ||||||
* | Don't notify pusher pool for backfilled events | Erik Johnston | 2016-07-20 | 1 | -5/+6 | |
| | ||||||
* | Comment | Erik Johnston | 2016-07-15 | 1 | -0/+4 | |
| | ||||||
* | Check sender signed event | Erik Johnston | 2016-07-14 | 1 | -2/+2 | |
| | ||||||
* | Add purge_history API | Erik Johnston | 2016-07-05 | 1 | -1/+1 | |
| | ||||||
* | Only re-sign our own events | Erik Johnston | 2016-06-17 | 1 | -6/+9 | |
| | ||||||
* | Correctly mark backfilled events as backfilled | Erik Johnston | 2016-06-15 | 1 | -14/+16 | |
| | ||||||
* | Remove dead code. | Mark Haines | 2016-06-07 | 1 | -13/+0 | |
| | | | | | | | | | | | Loading push rules now happens in the datastore, so we can remove the methods that loaded them outside the datastore. The ``waiting_for_join_list`` in federation handler is populated by anything, so can be removed. The ``_get_members_events_txn`` method isn't called from anywhere so can be removed. | |||||
* | Spell "domain" correctly | Mark Haines | 2016-05-16 | 1 | -4/+4 | |
| | | | | s/domian/domain/g | |||||
* | missed a spot | Mark Haines | 2016-05-12 | 1 | -1/+1 | |
| | ||||||
* | Move _create_new_client_event and handle_new_client_event out of base handler | Mark Haines | 2016-05-11 | 1 | -5/+12 | |
| | ||||||
* | Add and use get_domian_from_id | Erik Johnston | 2016-05-09 | 1 | -8/+4 | |
| | ||||||
* | Don't auto log failed auth checks | Erik Johnston | 2016-04-13 | 1 | -8/+26 | |
| | ||||||
* | More comments | Erik Johnston | 2016-04-12 | 1 | -0/+9 | |
| | ||||||
* | More comments | Erik Johnston | 2016-04-12 | 1 | -0/+6 | |
| | ||||||
* | Don't append to unused list | Erik Johnston | 2016-04-12 | 1 | -4/+0 | |
| | ||||||
* | Add back backfilled parameter that was removed | Erik Johnston | 2016-04-12 | 1 | -1/+3 | |
| | ||||||
* | Add comment | Erik Johnston | 2016-04-12 | 1 | -0/+1 | |
| | ||||||
* | Check if we've already backfilled events | Erik Johnston | 2016-04-12 | 1 | -7/+20 | |
| | ||||||
* | Merge pull request #705 from matrix-org/dbkr/pushers_use_event_actions | David Baker | 2016-04-11 | 1 | -1/+7 | |
|\ | | | | | Change pushers to use the event_actions table | |||||
| * | Merge remote-tracking branch 'origin/develop' into ↵ | David Baker | 2016-04-07 | 1 | -1/+4 | |
| |\ | | | | | | | | | | dbkr/pushers_use_event_actions | |||||
| * | | Make pushers use the event_push_actions table instead of listening on an ↵ | David Baker | 2016-04-06 | 1 | -1/+7 | |
| | | | | | | | | | | | | | | | | | | | | | event stream & running the rules again. Sytest passes, but remaining to do: * Make badges work again * Remove old, unused code | |||||
* | | | Move all the wrapper functions for distributor.fire | Mark Haines | 2016-04-08 | 1 | -4/+1 | |
| |/ |/| | | | | | | | | | | | Move the functions inside the distributor and import them where needed. This reduces duplication and makes it possible for flake8 to detect when the functions aren't used in a given file. | |||||
* | | Merge pull request #693 from matrix-org/erikj/backfill_self | Erik Johnston | 2016-04-05 | 1 | -1/+4 | |
|\ \ | |/ |/| | Don't backfill from self | |||||
| * | Don't backfill from self | Erik Johnston | 2016-04-05 | 1 | -1/+4 | |
| | | ||||||
* | | Merge pull request #691 from matrix-org/erikj/member | Erik Johnston | 2016-04-05 | 1 | -11/+23 | |
|\ \ | | | | | | | Fix stuck invites | |||||
| * | | Fix stuck invites | Erik Johnston | 2016-04-05 | 1 | -11/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | If rejecting a remote invite fails with an error response don't fail the entire request; instead mark the invite as locally rejected. This fixes the bug where users can get stuck invites which they can neither accept nor reject. | |||||
* | | | Merge pull request #686 from matrix-org/markjh/doc_strings | Mark Haines | 2016-04-01 | 1 | -10/+13 | |
|\ \ \ | |/ / |/| | | Use google style doc strings. | |||||
| * | | Use google style doc strings. | Mark Haines | 2016-04-01 | 1 | -10/+13 | |
| | | | | | | | | | | | | | | | | | | | | | pycharm supports them so there is no need to use the other format. Might as well convert the existing strings to reduce the risk of people accidentally cargo culting the wrong doc string format. | |||||
* | | | Remove outlier parameter from compute_event_context | Mark Haines | 2016-03-31 | 1 | -7/+4 | |
|/ / | | | | | | | Use event.internal_metadata.is_outlier instead. | |||||
* / | Remove the is_new_state argument to persist event. | Mark Haines | 2016-03-31 | 1 | -16/+4 | |
|/ | | | | | | | | | Move the checks for whether an event is new state inside persist event itself. This was harder than expected because there wasn't enough information passed to persist event to correctly handle invites from remote servers for new rooms. | |||||
* | Remove unused backfilled parameter from persist_event | Mark Haines | 2016-03-21 | 1 | -23/+15 | |
| | ||||||
* | remove unused current_state variable from on_receive_pdu | Mark Haines | 2016-03-21 | 1 | -2/+0 | |
| | ||||||
* | Remove needless PreserveLoggingContext | Erik Johnston | 2016-03-15 | 1 | -5/+4 | |
| | ||||||
* | Persist rejection of invites over federation | Erik Johnston | 2016-03-15 | 1 | -1/+17 | |
| | ||||||
* | Use syntax that works on both py2.7 and py3 | Mark Haines | 2016-03-07 | 1 | -1/+1 | |
| | ||||||
* | Pass whole requester to ratelimiting | Daniel Wagner-Hall | 2016-03-03 | 1 | -2/+2 | |
| | | | | This will enable more detailed decisions | |||||
* | Allow third_party_signed to be specified on /join | Daniel Wagner-Hall | 2016-02-23 | 1 | -21/+72 | |
| | ||||||
* | Branch off member and non member sends | Daniel Wagner-Hall | 2016-02-15 | 1 | -2/+2 | |
| | | | | Unclean, needs tidy-up, but works | |||||
* | Atomically persit push actions when we persist the event | Erik Johnston | 2016-02-09 | 1 | -6/+6 | |
| | ||||||
* | Fix up logcontexts | Erik Johnston | 2016-02-08 | 1 | -45/+5 | |
| | ||||||
* | Federation: drop events which cause SynapseErrors | Richard van der Hoff | 2016-01-27 | 1 | -1/+7 | |
| | | | | | ... rather than rejecting any attempt to federate channels which contain such events. | |||||
* | Add regex cache. Only caculate push actions for users that have sent read ↵ | Erik Johnston | 2016-01-19 | 1 | -1/+1 | |
| | | | | receipts, and are on that server | |||||
* | Re-enable urnead notifications | Erik Johnston | 2016-01-18 | 1 | -7/+6 | |
| | ||||||
* | Require unbanning before other membership changes | Daniel Wagner-Hall | 2016-01-15 | 1 | -2/+2 | |
| | ||||||
* | Temporarily disable notification branch | Erik Johnston | 2016-01-13 | 1 | -6/+7 | |
| | ||||||
* | Merge pull request #456 from matrix-org/store_event_actions | David Baker | 2016-01-08 | 1 | -0/+8 | |
|\ | | | | | Send unread notification counts | |||||
| * | Add is_guest flag to users db to track whether a user is a guest user or ↵ | David Baker | 2016-01-06 | 1 | -3/+3 | |
| | | | | | | | | not. Use this so we can run _filter_events_for_client when calculating event_push_actions. | |||||
| * | Address minor PR issues | David Baker | 2016-01-04 | 1 | -2/+2 | |
| | | ||||||
| * | Merge remote-tracking branch 'origin/develop' into store_event_actions | David Baker | 2015-12-21 | 1 | -7/+48 | |
| |\ | ||||||
| * | | Only run pushers for users on this hs! | David Baker | 2015-12-21 | 1 | -1/+1 | |
| | | | ||||||
| * | | Having consulted The Erikle, this should go at the end of on_receive_pdu, ↵ | David Baker | 2015-12-10 | 1 | -11/+6 | |
| | | | | | | | | | | | | otherwise it will be triggered whenever we backfill too. | |||||
| * | | Very first cut of calculating actions for events as they come in. Doesn't ↵ | David Baker | 2015-12-10 | 1 | -1/+14 | |
| | | | | | | | | | | | | store them yet. Not very efficient. | |||||
* | | | copyrights | Matthew Hodgson | 2016-01-07 | 1 | -1/+1 | |
| |/ |/| | ||||||
* | | Add display_name to 3pid invite in m.room.member invites | Daniel Wagner-Hall | 2015-12-17 | 1 | -1/+31 | |
| | | ||||||
* | | Strip address and such out of 3pid invites | Daniel Wagner-Hall | 2015-12-17 | 1 | -1/+12 | |
| | | | | | | | | We're not meant to leak that into the graph | |||||
* | | Ensure that the event that gets persisted is the one that was signed | Paul "LeoNerd" Evans | 2015-12-10 | 1 | -6/+6 | |
|/ | ||||||
* | Use the context returned by _handle_new_event | Mark Haines | 2015-12-02 | 1 | -4/+1 | |
| | ||||||
* | Add comments | Mark Haines | 2015-12-02 | 1 | -0/+3 | |
| | ||||||
* | Merge branch 'develop' into markjh/edu_frequency | Mark Haines | 2015-12-02 | 1 | -11/+8 | |
|\ | | | | | | | | | | | Conflicts: synapse/handlers/federation.py synapse/handlers/room.py | |||||
| * | Wrap calls to distributor.fire in appropriately named functions so that ↵ | Mark Haines | 2015-12-01 | 1 | -11/+8 | |
| | | | | | | | | static analysis can work out want is calling what | |||||
* | | Only fire user_joined_room if the membership has changed | Mark Haines | 2015-12-01 | 1 | -3/+8 | |
|/ | ||||||
* | Fix missing profile data in federation joins | Erik Johnston | 2015-11-12 | 1 | -4/+7 | |
| | | | | | There was a regression where we stopped including profile data in initial joins for rooms joined over federation. | |||||
* | Allow guest users to join and message rooms | Daniel Wagner-Hall | 2015-11-10 | 1 | -5/+5 | |
| | ||||||
* | Exchange 3pid invites for m.room.member invites | Daniel Wagner-Hall | 2015-11-05 | 1 | -18/+81 | |
| | ||||||
* | Remove the LockManager class because it wasn't being used | Mark Haines | 2015-11-04 | 1 | -2/+0 | |
| | ||||||
* | Allow rejecting invites | Daniel Wagner-Hall | 2015-10-20 | 1 | -41/+168 | |
| | | | | | This is done by using the same /leave flow as you would use if you had already accepted the invite and wanted to leave. | |||||
* | Merge branch 'develop' into daniel/3pidinvites | Daniel Wagner-Hall | 2015-10-15 | 1 | -1/+1 | |
|\ | ||||||
| * | Remove unused room_id arg | Erik Johnston | 2015-10-14 | 1 | -1/+1 | |
| | | ||||||
* | | Remove unnecessary class-wrapping | Daniel Wagner-Hall | 2015-10-13 | 1 | -6/+7 | |
| | | ||||||
* | | Re-add accidentally removed code | Daniel Wagner-Hall | 2015-10-13 | 1 | -1/+1 | |
| | | ||||||
* | | Move event contents into third_party_layout field | Daniel Wagner-Hall | 2015-10-13 | 1 | -2/+3 | |
| | | ||||||
* | | Revert "Revert "Merge pull request #283 from ↵ | Daniel Wagner-Hall | 2015-10-06 | 1 | -76/+131 | |
| | | | | | | | | | | | | matrix-org/erikj/atomic_join_federation"" This reverts commit 34d26d36874ab0bc7fa4dab0db08bd37ba4936ae. | |||||
* | | Merge branch 'develop' into daniel/3pidinvites | Daniel Wagner-Hall | 2015-10-06 | 1 | -1/+2 | |
|\| | ||||||
| * | Explicitly add Create event as auth event | Erik Johnston | 2015-10-02 | 1 | -2/+3 | |
| | | ||||||
* | | Revert "Merge pull request #283 from matrix-org/erikj/atomic_join_federation" | Daniel Wagner-Hall | 2015-10-05 | 1 | -131/+76 | |
| | | | | | | | | | | This reverts commit 5879edbb097d19c2b5f5e064841909e67d6018fe, reversing changes made to b43930d4c9479973fb7225818e2e51bec022c4e6. | |||||
* | | Merge branch 'develop' into daniel/3pidinvites | Daniel Wagner-Hall | 2015-10-05 | 1 | -76/+131 | |
|\| | ||||||
| * | Merge pull request #283 from matrix-org/erikj/atomic_join_federation | Erik Johnston | 2015-10-02 | 1 | -76/+131 | |
| |\ | | | | | | | Atomically persist events when joining a room over federation/ | |||||
| | * | Comment | Erik Johnston | 2015-09-30 | 1 | -0/+8 | |
| | | | ||||||
| | * | Rename var | Erik Johnston | 2015-09-30 | 1 | -3/+3 | |
| | | | ||||||
| | * | Fix getting an event for a room the server forgot it was in | Erik Johnston | 2015-09-17 | 1 | -47/+59 | |
| | | | ||||||
| | * | Also persist state | Erik Johnston | 2015-09-17 | 1 | -1/+1 | |
| | | | ||||||
| | * | Capture err | Erik Johnston | 2015-09-17 | 1 | -2/+2 | |
| | | | ||||||
| | * | Also handle state | Erik Johnston | 2015-09-17 | 1 | -3/+3 | |
| | | | ||||||
| | * | Don't bail out of joining if we encounter a rejected event | Erik Johnston | 2015-09-17 | 1 | -13/+20 | |
| | | | ||||||
| | * | Refactor do_invite_join | Erik Johnston | 2015-09-17 | 1 | -28/+56 | |
| | | | ||||||
* | | | Implement third party identifier invites | Daniel Wagner-Hall | 2015-10-01 | 1 | -4/+12 | |
|/ / | ||||||
* / | synapse/handlers/federation.py:_handle_auth_events was unused | Mark Haines | 2015-09-23 | 1 | -49/+0 | |
|/ | ||||||
* | Add missing param in store.get_state_groups invocation | Erik Johnston | 2015-08-21 | 1 | -1/+1 | |
| | ||||||
* | Remove pointless map | Erik Johnston | 2015-08-13 | 1 | -7/+3 | |
| | ||||||
* | Fix application of ACLs | Erik Johnston | 2015-08-11 | 1 | -6/+5 | |
| |