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 23 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 @@
Fix a bug where sending an `m.room.text` event containing a null byte would cause an internal server error.
clokep marked this conversation as resolved.
Show resolved Hide resolved
30 changes: 21 additions & 9 deletions synapse/storage/databases/main/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
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
from synapse.storage._base import SQLBaseStore, db_to_json, make_in_list_sql_clause
from synapse.storage.database import DatabasePool
from synapse.storage.database import DatabasePool, LoggingTransaction
from synapse.storage.databases.main.events_worker import EventRedactBehaviour
from synapse.storage.engines import PostgresEngine, Sqlite3Engine

Expand All @@ -33,13 +33,19 @@


class SearchWorkerStore(SQLBaseStore):
def store_search_entries_txn(self, txn, entries):
def _clean_value_for_search(self, value: str) -> str:
"""Replaces null code points in string as postgres/sql do not
like the insertion of strings with null code points"""
return value.replace("\u0000", " ")
clokep marked this conversation as resolved.
Show resolved Hide resolved

def store_search_entries_txn(
self, txn: LoggingTransaction, entries: Iterable[SearchEntry]
) -> None:
"""Add entries to the search table

Args:
txn (cursor):
entries (iterable[SearchEntry]):
entries to be added to the table
txn:
entries: entries to be added to the table
"""
if not self.hs.config.enable_search:
return
Expand All @@ -55,7 +61,7 @@ def store_search_entries_txn(self, txn, entries):
entry.event_id,
entry.room_id,
entry.key,
entry.value,
self._clean_value_for_search(entry.value),
entry.stream_ordering,
entry.origin_server_ts,
)
Expand All @@ -70,11 +76,16 @@ def store_search_entries_txn(self, txn, entries):
" VALUES (?,?,?,?)"
)
args = (
(entry.event_id, entry.room_id, entry.key, entry.value)
(
entry.event_id,
entry.room_id,
entry.key,
self._clean_value_for_search(entry.value),
)
for entry in entries
)

txn.execute_batch(sql, args)

else:
# This should be unreachable.
raise Exception("Unrecognized database engine")
Expand Down Expand Up @@ -646,6 +657,7 @@ def f(txn):
for key in ("body", "name", "topic"):
v = event.content.get(key, None)
if v:
v = self._clean_value_for_search(v)
values.append(v)

if not values:
Expand Down
74 changes: 74 additions & 0 deletions tests/storage/test_room_search.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Copyright 2021 The Matrix.org Foundation C.I.C.
#
# 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 login, room
from synapse.storage.engines import PostgresEngine

from tests.unittest import HomeserverTestCase


class NullByteInsertionTest(HomeserverTestCase):
servlets = [
synapse.rest.admin.register_servlets_for_client_rest_resource,
login.register_servlets,
room.register_servlets,
]

def test_null_byte(self):
"""
Postgres/SQLite don't like null bytes going into the search tables. Internally
we replace those with a space.
clokep marked this conversation as resolved.
Show resolved Hide resolved

Ensure this doesn't break anything.
"""

# register a user and create a room, create some messages
self.register_user("alice", "password")
access_token = self.login("alice", "password")
room_id = self.helper.create_room_as("alice", True, "1", access_token)
clokep marked this conversation as resolved.
Show resolved Hide resolved

# send messages and ensure they don't cause an internal server
# error
for body in ["hi\u0000bob", "another message", "hi alice"]:
response = self.helper.send(room_id, body, tok=access_token)
self.assertIn("event_id", response)

# check that search still works with the message where the null byte was replaced
clokep marked this conversation as resolved.
Show resolved Hide resolved
store = self.hs.get_datastore()
result = self.get_success(
store.search_msgs([room_id], "hi bob", ["content.body"])
)
self.assertEquals(result.get("count"), 1)
if isinstance(store.database_engine, PostgresEngine):
self.assertIn("hi", result.get("highlights"))
self.assertIn("bob", result.get("highlights"))

# check that search still works with another unrelated message
clokep marked this conversation as resolved.
Show resolved Hide resolved
result = self.get_success(
store.search_msgs([room_id], "another", ["content.body"])
)
self.assertEquals(result.get("count"), 1)
if isinstance(store.database_engine, PostgresEngine):
self.assertIn("another", result.get("highlights"))

# check that search still works when given a search term that overlaps
# with the message that we replaced the null byte in and an unrelated one
clokep marked this conversation as resolved.
Show resolved Hide resolved
result = self.get_success(store.search_msgs([room_id], "hi", ["content.body"]))
self.assertEquals(result.get("count"), 2)
result = self.get_success(
store.search_msgs([room_id], "hi alice", ["content.body"])
)
if isinstance(store.database_engine, PostgresEngine):
self.assertIn("alice", result.get("highlights"))