Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Treat "\u0000" as "\u0020" for the purposes of message search (message indexing) #10820

Merged
merged 27 commits into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
177ca9a
add test to check if null code points are being inserted
H-Shay Sep 13, 2021
7ae5ccf
add logic to detect and replace null code points before insertion int…
H-Shay Sep 13, 2021
c86d8b5
lints
H-Shay Sep 13, 2021
f681896
add license to test
H-Shay Sep 14, 2021
534f141
change approach to null substitution
H-Shay Sep 14, 2021
4574d66
add type hint for SearchEntry
H-Shay Sep 14, 2021
fb1f9a0
Merge branch 'develop' into test_homeserver
H-Shay Sep 14, 2021
0628de7
Add changelog entry
H-Shay Sep 14, 2021
b0b5792
updated changelog
H-Shay Sep 14, 2021
49fc935
update chanelog message
H-Shay Sep 14, 2021
8de418a
remove duplicate changelog
H-Shay Sep 14, 2021
b2c7c88
Update synapse/storage/databases/main/events.py remove extra space
H-Shay Sep 14, 2021
163f569
rename and move test file, update tests, delete old test file
H-Shay Sep 16, 2021
0d2c316
fix typo in comments
H-Shay Sep 16, 2021
7e7de36
update _find_highlights_in_postgres to replace null byte with space
H-Shay Sep 16, 2021
584ccd5
replace null byte in sqlite search insertion
H-Shay Sep 17, 2021
e922659
beef up and reorganize test for this pr
H-Shay Sep 17, 2021
1db26b6
Merge branch 'test_homeserver' of https://github.com/H-Shay/synapse i…
H-Shay Sep 17, 2021
baf2250
update changelog
H-Shay Sep 17, 2021
54ca415
add type hints and update docstring
H-Shay Sep 17, 2021
0cad2fe
check db engine directly vs using env variable
H-Shay Sep 17, 2021
c6f6fc2
refactor tests to be less repetetive
H-Shay Sep 20, 2021
3247106
move rplace logic into seperate function
H-Shay Sep 20, 2021
103125f
requested changes
H-Shay Sep 21, 2021
2639029
Fix typo.
clokep Sep 21, 2021
7c1679b
Update synapse/storage/databases/main/search.py
H-Shay Sep 22, 2021
88ad982
Update changelog.d/10820.misc
H-Shay Sep 22, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/10820.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Made a change so that posting an event with "\u0000" no longer causes an internal server error.
clokep marked this conversation as resolved.
Show resolved Hide resolved
6 changes: 3 additions & 3 deletions synapse/storage/databases/main/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import logging
import re
from collections import namedtuple
from typing import Collection, List, Optional, Set
from typing import Collection, Iterable, List, Optional, Set

from synapse.api.errors import SynapseError
from synapse.events import EventBase
Expand All @@ -33,7 +33,7 @@


class SearchWorkerStore(SQLBaseStore):
def store_search_entries_txn(self, txn, entries):
def store_search_entries_txn(self, txn, entries: Iterable[SearchEntry]):
clokep marked this conversation as resolved.
Show resolved Hide resolved
"""Add entries to the search table

Args:
Expand All @@ -55,7 +55,7 @@ def store_search_entries_txn(self, txn, entries):
entry.event_id,
entry.room_id,
entry.key,
entry.value,
entry.value.replace("\u0000", "\u0020"),
clokep marked this conversation as resolved.
Show resolved Hide resolved
entry.stream_ordering,
entry.origin_server_ts,
)
Expand Down
43 changes: 43 additions & 0 deletions tests/test_null_byte_insertion.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Copyright 2021 The Matrix.org Foundation C.I.C.
clokep marked this conversation as resolved.
Show resolved Hide resolved
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


import synapse.rest.admin
from synapse.rest.client import account, login, register, room

from tests.unittest import HomeserverTestCase


class NullByteInsertionTest(HomeserverTestCase):
servlets = [
synapse.rest.admin.register_servlets_for_client_rest_resource,
login.register_servlets,
account.register_servlets,
register.register_servlets,
clokep marked this conversation as resolved.
Show resolved Hide resolved
room.register_servlets,
]

def setUp(self):
super().setUp()

clokep marked this conversation as resolved.
Show resolved Hide resolved
# Note that this test must be run with postgres or else is meaningless,
# as sqlite will accept insertion of null code points
def test_null_byte(self):
clokep marked this conversation as resolved.
Show resolved Hide resolved
self.register_user("alice", "password")
access_token = self.login("alice", "password")
room_id = self.helper.create_room_as("alice", True, "1", access_token)
body = '{"body":"\u0000", "msgtype":"m.text"}'
clokep marked this conversation as resolved.
Show resolved Hide resolved

resp = self.helper.send(room_id, body, "1", access_token)
self.assertTrue("event_id" in resp)
clokep marked this conversation as resolved.
Show resolved Hide resolved