• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

realm / realm-core / 2515

24 Jul 2024 01:19AM UTC coverage: 91.018% (+0.003%) from 91.015%
2515

push

Evergreen

web-flow
RCORE-2210 Remove unused websocket too new/old errors (#7917)

102670 of 181468 branches covered (56.58%)

1 of 3 new or added lines in 2 files covered. (33.33%)

71 existing lines in 10 files now uncovered.

216363 of 237714 relevant lines covered (91.02%)

5835141.87 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

74.32
/src/realm/sync/noinst/server/server.cpp
1
#include <realm/sync/noinst/server/server.hpp>
2

3
#include <realm/binary_data.hpp>
4
#include <realm/impl/simulated_failure.hpp>
5
#include <realm/object_id.hpp>
6
#include <realm/string_data.hpp>
7
#include <realm/sync/changeset.hpp>
8
#include <realm/sync/trigger.hpp>
9
#include <realm/sync/impl/clamped_hex_dump.hpp>
10
#include <realm/sync/impl/clock.hpp>
11
#include <realm/sync/network/http.hpp>
12
#include <realm/sync/network/network_ssl.hpp>
13
#include <realm/sync/network/websocket.hpp>
14
#include <realm/sync/noinst/client_history_impl.hpp>
15
#include <realm/sync/noinst/protocol_codec.hpp>
16
#include <realm/sync/noinst/server/access_control.hpp>
17
#include <realm/sync/noinst/server/server_dir.hpp>
18
#include <realm/sync/noinst/server/server_file_access_cache.hpp>
19
#include <realm/sync/noinst/server/server_impl_base.hpp>
20
#include <realm/sync/transform.hpp>
21
#include <realm/util/base64.hpp>
22
#include <realm/util/bind_ptr.hpp>
23
#include <realm/util/buffer_stream.hpp>
24
#include <realm/util/circular_buffer.hpp>
25
#include <realm/util/compression.hpp>
26
#include <realm/util/file.hpp>
27
#include <realm/util/json_parser.hpp>
28
#include <realm/util/memory_stream.hpp>
29
#include <realm/util/optional.hpp>
30
#include <realm/util/platform_info.hpp>
31
#include <realm/util/random.hpp>
32
#include <realm/util/safe_int_ops.hpp>
33
#include <realm/util/scope_exit.hpp>
34
#include <realm/util/scratch_allocator.hpp>
35
#include <realm/util/thread.hpp>
36
#include <realm/util/thread_exec_guard.hpp>
37
#include <realm/util/value_reset_guard.hpp>
38
#include <realm/version.hpp>
39

40
#include <algorithm>
41
#include <atomic>
42
#include <cctype>
43
#include <chrono>
44
#include <cmath>
45
#include <condition_variable>
46
#include <cstdint>
47
#include <cstdio>
48
#include <cstring>
49
#include <functional>
50
#include <locale>
51
#include <map>
52
#include <memory>
53
#include <queue>
54
#include <sstream>
55
#include <stdexcept>
56
#include <thread>
57
#include <vector>
58

59
// NOTE: The protocol specification is in `/doc/protocol.md`
60

61

62
// FIXME: Verify that session identifier spoofing cannot be used to get access
63
// to sessions belonging to other network conections in any way.
64
// FIXME: Seems that server must close connection with zero sessions after a
65
// certain timeout.
66

67

68
using namespace realm;
69
using namespace realm::sync;
70
using namespace realm::util;
71

72
// clang-format off
73
using ServerHistory         = _impl::ServerHistory;
74
using ServerProtocol        = _impl::ServerProtocol;
75
using ServerFileAccessCache = _impl::ServerFileAccessCache;
76
using ServerImplBase = _impl::ServerImplBase;
77

78
using IntegratableChangeset = ServerHistory::IntegratableChangeset;
79
using IntegratableChangesetList = ServerHistory::IntegratableChangesetList;
80
using IntegratableChangesets = ServerHistory::IntegratableChangesets;
81
using IntegrationResult = ServerHistory::IntegrationResult;
82
using BootstrapError = ServerHistory::BootstrapError;
83
using ExtendedIntegrationError = ServerHistory::ExtendedIntegrationError;
84
using ClientType = ServerHistory::ClientType;
85
using FileIdentAllocSlot = ServerHistory::FileIdentAllocSlot;
86
using FileIdentAllocSlots = ServerHistory::FileIdentAllocSlots;
87

88
using UploadChangeset = ServerProtocol::UploadChangeset;
89
// clang-format on
90

91

92
using UploadChangesets = std::vector<UploadChangeset>;
93

94
using EventLoopMetricsHandler = network::Service::EventLoopMetricsHandler;
95

96

97
static_assert(std::numeric_limits<session_ident_type>::digits >= 63, "Bad session identifier type");
98
static_assert(std::numeric_limits<file_ident_type>::digits >= 63, "Bad file identifier type");
99
static_assert(std::numeric_limits<version_type>::digits >= 63, "Bad version type");
100
static_assert(std::numeric_limits<timestamp_type>::digits >= 63, "Bad timestamp type");
101

102

103
namespace {
104

105
enum class SchedStatus { done = 0, pending, in_progress };
106

107
// Only used by the Sync Server to support older pbs sync clients (prior to protocol v8)
108
constexpr std::string_view get_old_pbs_websocket_protocol_prefix() noexcept
109
{
×
110
    return "com.mongodb.realm-sync/";
×
111
}
×
112

113
std::string short_token_fmt(const std::string& str, size_t cutoff = 30)
114
{
392✔
115
    if (str.size() > cutoff) {
392✔
116
        return "..." + str.substr(str.size() - cutoff);
×
117
    }
×
118
    else {
392✔
119
        return str;
392✔
120
    }
392✔
121
}
392✔
122

123

124
class HttpListHeaderValueParser {
125
public:
126
    HttpListHeaderValueParser(std::string_view string) noexcept
127
        : m_string{string}
916✔
128
    {
2,036✔
129
    }
2,036✔
130
    bool next(std::string_view& elem) noexcept
131
    {
28,504✔
132
        while (m_pos < m_string.size()) {
28,504✔
133
            size_type i = m_pos;
26,468✔
134
            size_type j = m_string.find(',', i);
26,468✔
135
            if (j != std::string_view::npos) {
26,468✔
136
                m_pos = j + 1;
24,432✔
137
            }
24,432✔
138
            else {
2,036✔
139
                j = m_string.size();
2,036✔
140
                m_pos = j;
2,036✔
141
            }
2,036✔
142

143
            // Exclude leading and trailing white space
144
            while (i < j && is_http_lws(m_string[i]))
50,900✔
145
                ++i;
24,432✔
146
            while (j > i && is_http_lws(m_string[j - 1]))
26,468✔
147
                --j;
×
148

149
            if (i != j) {
26,468✔
150
                elem = m_string.substr(i, j - i);
26,468✔
151
                return true;
26,468✔
152
            }
26,468✔
153
        }
26,468✔
154
        return false;
2,036✔
155
    }
28,504✔
156

157
private:
158
    using size_type = std::string_view::size_type;
159
    const std::string_view m_string;
160
    size_type m_pos = 0;
161
    static bool is_http_lws(char ch) noexcept
162
    {
77,368✔
163
        return (ch == '\t' || ch == '\n' || ch == '\r' || ch == ' ');
77,368✔
164
    }
77,368✔
165
};
166

167

168
using SteadyClock = std::conditional<std::chrono::high_resolution_clock::is_steady,
169
                                     std::chrono::high_resolution_clock, std::chrono::steady_clock>::type;
170
using SteadyTimePoint = SteadyClock::time_point;
171

172
SteadyTimePoint steady_clock_now() noexcept
173
{
148,838✔
174
    return SteadyClock::now();
148,838✔
175
}
148,838✔
176

177
milliseconds_type steady_duration(SteadyTimePoint start_time, SteadyTimePoint end_time = steady_clock_now()) noexcept
178
{
37,116✔
179
    auto duration = end_time - start_time;
37,116✔
180
    auto millis_duration = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
37,116✔
181
    return milliseconds_type(millis_duration);
37,116✔
182
}
37,116✔
183

184

185
bool determine_try_again(ProtocolError error_code) noexcept
186
{
96✔
187
    return (error_code == ProtocolError::connection_closed);
96✔
188
}
96✔
189

190

191
class ServerFile;
192
class ServerImpl;
193
class HTTPConnection;
194
class SyncConnection;
195
class Session;
196

197

198
using Formatter = util::ResettableExpandableBufferOutputStream;
199
using OutputBuffer = util::ResettableExpandableBufferOutputStream;
200

201
using ProtocolVersionRange = std::pair<int, int>;
202

203
class MiscBuffers {
204
public:
205
    Formatter formatter;
206
    OutputBuffer download_message;
207

208
    using ProtocolVersionRanges = std::vector<ProtocolVersionRange>;
209
    ProtocolVersionRanges protocol_version_ranges;
210

211
    std::vector<char> compress;
212

213
    MiscBuffers()
214
    {
1,200✔
215
        formatter.imbue(std::locale::classic());
1,200✔
216
        download_message.imbue(std::locale::classic());
1,200✔
217
    }
1,200✔
218
};
219

220

221
struct DownloadCache {
222
    std::unique_ptr<char[]> body;
223
    std::size_t uncompressed_body_size;
224
    std::size_t compressed_body_size;
225
    bool body_is_compressed;
226
    version_type end_version;
227
    DownloadCursor download_progress;
228
    std::uint_fast64_t downloadable_bytes;
229
    std::size_t num_changesets;
230
    std::size_t accum_original_size;
231
    std::size_t accum_compacted_size;
232
};
233

234

235
// An unblocked work unit is comprised of one Work object for each of the files
236
// that contribute work to the work unit, generally one reference file and a
237
// number of partial files.
238
class Work {
239
public:
240
    // In general, primary work is all forms of modifying work, including file
241
    // deletion.
242
    bool has_primary_work = false;
243

244
    // Only for reference files
245
    bool might_produce_new_sync_version = false;
246

247
    bool produced_new_realm_version = false;
248
    bool produced_new_sync_version = false;
249
    bool expired_reference_version = false;
250

251
    // True if, and only if changesets_from_downstream contains at least one
252
    // changeset.
253
    bool have_changesets_from_downstream = false;
254

255
    FileIdentAllocSlots file_ident_alloc_slots;
256
    std::vector<std::unique_ptr<char[]>> changeset_buffers;
257
    IntegratableChangesets changesets_from_downstream;
258

259
    VersionInfo version_info;
260

261
    // Result of integration of changesets from downstream clients
262
    IntegrationResult integration_result;
263

264
    void reset() noexcept
265
    {
37,020✔
266
        has_primary_work = false;
37,020✔
267

268
        might_produce_new_sync_version = false;
37,020✔
269

270
        produced_new_realm_version = false;
37,020✔
271
        produced_new_sync_version = false;
37,020✔
272
        expired_reference_version = false;
37,020✔
273
        have_changesets_from_downstream = false;
37,020✔
274

275
        file_ident_alloc_slots.clear();
37,020✔
276
        changeset_buffers.clear();
37,020✔
277
        changesets_from_downstream.clear();
37,020✔
278

279
        version_info = {};
37,020✔
280
        integration_result = {};
37,020✔
281
    }
37,020✔
282
};
283

284

285
class WorkerState {
286
public:
287
    FileIdentAllocSlots file_ident_alloc_slots;
288
    util::ScratchMemory scratch_memory;
289
    bool use_file_cache = true;
290
    std::unique_ptr<ServerHistory> reference_hist;
291
    DBRef reference_sg;
292
};
293

294

295
// ============================ SessionQueue ============================
296

297
class SessionQueue {
298
public:
299
    void push_back(Session*) noexcept;
300
    Session* pop_front() noexcept;
301
    void clear() noexcept;
302

303
private:
304
    Session* m_back = nullptr;
305
};
306

307

308
// ============================ FileIdentReceiver ============================
309

310
class FileIdentReceiver {
311
public:
312
    virtual void receive_file_ident(SaltedFileIdent) = 0;
313

314
protected:
315
    ~FileIdentReceiver() {}
5,206✔
316
};
317

318

319
// ============================ WorkerBox =============================
320

321
class WorkerBox {
322
public:
323
    using JobType = util::UniqueFunction<void(WorkerState&)>;
324
    void add_work(WorkerState& state, JobType job)
325
    {
×
326
        std::unique_lock<std::mutex> lock(m_mutex);
×
327
        if (m_jobs.size() >= m_queue_limit) {
×
328
            // Once we have many queued jobs, it is better to use this thread to run a new job
×
329
            // than to queue it.
×
330
            run_a_job(lock, state, job);
×
331
        }
×
332
        else {
×
333
            // Create worker threads on demand (if all existing threads are active):
×
334
            if (m_threads.size() < m_max_num_threads && m_active >= m_threads.size()) {
×
335
                m_threads.emplace_back([this]() {
×
336
                    WorkerState state;
×
337
                    state.use_file_cache = false;
×
338
                    JobType the_job;
×
339
                    std::unique_lock<std::mutex> lock(m_mutex);
×
340
                    for (;;) {
×
341
                        while (m_jobs.empty() && !m_finish_up)
×
342
                            m_changes.wait(lock);
×
343
                        if (m_finish_up)
×
344
                            break; // terminate thread
×
345
                        the_job = std::move(m_jobs.back());
×
346
                        m_jobs.pop_back();
×
347
                        run_a_job(lock, state, the_job);
×
348
                        m_changes.notify_all();
×
349
                    }
×
350
                });
×
351
            }
×
352

×
353
            // Submit the job for execution:
×
354
            m_jobs.emplace_back(std::move(job));
×
355
            m_changes.notify_all();
×
356
        }
×
357
    }
×
358

359
    // You should call wait_completion() before trying to destroy a WorkerBox to get proper
360
    // propagation of exceptions.
361
    void wait_completion(WorkerState& state)
362
    {
×
363
        std::unique_lock<std::mutex> lock(m_mutex);
×
364
        while (!m_jobs.empty() || m_active > 0) {
×
365
            if (!m_jobs.empty()) { // if possible, make this thread participate in running m_jobs
×
366
                JobType the_job = std::move(m_jobs.back());
×
367
                m_jobs.pop_back();
×
368
                run_a_job(lock, state, the_job);
×
369
            }
×
370
            else {
×
371
                m_changes.wait(lock);
×
372
            }
×
373
        }
×
374
        if (m_epr) {
×
375
            std::rethrow_exception(m_epr);
×
376
        }
×
377
    }
×
378

379
    WorkerBox(unsigned int num_threads)
380
    {
×
381
        m_queue_limit = num_threads * 10; // fudge factor for job size variation
×
382
        m_max_num_threads = num_threads;
×
383
    }
×
384

385
    ~WorkerBox()
386
    {
×
387
        {
×
388
            std::unique_lock<std::mutex> lock(m_mutex);
×
389
            m_finish_up = true;
×
390
            m_changes.notify_all();
×
391
        }
×
392
        for (auto& e : m_threads)
×
393
            e.join();
×
394
    }
×
395

396
private:
397
    std::mutex m_mutex;
398
    std::condition_variable m_changes;
399
    std::vector<std::thread> m_threads;
400
    std::vector<JobType> m_jobs;
401
    unsigned int m_active = 0;
402
    bool m_finish_up = false;
403
    unsigned int m_queue_limit = 0;
404
    unsigned int m_max_num_threads = 0;
405
    std::exception_ptr m_epr;
406

407
    void run_a_job(std::unique_lock<std::mutex>& lock, WorkerState& state, JobType& job)
408
    {
×
409
        ++m_active;
×
410
        lock.unlock();
×
411
        try {
×
412
            job(state);
×
413
            lock.lock();
×
414
        }
×
415
        catch (...) {
×
416
            lock.lock();
×
417
            if (!m_epr)
×
418
                m_epr = std::current_exception();
×
419
        }
×
420
        --m_active;
×
421
    }
×
422
};
423

424

425
// ============================ ServerFile ============================
426

427
class ServerFile : public util::RefCountBase {
428
public:
429
    util::PrefixLogger logger;
430

431
    // Logger to be used by the worker thread
432
    util::PrefixLogger wlogger;
433

434
    ServerFile(ServerImpl& server, ServerFileAccessCache& cache, const std::string& virt_path, std::string real_path,
435
               bool disable_sync_to_disk);
436
    ~ServerFile() noexcept;
437

438
    void initialize();
439
    void activate();
440

441
    ServerImpl& get_server() noexcept
442
    {
42,316✔
443
        return m_server;
42,316✔
444
    }
42,316✔
445

446
    const std::string& get_real_path() const noexcept
447
    {
×
448
        return m_file.realm_path;
×
449
    }
×
450

451
    const std::string& get_virt_path() const noexcept
452
    {
×
453
        return m_file.virt_path;
×
454
    }
×
455

456
    ServerFileAccessCache::File& access()
457
    {
51,888✔
458
        return m_file.access(); // Throws
51,888✔
459
    }
51,888✔
460

461
    ServerFileAccessCache::File& worker_access()
462
    {
37,008✔
463
        return m_worker_file.access(); // Throws
37,008✔
464
    }
37,008✔
465

466
    version_type get_realm_version() const noexcept
467
    {
×
468
        return m_version_info.realm_version;
×
469
    }
×
470

471
    version_type get_sync_version() const noexcept
472
    {
×
473
        return m_version_info.sync_version.version;
×
474
    }
×
475

476
    SaltedVersion get_salted_sync_version() const noexcept
477
    {
106,366✔
478
        return m_version_info.sync_version;
106,366✔
479
    }
106,366✔
480

481
    DownloadCache& get_download_cache() noexcept;
482

483
    void register_client_access(file_ident_type client_file_ident);
484

485
    using file_ident_request_type = std::int_fast64_t;
486

487
    // Initiate a request for a new client file identifier.
488
    //
489
    // Unless the request is cancelled, the identifier will be delivered to the
490
    // receiver by way of an invocation of
491
    // FileIdentReceiver::receive_file_ident().
492
    //
493
    // FileIdentReceiver::receive_file_ident() is guaranteed to not be called
494
    // until after request_file_ident() has returned (no callback reentrance).
495
    //
496
    // New client file identifiers will be delivered to receivers in the order
497
    // that they were requested.
498
    //
499
    // The returned value is a nonzero integer that can be used to cancel the
500
    // request before the file identifier is delivered using
501
    // cancel_file_ident_request().
502
    auto request_file_ident(FileIdentReceiver&, file_ident_type proxy_file, ClientType) -> file_ident_request_type;
503

504
    // Cancel the specified file identifier request.
505
    //
506
    // It is an error to call this function after the identifier has been
507
    // delivered.
508
    void cancel_file_ident_request(file_ident_request_type) noexcept;
509

510
    void add_unidentified_session(Session*);
511
    void identify_session(Session*, file_ident_type client_file_ident);
512

513
    void remove_unidentified_session(Session*) noexcept;
514
    void remove_identified_session(file_ident_type client_file_ident) noexcept;
515

516
    Session* get_identified_session(file_ident_type client_file_ident) noexcept;
517

518
    bool can_add_changesets_from_downstream() const noexcept;
519
    void add_changesets_from_downstream(file_ident_type client_file_ident, UploadCursor upload_progress,
520
                                        version_type locked_server_version, const UploadChangeset*,
521
                                        std::size_t num_changesets);
522

523
    // bootstrap_client_session calls the function of same name in server_history
524
    // but corrects the upload_progress with information from pending
525
    // integratable changesets. A situation can occur where a client terminates
526
    // a session and starts a new session and re-uploads changesets that are known
527
    // by the ServerFile object but not by the ServerHistory.
528
    BootstrapError bootstrap_client_session(SaltedFileIdent client_file_ident, DownloadCursor download_progress,
529
                                            SaltedVersion server_version, ClientType client_type,
530
                                            UploadCursor& upload_progress, version_type& locked_server_version,
531
                                            Logger&);
532

533
    // NOTE: This function is executed by the worker thread
534
    void worker_process_work_unit(WorkerState&);
535

536
    void recognize_external_change();
537

538
private:
539
    ServerImpl& m_server;
540
    ServerFileAccessCache::Slot m_file;
541

542
    // In general, `m_version_info` refers to the last snapshot of the Realm
543
    // file that is supposed to be visible to remote peers engaging in regular
544
    // Realm file synchronization.
545
    VersionInfo m_version_info;
546

547
    file_ident_request_type m_last_file_ident_request = 0;
548

549
    // The set of sessions whose client file identifier is not yet known, i.e.,
550
    // those for which an IDENT message has not yet been received,
551
    std::set<Session*> m_unidentified_sessions;
552

553
    // A map of the sessions whose client file identifier is known, i.e, those
554
    // for which an IDENT message has been received.
555
    std::map<file_ident_type, Session*> m_identified_sessions;
556

557
    // Used when a file used as partial view wants to allocate a client file
558
    // identifier from the reference Realm.
559
    file_ident_request_type m_file_ident_request = 0;
560

561
    struct FileIdentRequestInfo {
562
        FileIdentReceiver* receiver;
563
        file_ident_type proxy_file;
564
        ClientType client_type;
565
    };
566

567
    // When nonempty, it counts towards outstanding blocked work (see
568
    // `m_has_blocked_work`).
569
    std::map<file_ident_request_type, FileIdentRequestInfo> m_file_ident_requests;
570

571
    // Changesets received from the downstream clients, and waiting to be
572
    // integrated, as well as information about the clients progress in terms of
573
    // integrating changesets received from the server. When nonempty, it counts
574
    // towards outstanding blocked work (see `m_has_blocked_work`).
575
    //
576
    // At any given time, the set of changesets from a particular client-side
577
    // file may be comprised of changesets received via distinct sessions.
578
    //
579
    // See also `m_num_changesets_from_downstream`.
580
    IntegratableChangesets m_changesets_from_downstream;
581

582
    // Keeps track of the number of changesets in `m_changesets_from_downstream`.
583
    //
584
    // Its purpose is also to initialize
585
    // `Work::have_changesets_from_downstream`.
586
    std::size_t m_num_changesets_from_downstream = 0;
587

588
    // The total size, in bytes, of the changesets that were received from
589
    // clients, are targeting this file, and are currently part of the blocked
590
    // work unit.
591
    //
592
    // Together with `m_unblocked_changesets_from_downstream_byte_size`, its
593
    // purpose is to allow the server to keep track of the accumulated size of
594
    // changesets being processed, or waiting to be processed (metric
595
    // `upload.pending.bytes`) (see
596
    // ServerImpl::inc_byte_size_for_pending_downstream_changesets()).
597
    //
598
    // Its purpose is also to enable the "very poor man's" backpressure solution
599
    // (see can_add_changesets_from_downstream()).
600
    std::size_t m_blocked_changesets_from_downstream_byte_size = 0;
601

602
    // Same as `m_blocked_changesets_from_downstream_byte_size` but for the
603
    // currently unblocked work unit.
604
    std::size_t m_unblocked_changesets_from_downstream_byte_size = 0;
605

606
    // When nonempty, it counts towards outstanding blocked work (see
607
    // `m_has_blocked_work`).
608
    std::vector<std::string> m_permission_changes;
609

610
    // True iff this file, or any of its associated partial files (when
611
    // applicable), has a nonzero amount of outstanding work that is currently
612
    // held back from being passed to the worker thread because a previously
613
    // accumulated chunk of work related to this file is currently in progress.
614
    bool m_has_blocked_work = false;
615

616
    // A file, that is not a partial file, is considered *exposed to the worker
617
    // thread* from the point in time where it is submitted to the worker
618
    // (Worker::enqueue()) and up until the point in time where
619
    // group_postprocess_stage_1() starts to execute. A partial file is
620
    // considered *exposed to the worker thread* precisely when the associated
621
    // reference file is exposed to the worker thread, but only if it was in
622
    // `m_reference_file->m_work.partial_files` at the point in time where the
623
    // reference file was passed to the worker.
624
    //
625
    // While this file is exposed to the worker thread, all members of `m_work`
626
    // other than `changesets_from_downstream` may be accessed and modified by
627
    // the worker thread only.
628
    //
629
    // While this file is exposed to the worker thread,
630
    // `m_work.changesets_from_downstream` may be accessed by all threads, but
631
    // must not be modified by any thread. This special status of
632
    // `m_work.changesets_from_downstream` is required to allow
633
    // ServerFile::bootstrap_client_session() to read from it at any time.
634
    Work m_work;
635

636
    // For reference files, set to true when work is unblocked, and reset back
637
    // to false when the work finalization process completes
638
    // (group_postprocess_stage_3()). Always zero for partial files.
639
    bool m_has_work_in_progress = 0;
640

641
    // This one must only be accessed by the worker thread.
642
    //
643
    // More specifically, `m_worker_file.access()` must only be called by the
644
    // worker thread, and if it was ever called, it must be closed by the worker
645
    // thread before the ServerFile object is destroyed, if destruction happens
646
    // before the destruction of the server object itself.
647
    ServerFileAccessCache::Slot m_worker_file;
648

649
    std::vector<std::int_fast64_t> m_deleting_connections;
650

651
    DownloadCache m_download_cache;
652

653
    void on_changesets_from_downstream_added(std::size_t num_changesets, std::size_t num_bytes);
654
    void on_work_added();
655
    void group_unblock_work();
656
    void unblock_work();
657

658
    /// Resume history scanning in all sessions bound to this file. To be called
659
    /// after a successfull integration of a changeset.
660
    void resume_download() noexcept;
661

662
    // NOTE: These functions are executed by the worker thread
663
    void worker_allocate_file_identifiers();
664
    bool worker_integrate_changes_from_downstream(WorkerState&);
665
    ServerHistory& get_client_file_history(WorkerState& state, std::unique_ptr<ServerHistory>& hist_ptr,
666
                                           DBRef& sg_ptr);
667
    ServerHistory& get_reference_file_history(WorkerState& state);
668
    void group_postprocess_stage_1();
669
    void group_postprocess_stage_2();
670
    void group_postprocess_stage_3();
671
    void group_finalize_work_stage_1();
672
    void group_finalize_work_stage_2();
673
    void finalize_work_stage_1();
674
    void finalize_work_stage_2();
675
};
676

677

678
inline DownloadCache& ServerFile::get_download_cache() noexcept
679
{
41,766✔
680
    return m_download_cache;
41,766✔
681
}
41,766✔
682

683
inline void ServerFile::group_finalize_work_stage_1()
684
{
36,710✔
685
    finalize_work_stage_1(); // Throws
36,710✔
686
}
36,710✔
687

688
inline void ServerFile::group_finalize_work_stage_2()
689
{
36,708✔
690
    finalize_work_stage_2(); // Throws
36,708✔
691
}
36,708✔
692

693

694
// ============================ Worker ============================
695

696
// All write transaction on server-side Realm files performed on behalf of the
697
// server, must be performed by the worker thread, not the network event loop
698
// thread. This is to ensure that the network event loop thread never gets
699
// blocked waiting for the worker thread to end a long running write
700
// transaction.
701
//
702
// FIXME: Currently, the event loop thread does perform a number of write
703
// transactions, but only on subtier nodes of a star topology server cluster.
704
class Worker : public ServerHistory::Context {
705
public:
706
    std::shared_ptr<util::Logger> logger_ptr;
707
    util::Logger& logger;
708

709
    explicit Worker(ServerImpl&);
710

711
    ServerFileAccessCache& get_file_access_cache() noexcept;
712

713
    void enqueue(ServerFile*);
714

715
    // Overriding members of ServerHistory::Context
716
    std::mt19937_64& server_history_get_random() noexcept override final;
717

718
private:
719
    ServerImpl& m_server;
720
    std::mt19937_64 m_random;
721
    ServerFileAccessCache m_file_access_cache;
722

723
    util::Mutex m_mutex;
724
    util::CondVar m_cond; // Protected by `m_mutex`
725

726
    bool m_stop = false; // Protected by `m_mutex`
727

728
    util::CircularBuffer<ServerFile*> m_queue; // Protected by `m_mutex`
729

730
    WorkerState m_state;
731

732
    void run();
733
    void stop() noexcept;
734

735
    friend class util::ThreadExecGuardWithParent<Worker, ServerImpl>;
736
};
737

738

739
inline ServerFileAccessCache& Worker::get_file_access_cache() noexcept
740
{
1,138✔
741
    return m_file_access_cache;
1,138✔
742
}
1,138✔
743

744

745
// ============================ ServerImpl ============================
746

747
class ServerImpl : public ServerImplBase, public ServerHistory::Context {
748
public:
749
    std::uint_fast64_t errors_seen = 0;
750

751
    std::atomic<milliseconds_type> m_par_time;
752
    std::atomic<milliseconds_type> m_seq_time;
753

754
    util::Mutex last_client_accesses_mutex;
755

756
    const std::shared_ptr<util::Logger> logger_ptr;
757
    util::Logger& logger;
758

759
    network::Service& get_service() noexcept
760
    {
50,850✔
761
        return m_service;
50,850✔
762
    }
50,850✔
763

764
    const network::Service& get_service() const noexcept
765
    {
×
766
        return m_service;
×
767
    }
×
768

769
    std::mt19937_64& get_random() noexcept
770
    {
64,530✔
771
        return m_random;
64,530✔
772
    }
64,530✔
773

774
    const Server::Config& get_config() const noexcept
775
    {
113,048✔
776
        return m_config;
113,048✔
777
    }
113,048✔
778

779
    std::size_t get_max_upload_backlog() const noexcept
780
    {
44,582✔
781
        return m_max_upload_backlog;
44,582✔
782
    }
44,582✔
783

784
    const std::string& get_root_dir() const noexcept
785
    {
5,206✔
786
        return m_root_dir;
5,206✔
787
    }
5,206✔
788

789
    network::ssl::Context& get_ssl_context() noexcept
790
    {
48✔
791
        return *m_ssl_context;
48✔
792
    }
48✔
793

794
    const AccessControl& get_access_control() const noexcept
795
    {
×
796
        return m_access_control;
×
797
    }
×
798

799
    ProtocolVersionRange get_protocol_version_range() const noexcept
800
    {
2,036✔
801
        return m_protocol_version_range;
2,036✔
802
    }
2,036✔
803

804
    ServerProtocol& get_server_protocol() noexcept
805
    {
131,988✔
806
        return m_server_protocol;
131,988✔
807
    }
131,988✔
808

809
    compression::CompressMemoryArena& get_compress_memory_arena() noexcept
810
    {
4,168✔
811
        return m_compress_memory_arena;
4,168✔
812
    }
4,168✔
813

814
    MiscBuffers& get_misc_buffers() noexcept
815
    {
47,970✔
816
        return m_misc_buffers;
47,970✔
817
    }
47,970✔
818

819
    int_fast64_t get_current_server_session_ident() const noexcept
820
    {
×
821
        return m_current_server_session_ident;
×
822
    }
×
823

824
    util::ScratchMemory& get_scratch_memory() noexcept
825
    {
×
826
        return m_scratch_memory;
×
827
    }
×
828

829
    Worker& get_worker() noexcept
830
    {
39,300✔
831
        return m_worker;
39,300✔
832
    }
39,300✔
833

834
    void get_workunit_timers(milliseconds_type& parallel_section, milliseconds_type& sequential_section)
835
    {
×
836
        parallel_section = m_par_time;
×
837
        sequential_section = m_seq_time;
×
838
    }
×
839

840
    ServerImpl(const std::string& root_dir, util::Optional<sync::PKey>, Server::Config);
841
    ~ServerImpl() noexcept;
842

843
    void start();
844

845
    void start(std::string listen_address, std::string listen_port, bool reuse_address)
846
    {
684✔
847
        m_config.listen_address = listen_address;
684✔
848
        m_config.listen_port = listen_port;
684✔
849
        m_config.reuse_address = reuse_address;
684✔
850

851
        start(); // Throws
684✔
852
    }
684✔
853

854
    network::Endpoint listen_endpoint() const
855
    {
1,254✔
856
        return m_acceptor.local_endpoint();
1,254✔
857
    }
1,254✔
858

859
    void run();
860
    void stop() noexcept;
861

862
    void remove_http_connection(std::int_fast64_t conn_id) noexcept;
863

864
    void add_sync_connection(int_fast64_t connection_id, std::unique_ptr<SyncConnection>&& sync_conn);
865
    void remove_sync_connection(int_fast64_t connection_id);
866

867
    size_t get_number_of_http_connections()
868
    {
×
869
        return m_http_connections.size();
×
870
    }
×
871

872
    size_t get_number_of_sync_connections()
873
    {
×
874
        return m_sync_connections.size();
×
875
    }
×
876

877
    bool is_sync_stopped()
878
    {
39,062✔
879
        return m_sync_stopped;
39,062✔
880
    }
39,062✔
881

882
    const std::set<std::string>& get_realm_names() const noexcept
883
    {
×
884
        return m_realm_names;
×
885
    }
×
886

887
    // virt_path must be valid when get_or_create_file() is called.
888
    util::bind_ptr<ServerFile> get_or_create_file(const std::string& virt_path)
889
    {
5,178✔
890
        util::bind_ptr<ServerFile> file = get_file(virt_path);
5,178✔
891
        if (REALM_LIKELY(file))
5,178✔
892
            return file;
4,036✔
893

894
        _impl::VirtualPathComponents virt_path_components =
1,142✔
895
            _impl::parse_virtual_path(m_root_dir, virt_path); // Throws
1,142✔
896
        REALM_ASSERT(virt_path_components.is_valid);
1,142✔
897

898
        _impl::make_dirs(m_root_dir, virt_path); // Throws
1,142✔
899
        m_realm_names.insert(virt_path);         // Throws
1,142✔
900
        {
1,142✔
901
            bool disable_sync_to_disk = m_config.disable_sync_to_disk;
1,142✔
902
            file.reset(new ServerFile(*this, m_file_access_cache, virt_path, virt_path_components.real_realm_path,
1,142✔
903
                                      disable_sync_to_disk)); // Throws
1,142✔
904
        }
1,142✔
905

906
        file->initialize();
1,142✔
907
        m_files[virt_path] = file; // Throws
1,142✔
908
        file->activate();          // Throws
1,142✔
909
        return file;
1,142✔
910
    }
5,178✔
911

912
    std::unique_ptr<ServerHistory> make_history_for_path()
913
    {
×
914
        return std::make_unique<ServerHistory>(*this);
×
915
    }
×
916

917
    util::bind_ptr<ServerFile> get_file(const std::string& virt_path) noexcept
918
    {
5,178✔
919
        auto i = m_files.find(virt_path);
5,178✔
920
        if (REALM_LIKELY(i != m_files.end()))
5,178✔
921
            return i->second;
4,038✔
922
        return {};
1,140✔
923
    }
5,178✔
924

925
    // Returns the number of seconds since the Epoch of
926
    // std::chrono::system_clock.
927
    std::chrono::system_clock::time_point token_expiration_clock_now() const noexcept
928
    {
×
929
        if (REALM_UNLIKELY(m_config.token_expiration_clock))
×
930
            return m_config.token_expiration_clock->now();
×
931
        return std::chrono::system_clock::now();
×
932
    }
×
933

934
    void set_connection_reaper_timeout(milliseconds_type);
935

936
    void close_connections();
937
    bool map_virtual_to_real_path(const std::string& virt_path, std::string& real_path);
938

939
    void recognize_external_change(const std::string& virt_path);
940

941
    void stop_sync_and_wait_for_backup_completion(util::UniqueFunction<void(bool did_backup)> completion_handler,
942
                                                  milliseconds_type timeout);
943

944
    // Server global outputbuffers that can be reused.
945
    // The server is single threaded, so there are no
946
    // synchronization issues.
947
    // output_buffers_count is equal to the
948
    // maximum number of buffers needed at any point.
949
    static constexpr int output_buffers_count = 1;
950
    OutputBuffer output_buffers[output_buffers_count];
951

952
    bool is_load_balancing_allowed() const
953
    {
×
954
        return m_allow_load_balancing;
×
955
    }
×
956

957
    // inc_byte_size_for_pending_downstream_changesets() must be called by
958
    // ServerFile objects when changesets from downstream clients have been
959
    // received.
960
    //
961
    // dec_byte_size_for_pending_downstream_changesets() must be called by
962
    // ServerFile objects when changesets from downstream clients have been
963
    // processed or discarded.
964
    //
965
    // ServerImpl uses this information to keep a running tally (metric
966
    // `upload.pending.bytes`) of the total byte size of pending changesets from
967
    // downstream clients.
968
    //
969
    // These functions must be called on the network thread.
970
    void inc_byte_size_for_pending_downstream_changesets(std::size_t byte_size);
971
    void dec_byte_size_for_pending_downstream_changesets(std::size_t byte_size);
972

973
    // Overriding member functions in _impl::ServerHistory::Context
974
    std::mt19937_64& server_history_get_random() noexcept override final;
975

976
private:
977
    Server::Config m_config;
978
    network::Service m_service;
979
    std::mt19937_64 m_random;
980
    const std::size_t m_max_upload_backlog;
981
    const std::string m_root_dir;
982
    const AccessControl m_access_control;
983
    const ProtocolVersionRange m_protocol_version_range;
984

985
    // The reserved files will be closed in situations where the server
986
    // runs out of file descriptors.
987
    std::unique_ptr<File> m_reserved_files[5];
988

989
    // The set of all Realm files known to this server, represented by their
990
    // virtual path.
991
    //
992
    // INVARIANT: If a Realm file is in the servers directory (i.e., it would be
993
    // reported by an invocation of _impl::get_realm_names()), then the
994
    // corresponding virtual path is in `m_realm_names`, assuming no external
995
    // file-system level intervention.
996
    std::set<std::string> m_realm_names;
997

998
    std::unique_ptr<network::ssl::Context> m_ssl_context;
999
    ServerFileAccessCache m_file_access_cache;
1000
    Worker m_worker;
1001
    std::map<std::string, util::bind_ptr<ServerFile>> m_files; // Key is virtual path
1002
    network::Acceptor m_acceptor;
1003
    std::int_fast64_t m_next_conn_id = 0;
1004
    std::unique_ptr<HTTPConnection> m_next_http_conn;
1005
    network::Endpoint m_next_http_conn_endpoint;
1006
    std::map<std::int_fast64_t, std::unique_ptr<HTTPConnection>> m_http_connections;
1007
    std::map<std::int_fast64_t, std::unique_ptr<SyncConnection>> m_sync_connections;
1008
    ServerProtocol m_server_protocol;
1009
    compression::CompressMemoryArena m_compress_memory_arena;
1010
    MiscBuffers m_misc_buffers;
1011
    int_fast64_t m_current_server_session_ident;
1012
    Optional<network::DeadlineTimer> m_connection_reaper_timer;
1013
    bool m_allow_load_balancing = false;
1014

1015
    util::Mutex m_mutex;
1016

1017
    bool m_stopped = false; // Protected by `m_mutex`
1018

1019
    // m_sync_stopped is used by stop_sync_and_wait_for_backup_completion().
1020
    // When m_sync_stopped is true, the server does not perform any sync.
1021
    bool m_sync_stopped = false;
1022

1023
    std::atomic<bool> m_running{false}; // Debugging facility
1024

1025
    std::size_t m_pending_changesets_from_downstream_byte_size = 0;
1026

1027
    util::CondVar m_wait_or_service_stopped_cond; // Protected by `m_mutex`
1028

1029
    util::ScratchMemory m_scratch_memory;
1030

1031
    void listen();
1032
    void initiate_accept();
1033
    void handle_accept(std::error_code);
1034

1035
    void reap_connections();
1036
    void initiate_connection_reaper_timer(milliseconds_type timeout);
1037
    void do_close_connections();
1038

1039
    static std::size_t determine_max_upload_backlog(Server::Config& config) noexcept
1040
    {
1,200✔
1041
        if (config.max_upload_backlog == 0)
1,200✔
1042
            return 4294967295; // 4GiB - 1 (largest allowable number on a 32-bit platform)
1,200✔
1043
        return config.max_upload_backlog;
×
1044
    }
1,200✔
1045

1046
    static ProtocolVersionRange determine_protocol_version_range(Server::Config& config)
1047
    {
1,200✔
1048
        const int actual_min = ServerImplBase::get_oldest_supported_protocol_version();
1,200✔
1049
        const int actual_max = get_current_protocol_version();
1,200✔
1050
        static_assert(actual_min <= actual_max, "");
1,200✔
1051
        int min = actual_min;
1,200✔
1052
        int max = actual_max;
1,200✔
1053
        if (config.max_protocol_version != 0 && config.max_protocol_version < max) {
1,200!
1054
            if (config.max_protocol_version < min)
×
1055
                throw Server::NoSupportedProtocolVersions();
×
1056
            max = config.max_protocol_version;
×
1057
        }
×
1058
        return {min, max};
1,200✔
1059
    }
1,200✔
1060

1061
    void do_recognize_external_change(const std::string& virt_path);
1062

1063
    void do_stop_sync_and_wait_for_backup_completion(util::UniqueFunction<void(bool did_complete)> completion_handler,
1064
                                                     milliseconds_type timeout);
1065
};
1066

1067
// ============================ SyncConnection ============================
1068

1069
class SyncConnection : public websocket::Config {
1070
public:
1071
    const std::shared_ptr<util::Logger> logger_ptr;
1072
    util::Logger& logger;
1073

1074
    // Clients with sync protocol version 8 or greater support pbs->flx migration
1075
    static constexpr int PBS_FLX_MIGRATION_PROTOCOL_VERSION = 8;
1076
    // Clients with sync protocol version less than 10 do not support log messages
1077
    static constexpr int SERVER_LOG_PROTOCOL_VERSION = 10;
1078

1079
    SyncConnection(ServerImpl& serv, std::int_fast64_t id, std::unique_ptr<network::Socket>&& socket,
1080
                   std::unique_ptr<network::ssl::Stream>&& ssl_stream,
1081
                   std::unique_ptr<network::ReadAheadBuffer>&& read_ahead_buffer, int client_protocol_version,
1082
                   std::string client_user_agent, std::string remote_endpoint, std::string appservices_request_id)
1083
        : logger_ptr{std::make_shared<util::PrefixLogger>(util::LogCategory::server, make_logger_prefix(id),
916✔
1084
                                                          serv.logger_ptr)} // Throws
916✔
1085
        , logger{*logger_ptr}
916✔
1086
        , m_server{serv}
916✔
1087
        , m_id{id}
916✔
1088
        , m_socket{std::move(socket)}
916✔
1089
        , m_ssl_stream{std::move(ssl_stream)}
916✔
1090
        , m_read_ahead_buffer{std::move(read_ahead_buffer)}
916✔
1091
        , m_websocket{*this}
916✔
1092
        , m_client_protocol_version{client_protocol_version}
916✔
1093
        , m_client_user_agent{std::move(client_user_agent)}
916✔
1094
        , m_remote_endpoint{std::move(remote_endpoint)}
916✔
1095
        , m_appservices_request_id{std::move(appservices_request_id)}
916✔
1096
    {
2,036✔
1097
        // Make the output buffer stream throw std::bad_alloc if it fails to
1098
        // expand the buffer
1099
        m_output_buffer.exceptions(std::ios_base::badbit | std::ios_base::failbit);
2,036✔
1100

1101
        network::Service& service = m_server.get_service();
2,036✔
1102
        auto handler = [this](Status status) {
97,910✔
1103
            if (!status.is_ok())
97,910✔
1104
                return;
×
1105
            if (!m_is_sending)
97,910✔
1106
                send_next_message(); // Throws
43,192✔
1107
        };
97,910✔
1108
        m_send_trigger = std::make_unique<Trigger<network::Service>>(&service, std::move(handler)); // Throws
2,036✔
1109
    }
2,036✔
1110

1111
    ~SyncConnection() noexcept;
1112

1113
    ServerImpl& get_server() noexcept
1114
    {
115,744✔
1115
        return m_server;
115,744✔
1116
    }
115,744✔
1117

1118
    ServerProtocol& get_server_protocol() noexcept
1119
    {
131,986✔
1120
        return m_server.get_server_protocol();
131,986✔
1121
    }
131,986✔
1122

1123
    int get_client_protocol_version()
1124
    {
103,356✔
1125
        return m_client_protocol_version;
103,356✔
1126
    }
103,356✔
1127

1128
    const std::string& get_client_user_agent() const noexcept
1129
    {
5,176✔
1130
        return m_client_user_agent;
5,176✔
1131
    }
5,176✔
1132

1133
    const std::string& get_remote_endpoint() const noexcept
1134
    {
5,174✔
1135
        return m_remote_endpoint;
5,174✔
1136
    }
5,174✔
1137

1138
    const std::shared_ptr<util::Logger>& websocket_get_logger() noexcept final
1139
    {
2,036✔
1140
        return logger_ptr;
2,036✔
1141
    }
2,036✔
1142

1143
    std::mt19937_64& websocket_get_random() noexcept final override
1144
    {
63,394✔
1145
        return m_server.get_random();
63,394✔
1146
    }
63,394✔
1147

1148
    bool websocket_binary_message_received(const char* data, size_t size) final override
1149
    {
69,082✔
1150
        using sf = _impl::SimulatedFailure;
69,082✔
1151
        if (sf::check_trigger(sf::sync_server__read_head)) {
69,082✔
1152
            // Suicide
1153
            read_error(sf::sync_server__read_head);
512✔
1154
            return false;
512✔
1155
        }
512✔
1156
        // After a connection level error has occurred, all incoming messages
1157
        // will be ignored. By continuing to read until end of input, the server
1158
        // is able to know when the client closes the connection, which in
1159
        // general means that is has received the ERROR message.
1160
        if (REALM_LIKELY(!m_is_closing)) {
68,572✔
1161
            m_last_activity_at = steady_clock_now();
68,564✔
1162
            handle_message_received(data, size);
68,564✔
1163
        }
68,564✔
1164
        return true;
68,570✔
1165
    }
69,082✔
1166

1167
    bool websocket_ping_message_received(const char* data, size_t size) final override
1168
    {
×
1169
        if (REALM_LIKELY(!m_is_closing)) {
×
1170
            m_last_activity_at = steady_clock_now();
×
1171
            handle_ping_received(data, size);
×
1172
        }
×
1173
        return true;
×
1174
    }
×
1175

1176
    void async_write(const char* data, size_t size, websocket::WriteCompletionHandler handler) final override
1177
    {
63,392✔
1178
        if (m_ssl_stream) {
63,392✔
1179
            m_ssl_stream->async_write(data, size, std::move(handler)); // Throws
70✔
1180
        }
70✔
1181
        else {
63,322✔
1182
            m_socket->async_write(data, size, std::move(handler)); // Throws
63,322✔
1183
        }
63,322✔
1184
    }
63,392✔
1185

1186
    void async_read(char* buffer, size_t size, websocket::ReadCompletionHandler handler) final override
1187
    {
208,806✔
1188
        if (m_ssl_stream) {
208,806✔
1189
            m_ssl_stream->async_read(buffer, size, *m_read_ahead_buffer, std::move(handler)); // Throws
140✔
1190
        }
140✔
1191
        else {
208,666✔
1192
            m_socket->async_read(buffer, size, *m_read_ahead_buffer, std::move(handler)); // Throws
208,666✔
1193
        }
208,666✔
1194
    }
208,806✔
1195

1196
    void async_read_until(char* buffer, size_t size, char delim,
1197
                          websocket::ReadCompletionHandler handler) final override
1198
    {
×
1199
        if (m_ssl_stream) {
×
1200
            m_ssl_stream->async_read_until(buffer, size, delim, *m_read_ahead_buffer,
×
1201
                                           std::move(handler)); // Throws
×
1202
        }
×
1203
        else {
×
1204
            m_socket->async_read_until(buffer, size, delim, *m_read_ahead_buffer,
×
1205
                                       std::move(handler)); // Throws
×
1206
        }
×
1207
    }
×
1208

1209
    void websocket_read_error_handler(std::error_code ec) final override
1210
    {
672✔
1211
        read_error(ec);
672✔
1212
    }
672✔
1213

1214
    void websocket_write_error_handler(std::error_code ec) final override
1215
    {
×
1216
        write_error(ec);
×
1217
    }
×
1218

1219
    void websocket_handshake_error_handler(std::error_code ec, const HTTPHeaders*, std::string_view) final override
1220
    {
×
1221
        // WebSocket class has already logged a message for this error
1222
        close_due_to_error(ec); // Throws
×
1223
    }
×
1224

1225
    void websocket_protocol_error_handler(std::error_code ec) final override
1226
    {
×
1227
        logger.error("WebSocket protocol error (%1): %2", ec, ec.message()); // Throws
×
1228
        close_due_to_error(ec);                                              // Throws
×
1229
    }
×
1230

1231
    void websocket_handshake_completion_handler(const HTTPHeaders&) final override
1232
    {
×
1233
        // This is not called since we handle HTTP request in handle_request_for_sync()
1234
        REALM_TERMINATE("websocket_handshake_completion_handler should not have been called");
1235
    }
×
1236

1237
    int_fast64_t get_id() const noexcept
1238
    {
×
1239
        return m_id;
×
1240
    }
×
1241

1242
    network::Socket& get_socket() noexcept
1243
    {
×
1244
        return *m_socket;
×
1245
    }
×
1246

1247
    void initiate();
1248

1249
    // Commits suicide
1250
    template <class... Params>
1251
    void terminate(Logger::Level, const char* log_message, Params... log_params);
1252

1253
    // Commits suicide
1254
    void terminate_if_dead(SteadyTimePoint now);
1255

1256
    void enlist_to_send(Session*) noexcept;
1257

1258
    // Sessions should get the output_buffer and insert a message, after which
1259
    // they call initiate_write_output_buffer().
1260
    OutputBuffer& get_output_buffer()
1261
    {
63,398✔
1262
        m_output_buffer.reset();
63,398✔
1263
        return m_output_buffer;
63,398✔
1264
    }
63,398✔
1265

1266
    // More advanced memory strategies can be implemented if needed.
1267
    void release_output_buffer() {}
63,242✔
1268

1269
    // When this function is called, the connection will initiate a write with
1270
    // its output_buffer. Sessions use this method.
1271
    void initiate_write_output_buffer();
1272

1273
    void initiate_pong_output_buffer();
1274

1275
    void handle_protocol_error(Status status);
1276

1277
    void receive_bind_message(session_ident_type, std::string path, std::string signed_user_token,
1278
                              bool need_client_file_ident, bool is_subserver);
1279

1280
    void receive_ident_message(session_ident_type, file_ident_type client_file_ident,
1281
                               salt_type client_file_ident_salt, version_type scan_server_version,
1282
                               version_type scan_client_version, version_type latest_server_version,
1283
                               salt_type latest_server_version_salt);
1284

1285
    void receive_upload_message(session_ident_type, version_type progress_client_version,
1286
                                version_type progress_server_version, version_type locked_server_version,
1287
                                const UploadChangesets&);
1288

1289
    void receive_mark_message(session_ident_type, request_ident_type);
1290

1291
    void receive_unbind_message(session_ident_type);
1292

1293
    void receive_ping(milliseconds_type timestamp, milliseconds_type rtt);
1294

1295
    void receive_error_message(session_ident_type, int error_code, std::string_view error_body);
1296

1297
    void protocol_error(ProtocolError, Session* = nullptr);
1298

1299
    void initiate_soft_close();
1300

1301
    void discard_session(session_ident_type) noexcept;
1302

1303
    void send_log_message(util::Logger::Level level, const std::string&& message, session_ident_type sess_ident = 0,
1304
                          std::optional<std::string> co_id = std::nullopt);
1305

1306
private:
1307
    ServerImpl& m_server;
1308
    const int_fast64_t m_id;
1309
    std::unique_ptr<network::Socket> m_socket;
1310
    std::unique_ptr<network::ssl::Stream> m_ssl_stream;
1311
    std::unique_ptr<network::ReadAheadBuffer> m_read_ahead_buffer;
1312

1313
    websocket::Socket m_websocket;
1314
    std::unique_ptr<char[]> m_input_body_buffer;
1315
    OutputBuffer m_output_buffer;
1316
    std::map<session_ident_type, std::unique_ptr<Session>> m_sessions;
1317

1318
    // The protocol version in use by the connected client.
1319
    const int m_client_protocol_version;
1320

1321
    // The user agent description passed by the client.
1322
    const std::string m_client_user_agent;
1323

1324
    const std::string m_remote_endpoint;
1325

1326
    const std::string m_appservices_request_id;
1327

1328
    // A queue of sessions that have enlisted for an opportunity to send a
1329
    // message. Sessions will be served in the order that they enlist. A session
1330
    // can only occur once in this queue (linked list). If the queue is not
1331
    // empty, and no message is currently being written to the socket, the first
1332
    // session is taken out of the queue, and then granted an opportunity to
1333
    // send a message.
1334
    //
1335
    // Sessions will never be destroyed while in this queue. This is ensured
1336
    // because the connection owns the sessions that are associated with it, and
1337
    // the connection only removes a session from m_sessions at points in time
1338
    // where that session is guaranteed to not be in m_sessions_enlisted_to_send
1339
    // (Connection::send_next_message() and Connection::~Connection()).
1340
    SessionQueue m_sessions_enlisted_to_send;
1341

1342
    Session* m_receiving_session = nullptr;
1343

1344
    bool m_is_sending = false;
1345
    bool m_is_closing = false;
1346

1347
    bool m_send_pong = false;
1348
    bool m_sending_pong = false;
1349

1350
    std::unique_ptr<Trigger<network::Service>> m_send_trigger;
1351

1352
    milliseconds_type m_last_ping_timestamp = 0;
1353

1354
    // If `m_is_closing` is true, this is the time at which `m_is_closing` was
1355
    // set to true (initiation of soft close). Otherwise, if no messages have
1356
    // been received from the client, this is the time at which the connection
1357
    // object was initiated (completion of WebSocket handshake). Otherwise this
1358
    // is the time at which the last message was received from the client.
1359
    SteadyTimePoint m_last_activity_at;
1360

1361
    // These are initialized by do_initiate_soft_close().
1362
    //
1363
    // With recent versions of the protocol (when the version is greater than,
1364
    // or equal to 23), `m_error_session_ident` is always zero.
1365
    ProtocolError m_error_code = {};
1366
    session_ident_type m_error_session_ident = 0;
1367

1368
    struct LogMessage {
1369
        session_ident_type sess_ident;
1370
        util::Logger::Level level;
1371
        std::string message;
1372
        std::optional<std::string> co_id;
1373
    };
1374

1375
    std::mutex m_log_mutex;
1376
    std::queue<LogMessage> m_log_messages;
1377

1378
    static std::string make_logger_prefix(int_fast64_t id)
1379
    {
2,036✔
1380
        std::ostringstream out;
2,036✔
1381
        out.imbue(std::locale::classic());
2,036✔
1382
        out << "Sync Connection[" << id << "]: "; // Throws
2,036✔
1383
        return out.str();                         // Throws
2,036✔
1384
    }
2,036✔
1385

1386
    // The return value of handle_message_received() designates whether
1387
    // message processing should continue. If the connection object is
1388
    // destroyed during execution of handle_message_received(), the return
1389
    // value must be false.
1390
    void handle_message_received(const char* data, size_t size);
1391

1392
    void handle_ping_received(const char* data, size_t size);
1393

1394
    void send_next_message();
1395
    void send_pong(milliseconds_type timestamp);
1396
    void send_log_message(const LogMessage& log_msg);
1397

1398
    void handle_write_output_buffer();
1399
    void handle_pong_output_buffer();
1400

1401
    void initiate_write_error(ProtocolError, session_ident_type);
1402
    void handle_write_error(std::error_code ec);
1403

1404
    void do_initiate_soft_close(ProtocolError, session_ident_type);
1405
    void read_error(std::error_code);
1406
    void write_error(std::error_code);
1407

1408
    void close_due_to_close_by_client(std::error_code);
1409
    void close_due_to_error(std::error_code);
1410

1411
    void terminate_sessions();
1412

1413
    void bad_session_ident(const char* message_type, session_ident_type);
1414
    void message_after_unbind(const char* message_type, session_ident_type);
1415
    void message_before_ident(const char* message_type, session_ident_type);
1416
};
1417

1418

1419
inline void SyncConnection::read_error(std::error_code ec)
1420
{
1,184✔
1421
    REALM_ASSERT(ec != util::error::operation_aborted);
1,184✔
1422
    if (ec == util::MiscExtErrors::end_of_input || ec == util::error::connection_reset) {
1,184✔
1423
        // Suicide
1424
        close_due_to_close_by_client(ec); // Throws
672✔
1425
        return;
672✔
1426
    }
672✔
1427
    if (ec == util::MiscExtErrors::delim_not_found) {
512✔
1428
        logger.error("Input message head delimited not found"); // Throws
×
1429
        protocol_error(ProtocolError::limits_exceeded);         // Throws
×
1430
        return;
×
1431
    }
×
1432

1433
    logger.error("Reading failed: %1", ec.message()); // Throws
512✔
1434

1435
    // Suicide
1436
    close_due_to_error(ec); // Throws
512✔
1437
}
512✔
1438

1439
inline void SyncConnection::write_error(std::error_code ec)
1440
{
×
1441
    REALM_ASSERT(ec != util::error::operation_aborted);
×
1442
    if (ec == util::error::broken_pipe || ec == util::error::connection_reset) {
×
1443
        // Suicide
1444
        close_due_to_close_by_client(ec); // Throws
×
1445
        return;
×
1446
    }
×
1447
    logger.error("Writing failed: %1", ec.message()); // Throws
×
1448

1449
    // Suicide
1450
    close_due_to_error(ec); // Throws
×
1451
}
×
1452

1453

1454
// ============================ HTTPConnection ============================
1455

1456
std::string g_user_agent = "User-Agent";
1457

1458
class HTTPConnection {
1459
public:
1460
    const std::shared_ptr<Logger> logger_ptr;
1461
    util::Logger& logger;
1462

1463
    HTTPConnection(ServerImpl& serv, int_fast64_t id, bool is_ssl)
1464
        : logger_ptr{std::make_shared<PrefixLogger>(util::LogCategory::server, make_logger_prefix(id),
1,486✔
1465
                                                    serv.logger_ptr)} // Throws
1,486✔
1466
        , logger{*logger_ptr}
1,486✔
1467
        , m_server{serv}
1,486✔
1468
        , m_id{id}
1,486✔
1469
        , m_socket{new network::Socket{serv.get_service()}} // Throws
1,486✔
1470
        , m_read_ahead_buffer{new network::ReadAheadBuffer} // Throws
1,486✔
1471
        , m_http_server{*this, logger_ptr}
1,486✔
1472
    {
3,278✔
1473
        // Make the output buffer stream throw std::bad_alloc if it fails to
1474
        // expand the buffer
1475
        m_output_buffer.exceptions(std::ios_base::badbit | std::ios_base::failbit);
3,278✔
1476

1477
        if (is_ssl) {
3,278✔
1478
            using namespace network::ssl;
48✔
1479
            Context& ssl_context = serv.get_ssl_context();
48✔
1480
            m_ssl_stream = std::make_unique<Stream>(*m_socket, ssl_context,
48✔
1481
                                                    Stream::server); // Throws
48✔
1482
        }
48✔
1483
    }
3,278✔
1484

1485
    ServerImpl& get_server() noexcept
1486
    {
×
1487
        return m_server;
×
1488
    }
×
1489

1490
    int_fast64_t get_id() const noexcept
1491
    {
2,078✔
1492
        return m_id;
2,078✔
1493
    }
2,078✔
1494

1495
    network::Socket& get_socket() noexcept
1496
    {
5,008✔
1497
        return *m_socket;
5,008✔
1498
    }
5,008✔
1499

1500
    template <class H>
1501
    void async_write(const char* data, size_t size, H handler)
1502
    {
2,056✔
1503
        if (m_ssl_stream) {
2,056✔
1504
            m_ssl_stream->async_write(data, size, std::move(handler)); // Throws
14✔
1505
        }
14✔
1506
        else {
2,042✔
1507
            m_socket->async_write(data, size, std::move(handler)); // Throws
2,042✔
1508
        }
2,042✔
1509
    }
2,056✔
1510

1511
    template <class H>
1512
    void async_read(char* buffer, size_t size, H handler)
1513
    {
8✔
1514
        if (m_ssl_stream) {
8!
1515
            m_ssl_stream->async_read(buffer, size, *m_read_ahead_buffer,
×
1516
                                     std::move(handler)); // Throws
×
1517
        }
×
1518
        else {
8✔
1519
            m_socket->async_read(buffer, size, *m_read_ahead_buffer,
8✔
1520
                                 std::move(handler)); // Throws
8✔
1521
        }
8✔
1522
    }
8✔
1523

1524
    template <class H>
1525
    void async_read_until(char* buffer, size_t size, char delim, H handler)
1526
    {
18,396✔
1527
        if (m_ssl_stream) {
18,396!
1528
            m_ssl_stream->async_read_until(buffer, size, delim, *m_read_ahead_buffer,
126✔
1529
                                           std::move(handler)); // Throws
126✔
1530
        }
126✔
1531
        else {
18,270✔
1532
            m_socket->async_read_until(buffer, size, delim, *m_read_ahead_buffer,
18,270✔
1533
                                       std::move(handler)); // Throws
18,270✔
1534
        }
18,270✔
1535
    }
18,396✔
1536

1537
    void initiate(std::string remote_endpoint)
1538
    {
2,078✔
1539
        m_last_activity_at = steady_clock_now();
2,078✔
1540
        m_remote_endpoint = std::move(remote_endpoint);
2,078✔
1541

1542
        logger.detail("Connection from %1", m_remote_endpoint); // Throws
2,078✔
1543

1544
        if (m_ssl_stream) {
2,078✔
1545
            initiate_ssl_handshake(); // Throws
24✔
1546
        }
24✔
1547
        else {
2,054✔
1548
            initiate_http(); // Throws
2,054✔
1549
        }
2,054✔
1550
    }
2,078✔
1551

1552
    void respond_200_ok()
1553
    {
×
1554
        handle_text_response(HTTPStatus::Ok, "OK"); // Throws
×
1555
    }
×
1556

1557
    void respond_404_not_found()
1558
    {
×
1559
        handle_text_response(HTTPStatus::NotFound, "Not found"); // Throws
×
1560
    }
×
1561

1562
    void respond_503_service_unavailable()
1563
    {
×
1564
        handle_text_response(HTTPStatus::ServiceUnavailable, "Service unavailable"); // Throws
×
1565
    }
×
1566

1567
    // Commits suicide
1568
    template <class... Params>
1569
    void terminate(Logger::Level log_level, const char* log_message, Params... log_params)
1570
    {
42✔
1571
        logger.log(log_level, log_message, log_params...); // Throws
42✔
1572
        m_ssl_stream.reset();
42✔
1573
        m_socket.reset();
42✔
1574
        m_server.remove_http_connection(m_id); // Suicide
42✔
1575
    }
42✔
1576

1577
    // Commits suicide
1578
    void terminate_if_dead(SteadyTimePoint now)
1579
    {
2✔
1580
        milliseconds_type time = steady_duration(m_last_activity_at, now);
2✔
1581
        const Server::Config& config = m_server.get_config();
2✔
1582
        if (m_is_sending) {
2✔
UNCOV
1583
            if (time >= config.http_response_timeout) {
×
1584
                // Suicide
1585
                terminate(Logger::Level::detail,
×
1586
                          "HTTP connection closed (request timeout)"); // Throws
×
1587
            }
×
UNCOV
1588
        }
×
1589
        else {
2✔
1590
            if (time >= config.http_request_timeout) {
2✔
1591
                // Suicide
1592
                terminate(Logger::Level::detail,
×
1593
                          "HTTP connection closed (response timeout)"); // Throws
×
1594
            }
×
1595
        }
2✔
1596
    }
2✔
1597

1598
    std::string get_appservices_request_id() const
1599
    {
2,056✔
1600
        return m_appservices_request_id.to_string();
2,056✔
1601
    }
2,056✔
1602

1603
private:
1604
    ServerImpl& m_server;
1605
    const int_fast64_t m_id;
1606
    const ObjectId m_appservices_request_id = ObjectId::gen();
1607
    std::unique_ptr<network::Socket> m_socket;
1608
    std::unique_ptr<network::ssl::Stream> m_ssl_stream;
1609
    std::unique_ptr<network::ReadAheadBuffer> m_read_ahead_buffer;
1610
    HTTPServer<HTTPConnection> m_http_server;
1611
    OutputBuffer m_output_buffer;
1612
    bool m_is_sending = false;
1613
    SteadyTimePoint m_last_activity_at;
1614
    std::string m_remote_endpoint;
1615
    int m_negotiated_protocol_version = 0;
1616

1617
    void initiate_ssl_handshake()
1618
    {
24✔
1619
        auto handler = [this](std::error_code ec) {
24✔
1620
            if (ec != util::error::operation_aborted)
24✔
1621
                handle_ssl_handshake(ec); // Throws
24✔
1622
        };
24✔
1623
        m_ssl_stream->async_handshake(std::move(handler)); // Throws
24✔
1624
    }
24✔
1625

1626
    void handle_ssl_handshake(std::error_code ec)
1627
    {
24✔
1628
        if (ec) {
24✔
1629
            logger.error("SSL handshake error (%1): %2", ec, ec.message()); // Throws
10✔
1630
            close_due_to_error(ec);                                         // Throws
10✔
1631
            return;
10✔
1632
        }
10✔
1633
        initiate_http(); // Throws
14✔
1634
    }
14✔
1635

1636
    void initiate_http()
1637
    {
2,068✔
1638
        logger.debug("Connection initiates HTTP receipt");
2,068✔
1639

1640
        auto handler = [this](HTTPRequest request, std::error_code ec) {
2,068✔
1641
            if (REALM_UNLIKELY(ec == util::error::operation_aborted))
2,068✔
1642
                return;
×
1643
            if (REALM_UNLIKELY(ec == HTTPParserError::MalformedRequest)) {
2,068✔
1644
                logger.error("Malformed HTTP request");
×
1645
                close_due_to_error(ec); // Throws
×
1646
                return;
×
1647
            }
×
1648
            if (REALM_UNLIKELY(ec == HTTPParserError::BadRequest)) {
2,068✔
1649
                logger.error("Bad HTTP request");
8✔
1650
                const char* body = "The HTTP request was corrupted";
8✔
1651
                handle_400_bad_request(body); // Throws
8✔
1652
                return;
8✔
1653
            }
8✔
1654
            if (REALM_UNLIKELY(ec)) {
2,060✔
1655
                read_error(ec); // Throws
12✔
1656
                return;
12✔
1657
            }
12✔
1658
            handle_http_request(std::move(request)); // Throws
2,048✔
1659
        };
2,048✔
1660
        m_http_server.async_receive_request(std::move(handler)); // Throws
2,068✔
1661
    }
2,068✔
1662

1663
    void handle_http_request(const HTTPRequest& request)
1664
    {
2,048✔
1665
        StringData path = request.path;
2,048✔
1666

1667
        logger.debug("HTTP request received, request = %1", request);
2,048✔
1668

1669
        m_is_sending = true;
2,048✔
1670
        m_last_activity_at = steady_clock_now();
2,048✔
1671

1672
        // FIXME: When thinking of this function as a switching device, it seem
1673
        // wrong that it requires a `%2F` after `/realm-sync/`. If `%2F` is
1674
        // supposed to be mandatory, then that check ought to be delegated to
1675
        // handle_request_for_sync(), as that will yield a sharper separation of
1676
        // concerns.
1677
        if (path == "/realm-sync" || path.begins_with("/realm-sync?") || path.begins_with("/realm-sync/%2F")) {
2,048✔
1678
            handle_request_for_sync(request); // Throws
2,036✔
1679
        }
2,036✔
1680
        else {
12✔
1681
            handle_404_not_found(request); // Throws
12✔
1682
        }
12✔
1683
    }
2,048✔
1684

1685
    void handle_request_for_sync(const HTTPRequest& request)
1686
    {
2,036✔
1687
        if (m_server.is_sync_stopped()) {
2,036✔
1688
            logger.debug("Attempt to create a sync connection to a server that has been "
×
1689
                         "stopped"); // Throws
×
1690
            handle_503_service_unavailable(request, "The server does not accept sync "
×
1691
                                                    "connections"); // Throws
×
1692
            return;
×
1693
        }
×
1694

1695
        util::Optional<std::string> sec_websocket_protocol = websocket::read_sec_websocket_protocol(request);
2,036✔
1696

1697
        // Figure out whether there are any protocol versions supported by both
1698
        // the client and the server, and if so, choose the newest one of them.
1699
        MiscBuffers& misc_buffers = m_server.get_misc_buffers();
2,036✔
1700
        using ProtocolVersionRanges = MiscBuffers::ProtocolVersionRanges;
2,036✔
1701
        ProtocolVersionRanges& protocol_version_ranges = misc_buffers.protocol_version_ranges;
2,036✔
1702
        {
2,036✔
1703
            protocol_version_ranges.clear();
2,036✔
1704
            util::MemoryInputStream in;
2,036✔
1705
            in.imbue(std::locale::classic());
2,036✔
1706
            in.unsetf(std::ios_base::skipws);
2,036✔
1707
            std::string_view value;
2,036✔
1708
            if (sec_websocket_protocol)
2,036✔
1709
                value = *sec_websocket_protocol;
2,036✔
1710
            HttpListHeaderValueParser parser{value};
2,036✔
1711
            std::string_view elem;
2,036✔
1712
            while (parser.next(elem)) {
28,504✔
1713
                // FIXME: Use std::string_view::begins_with() in C++20.
1714
                const StringData protocol{elem};
26,468✔
1715
                std::string_view prefix;
26,468✔
1716
                if (protocol.begins_with(get_pbs_websocket_protocol_prefix()))
26,468✔
1717
                    prefix = get_pbs_websocket_protocol_prefix();
26,468✔
UNCOV
1718
                else if (protocol.begins_with(get_old_pbs_websocket_protocol_prefix()))
×
1719
                    prefix = get_old_pbs_websocket_protocol_prefix();
×
1720
                if (!prefix.empty()) {
26,468✔
1721
                    auto parse_version = [&](std::string_view str) {
26,468✔
1722
                        in.set_buffer(str.data(), str.data() + str.size());
26,468✔
1723
                        int version = 0;
26,468✔
1724
                        in >> version;
26,468✔
1725
                        if (REALM_LIKELY(in && in.eof() && version >= 0))
26,468✔
1726
                            return version;
26,468✔
1727
                        return -1;
×
1728
                    };
26,468✔
1729
                    int min, max;
26,468✔
1730
                    std::string_view range = elem.substr(prefix.size());
26,468✔
1731
                    auto i = range.find('-');
26,468✔
1732
                    if (i != std::string_view::npos) {
26,468✔
1733
                        min = parse_version(range.substr(0, i));
×
1734
                        max = parse_version(range.substr(i + 1));
×
1735
                    }
×
1736
                    else {
26,468✔
1737
                        min = parse_version(range);
26,468✔
1738
                        max = min;
26,468✔
1739
                    }
26,468✔
1740
                    if (REALM_LIKELY(min >= 0 && max >= 0 && min <= max)) {
26,468✔
1741
                        protocol_version_ranges.emplace_back(min, max); // Throws
26,468✔
1742
                        continue;
26,468✔
1743
                    }
26,468✔
1744
                    logger.error("Protocol version negotiation failed: Client sent malformed "
×
1745
                                 "specification of supported protocol versions: '%1'",
×
1746
                                 elem); // Throws
×
1747
                    handle_400_bad_request("Protocol version negotiation failed: Malformed "
×
1748
                                           "specification of supported protocol "
×
1749
                                           "versions\n"); // Throws
×
1750
                    return;
×
1751
                }
26,468✔
UNCOV
1752
                logger.warn("Unrecognized protocol token in HTTP response header "
×
UNCOV
1753
                            "Sec-WebSocket-Protocol: '%1'",
×
UNCOV
1754
                            elem); // Throws
×
UNCOV
1755
            }
×
1756
            if (protocol_version_ranges.empty()) {
2,036✔
1757
                logger.error("Protocol version negotiation failed: Client did not send a "
×
1758
                             "specification of supported protocol versions"); // Throws
×
1759
                handle_400_bad_request("Protocol version negotiation failed: Missing specification "
×
1760
                                       "of supported protocol versions\n"); // Throws
×
1761
                return;
×
1762
            }
×
1763
        }
2,036✔
1764
        {
2,036✔
1765
            ProtocolVersionRange server_range = m_server.get_protocol_version_range();
2,036✔
1766
            int server_min = server_range.first;
2,036✔
1767
            int server_max = server_range.second;
2,036✔
1768
            int best_match = 0;
2,036✔
1769
            int overall_client_min = std::numeric_limits<int>::max();
2,036✔
1770
            int overall_client_max = std::numeric_limits<int>::min();
2,036✔
1771
            for (const auto& range : protocol_version_ranges) {
26,468✔
1772
                int client_min = range.first;
26,468✔
1773
                int client_max = range.second;
26,468✔
1774
                if (client_max >= server_min && client_min <= server_max) {
26,468✔
1775
                    // Overlap
1776
                    int version = std::min(client_max, server_max);
26,468✔
1777
                    if (version > best_match) {
26,468✔
1778
                        best_match = version;
2,036✔
1779
                    }
2,036✔
1780
                }
26,468✔
1781
                if (client_min < overall_client_min)
26,468✔
1782
                    overall_client_min = client_min;
26,468✔
1783
                if (client_max > overall_client_max)
26,468✔
1784
                    overall_client_max = client_max;
2,036✔
1785
            }
26,468✔
1786
            Formatter& formatter = misc_buffers.formatter;
2,036✔
1787
            if (REALM_UNLIKELY(best_match == 0)) {
2,036✔
1788
                const char* elaboration = "No version supported by both client and server";
×
1789
                auto format_ranges = [&](const auto& list) {
×
1790
                    bool nonfirst = false;
×
1791
                    for (auto range : list) {
×
1792
                        if (nonfirst)
×
1793
                            formatter << ", "; // Throws
×
1794
                        int min = range.first, max = range.second;
×
1795
                        REALM_ASSERT(min <= max);
×
1796
                        formatter << min;
×
1797
                        if (max != min)
×
1798
                            formatter << "-" << max;
×
1799
                        nonfirst = true;
×
1800
                    }
×
1801
                };
×
1802
                using Range = ProtocolVersionRange;
×
1803
                formatter.reset();
×
1804
                format_ranges(protocol_version_ranges); // Throws
×
1805
                logger.error("Protocol version negotiation failed: %1 "
×
1806
                             "(client supports: %2)",
×
1807
                             elaboration, std::string_view(formatter.data(), formatter.size())); // Throws
×
1808
                formatter.reset();
×
1809
                formatter << "Protocol version negotiation failed: "
×
1810
                             ""
×
1811
                          << elaboration << ".\n\n";                                   // Throws
×
1812
                formatter << "Server supports: ";                                      // Throws
×
1813
                format_ranges(std::initializer_list<Range>{{server_min, server_max}}); // Throws
×
1814
                formatter << "\n";                                                     // Throws
×
1815
                formatter << "Client supports: ";                                      // Throws
×
1816
                format_ranges(protocol_version_ranges);                                // Throws
×
NEW
1817
                formatter << "\n";                                                     // Throws
×
NEW
1818
                handle_400_bad_request({formatter.data(), formatter.size()});          // Throws
×
1819
                return;
×
1820
            }
×
1821
            m_negotiated_protocol_version = best_match;
2,036✔
1822
            logger.debug("Received: Sync HTTP request (negotiated_protocol_version=%1)",
2,036✔
1823
                         m_negotiated_protocol_version); // Throws
2,036✔
1824
            formatter.reset();
2,036✔
1825
        }
2,036✔
1826

1827
        std::string sec_websocket_protocol_2;
×
1828
        {
2,036✔
1829
            std::string_view prefix =
2,036✔
1830
                m_negotiated_protocol_version < SyncConnection::PBS_FLX_MIGRATION_PROTOCOL_VERSION
2,036✔
1831
                    ? get_old_pbs_websocket_protocol_prefix()
2,036✔
1832
                    : get_pbs_websocket_protocol_prefix();
2,036✔
1833
            std::ostringstream out;
2,036✔
1834
            out.imbue(std::locale::classic());
2,036✔
1835
            out << prefix << m_negotiated_protocol_version; // Throws
2,036✔
1836
            sec_websocket_protocol_2 = std::move(out).str();
2,036✔
1837
        }
2,036✔
1838

1839
        std::error_code ec;
2,036✔
1840
        util::Optional<HTTPResponse> response =
2,036✔
1841
            websocket::make_http_response(request, sec_websocket_protocol_2, ec); // Throws
2,036✔
1842

1843
        if (ec) {
2,036✔
1844
            if (ec == websocket::HttpError::bad_request_header_upgrade) {
×
1845
                logger.error("There must be a header of the form 'Upgrade: websocket'");
×
1846
            }
×
1847
            else if (ec == websocket::HttpError::bad_request_header_connection) {
×
1848
                logger.error("There must be a header of the form 'Connection: Upgrade'");
×
1849
            }
×
1850
            else if (ec == websocket::HttpError::bad_request_header_websocket_version) {
×
1851
                logger.error("There must be a header of the form 'Sec-WebSocket-Version: 13'");
×
1852
            }
×
1853
            else if (ec == websocket::HttpError::bad_request_header_websocket_key) {
×
1854
                logger.error("The header Sec-WebSocket-Key is missing");
×
1855
            }
×
1856

1857
            logger.error("The HTTP request with the error is:\n%1", request);
×
1858
            logger.error("Check the proxy configuration and make sure that the "
×
1859
                         "HTTP request is a valid Websocket request.");
×
1860
            close_due_to_error(ec);
×
1861
            return;
×
1862
        }
×
1863
        REALM_ASSERT(response);
2,036✔
1864
        add_common_http_response_headers(*response);
2,036✔
1865

1866
        std::string user_agent;
2,036✔
1867
        {
2,036✔
1868
            auto i = request.headers.find(g_user_agent);
2,036✔
1869
            if (i != request.headers.end())
2,036✔
1870
                user_agent = i->second; // Throws (copy)
2,036✔
1871
        }
2,036✔
1872

1873
        auto handler = [protocol_version = m_negotiated_protocol_version, user_agent = std::move(user_agent),
2,036✔
1874
                        this](std::error_code ec) {
2,036✔
1875
            // If the operation is aborted, the socket object may have been destroyed.
1876
            if (ec != util::error::operation_aborted) {
2,036✔
1877
                if (ec) {
2,036✔
1878
                    write_error(ec);
×
1879
                    return;
×
1880
                }
×
1881

1882
                std::unique_ptr<SyncConnection> sync_conn = std::make_unique<SyncConnection>(
2,036✔
1883
                    m_server, m_id, std::move(m_socket), std::move(m_ssl_stream), std::move(m_read_ahead_buffer),
2,036✔
1884
                    protocol_version, std::move(user_agent), std::move(m_remote_endpoint),
2,036✔
1885
                    get_appservices_request_id()); // Throws
2,036✔
1886
                SyncConnection& sync_conn_ref = *sync_conn;
2,036✔
1887
                m_server.add_sync_connection(m_id, std::move(sync_conn));
2,036✔
1888
                m_server.remove_http_connection(m_id);
2,036✔
1889
                sync_conn_ref.initiate();
2,036✔
1890
            }
2,036✔
1891
        };
2,036✔
1892
        m_http_server.async_send_response(*response, std::move(handler));
2,036✔
1893
    }
2,036✔
1894

1895
    void handle_text_response(HTTPStatus http_status, std::string_view body)
1896
    {
20✔
1897
        std::string body_2 = std::string(body); // Throws
20✔
1898

1899
        HTTPResponse response;
20✔
1900
        response.status = http_status;
20✔
1901
        add_common_http_response_headers(response);
20✔
1902
        response.headers["Connection"] = "close";
20✔
1903

1904
        if (!body_2.empty()) {
20✔
1905
            response.headers["Content-Length"] = util::to_string(body_2.size());
20✔
1906
            response.body = std::move(body_2);
20✔
1907
        }
20✔
1908

1909
        auto handler = [this](std::error_code ec) {
20✔
1910
            if (REALM_UNLIKELY(ec == util::error::operation_aborted))
20✔
1911
                return;
×
1912
            if (REALM_UNLIKELY(ec)) {
20✔
1913
                write_error(ec);
×
1914
                return;
×
1915
            }
×
1916
            terminate(Logger::Level::detail, "HTTP connection closed"); // Throws
20✔
1917
        };
20✔
1918
        m_http_server.async_send_response(response, std::move(handler));
20✔
1919
    }
20✔
1920

1921
    void handle_400_bad_request(std::string_view body)
1922
    {
8✔
1923
        logger.detail("400 Bad Request");
8✔
1924
        handle_text_response(HTTPStatus::BadRequest, body); // Throws
8✔
1925
    }
8✔
1926

1927
    void handle_404_not_found(const HTTPRequest&)
1928
    {
12✔
1929
        logger.detail("404 Not Found"); // Throws
12✔
1930
        handle_text_response(HTTPStatus::NotFound,
12✔
1931
                             "Realm sync server\n\nPage not found\n"); // Throws
12✔
1932
    }
12✔
1933

1934
    void handle_503_service_unavailable(const HTTPRequest&, std::string_view message)
1935
    {
×
1936
        logger.debug("503 Service Unavailable");                       // Throws
×
1937
        handle_text_response(HTTPStatus::ServiceUnavailable, message); // Throws
×
1938
    }
×
1939

1940
    void add_common_http_response_headers(HTTPResponse& response)
1941
    {
2,056✔
1942
        response.headers["Server"] = "RealmSync/" REALM_VERSION_STRING; // Throws
2,056✔
1943
        if (m_negotiated_protocol_version < SyncConnection::SERVER_LOG_PROTOCOL_VERSION) {
2,056✔
1944
            // This isn't a real X-Appservices-Request-Id, but it should be enough to test with
1945
            response.headers["X-Appservices-Request-Id"] = get_appservices_request_id();
20✔
1946
        }
20✔
1947
    }
2,056✔
1948

1949
    void read_error(std::error_code ec)
1950
    {
12✔
1951
        REALM_ASSERT(ec != util::error::operation_aborted);
12✔
1952
        if (ec == util::MiscExtErrors::end_of_input || ec == util::error::connection_reset) {
12!
1953
            // Suicide
1954
            close_due_to_close_by_client(ec); // Throws
12✔
1955
            return;
12✔
1956
        }
12✔
1957
        if (ec == util::MiscExtErrors::delim_not_found) {
×
1958
            logger.error("Input message head delimited not found"); // Throws
×
1959
            close_due_to_error(ec);                                 // Throws
×
1960
            return;
×
1961
        }
×
1962

1963
        logger.error("Reading failed: %1", ec.message()); // Throws
×
1964

1965
        // Suicide
1966
        close_due_to_error(ec); // Throws
×
1967
    }
×
1968

1969
    void write_error(std::error_code ec)
1970
    {
×
1971
        REALM_ASSERT(ec != util::error::operation_aborted);
×
1972
        if (ec == util::error::broken_pipe || ec == util::error::connection_reset) {
×
1973
            // Suicide
1974
            close_due_to_close_by_client(ec); // Throws
×
1975
            return;
×
1976
        }
×
1977
        logger.error("Writing failed: %1", ec.message()); // Throws
×
1978

1979
        // Suicide
1980
        close_due_to_error(ec); // Throws
×
1981
    }
×
1982

1983
    void close_due_to_close_by_client(std::error_code ec)
1984
    {
12✔
1985
        auto log_level = (ec == util::MiscExtErrors::end_of_input ? Logger::Level::detail : Logger::Level::info);
12✔
1986
        // Suicide
1987
        terminate(log_level, "HTTP connection closed by client: %1", ec.message()); // Throws
12✔
1988
    }
12✔
1989

1990
    void close_due_to_error(std::error_code ec)
1991
    {
10✔
1992
        // Suicide
1993
        terminate(Logger::Level::error, "HTTP connection closed due to error: %1",
10✔
1994
                  ec.message()); // Throws
10✔
1995
    }
10✔
1996

1997
    static std::string make_logger_prefix(int_fast64_t id)
1998
    {
3,278✔
1999
        std::ostringstream out;
3,278✔
2000
        out.imbue(std::locale::classic());
3,278✔
2001
        out << "HTTP Connection[" << id << "]: "; // Throws
3,278✔
2002
        return out.str();                         // Throws
3,278✔
2003
    }
3,278✔
2004
};
2005

2006

2007
class DownloadHistoryEntryHandler : public ServerHistory::HistoryEntryHandler {
2008
public:
2009
    std::size_t num_changesets = 0;
2010
    std::size_t accum_original_size = 0;
2011
    std::size_t accum_compacted_size = 0;
2012

2013
    DownloadHistoryEntryHandler(ServerProtocol& protocol, OutputBuffer& buffer, util::Logger& logger) noexcept
2014
        : m_protocol{protocol}
18,772✔
2015
        , m_buffer{buffer}
18,772✔
2016
        , m_logger{logger}
18,772✔
2017
    {
41,766✔
2018
    }
41,766✔
2019

2020
    void handle(version_type server_version, const HistoryEntry& entry, size_t original_size) override
2021
    {
43,290✔
2022
        version_type client_version = entry.remote_version;
43,290✔
2023
        ServerProtocol::ChangesetInfo info{server_version, client_version, entry, original_size};
43,290✔
2024
        m_protocol.insert_single_changeset_download_message(m_buffer, info, m_logger); // Throws
43,290✔
2025
        ++num_changesets;
43,290✔
2026
        accum_original_size += original_size;
43,290✔
2027
        accum_compacted_size += entry.changeset.size();
43,290✔
2028
    }
43,290✔
2029

2030
private:
2031
    ServerProtocol& m_protocol;
2032
    OutputBuffer& m_buffer;
2033
    util::Logger& m_logger;
2034
};
2035

2036

2037
// ============================ Session ============================
2038

2039
//                        Need cli-   Send     IDENT     UNBIND              ERROR
2040
//   Protocol             ent file    IDENT    message   message   Error     message
2041
//   state                identifier  message  received  received  occurred  sent
2042
// ---------------------------------------------------------------------------------
2043
//   AllocatingIdent      yes         yes      no        no        no        no
2044
//   SendIdent            no          yes      no        no        no        no
2045
//   WaitForIdent         no          no       no        no        no        no
2046
//   WaitForUnbind        maybe       no       yes       no        no        no
2047
//   SendError            maybe       maybe    maybe     no        yes       no
2048
//   WaitForUnbindErr     maybe       maybe    maybe     no        yes       yes
2049
//   SendUnbound          maybe       maybe    maybe     yes       maybe     no
2050
//
2051
//
2052
//   Condition                      Expression
2053
// ----------------------------------------------------------
2054
//   Need client file identifier    need_client_file_ident()
2055
//   Send IDENT message             must_send_ident_message()
2056
//   IDENT message received         ident_message_received()
2057
//   UNBIND message received        unbind_message_received()
2058
//   Error occurred                 error_occurred()
2059
//   ERROR message sent             m_error_message_sent
2060
//
2061
//
2062
//   Protocol
2063
//   state                Will send              Can receive
2064
// -----------------------------------------------------------------------
2065
//   AllocatingIdent      none                   UNBIND
2066
//   SendIdent            IDENT                  UNBIND
2067
//   WaitForIdent         none                   IDENT, UNBIND
2068
//   WaitForUnbind        DOWNLOAD, TRANSACT,    UPLOAD, TRANSACT, MARK,
2069
//                        MARK, ALLOC            ALLOC, UNBIND
2070
//   SendError            ERROR                  any
2071
//   WaitForUnbindErr     none                   any
2072
//   SendUnbound          UNBOUND                none
2073
//
2074
class Session final : private FileIdentReceiver {
2075
public:
2076
    util::PrefixLogger logger;
2077

2078
    Session(SyncConnection& conn, session_ident_type session_ident)
2079
        : logger{util::LogCategory::server, make_logger_prefix(session_ident), conn.logger_ptr} // Throws
2,688✔
2080
        , m_connection{conn}
2,688✔
2081
        , m_session_ident{session_ident}
2,688✔
2082
    {
5,204✔
2083
    }
5,204✔
2084

2085
    ~Session() noexcept
2086
    {
5,200✔
2087
        REALM_ASSERT(!is_enlisted_to_send());
5,200✔
2088
        detach_from_server_file();
5,200✔
2089
    }
5,200✔
2090

2091
    SyncConnection& get_connection() noexcept
2092
    {
41,786✔
2093
        return m_connection;
41,786✔
2094
    }
41,786✔
2095

2096
    const Optional<std::array<char, 64>>& get_encryption_key()
2097
    {
×
2098
        return m_connection.get_server().get_config().encryption_key;
×
2099
    }
×
2100

2101
    session_ident_type get_session_ident() const noexcept
2102
    {
160✔
2103
        return m_session_ident;
160✔
2104
    }
160✔
2105

2106
    ServerProtocol& get_server_protocol() noexcept
2107
    {
57,232✔
2108
        return m_connection.get_server_protocol();
57,232✔
2109
    }
57,232✔
2110

2111
    bool need_client_file_ident() const noexcept
2112
    {
6,886✔
2113
        return (m_file_ident_request != 0);
6,886✔
2114
    }
6,886✔
2115

2116
    bool must_send_ident_message() const noexcept
2117
    {
4,206✔
2118
        return m_send_ident_message;
4,206✔
2119
    }
4,206✔
2120

2121
    bool ident_message_received() const noexcept
2122
    {
343,520✔
2123
        return m_client_file_ident != 0;
343,520✔
2124
    }
343,520✔
2125

2126
    bool unbind_message_received() const noexcept
2127
    {
345,118✔
2128
        return m_unbind_message_received;
345,118✔
2129
    }
345,118✔
2130

2131
    bool error_occurred() const noexcept
2132
    {
338,620✔
2133
        return int(m_error_code) != 0;
338,620✔
2134
    }
338,620✔
2135

2136
    bool relayed_alloc_request_in_progress() const noexcept
2137
    {
×
2138
        return (need_client_file_ident() || m_allocated_file_ident.ident != 0);
×
2139
    }
×
2140

2141
    // Returns the file identifier (always a nonzero value) of the client side
2142
    // file if ident_message_received() returns true. Otherwise it returns zero.
2143
    file_ident_type get_client_file_ident() const noexcept
2144
    {
×
2145
        return m_client_file_ident;
×
2146
    }
×
2147

2148
    void initiate()
2149
    {
5,204✔
2150
        logger.detail("Session initiated", m_session_ident); // Throws
5,204✔
2151
    }
5,204✔
2152

2153
    void terminate()
2154
    {
3,914✔
2155
        logger.detail("Session terminated", m_session_ident); // Throws
3,914✔
2156
    }
3,914✔
2157

2158
    // Initiate the deactivation process, if it has not been initiated already
2159
    // by the client.
2160
    //
2161
    // IMPORTANT: This function must not be called with protocol versions
2162
    // earlier than 23.
2163
    //
2164
    // The deactivation process will eventually lead to termination of the
2165
    // session.
2166
    //
2167
    // The session will detach itself from the server file when the deactivation
2168
    // process is initiated, regardless of whether it is initiated by the
2169
    // client, or by calling this function.
2170
    void initiate_deactivation(ProtocolError error_code)
2171
    {
80✔
2172
        REALM_ASSERT(is_session_level_error(error_code));
80✔
2173
        REALM_ASSERT(!error_occurred()); // Must only be called once
80✔
2174

2175
        // If the UNBIND message has been received, then the client has
2176
        // initiated the deactivation process already.
2177
        if (REALM_LIKELY(!unbind_message_received())) {
80✔
2178
            detach_from_server_file();
80✔
2179
            m_error_code = error_code;
80✔
2180
            // Protocol state is now SendError
2181
            ensure_enlisted_to_send();
80✔
2182
            return;
80✔
2183
        }
80✔
2184
        // Protocol state was SendUnbound, and remains unchanged
2185
    }
80✔
2186

2187
    bool is_enlisted_to_send() const noexcept
2188
    {
275,384✔
2189
        return m_next != nullptr;
275,384✔
2190
    }
275,384✔
2191

2192
    void ensure_enlisted_to_send() noexcept
2193
    {
53,504✔
2194
        if (!is_enlisted_to_send())
53,504✔
2195
            enlist_to_send();
52,416✔
2196
    }
53,504✔
2197

2198
    void enlist_to_send() noexcept
2199
    {
110,334✔
2200
        m_connection.enlist_to_send(this);
110,334✔
2201
    }
110,334✔
2202

2203
    // Overriding memeber function in FileIdentReceiver
2204
    void receive_file_ident(SaltedFileIdent file_ident) override final
2205
    {
1,340✔
2206
        // Protocol state must be AllocatingIdent or WaitForUnbind
2207
        if (!ident_message_received()) {
1,340✔
2208
            REALM_ASSERT(need_client_file_ident());
1,340✔
2209
            REALM_ASSERT(m_send_ident_message);
1,340✔
2210
        }
1,340✔
2211
        else {
×
2212
            REALM_ASSERT(!m_send_ident_message);
×
2213
        }
×
2214
        REALM_ASSERT(!unbind_message_received());
1,340✔
2215
        REALM_ASSERT(!error_occurred());
1,340✔
2216
        REALM_ASSERT(!m_error_message_sent);
1,340✔
2217

2218
        m_file_ident_request = 0;
1,340✔
2219
        m_allocated_file_ident = file_ident;
1,340✔
2220

2221
        // If the protocol state was AllocatingIdent, it is now SendIdent,
2222
        // otherwise it continues to be WaitForUnbind.
2223

2224
        logger.debug("Acquired outbound salted file identifier (%1, %2)", file_ident.ident,
1,340✔
2225
                     file_ident.salt); // Throws
1,340✔
2226

2227
        ensure_enlisted_to_send();
1,340✔
2228
    }
1,340✔
2229

2230
    // Called by the associated connection object when this session is granted
2231
    // an opportunity to initiate the sending of a message.
2232
    //
2233
    // This function may lead to the destruction of the session object
2234
    // (suicide).
2235
    void send_message()
2236
    {
109,846✔
2237
        if (REALM_LIKELY(!unbind_message_received())) {
109,846✔
2238
            if (REALM_LIKELY(!error_occurred())) {
107,792✔
2239
                if (REALM_LIKELY(ident_message_received())) {
107,712✔
2240
                    // State is WaitForUnbind.
2241
                    bool relayed_alloc = (m_allocated_file_ident.ident != 0);
106,370✔
2242
                    if (REALM_LIKELY(!relayed_alloc)) {
106,370✔
2243
                        // Send DOWNLOAD or MARK.
2244
                        continue_history_scan(); // Throws
106,370✔
2245
                        // Session object may have been
2246
                        // destroyed at this point (suicide)
2247
                        return;
106,370✔
2248
                    }
106,370✔
2249
                    send_alloc_message(); // Throws
×
2250
                    return;
×
2251
                }
106,370✔
2252
                // State is SendIdent
2253
                send_ident_message(); // Throws
1,342✔
2254
                return;
1,342✔
2255
            }
107,712✔
2256
            // State is SendError
2257
            send_error_message(); // Throws
80✔
2258
            return;
80✔
2259
        }
107,792✔
2260
        // State is SendUnbound
2261
        send_unbound_message(); // Throws
2,054✔
2262
        terminate();            // Throws
2,054✔
2263
        m_connection.discard_session(m_session_ident);
2,054✔
2264
        // This session is now destroyed!
2265
    }
2,054✔
2266

2267
    bool receive_bind_message(std::string path, std::string signed_user_token, bool need_client_file_ident,
2268
                              bool is_subserver, ProtocolError& error)
2269
    {
5,206✔
2270
        if (logger.would_log(util::Logger::Level::info)) {
5,206✔
2271
            logger.detail("Received: BIND(server_path=%1, signed_user_token='%2', "
364✔
2272
                          "need_client_file_ident=%3, is_subserver=%4)",
364✔
2273
                          path, short_token_fmt(signed_user_token), int(need_client_file_ident),
364✔
2274
                          int(is_subserver)); // Throws
364✔
2275
        }
364✔
2276

2277
        ServerImpl& server = m_connection.get_server();
5,206✔
2278
        _impl::VirtualPathComponents virt_path_components =
5,206✔
2279
            _impl::parse_virtual_path(server.get_root_dir(), path); // Throws
5,206✔
2280

2281
        if (!virt_path_components.is_valid) {
5,206✔
2282
            logger.error("Bad virtual path (message_type='bind', path='%1', "
28✔
2283
                         "signed_user_token='%2')",
28✔
2284
                         path,
28✔
2285
                         short_token_fmt(signed_user_token)); // Throws
28✔
2286
            error = ProtocolError::illegal_realm_path;
28✔
2287
            return false;
28✔
2288
        }
28✔
2289

2290
        // The user has proper permissions at this stage.
2291

2292
        m_server_file = server.get_or_create_file(path); // Throws
5,178✔
2293

2294
        m_server_file->add_unidentified_session(this); // Throws
5,178✔
2295

2296
        logger.info("Client info: (path='%1', from=%2, protocol=%3) %4", path, m_connection.get_remote_endpoint(),
5,178✔
2297
                    m_connection.get_client_protocol_version(),
5,178✔
2298
                    m_connection.get_client_user_agent()); // Throws
5,178✔
2299

2300
        m_is_subserver = is_subserver;
5,178✔
2301
        if (REALM_LIKELY(!need_client_file_ident)) {
5,178✔
2302
            // Protocol state is now WaitForUnbind
2303
            return true;
3,780✔
2304
        }
3,780✔
2305

2306
        // FIXME: We must make a choice about client file ident for read only
2307
        // sessions. They should have a special read-only client file ident.
2308
        file_ident_type proxy_file = 0; // No proxy
1,398✔
2309
        ClientType client_type = (is_subserver ? ClientType::subserver : ClientType::regular);
1,398✔
2310
        m_file_ident_request = m_server_file->request_file_ident(*this, proxy_file, client_type); // Throws
1,398✔
2311
        m_send_ident_message = true;
1,398✔
2312
        // Protocol state is now AllocatingIdent
2313

2314
        return true;
1,398✔
2315
    }
5,178✔
2316

2317
    bool receive_ident_message(file_ident_type client_file_ident, salt_type client_file_ident_salt,
2318
                               version_type scan_server_version, version_type scan_client_version,
2319
                               version_type latest_server_version, salt_type latest_server_version_salt,
2320
                               ProtocolError& error)
2321
    {
4,206✔
2322
        // Protocol state must be WaitForIdent
2323
        REALM_ASSERT(!need_client_file_ident());
4,206✔
2324
        REALM_ASSERT(!m_send_ident_message);
4,206✔
2325
        REALM_ASSERT(!ident_message_received());
4,206✔
2326
        REALM_ASSERT(!unbind_message_received());
4,206✔
2327
        REALM_ASSERT(!error_occurred());
4,206✔
2328
        REALM_ASSERT(!m_error_message_sent);
4,206✔
2329

2330
        logger.debug("Received: IDENT(client_file_ident=%1, client_file_ident_salt=%2, "
4,206✔
2331
                     "scan_server_version=%3, scan_client_version=%4, latest_server_version=%5, "
4,206✔
2332
                     "latest_server_version_salt=%6)",
4,206✔
2333
                     client_file_ident, client_file_ident_salt, scan_server_version, scan_client_version,
4,206✔
2334
                     latest_server_version, latest_server_version_salt); // Throws
4,206✔
2335

2336
        SaltedFileIdent client_file_ident_2 = {client_file_ident, client_file_ident_salt};
4,206✔
2337
        DownloadCursor download_progress = {scan_server_version, scan_client_version};
4,206✔
2338
        SaltedVersion server_version_2 = {latest_server_version, latest_server_version_salt};
4,206✔
2339
        ClientType client_type = (m_is_subserver ? ClientType::subserver : ClientType::regular);
4,206✔
2340
        UploadCursor upload_threshold = {0, 0};
4,206✔
2341
        version_type locked_server_version = 0;
4,206✔
2342
        BootstrapError error_2 =
4,206✔
2343
            m_server_file->bootstrap_client_session(client_file_ident_2, download_progress, server_version_2,
4,206✔
2344
                                                    client_type, upload_threshold, locked_server_version,
4,206✔
2345
                                                    logger); // Throws
4,206✔
2346
        switch (error_2) {
4,206✔
2347
            case BootstrapError::no_error:
4,174✔
2348
                break;
4,174✔
2349
            case BootstrapError::client_file_expired:
✔
2350
                logger.warn("Client (%1) expired", client_file_ident); // Throws
×
2351
                error = ProtocolError::client_file_expired;
×
2352
                return false;
×
2353
            case BootstrapError::bad_client_file_ident:
✔
2354
                logger.error("Bad client file ident (%1) in IDENT message",
×
2355
                             client_file_ident); // Throws
×
2356
                error = ProtocolError::bad_client_file_ident;
×
2357
                return false;
×
2358
            case BootstrapError::bad_client_file_ident_salt:
4✔
2359
                logger.error("Bad client file identifier salt (%1) in IDENT message",
4✔
2360
                             client_file_ident_salt); // Throws
4✔
2361
                error = ProtocolError::diverging_histories;
4✔
2362
                return false;
4✔
2363
            case BootstrapError::bad_download_server_version:
✔
2364
                logger.error("Bad download progress server version in IDENT message"); // Throws
×
2365
                error = ProtocolError::bad_server_version;
×
2366
                return false;
×
2367
            case BootstrapError::bad_download_client_version:
4✔
2368
                logger.error("Bad download progress client version in IDENT message"); // Throws
4✔
2369
                error = ProtocolError::bad_client_version;
4✔
2370
                return false;
4✔
2371
            case BootstrapError::bad_server_version:
20✔
2372
                logger.error("Bad server version (message_type='ident')"); // Throws
20✔
2373
                error = ProtocolError::bad_server_version;
20✔
2374
                return false;
20✔
2375
            case BootstrapError::bad_server_version_salt:
4✔
2376
                logger.error("Bad server version salt in IDENT message"); // Throws
4✔
2377
                error = ProtocolError::diverging_histories;
4✔
2378
                return false;
4✔
2379
            case BootstrapError::bad_client_type:
✔
2380
                logger.error("Bad client type (%1) in IDENT message", int(client_type)); // Throws
×
2381
                error = ProtocolError::bad_client_file_ident; // FIXME: Introduce new protocol-level error
×
2382
                                                              // `bad_client_type`.
2383
                return false;
×
2384
        }
4,206✔
2385

2386
        // Make sure there is no other session currently associcated with the
2387
        // same client-side file
2388
        if (Session* other_sess = m_server_file->get_identified_session(client_file_ident)) {
4,174✔
2389
            SyncConnection& other_conn = other_sess->get_connection();
×
2390
            // It is a protocol violation if the other session is associated
2391
            // with the same connection
2392
            if (&other_conn == &m_connection) {
×
2393
                logger.error("Client file already bound in other session associated with "
×
2394
                             "the same connection"); // Throws
×
2395
                error = ProtocolError::bound_in_other_session;
×
2396
                return false;
×
2397
            }
×
2398
            // When the other session is associated with a different connection
2399
            // (`other_conn`), the clash may be due to the server not yet having
2400
            // realized that the other connection has been closed by the
2401
            // client. If so, the other connention is a "zombie". In the
2402
            // interest of getting rid of zombie connections as fast as
2403
            // possible, we shall assume that a clash with a session in another
2404
            // connection is always due to that other connection being a
2405
            // zombie. And when such a situation is detected, we want to close
2406
            // the zombie connection immediately.
2407
            auto log_level = Logger::Level::detail;
×
2408
            other_conn.terminate(log_level,
×
2409
                                 "Sync connection closed (superseded session)"); // Throws
×
2410
        }
×
2411

2412
        logger.info("Bound to client file (client_file_ident=%1)", client_file_ident); // Throws
4,174✔
2413

2414
        send_log_message(util::Logger::Level::debug, util::format("Session %1 bound to client file ident %2",
4,174✔
2415
                                                                  m_session_ident, client_file_ident));
4,174✔
2416

2417
        m_server_file->identify_session(this, client_file_ident); // Throws
4,174✔
2418

2419
        m_client_file_ident = client_file_ident;
4,174✔
2420
        m_download_progress = download_progress;
4,174✔
2421
        m_upload_threshold = upload_threshold;
4,174✔
2422
        m_locked_server_version = locked_server_version;
4,174✔
2423

2424
        ServerImpl& server = m_connection.get_server();
4,174✔
2425
        const Server::Config& config = server.get_config();
4,174✔
2426
        m_disable_download = (config.disable_download_for.count(client_file_ident) != 0);
4,174✔
2427

2428
        if (REALM_UNLIKELY(config.session_bootstrap_callback)) {
4,174✔
2429
            config.session_bootstrap_callback(m_server_file->get_virt_path(),
×
2430
                                              client_file_ident); // Throws
×
2431
        }
×
2432

2433
        // Protocol  state is now WaitForUnbind
2434
        enlist_to_send();
4,174✔
2435
        return true;
4,174✔
2436
    }
4,174✔
2437

2438
    bool receive_upload_message(version_type progress_client_version, version_type progress_server_version,
2439
                                version_type locked_server_version, const UploadChangesets& upload_changesets,
2440
                                ProtocolError& error)
2441
    {
44,592✔
2442
        // Protocol state must be WaitForUnbind
2443
        REALM_ASSERT(!m_send_ident_message);
44,592✔
2444
        REALM_ASSERT(ident_message_received());
44,592✔
2445
        REALM_ASSERT(!unbind_message_received());
44,592✔
2446
        REALM_ASSERT(!error_occurred());
44,592✔
2447
        REALM_ASSERT(!m_error_message_sent);
44,592✔
2448

2449
        logger.detail("Received: UPLOAD(progress_client_version=%1, progress_server_version=%2, "
44,592✔
2450
                      "locked_server_version=%3, num_changesets=%4)",
44,592✔
2451
                      progress_client_version, progress_server_version, locked_server_version,
44,592✔
2452
                      upload_changesets.size()); // Throws
44,592✔
2453

2454
        // We are unable to reproduce the cursor object for the upload progress
2455
        // when the protocol version is less than 29, because the client does
2456
        // not provide the required information. When the protocol version is
2457
        // less than 25, we can always get a consistent cursor by taking it from
2458
        // the changeset that was uploaded last, but in protocol versions 25,
2459
        // 26, 27, and 28, things are more complicated. Here, we receive new
2460
        // values for `last_integrated_server_version` which we cannot afford to
2461
        // ignore, but we do not know what client versions they correspond
2462
        // to. Fortunately, we can produce a cursor that works, and is mutually
2463
        // consistent with previous cursors, by simply bumping
2464
        // `upload_progress.client_version` when
2465
        // `upload_progress.last_intgerated_server_version` grows.
2466
        //
2467
        // To see that this scheme works, consider the last changeset, A, that
2468
        // will have already been uploaded and integrated at the beginning of
2469
        // the next session, and the first changeset, B, that follows A in the
2470
        // client side history, and is not upload skippable (of local origin and
2471
        // nonempty). We then need to show that A will be skipped, if uploaded
2472
        // in the next session, but B will not.
2473
        //
2474
        // Let V be the client version produced by A, and let T be the value of
2475
        // `upload_progress.client_version` as determined in this session, which
2476
        // is used as threshold in the next session. Then we know that A is
2477
        // skipped during the next session if V is less than, or equal to T. If
2478
        // the protocol version is at least 29, the protocol requires that T is
2479
        // greater than, or equal to V. If the protocol version is less than 25,
2480
        // T will be equal to V. Finally, if the protocol version is 25, 26, 27,
2481
        // or 28, we construct T such that it is always greater than, or equal
2482
        // to V, so in all cases, A will be skipped during the next session.
2483
        //
2484
        // Let W be the client version on which B is based. We then know that B
2485
        // will be retained if, and only if W is greater than, or equalto T. If
2486
        // the protocol version is at least 29, we know that T is less than, or
2487
        // equal to W, since B is not integrated until the next session. If the
2488
        // protocol version is less tahn 25, we know that T is V. Since V must
2489
        // be less than, or equal to W, we again know that T is less than, or
2490
        // equal to W. Finally, if the protocol version is 25, 26, 27, or 28, we
2491
        // construct T such that it is equal to V + N, where N is the number of
2492
        // observed increments in `last_integrated_server_version` since the
2493
        // client version prodiced by A. For each of these observed increments,
2494
        // there must have been a distinct new client version, but all these
2495
        // client versions must be less than, or equal to W, since B is not
2496
        // integrated until the next session. Therefore, we know that T = V + N
2497
        // is less than, or qual to W. So, in all cases, B will not skipped
2498
        // during the next session.
2499
        int protocol_version = m_connection.get_client_protocol_version();
44,592✔
2500
        static_cast<void>(protocol_version); // No protocol diversion (yet)
44,592✔
2501

2502
        UploadCursor upload_progress;
44,592✔
2503
        upload_progress = {progress_client_version, progress_server_version};
44,592✔
2504

2505
        // `upload_progress.client_version` must be nondecreasing across the
2506
        // session.
2507
        bool good_1 = (upload_progress.client_version >= m_upload_progress.client_version);
44,592✔
2508
        if (REALM_UNLIKELY(!good_1)) {
44,592✔
2509
            logger.error("Decreasing client version in upload progress (%1 < %2)", upload_progress.client_version,
×
2510
                         m_upload_progress.client_version); // Throws
×
2511
            error = ProtocolError::bad_client_version;
×
2512
            return false;
×
2513
        }
×
2514
        // `upload_progress.last_integrated_server_version` must be a version
2515
        // that the client can have heard about.
2516
        bool good_2 = (upload_progress.last_integrated_server_version <= m_download_progress.server_version);
44,592✔
2517
        if (REALM_UNLIKELY(!good_2)) {
44,592✔
2518
            logger.error("Bad last integrated server version in upload progress (%1 > %2)",
×
2519
                         upload_progress.last_integrated_server_version,
×
2520
                         m_download_progress.server_version); // Throws
×
2521
            error = ProtocolError::bad_server_version;
×
2522
            return false;
×
2523
        }
×
2524

2525
        // `upload_progress` must be consistent.
2526
        if (REALM_UNLIKELY(!is_consistent(upload_progress))) {
44,592✔
2527
            logger.error("Upload progress is inconsistent (%1, %2)", upload_progress.client_version,
×
2528
                         upload_progress.last_integrated_server_version); // Throws
×
2529
            error = ProtocolError::bad_server_version;
×
2530
            return false;
×
2531
        }
×
2532
        // `upload_progress` and `m_upload_threshold` must be mutually
2533
        // consistent.
2534
        if (REALM_UNLIKELY(!are_mutually_consistent(upload_progress, m_upload_threshold))) {
44,592✔
2535
            logger.error("Upload progress (%1, %2) is mutually inconsistent with "
×
2536
                         "threshold (%3, %4)",
×
2537
                         upload_progress.client_version, upload_progress.last_integrated_server_version,
×
2538
                         m_upload_threshold.client_version,
×
2539
                         m_upload_threshold.last_integrated_server_version); // Throws
×
2540
            error = ProtocolError::bad_server_version;
×
2541
            return false;
×
2542
        }
×
2543
        // `upload_progress` and `m_upload_progress` must be mutually
2544
        // consistent.
2545
        if (REALM_UNLIKELY(!are_mutually_consistent(upload_progress, m_upload_progress))) {
44,592✔
2546
            logger.error("Upload progress (%1, %2) is mutually inconsistent with previous "
×
2547
                         "upload progress (%3, %4)",
×
2548
                         upload_progress.client_version, upload_progress.last_integrated_server_version,
×
2549
                         m_upload_progress.client_version,
×
2550
                         m_upload_progress.last_integrated_server_version); // Throws
×
2551
            error = ProtocolError::bad_server_version;
×
2552
            return false;
×
2553
        }
×
2554

2555
        version_type locked_server_version_2 = locked_server_version;
44,592✔
2556

2557
        // `locked_server_version_2` must be nondecreasing over the lifetime of
2558
        // the client-side file.
2559
        if (REALM_UNLIKELY(locked_server_version_2 < m_locked_server_version)) {
44,592✔
2560
            logger.error("Decreasing locked server version (%1 < %2)", locked_server_version_2,
×
2561
                         m_locked_server_version); // Throws
×
2562
            error = ProtocolError::bad_server_version;
×
2563
            return false;
×
2564
        }
×
2565
        // `locked_server_version_2` must be a version that the client can have
2566
        // heard about.
2567
        if (REALM_UNLIKELY(locked_server_version_2 > m_download_progress.server_version)) {
44,592✔
2568
            logger.error("Bad locked server version (%1 > %2)", locked_server_version_2,
×
2569
                         m_download_progress.server_version); // Throws
×
2570
            error = ProtocolError::bad_server_version;
×
2571
            return false;
×
2572
        }
×
2573

2574
        std::size_t num_previously_integrated_changesets = 0;
44,592✔
2575
        if (!upload_changesets.empty()) {
44,592✔
2576
            UploadCursor up = m_upload_progress;
24,600✔
2577
            for (const ServerProtocol::UploadChangeset& uc : upload_changesets) {
36,878✔
2578
                // `uc.upload_cursor.client_version` must be increasing across
2579
                // all the changesets in this UPLOAD message, and all must be
2580
                // greater than upload_progress.client_version of previous
2581
                // UPLOAD message.
2582
                if (REALM_UNLIKELY(uc.upload_cursor.client_version <= up.client_version)) {
36,878✔
2583
                    logger.error("Nonincreasing client version in upload cursor of uploaded "
×
2584
                                 "changeset (%1 <= %2)",
×
2585
                                 uc.upload_cursor.client_version,
×
2586
                                 up.client_version); // Throws
×
2587
                    error = ProtocolError::bad_client_version;
×
2588
                    return false;
×
2589
                }
×
2590
                // `uc.upload_progress` must be consistent.
2591
                if (REALM_UNLIKELY(!is_consistent(uc.upload_cursor))) {
36,878✔
2592
                    logger.error("Upload cursor of uploaded changeset is inconsistent (%1, %2)",
×
2593
                                 uc.upload_cursor.client_version,
×
2594
                                 uc.upload_cursor.last_integrated_server_version); // Throws
×
2595
                    error = ProtocolError::bad_server_version;
×
2596
                    return false;
×
2597
                }
×
2598
                // `uc.upload_progress` must be mutually consistent with
2599
                // previous upload cursor.
2600
                if (REALM_UNLIKELY(!are_mutually_consistent(uc.upload_cursor, up))) {
36,878✔
2601
                    logger.error("Upload cursor of uploaded changeset (%1, %2) is mutually "
×
2602
                                 "inconsistent with previous upload cursor (%3, %4)",
×
2603
                                 uc.upload_cursor.client_version, uc.upload_cursor.last_integrated_server_version,
×
2604
                                 up.client_version, up.last_integrated_server_version); // Throws
×
2605
                    error = ProtocolError::bad_server_version;
×
2606
                    return false;
×
2607
                }
×
2608
                // `uc.upload_progress` must be mutually consistent with
2609
                // threshold, that is, for changesets that have not previously
2610
                // been integrated, it is important that the specified value of
2611
                // `last_integrated_server_version` is greater than, or equal to
2612
                // the reciprocal history base version.
2613
                bool consistent_with_threshold = are_mutually_consistent(uc.upload_cursor, m_upload_threshold);
36,878✔
2614
                if (REALM_UNLIKELY(!consistent_with_threshold)) {
36,878✔
2615
                    logger.error("Upload cursor of uploaded changeset (%1, %2) is mutually "
×
2616
                                 "inconsistent with threshold (%3, %4)",
×
2617
                                 uc.upload_cursor.client_version, uc.upload_cursor.last_integrated_server_version,
×
2618
                                 m_upload_threshold.client_version,
×
2619
                                 m_upload_threshold.last_integrated_server_version); // Throws
×
2620
                    error = ProtocolError::bad_server_version;
×
2621
                    return false;
×
2622
                }
×
2623
                bool previously_integrated = (uc.upload_cursor.client_version <= m_upload_threshold.client_version);
36,878✔
2624
                if (previously_integrated)
36,878✔
2625
                    ++num_previously_integrated_changesets;
2,402✔
2626
                up = uc.upload_cursor;
36,878✔
2627
            }
36,878✔
2628
            // `upload_progress.client_version` must be greater than, or equal
2629
            // to client versions produced by each of the changesets in this
2630
            // UPLOAD message.
2631
            if (REALM_UNLIKELY(up.client_version > upload_progress.client_version)) {
24,600✔
2632
                logger.error("Upload progress less than client version produced by uploaded "
×
2633
                             "changeset (%1 > %2)",
×
2634
                             up.client_version,
×
2635
                             upload_progress.client_version); // Throws
×
2636
                error = ProtocolError::bad_client_version;
×
2637
                return false;
×
2638
            }
×
2639
            // The upload cursor of last uploaded changeset must be mutually
2640
            // consistent with the reported upload progress.
2641
            if (REALM_UNLIKELY(!are_mutually_consistent(up, upload_progress))) {
24,600✔
2642
                logger.error("Upload cursor (%1, %2) of last uploaded changeset is mutually "
×
2643
                             "inconsistent with upload progress (%3, %4)",
×
2644
                             up.client_version, up.last_integrated_server_version, upload_progress.client_version,
×
2645
                             upload_progress.last_integrated_server_version); // Throws
×
2646
                error = ProtocolError::bad_server_version;
×
2647
                return false;
×
2648
            }
×
2649
        }
24,600✔
2650

2651
        // FIXME: Part of a very poor man's substitute for a proper backpressure
2652
        // scheme.
2653
        if (REALM_UNLIKELY(!m_server_file->can_add_changesets_from_downstream())) {
44,592✔
2654
            logger.debug("Terminating uploading session because buffer is full"); // Throws
×
2655
            // Using this exact error code, because it causes `try_again` flag
2656
            // to be set to true, which causes the client to wait for about 5
2657
            // minuites before trying to connect again.
2658
            error = ProtocolError::connection_closed;
×
2659
            return false;
×
2660
        }
×
2661

2662
        m_upload_progress = upload_progress;
44,592✔
2663

2664
        bool have_real_upload_progress = (upload_progress.client_version > m_upload_threshold.client_version);
44,592✔
2665
        bool bump_locked_server_version = (locked_server_version_2 > m_locked_server_version);
44,592✔
2666

2667
        std::size_t num_changesets_to_integrate = upload_changesets.size() - num_previously_integrated_changesets;
44,592✔
2668
        REALM_ASSERT(have_real_upload_progress || num_changesets_to_integrate == 0);
44,592✔
2669

2670
        bool have_anything_to_do = (have_real_upload_progress || bump_locked_server_version);
44,592✔
2671
        if (!have_anything_to_do)
44,592✔
2672
            return true;
312✔
2673

2674
        if (!have_real_upload_progress)
44,280✔
2675
            upload_progress = m_upload_threshold;
×
2676

2677
        if (num_previously_integrated_changesets > 0) {
44,280✔
2678
            logger.detail("Ignoring %1 previously integrated changesets",
698✔
2679
                          num_previously_integrated_changesets); // Throws
698✔
2680
        }
698✔
2681
        if (num_changesets_to_integrate > 0) {
44,280✔
2682
            logger.detail("Initiate integration of %1 remote changesets",
24,190✔
2683
                          num_changesets_to_integrate); // Throws
24,190✔
2684
        }
24,190✔
2685

2686
        REALM_ASSERT(m_server_file);
44,280✔
2687
        ServerFile& file = *m_server_file;
44,280✔
2688
        std::size_t offset = num_previously_integrated_changesets;
44,280✔
2689
        file.add_changesets_from_downstream(m_client_file_ident, upload_progress, locked_server_version_2,
44,280✔
2690
                                            upload_changesets.data() + offset, num_changesets_to_integrate); // Throws
44,280✔
2691

2692
        m_locked_server_version = locked_server_version_2;
44,280✔
2693
        return true;
44,280✔
2694
    }
44,592✔
2695

2696
    bool receive_mark_message(request_ident_type request_ident, ProtocolError&)
2697
    {
12,010✔
2698
        // Protocol state must be WaitForUnbind
2699
        REALM_ASSERT(!m_send_ident_message);
12,010✔
2700
        REALM_ASSERT(ident_message_received());
12,010✔
2701
        REALM_ASSERT(!unbind_message_received());
12,010✔
2702
        REALM_ASSERT(!error_occurred());
12,010✔
2703
        REALM_ASSERT(!m_error_message_sent);
12,010✔
2704

2705
        logger.debug("Received: MARK(request_ident=%1)", request_ident); // Throws
12,010✔
2706

2707
        m_download_completion_request = request_ident;
12,010✔
2708

2709
        ensure_enlisted_to_send();
12,010✔
2710
        return true;
12,010✔
2711
    }
12,010✔
2712

2713
    // Returns true if the deactivation process has been completed, at which
2714
    // point the caller (SyncConnection::receive_unbind_message()) should
2715
    // terminate the session.
2716
    //
2717
    // CAUTION: This function may commit suicide!
2718
    void receive_unbind_message()
2719
    {
2,388✔
2720
        // Protocol state may be anything but SendUnbound
2721
        REALM_ASSERT(!m_unbind_message_received);
2,388✔
2722

2723
        logger.detail("Received: UNBIND"); // Throws
2,388✔
2724

2725
        detach_from_server_file();
2,388✔
2726
        m_unbind_message_received = true;
2,388✔
2727

2728
        // Detect completion of the deactivation process
2729
        if (m_error_message_sent) {
2,388✔
2730
            // Deactivation process completed
2731
            terminate(); // Throws
24✔
2732
            m_connection.discard_session(m_session_ident);
24✔
2733
            // This session is now destroyed!
2734
            return;
24✔
2735
        }
24✔
2736

2737
        // Protocol state is now SendUnbound
2738
        ensure_enlisted_to_send();
2,364✔
2739
    }
2,364✔
2740

2741
    void receive_error_message(session_ident_type, int, std::string_view)
2742
    {
×
2743
        REALM_ASSERT(!m_unbind_message_received);
×
2744

2745
        logger.detail("Received: ERROR"); // Throws
×
2746
    }
×
2747

2748
private:
2749
    SyncConnection& m_connection;
2750

2751
    const session_ident_type m_session_ident;
2752

2753
    // Not null if, and only if this session is in
2754
    // m_connection.m_sessions_enlisted_to_send.
2755
    Session* m_next = nullptr;
2756

2757
    // Becomes nonnull when the BIND message is received, if no error occurs. Is
2758
    // reset to null when the deactivation process is initiated, either when the
2759
    // UNBIND message is recieved, or when initiate_deactivation() is called.
2760
    util::bind_ptr<ServerFile> m_server_file;
2761

2762
    bool m_disable_download = false;
2763
    bool m_is_subserver = false;
2764

2765
    using file_ident_request_type = ServerFile::file_ident_request_type;
2766

2767
    // When nonzero, this session has an outstanding request for a client file
2768
    // identifier.
2769
    file_ident_request_type m_file_ident_request = 0;
2770

2771
    // Payload for next outgoing ALLOC message.
2772
    SaltedFileIdent m_allocated_file_ident = {0, 0};
2773

2774
    // Zero until the session receives an IDENT message from the client.
2775
    file_ident_type m_client_file_ident = 0;
2776

2777
    // Zero until initiate_deactivation() is called.
2778
    ProtocolError m_error_code = {};
2779

2780
    // The current point of progression of the download process. Set to (<server
2781
    // version>, <client version>) of the IDENT message when the IDENT message
2782
    // is received. At the time of return from continue_history_scan(), it
2783
    // points to the latest server version such that all preceding changesets in
2784
    // the server-side history have been downloaded, are currently being
2785
    // downloaded, or are *download excluded*.
2786
    DownloadCursor m_download_progress = {0, 0};
2787

2788
    request_ident_type m_download_completion_request = 0;
2789

2790
    // Records the progress of the upload process. Used to check that the client
2791
    // uploads changesets in order. Also, when m_upload_progress >
2792
    // m_upload_threshold, m_upload_progress works as a cache of the persisted
2793
    // version of the upload progress.
2794
    UploadCursor m_upload_progress = {0, 0};
2795

2796
    // Initialized on reception of the IDENT message. Specifies the actual
2797
    // upload progress (as recorded on the server-side) at the beginning of the
2798
    // session, and it remains fixed throughout the session.
2799
    //
2800
    // m_upload_threshold includes the progress resulting from the received
2801
    // changesets that have not yet been integrated (only relevant for
2802
    // synchronous backup).
2803
    UploadCursor m_upload_threshold = {0, 0};
2804

2805
    // Works partially as a cache of the persisted value, and partially as a way
2806
    // of checking that the client respects that it can never decrease.
2807
    version_type m_locked_server_version = 0;
2808

2809
    bool m_send_ident_message = false;
2810
    bool m_unbind_message_received = false;
2811
    bool m_error_message_sent = false;
2812

2813
    /// m_one_download_message_sent denotes whether at least one DOWNLOAD message
2814
    /// has been sent in the current session. The variable is used to ensure
2815
    /// that a DOWNLOAD message is always sent in a session. The received
2816
    /// DOWNLOAD message is needed by the client to ensure that its current
2817
    /// download progress is up to date.
2818
    bool m_one_download_message_sent = false;
2819

2820
    static std::string make_logger_prefix(session_ident_type session_ident)
2821
    {
5,206✔
2822
        std::ostringstream out;
5,206✔
2823
        out.imbue(std::locale::classic());
5,206✔
2824
        out << "Session[" << session_ident << "]: "; // Throws
5,206✔
2825
        return out.str();                            // Throws
5,206✔
2826
    }
5,206✔
2827

2828
    // Scan the history for changesets to be downloaded.
2829
    // If the history is longer than the end point of the previous scan,
2830
    // a DOWNLOAD message will be sent.
2831
    // A MARK message is sent if no DOWNLOAD message is sent, and the client has
2832
    // requested to be notified about download completion.
2833
    // In case neither a DOWNLOAD nor a MARK is sent, no message is sent.
2834
    //
2835
    // This function may lead to the destruction of the session object
2836
    // (suicide).
2837
    void continue_history_scan()
2838
    {
106,368✔
2839
        // Protocol state must be WaitForUnbind
2840
        REALM_ASSERT(!m_send_ident_message);
106,368✔
2841
        REALM_ASSERT(ident_message_received());
106,368✔
2842
        REALM_ASSERT(!unbind_message_received());
106,368✔
2843
        REALM_ASSERT(!error_occurred());
106,368✔
2844
        REALM_ASSERT(!m_error_message_sent);
106,368✔
2845
        REALM_ASSERT(!is_enlisted_to_send());
106,368✔
2846

2847
        SaltedVersion last_server_version = m_server_file->get_salted_sync_version();
106,368✔
2848
        REALM_ASSERT(last_server_version.version >= m_download_progress.server_version);
106,368✔
2849

2850
        ServerImpl& server = m_connection.get_server();
106,368✔
2851
        const Server::Config& config = server.get_config();
106,368✔
2852
        if (REALM_UNLIKELY(m_disable_download))
106,368✔
2853
            return;
×
2854

2855
        bool have_more_to_scan =
106,368✔
2856
            (last_server_version.version > m_download_progress.server_version || !m_one_download_message_sent);
106,368✔
2857
        if (have_more_to_scan) {
106,368✔
2858
            m_server_file->register_client_access(m_client_file_ident);     // Throws
41,764✔
2859
            const ServerHistory& history = m_server_file->access().history; // Throws
41,764✔
2860
            const char* body;
41,764✔
2861
            std::size_t uncompressed_body_size;
41,764✔
2862
            std::size_t compressed_body_size = 0;
41,764✔
2863
            bool body_is_compressed = false;
41,764✔
2864
            version_type end_version = last_server_version.version;
41,764✔
2865
            DownloadCursor download_progress;
41,764✔
2866
            UploadCursor upload_progress = {0, 0};
41,764✔
2867
            std::uint_fast64_t downloadable_bytes = 0;
41,764✔
2868
            std::size_t num_changesets;
41,764✔
2869
            std::size_t accum_original_size;
41,764✔
2870
            std::size_t accum_compacted_size;
41,764✔
2871
            ServerProtocol& protocol = get_server_protocol();
41,764✔
2872
            bool disable_download_compaction = config.disable_download_compaction;
41,764✔
2873
            bool enable_cache = (config.enable_download_bootstrap_cache && m_download_progress.server_version == 0 &&
41,764!
2874
                                 m_upload_progress.client_version == 0 && m_upload_threshold.client_version == 0);
41,764!
2875
            DownloadCache& cache = m_server_file->get_download_cache();
41,764✔
2876
            bool fetch_from_cache = (enable_cache && cache.body && end_version == cache.end_version);
41,764!
2877
            if (fetch_from_cache) {
41,764✔
2878
                body = cache.body.get();
×
2879
                uncompressed_body_size = cache.uncompressed_body_size;
×
2880
                compressed_body_size = cache.compressed_body_size;
×
2881
                body_is_compressed = cache.body_is_compressed;
×
2882
                download_progress = cache.download_progress;
×
2883
                downloadable_bytes = cache.downloadable_bytes;
×
2884
                num_changesets = cache.num_changesets;
×
2885
                accum_original_size = cache.accum_original_size;
×
2886
                accum_compacted_size = cache.accum_compacted_size;
×
2887
            }
×
2888
            else {
41,764✔
2889
                // Discard the old cached DOWNLOAD body before generating a new
2890
                // one to be cached. This can make a big difference because the
2891
                // size of that body can be very large (10GiB has been seen in a
2892
                // real-world case).
2893
                if (enable_cache)
41,764✔
2894
                    cache.body = {};
×
2895

2896
                OutputBuffer& out = server.get_misc_buffers().download_message;
41,764✔
2897
                out.reset();
41,764✔
2898
                download_progress = m_download_progress;
41,764✔
2899
                auto fetch_and_compress = [&](std::size_t max_download_size) {
41,766✔
2900
                    DownloadHistoryEntryHandler handler{protocol, out, logger};
41,766✔
2901
                    std::uint_fast64_t cumulative_byte_size_current;
41,766✔
2902
                    std::uint_fast64_t cumulative_byte_size_total;
41,766✔
2903
                    bool not_expired = history.fetch_download_info(
41,766✔
2904
                        m_client_file_ident, download_progress, end_version, upload_progress, handler,
41,766✔
2905
                        cumulative_byte_size_current, cumulative_byte_size_total, disable_download_compaction,
41,766✔
2906
                        max_download_size); // Throws
41,766✔
2907
                    REALM_ASSERT(upload_progress.client_version >= download_progress.last_integrated_client_version);
41,766✔
2908
                    SyncConnection& conn = get_connection();
41,766✔
2909
                    if (REALM_UNLIKELY(!not_expired)) {
41,766✔
2910
                        logger.debug("History scanning failed: Client file entry "
×
2911
                                     "expired during session"); // Throws
×
2912
                        conn.protocol_error(ProtocolError::client_file_expired, this);
×
2913
                        // Session object may have been destroyed at this point
2914
                        // (suicide).
2915
                        return false;
×
2916
                    }
×
2917

2918
                    downloadable_bytes = cumulative_byte_size_total - cumulative_byte_size_current;
41,766✔
2919
                    uncompressed_body_size = out.size();
41,766✔
2920
                    BinaryData uncompressed = {out.data(), uncompressed_body_size};
41,766✔
2921
                    body = uncompressed.data();
41,766✔
2922
                    std::size_t max_uncompressed = 1024;
41,766✔
2923
                    if (uncompressed.size() > max_uncompressed) {
41,766✔
2924
                        compression::CompressMemoryArena& arena = server.get_compress_memory_arena();
4,168✔
2925
                        std::vector<char>& buffer = server.get_misc_buffers().compress;
4,168✔
2926
                        compression::allocate_and_compress(arena, uncompressed, buffer); // Throws
4,168✔
2927
                        if (buffer.size() < uncompressed.size()) {
4,168✔
2928
                            body = buffer.data();
4,168✔
2929
                            compressed_body_size = buffer.size();
4,168✔
2930
                            body_is_compressed = true;
4,168✔
2931
                        }
4,168✔
2932
                    }
4,168✔
2933
                    num_changesets = handler.num_changesets;
41,766✔
2934
                    accum_original_size = handler.accum_original_size;
41,766✔
2935
                    accum_compacted_size = handler.accum_compacted_size;
41,766✔
2936
                    return true;
41,766✔
2937
                };
41,766✔
2938
                if (enable_cache) {
41,764✔
2939
                    std::size_t max_download_size = std::numeric_limits<size_t>::max();
×
2940
                    if (!fetch_and_compress(max_download_size)) { // Throws
×
2941
                        // Session object may have been destroyed at this point
2942
                        // (suicide).
2943
                        return;
×
2944
                    }
×
2945
                    REALM_ASSERT(upload_progress.client_version == 0);
×
2946
                    std::size_t body_size = (body_is_compressed ? compressed_body_size : uncompressed_body_size);
×
2947
                    cache.body = std::make_unique<char[]>(body_size); // Throws
×
2948
                    std::copy(body, body + body_size, cache.body.get());
×
2949
                    cache.uncompressed_body_size = uncompressed_body_size;
×
2950
                    cache.compressed_body_size = compressed_body_size;
×
2951
                    cache.body_is_compressed = body_is_compressed;
×
2952
                    cache.end_version = end_version;
×
2953
                    cache.download_progress = download_progress;
×
2954
                    cache.downloadable_bytes = downloadable_bytes;
×
2955
                    cache.num_changesets = num_changesets;
×
2956
                    cache.accum_original_size = accum_original_size;
×
2957
                    cache.accum_compacted_size = accum_compacted_size;
×
2958
                }
×
2959
                else {
41,764✔
2960
                    std::size_t max_download_size = config.max_download_size;
41,764✔
2961
                    if (!fetch_and_compress(max_download_size)) { // Throws
41,764✔
2962
                        // Session object may have been destroyed at this point
2963
                        // (suicide).
2964
                        return;
×
2965
                    }
×
2966
                }
41,764✔
2967
            }
41,764✔
2968

2969
            OutputBuffer& out = m_connection.get_output_buffer();
41,764✔
2970
            protocol.make_download_message(
41,764✔
2971
                m_connection.get_client_protocol_version(), out, m_session_ident, download_progress.server_version,
41,764✔
2972
                download_progress.last_integrated_client_version, last_server_version.version,
41,764✔
2973
                last_server_version.salt, upload_progress.client_version,
41,764✔
2974
                upload_progress.last_integrated_server_version, downloadable_bytes, num_changesets, body,
41,764✔
2975
                uncompressed_body_size, compressed_body_size, body_is_compressed, logger); // Throws
41,764✔
2976

2977
            if (!disable_download_compaction) {
41,766✔
2978
                std::size_t saved = accum_original_size - accum_compacted_size;
41,766✔
2979
                double saved_2 = (accum_original_size == 0 ? 0 : std::round(saved * 100.0 / accum_original_size));
41,766✔
2980
                logger.detail("Download compaction: Saved %1 bytes (%2%%)", saved, saved_2); // Throws
41,766✔
2981
            }
41,766✔
2982

2983
            m_download_progress = download_progress;
41,764✔
2984
            logger.debug("Setting of m_download_progress.server_version = %1",
41,764✔
2985
                         m_download_progress.server_version); // Throws
41,764✔
2986
            send_download_message();
41,764✔
2987
            m_one_download_message_sent = true;
41,764✔
2988

2989
            enlist_to_send();
41,764✔
2990
        }
41,764✔
2991
        else if (m_download_completion_request) {
64,604✔
2992
            // Send a MARK message
2993
            request_ident_type request_ident = m_download_completion_request;
11,986✔
2994
            send_mark_message(request_ident);  // Throws
11,986✔
2995
            m_download_completion_request = 0; // Request handled
11,986✔
2996
            enlist_to_send();
11,986✔
2997
        }
11,986✔
2998
    }
106,368✔
2999

3000
    void send_ident_message()
3001
    {
1,340✔
3002
        // Protocol state must be SendIdent
3003
        REALM_ASSERT(!need_client_file_ident());
1,340✔
3004
        REALM_ASSERT(m_send_ident_message);
1,340✔
3005
        REALM_ASSERT(!ident_message_received());
1,340✔
3006
        REALM_ASSERT(!unbind_message_received());
1,340✔
3007
        REALM_ASSERT(!error_occurred());
1,340✔
3008
        REALM_ASSERT(!m_error_message_sent);
1,340✔
3009

3010
        REALM_ASSERT(m_allocated_file_ident.ident != 0);
1,340✔
3011

3012
        file_ident_type client_file_ident = m_allocated_file_ident.ident;
1,340✔
3013
        salt_type client_file_ident_salt = m_allocated_file_ident.salt;
1,340✔
3014

3015
        logger.debug("Sending: IDENT(client_file_ident=%1, client_file_ident_salt=%2)", client_file_ident,
1,340✔
3016
                     client_file_ident_salt); // Throws
1,340✔
3017

3018
        ServerProtocol& protocol = get_server_protocol();
1,340✔
3019
        OutputBuffer& out = m_connection.get_output_buffer();
1,340✔
3020
        int protocol_version = m_connection.get_client_protocol_version();
1,340✔
3021
        protocol.make_ident_message(protocol_version, out, m_session_ident, client_file_ident,
1,340✔
3022
                                    client_file_ident_salt); // Throws
1,340✔
3023
        m_connection.initiate_write_output_buffer();         // Throws
1,340✔
3024

3025
        m_allocated_file_ident.ident = 0; // Consumed
1,340✔
3026
        m_send_ident_message = false;
1,340✔
3027
        // Protocol state is now WaitForStateRequest or WaitForIdent
3028
    }
1,340✔
3029

3030
    void send_download_message()
3031
    {
41,766✔
3032
        m_connection.initiate_write_output_buffer(); // Throws
41,766✔
3033
    }
41,766✔
3034

3035
    void send_mark_message(request_ident_type request_ident)
3036
    {
11,986✔
3037
        logger.debug("Sending: MARK(request_ident=%1)", request_ident); // Throws
11,986✔
3038

3039
        ServerProtocol& protocol = get_server_protocol();
11,986✔
3040
        OutputBuffer& out = m_connection.get_output_buffer();
11,986✔
3041
        protocol.make_mark_message(out, m_session_ident, request_ident); // Throws
11,986✔
3042
        m_connection.initiate_write_output_buffer();                     // Throws
11,986✔
3043
    }
11,986✔
3044

3045
    void send_alloc_message()
3046
    {
×
3047
        // Protocol state must be WaitForUnbind
3048
        REALM_ASSERT(!m_send_ident_message);
×
3049
        REALM_ASSERT(ident_message_received());
×
3050
        REALM_ASSERT(!unbind_message_received());
×
3051
        REALM_ASSERT(!error_occurred());
×
3052
        REALM_ASSERT(!m_error_message_sent);
×
3053

3054
        REALM_ASSERT(m_allocated_file_ident.ident != 0);
×
3055

3056
        // Relayed allocations are only allowed from protocol version 23 (old protocol).
3057
        REALM_ASSERT(false);
×
3058

3059
        file_ident_type file_ident = m_allocated_file_ident.ident;
×
3060

3061
        logger.debug("Sending: ALLOC(file_ident=%1)", file_ident); // Throws
×
3062

3063
        ServerProtocol& protocol = get_server_protocol();
×
3064
        OutputBuffer& out = m_connection.get_output_buffer();
×
3065
        protocol.make_alloc_message(out, m_session_ident, file_ident); // Throws
×
3066
        m_connection.initiate_write_output_buffer();                   // Throws
×
3067

3068
        m_allocated_file_ident.ident = 0; // Consumed
×
3069

3070
        // Other messages may be waiting to be sent.
3071
        enlist_to_send();
×
3072
    }
×
3073

3074
    void send_unbound_message()
3075
    {
2,052✔
3076
        // Protocol state must be SendUnbound
3077
        REALM_ASSERT(unbind_message_received());
2,052✔
3078
        REALM_ASSERT(!m_error_message_sent);
2,052✔
3079

3080
        logger.debug("Sending: UNBOUND"); // Throws
2,052✔
3081

3082
        ServerProtocol& protocol = get_server_protocol();
2,052✔
3083
        OutputBuffer& out = m_connection.get_output_buffer();
2,052✔
3084
        protocol.make_unbound_message(out, m_session_ident); // Throws
2,052✔
3085
        m_connection.initiate_write_output_buffer();         // Throws
2,052✔
3086
    }
2,052✔
3087

3088
    void send_error_message()
3089
    {
80✔
3090
        // Protocol state must be SendError
3091
        REALM_ASSERT(!unbind_message_received());
80✔
3092
        REALM_ASSERT(error_occurred());
80✔
3093
        REALM_ASSERT(!m_error_message_sent);
80✔
3094

3095
        REALM_ASSERT(is_session_level_error(m_error_code));
80✔
3096

3097
        ProtocolError error_code = m_error_code;
80✔
3098
        const char* message = get_protocol_error_message(int(error_code));
80✔
3099
        std::size_t message_size = std::strlen(message);
80✔
3100
        bool try_again = determine_try_again(error_code);
80✔
3101

3102
        logger.detail("Sending: ERROR(error_code=%1, message_size=%2, try_again=%3)", int(error_code), message_size,
80✔
3103
                      try_again); // Throws
80✔
3104

3105
        ServerProtocol& protocol = get_server_protocol();
80✔
3106
        OutputBuffer& out = m_connection.get_output_buffer();
80✔
3107
        int protocol_version = m_connection.get_client_protocol_version();
80✔
3108
        protocol.make_error_message(protocol_version, out, error_code, message, message_size, try_again,
80✔
3109
                                    m_session_ident); // Throws
80✔
3110
        m_connection.initiate_write_output_buffer();  // Throws
80✔
3111

3112
        m_error_message_sent = true;
80✔
3113
        // Protocol state is now WaitForUnbindErr
3114
    }
80✔
3115

3116
    void send_log_message(util::Logger::Level level, const std::string&& message)
3117
    {
4,176✔
3118
        if (m_connection.get_client_protocol_version() < SyncConnection::SERVER_LOG_PROTOCOL_VERSION) {
4,176✔
3119
            return logger.log(level, message.c_str());
×
3120
        }
×
3121

3122
        m_connection.send_log_message(level, std::move(message), m_session_ident);
4,176✔
3123
    }
4,176✔
3124

3125
    // Idempotent
3126
    void detach_from_server_file() noexcept
3127
    {
7,670✔
3128
        if (!m_server_file)
7,670✔
3129
            return;
2,492✔
3130
        ServerFile& file = *m_server_file;
5,178✔
3131
        if (ident_message_received()) {
5,178✔
3132
            file.remove_identified_session(m_client_file_ident);
4,176✔
3133
        }
4,176✔
3134
        else {
1,002✔
3135
            file.remove_unidentified_session(this);
1,002✔
3136
        }
1,002✔
3137
        if (m_file_ident_request != 0)
5,178✔
3138
            file.cancel_file_ident_request(m_file_ident_request);
58✔
3139
        m_server_file.reset();
5,178✔
3140
    }
5,178✔
3141

3142
    friend class SessionQueue;
3143
};
3144

3145

3146
// ============================ SessionQueue implementation ============================
3147

3148
void SessionQueue::push_back(Session* sess) noexcept
3149
{
110,330✔
3150
    REALM_ASSERT(!sess->m_next);
110,330✔
3151
    if (m_back) {
110,330✔
3152
        sess->m_next = m_back->m_next;
40,248✔
3153
        m_back->m_next = sess;
40,248✔
3154
    }
40,248✔
3155
    else {
70,082✔
3156
        sess->m_next = sess;
70,082✔
3157
    }
70,082✔
3158
    m_back = sess;
110,330✔
3159
}
110,330✔
3160

3161

3162
Session* SessionQueue::pop_front() noexcept
3163
{
159,044✔
3164
    Session* sess = nullptr;
159,044✔
3165
    if (m_back) {
159,044✔
3166
        sess = m_back->m_next;
109,840✔
3167
        if (sess != m_back) {
109,840✔
3168
            m_back->m_next = sess->m_next;
39,884✔
3169
        }
39,884✔
3170
        else {
69,956✔
3171
            m_back = nullptr;
69,956✔
3172
        }
69,956✔
3173
        sess->m_next = nullptr;
109,840✔
3174
    }
109,840✔
3175
    return sess;
159,044✔
3176
}
159,044✔
3177

3178

3179
void SessionQueue::clear() noexcept
3180
{
3,256✔
3181
    if (m_back) {
3,256✔
3182
        Session* sess = m_back;
128✔
3183
        for (;;) {
500✔
3184
            Session* next = sess->m_next;
500✔
3185
            sess->m_next = nullptr;
500✔
3186
            if (next == m_back)
500✔
3187
                break;
128✔
3188
            sess = next;
372✔
3189
        }
372✔
3190
        m_back = nullptr;
128✔
3191
    }
128✔
3192
}
3,256✔
3193

3194

3195
// ============================ ServerFile implementation ============================
3196

3197
ServerFile::ServerFile(ServerImpl& server, ServerFileAccessCache& cache, const std::string& virt_path,
3198
                       std::string real_path, bool disable_sync_to_disk)
3199
    : logger{util::LogCategory::server, "ServerFile[" + virt_path + "]: ", server.logger_ptr}               // Throws
446✔
3200
    , wlogger{util::LogCategory::server, "ServerFile[" + virt_path + "]: ", server.get_worker().logger_ptr} // Throws
446✔
3201
    , m_server{server}
446✔
3202
    , m_file{cache, real_path, virt_path, false, disable_sync_to_disk} // Throws
446✔
3203
    , m_worker_file{server.get_worker().get_file_access_cache(), real_path, virt_path, true, disable_sync_to_disk}
446✔
3204
{
1,138✔
3205
}
1,138✔
3206

3207

3208
ServerFile::~ServerFile() noexcept
3209
{
1,138✔
3210
    REALM_ASSERT(m_unidentified_sessions.empty());
1,138✔
3211
    REALM_ASSERT(m_identified_sessions.empty());
1,138✔
3212
    REALM_ASSERT(m_file_ident_request == 0);
1,138✔
3213
}
1,138✔
3214

3215

3216
void ServerFile::initialize()
3217
{
1,136✔
3218
    const ServerHistory& history = access().history; // Throws
1,136✔
3219
    file_ident_type partial_file_ident = 0;
1,136✔
3220
    version_type partial_progress_reference_version = 0;
1,136✔
3221
    bool has_upstream_sync_status;
1,136✔
3222
    history.get_status(m_version_info, has_upstream_sync_status, partial_file_ident,
1,136✔
3223
                       partial_progress_reference_version); // Throws
1,136✔
3224
    REALM_ASSERT(!has_upstream_sync_status);
1,136✔
3225
    REALM_ASSERT(partial_file_ident == 0);
1,136✔
3226
}
1,136✔
3227

3228

3229
void ServerFile::activate() {}
1,138✔
3230

3231

3232
// This function must be called only after a completed invocation of
3233
// initialize(). Both functinos must only ever be called by the network event
3234
// loop thread.
3235
void ServerFile::register_client_access(file_ident_type) {}
90,216✔
3236

3237

3238
auto ServerFile::request_file_ident(FileIdentReceiver& receiver, file_ident_type proxy_file,
3239
                                    ClientType client_type) -> file_ident_request_type
3240
{
1,398✔
3241
    auto request = ++m_last_file_ident_request;
1,398✔
3242
    m_file_ident_requests[request] = {&receiver, proxy_file, client_type}; // Throws
1,398✔
3243

3244
    on_work_added(); // Throws
1,398✔
3245
    return request;
1,398✔
3246
}
1,398✔
3247

3248

3249
void ServerFile::cancel_file_ident_request(file_ident_request_type request) noexcept
3250
{
58✔
3251
    auto i = m_file_ident_requests.find(request);
58✔
3252
    REALM_ASSERT(i != m_file_ident_requests.end());
58✔
3253
    FileIdentRequestInfo& info = i->second;
58✔
3254
    REALM_ASSERT(info.receiver);
58✔
3255
    info.receiver = nullptr;
58✔
3256
}
58✔
3257

3258

3259
void ServerFile::add_unidentified_session(Session* sess)
3260
{
5,176✔
3261
    REALM_ASSERT(m_unidentified_sessions.count(sess) == 0);
5,176✔
3262
    m_unidentified_sessions.insert(sess); // Throws
5,176✔
3263
}
5,176✔
3264

3265

3266
void ServerFile::identify_session(Session* sess, file_ident_type client_file_ident)
3267
{
4,172✔
3268
    REALM_ASSERT(m_unidentified_sessions.count(sess) == 1);
4,172✔
3269
    REALM_ASSERT(m_identified_sessions.count(client_file_ident) == 0);
4,172✔
3270

3271
    m_identified_sessions[client_file_ident] = sess; // Throws
4,172✔
3272
    m_unidentified_sessions.erase(sess);
4,172✔
3273
}
4,172✔
3274

3275

3276
void ServerFile::remove_unidentified_session(Session* sess) noexcept
3277
{
1,002✔
3278
    REALM_ASSERT(m_unidentified_sessions.count(sess) == 1);
1,002✔
3279
    m_unidentified_sessions.erase(sess);
1,002✔
3280
}
1,002✔
3281

3282

3283
void ServerFile::remove_identified_session(file_ident_type client_file_ident) noexcept
3284
{
4,176✔
3285
    REALM_ASSERT(m_identified_sessions.count(client_file_ident) == 1);
4,176✔
3286
    m_identified_sessions.erase(client_file_ident);
4,176✔
3287
}
4,176✔
3288

3289

3290
Session* ServerFile::get_identified_session(file_ident_type client_file_ident) noexcept
3291
{
4,174✔
3292
    auto i = m_identified_sessions.find(client_file_ident);
4,174✔
3293
    if (i == m_identified_sessions.end())
4,174✔
3294
        return nullptr;
4,170✔
3295
    return i->second;
4✔
3296
}
4,174✔
3297

3298
bool ServerFile::can_add_changesets_from_downstream() const noexcept
3299
{
44,586✔
3300
    return (m_blocked_changesets_from_downstream_byte_size < m_server.get_max_upload_backlog());
44,586✔
3301
}
44,586✔
3302

3303

3304
void ServerFile::add_changesets_from_downstream(file_ident_type client_file_ident, UploadCursor upload_progress,
3305
                                                version_type locked_server_version, const UploadChangeset* changesets,
3306
                                                std::size_t num_changesets)
3307
{
44,280✔
3308
    register_client_access(client_file_ident); // Throws
44,280✔
3309

3310
    bool dirty = false;
44,280✔
3311

3312
    IntegratableChangesetList& list = m_changesets_from_downstream[client_file_ident]; // Throws
44,280✔
3313
    std::size_t num_bytes = 0;
44,280✔
3314
    for (std::size_t i = 0; i < num_changesets; ++i) {
78,752✔
3315
        const UploadChangeset& uc = changesets[i];
34,472✔
3316
        auto& changesets = list.changesets;
34,472✔
3317
        changesets.emplace_back(client_file_ident, uc.origin_timestamp, uc.origin_file_ident, uc.upload_cursor,
34,472✔
3318
                                uc.changeset); // Throws
34,472✔
3319
        num_bytes += uc.changeset.size();
34,472✔
3320
        dirty = true;
34,472✔
3321
    }
34,472✔
3322

3323
    REALM_ASSERT(upload_progress.client_version >= list.upload_progress.client_version);
44,280✔
3324
    REALM_ASSERT(are_mutually_consistent(upload_progress, list.upload_progress));
44,280✔
3325
    if (upload_progress.client_version > list.upload_progress.client_version) {
44,280✔
3326
        list.upload_progress = upload_progress;
44,276✔
3327
        dirty = true;
44,276✔
3328
    }
44,276✔
3329

3330
    REALM_ASSERT(locked_server_version >= list.locked_server_version);
44,280✔
3331
    if (locked_server_version > list.locked_server_version) {
44,280✔
3332
        list.locked_server_version = locked_server_version;
38,852✔
3333
        dirty = true;
38,852✔
3334
    }
38,852✔
3335

3336
    if (REALM_LIKELY(dirty)) {
44,280✔
3337
        if (num_changesets > 0) {
44,276✔
3338
            on_changesets_from_downstream_added(num_changesets, num_bytes); // Throws
24,194✔
3339
        }
24,194✔
3340
        else {
20,082✔
3341
            on_work_added(); // Throws
20,082✔
3342
        }
20,082✔
3343
    }
44,276✔
3344
}
44,280✔
3345

3346

3347
BootstrapError ServerFile::bootstrap_client_session(SaltedFileIdent client_file_ident,
3348
                                                    DownloadCursor download_progress, SaltedVersion server_version,
3349
                                                    ClientType client_type, UploadCursor& upload_progress,
3350
                                                    version_type& locked_server_version, Logger& logger)
3351
{
4,208✔
3352
    // The Realm file may contain a later snapshot than the one reflected by
3353
    // `m_sync_version`, but if so, the client cannot "legally" know about it.
3354
    if (server_version.version > m_version_info.sync_version.version)
4,208✔
3355
        return BootstrapError::bad_server_version;
20✔
3356

3357
    const ServerHistory& hist = access().history; // Throws
4,188✔
3358
    BootstrapError error = hist.bootstrap_client_session(client_file_ident, download_progress, server_version,
4,188✔
3359
                                                         client_type, upload_progress, locked_server_version,
4,188✔
3360
                                                         logger); // Throws
4,188✔
3361

3362
    // FIXME: Rather than taking previously buffered changesets from the same
3363
    // client file into account when determining the upload progress, and then
3364
    // allowing for an error during the integration of those changesets to be
3365
    // reported to, and terminate the new session, consider to instead postpone
3366
    // the bootstrapping of the new session until all previously buffered
3367
    // changesets from same client file have been fully processed.
3368

3369
    if (error == BootstrapError::no_error) {
4,188✔
3370
        register_client_access(client_file_ident.ident); // Throws
4,176✔
3371

3372
        // If upload, or releaseing of server versions progressed further during
3373
        // previous sessions than the persisted points, take that into account
3374
        auto i = m_work.changesets_from_downstream.find(client_file_ident.ident);
4,176✔
3375
        if (i != m_work.changesets_from_downstream.end()) {
4,176✔
3376
            const IntegratableChangesetList& list = i->second;
1,204✔
3377
            REALM_ASSERT(list.upload_progress.client_version >= upload_progress.client_version);
1,204✔
3378
            upload_progress = list.upload_progress;
1,204✔
3379
            REALM_ASSERT(list.locked_server_version >= locked_server_version);
1,204✔
3380
            locked_server_version = list.locked_server_version;
1,204✔
3381
        }
1,204✔
3382
        auto j = m_changesets_from_downstream.find(client_file_ident.ident);
4,176✔
3383
        if (j != m_changesets_from_downstream.end()) {
4,176✔
3384
            const IntegratableChangesetList& list = j->second;
88✔
3385
            REALM_ASSERT(list.upload_progress.client_version >= upload_progress.client_version);
88✔
3386
            upload_progress = list.upload_progress;
88✔
3387
            REALM_ASSERT(list.locked_server_version >= locked_server_version);
88✔
3388
            locked_server_version = list.locked_server_version;
88✔
3389
        }
88✔
3390
    }
4,176✔
3391

3392
    return error;
4,188✔
3393
}
4,208✔
3394

3395
// NOTE: This function is executed by the worker thread
3396
void ServerFile::worker_process_work_unit(WorkerState& state)
3397
{
37,004✔
3398
    SteadyTimePoint start_time = steady_clock_now();
37,004✔
3399
    milliseconds_type parallel_time = 0;
37,004✔
3400

3401
    Work& work = m_work;
37,004✔
3402
    wlogger.debug("Work unit execution started"); // Throws
37,004✔
3403

3404
    if (work.has_primary_work) {
37,004✔
3405
        if (REALM_UNLIKELY(!m_work.file_ident_alloc_slots.empty()))
37,004✔
3406
            worker_allocate_file_identifiers(); // Throws
1,328✔
3407

3408
        if (!m_work.changesets_from_downstream.empty())
37,004✔
3409
            worker_integrate_changes_from_downstream(state); // Throws
35,680✔
3410
    }
37,004✔
3411

3412
    wlogger.debug("Work unit execution completed"); // Throws
37,004✔
3413

3414
    milliseconds_type time = steady_duration(start_time);
37,004✔
3415
    milliseconds_type seq_time = time - parallel_time;
37,004✔
3416
    m_server.m_seq_time.fetch_add(seq_time, std::memory_order_relaxed);
37,004✔
3417
    m_server.m_par_time.fetch_add(parallel_time, std::memory_order_relaxed);
37,004✔
3418

3419
    // Pass control back to the network event loop thread
3420
    network::Service& service = m_server.get_service();
37,004✔
3421
    service.post([this](Status) {
37,004✔
3422
        // FIXME: The safety of capturing `this` here, relies on the fact
3423
        // that ServerFile objects currently are not destroyed until the
3424
        // server object is destroyed.
3425
        group_postprocess_stage_1(); // Throws
36,710✔
3426
        // Suicide may have happened at this point
3427
    }); // Throws
36,710✔
3428
}
37,004✔
3429

3430

3431
void ServerFile::on_changesets_from_downstream_added(std::size_t num_changesets, std::size_t num_bytes)
3432
{
24,190✔
3433
    m_num_changesets_from_downstream += num_changesets;
24,190✔
3434

3435
    if (num_bytes > 0) {
24,192✔
3436
        m_blocked_changesets_from_downstream_byte_size += num_bytes;
24,192✔
3437
        get_server().inc_byte_size_for_pending_downstream_changesets(num_bytes); // Throws
24,192✔
3438
    }
24,192✔
3439

3440
    on_work_added(); // Throws
24,190✔
3441
}
24,190✔
3442

3443

3444
void ServerFile::on_work_added()
3445
{
45,682✔
3446
    if (m_has_blocked_work)
45,682✔
3447
        return;
8,596✔
3448
    m_has_blocked_work = true;
37,086✔
3449
    // Reference file
3450
    if (m_has_work_in_progress)
37,086✔
3451
        return;
12,722✔
3452
    group_unblock_work(); // Throws
24,364✔
3453
}
24,364✔
3454

3455

3456
void ServerFile::group_unblock_work()
3457
{
37,028✔
3458
    REALM_ASSERT(!m_has_work_in_progress);
37,028✔
3459
    if (REALM_LIKELY(!m_server.is_sync_stopped())) {
37,028✔
3460
        unblock_work(); // Throws
37,020✔
3461
        const Work& work = m_work;
37,020✔
3462
        if (REALM_LIKELY(work.has_primary_work)) {
37,020✔
3463
            logger.trace("Work unit unblocked"); // Throws
37,010✔
3464
            m_has_work_in_progress = true;
37,010✔
3465
            Worker& worker = m_server.get_worker();
37,010✔
3466
            worker.enqueue(this); // Throws
37,010✔
3467
        }
37,010✔
3468
    }
37,020✔
3469
}
37,028✔
3470

3471

3472
void ServerFile::unblock_work()
3473
{
37,022✔
3474
    REALM_ASSERT(m_has_blocked_work);
37,022✔
3475

3476
    m_work.reset();
37,022✔
3477

3478
    // Discard requests for file identifiers whose receiver is no longer
3479
    // waiting.
3480
    {
37,022✔
3481
        auto i = m_file_ident_requests.begin();
37,022✔
3482
        auto end = m_file_ident_requests.end();
37,022✔
3483
        while (i != end) {
38,420✔
3484
            auto j = i++;
1,398✔
3485
            const FileIdentRequestInfo& info = j->second;
1,398✔
3486
            if (!info.receiver)
1,398✔
3487
                m_file_ident_requests.erase(j);
2✔
3488
        }
1,398✔
3489
    }
37,022✔
3490
    std::size_t n = m_file_ident_requests.size();
37,022✔
3491
    if (n > 0) {
37,022✔
3492
        m_work.file_ident_alloc_slots.resize(n); // Throws
1,342✔
3493
        std::size_t i = 0;
1,342✔
3494
        for (const auto& pair : m_file_ident_requests) {
1,396✔
3495
            const FileIdentRequestInfo& info = pair.second;
1,396✔
3496
            FileIdentAllocSlot& slot = m_work.file_ident_alloc_slots[i];
1,396✔
3497
            slot.proxy_file = info.proxy_file;
1,396✔
3498
            slot.client_type = info.client_type;
1,396✔
3499
            ++i;
1,396✔
3500
        }
1,396✔
3501
        m_work.has_primary_work = true;
1,342✔
3502
    }
1,342✔
3503

3504
    // FIXME: `ServerFile::m_changesets_from_downstream` and
3505
    // `Work::changesets_from_downstream` should be renamed to something else,
3506
    // as it may contain kinds of data other than changesets.
3507

3508
    using std::swap;
37,022✔
3509
    swap(m_changesets_from_downstream, m_work.changesets_from_downstream);
37,022✔
3510
    m_work.have_changesets_from_downstream = (m_num_changesets_from_downstream > 0);
37,022✔
3511
    bool has_changesets = !m_work.changesets_from_downstream.empty();
37,022✔
3512
    if (has_changesets) {
37,022✔
3513
        m_work.has_primary_work = true;
35,672✔
3514
    }
35,672✔
3515

3516
    // Keep track of the size of pending changesets
3517
    REALM_ASSERT(m_unblocked_changesets_from_downstream_byte_size == 0);
37,022✔
3518
    m_unblocked_changesets_from_downstream_byte_size = m_blocked_changesets_from_downstream_byte_size;
37,022✔
3519
    m_blocked_changesets_from_downstream_byte_size = 0;
37,022✔
3520

3521
    m_num_changesets_from_downstream = 0;
37,022✔
3522
    m_has_blocked_work = false;
37,022✔
3523
}
37,022✔
3524

3525

3526
void ServerFile::resume_download() noexcept
3527
{
22,898✔
3528
    for (const auto& entry : m_identified_sessions) {
37,712✔
3529
        Session& sess = *entry.second;
37,712✔
3530
        sess.ensure_enlisted_to_send();
37,712✔
3531
    }
37,712✔
3532
}
22,898✔
3533

3534

3535
void ServerFile::recognize_external_change()
3536
{
4,800✔
3537
    VersionInfo prev_version_info = m_version_info;
4,800✔
3538
    const ServerHistory& history = access().history;       // Throws
4,800✔
3539
    bool has_upstream_status;                              // Dummy
4,800✔
3540
    sync::file_ident_type partial_file_ident;              // Dummy
4,800✔
3541
    sync::version_type partial_progress_reference_version; // Dummy
4,800✔
3542
    history.get_status(m_version_info, has_upstream_status, partial_file_ident,
4,800✔
3543
                       partial_progress_reference_version); // Throws
4,800✔
3544

3545
    REALM_ASSERT(m_version_info.realm_version >= prev_version_info.realm_version);
4,800✔
3546
    REALM_ASSERT(m_version_info.sync_version.version >= prev_version_info.sync_version.version);
4,800✔
3547
    if (m_version_info.sync_version.version > prev_version_info.sync_version.version) {
4,800✔
3548
        REALM_ASSERT(m_version_info.realm_version > prev_version_info.realm_version);
4,800✔
3549
        resume_download();
4,800✔
3550
    }
4,800✔
3551
}
4,800✔
3552

3553

3554
// NOTE: This function is executed by the worker thread
3555
void ServerFile::worker_allocate_file_identifiers()
3556
{
1,328✔
3557
    Work& work = m_work;
1,328✔
3558
    REALM_ASSERT(!work.file_ident_alloc_slots.empty());
1,328✔
3559
    ServerHistory& hist = worker_access().history;                                      // Throws
1,328✔
3560
    hist.allocate_file_identifiers(m_work.file_ident_alloc_slots, m_work.version_info); // Throws
1,328✔
3561
    m_work.produced_new_realm_version = true;
1,328✔
3562
}
1,328✔
3563

3564

3565
// Returns true when, and only when this function produces a new sync version
3566
// (adds a new entry to the sync history).
3567
//
3568
// NOTE: This function is executed by the worker thread
3569
bool ServerFile::worker_integrate_changes_from_downstream(WorkerState& state)
3570
{
35,680✔
3571
    REALM_ASSERT(!m_work.changesets_from_downstream.empty());
35,680✔
3572

3573
    std::unique_ptr<ServerHistory> hist_ptr;
35,680✔
3574
    DBRef sg_ptr;
35,680✔
3575
    ServerHistory& hist = get_client_file_history(state, hist_ptr, sg_ptr);
35,680✔
3576
    bool backup_whole_realm = false;
35,680✔
3577
    bool produced_new_realm_version = hist.integrate_client_changesets(
35,680✔
3578
        m_work.changesets_from_downstream, m_work.version_info, backup_whole_realm, m_work.integration_result,
35,680✔
3579
        wlogger); // Throws
35,680✔
3580
    bool produced_new_sync_version = !m_work.integration_result.integrated_changesets.empty();
35,680✔
3581
    REALM_ASSERT(!produced_new_sync_version || produced_new_realm_version);
35,680✔
3582
    if (produced_new_realm_version) {
35,680✔
3583
        m_work.produced_new_realm_version = true;
35,656✔
3584
        if (produced_new_sync_version) {
35,656✔
3585
            m_work.produced_new_sync_version = true;
18,116✔
3586
        }
18,116✔
3587
    }
35,656✔
3588
    return produced_new_sync_version;
35,680✔
3589
}
35,680✔
3590

3591
ServerHistory& ServerFile::get_client_file_history(WorkerState& state, std::unique_ptr<ServerHistory>& hist_ptr,
3592
                                                   DBRef& sg_ptr)
3593
{
35,676✔
3594
    if (state.use_file_cache)
35,676✔
3595
        return worker_access().history; // Throws
35,678✔
3596
    const std::string& path = m_worker_file.realm_path;
2,147,483,647✔
3597
    hist_ptr = m_server.make_history_for_path();                   // Throws
2,147,483,647✔
3598
    DBOptions options = m_worker_file.make_shared_group_options(); // Throws
2,147,483,647✔
3599
    sg_ptr = DB::create(*hist_ptr, path, options);                 // Throws
2,147,483,647✔
3600
    sg_ptr->claim_sync_agent();                                    // Throws
2,147,483,647✔
3601
    return *hist_ptr;                                              // Throws
2,147,483,647✔
3602
}
35,676✔
3603

3604

3605
// When worker thread finishes work unit.
3606
void ServerFile::group_postprocess_stage_1()
3607
{
36,710✔
3608
    REALM_ASSERT(m_has_work_in_progress);
36,710✔
3609

3610
    group_finalize_work_stage_1(); // Throws
36,710✔
3611
    group_finalize_work_stage_2(); // Throws
36,710✔
3612
    group_postprocess_stage_2();   // Throws
36,710✔
3613
}
36,710✔
3614

3615

3616
void ServerFile::group_postprocess_stage_2()
3617
{
36,708✔
3618
    REALM_ASSERT(m_has_work_in_progress);
36,708✔
3619
    group_postprocess_stage_3(); // Throws
36,708✔
3620
    // Suicide may have happened at this point
3621
}
36,708✔
3622

3623

3624
// When all files, including the reference file, have been backed up.
3625
void ServerFile::group_postprocess_stage_3()
3626
{
36,708✔
3627
    REALM_ASSERT(m_has_work_in_progress);
36,708✔
3628
    m_has_work_in_progress = false;
36,708✔
3629

3630
    logger.trace("Work unit postprocessing complete"); // Throws
36,708✔
3631
    if (m_has_blocked_work)
36,708✔
3632
        group_unblock_work(); // Throws
12,668✔
3633
}
36,708✔
3634

3635

3636
void ServerFile::finalize_work_stage_1()
3637
{
36,710✔
3638
    if (m_unblocked_changesets_from_downstream_byte_size > 0) {
36,710✔
3639
        // Report the byte size of completed downstream changesets.
3640
        std::size_t byte_size = m_unblocked_changesets_from_downstream_byte_size;
18,122✔
3641
        get_server().dec_byte_size_for_pending_downstream_changesets(byte_size); // Throws
18,122✔
3642
        m_unblocked_changesets_from_downstream_byte_size = 0;
18,122✔
3643
    }
18,122✔
3644

3645
    // Deal with errors (bad changesets) pertaining to downstream clients
3646
    std::size_t num_changesets_removed = 0;
36,710✔
3647
    std::size_t num_bytes_removed = 0;
36,710✔
3648
    for (const auto& entry : m_work.integration_result.excluded_client_files) {
36,710✔
3649
        file_ident_type client_file_ident = entry.first;
20✔
3650
        ExtendedIntegrationError error = entry.second;
20✔
3651
        ProtocolError error_2 = ProtocolError::other_session_error;
20✔
3652
        switch (error) {
20✔
3653
            case ExtendedIntegrationError::client_file_expired:
✔
3654
                logger.debug("Changeset integration failed: Client file entry "
×
3655
                             "expired during session"); // Throws
×
3656
                error_2 = ProtocolError::client_file_expired;
×
3657
                break;
×
3658
            case ExtendedIntegrationError::bad_origin_file_ident:
✔
3659
                error_2 = ProtocolError::bad_origin_file_ident;
×
3660
                break;
×
3661
            case ExtendedIntegrationError::bad_changeset:
20✔
3662
                error_2 = ProtocolError::bad_changeset;
20✔
3663
                break;
20✔
3664
        }
20✔
3665
        auto i = m_identified_sessions.find(client_file_ident);
20✔
3666
        if (i != m_identified_sessions.end()) {
20✔
3667
            Session& sess = *i->second;
20✔
3668
            SyncConnection& conn = sess.get_connection();
20✔
3669
            conn.protocol_error(error_2, &sess); // Throws
20✔
3670
        }
20✔
3671
        const IntegratableChangesetList& list = m_changesets_from_downstream[client_file_ident];
20✔
3672
        std::size_t num_changesets = list.changesets.size();
20✔
3673
        std::size_t num_bytes = 0;
20✔
3674
        for (const IntegratableChangeset& ic : list.changesets)
20✔
3675
            num_bytes += ic.changeset.size();
×
3676
        logger.info("Excluded %1 changesets of combined byte size %2 for client file %3", num_changesets, num_bytes,
20✔
3677
                    client_file_ident); // Throws
20✔
3678
        num_changesets_removed += num_changesets;
20✔
3679
        num_bytes_removed += num_bytes;
20✔
3680
        m_changesets_from_downstream.erase(client_file_ident);
20✔
3681
    }
20✔
3682

3683
    REALM_ASSERT(num_changesets_removed <= m_num_changesets_from_downstream);
36,710✔
3684
    REALM_ASSERT(num_bytes_removed <= m_blocked_changesets_from_downstream_byte_size);
36,710✔
3685

3686
    if (num_changesets_removed == 0)
36,710✔
3687
        return;
36,708✔
3688

3689
    m_num_changesets_from_downstream -= num_changesets_removed;
2✔
3690

3691
    // The byte size of the blocked changesets must be decremented.
3692
    if (num_bytes_removed > 0) {
2✔
3693
        m_blocked_changesets_from_downstream_byte_size -= num_bytes_removed;
×
3694
        get_server().dec_byte_size_for_pending_downstream_changesets(num_bytes_removed); // Throws
×
3695
    }
×
3696
}
2✔
3697

3698

3699
void ServerFile::finalize_work_stage_2()
3700
{
36,706✔
3701
    // Expose new snapshot to remote peers
3702
    REALM_ASSERT(m_work.produced_new_realm_version || m_work.version_info.realm_version == 0);
36,706✔
3703
    if (m_work.version_info.realm_version > m_version_info.realm_version) {
36,706✔
3704
        REALM_ASSERT(m_work.version_info.sync_version.version >= m_version_info.sync_version.version);
36,688✔
3705
        m_version_info = m_work.version_info;
36,688✔
3706
    }
36,688✔
3707

3708
    bool resume_download_and_upload = m_work.produced_new_sync_version;
36,706✔
3709

3710
    // Deliver allocated file identifiers to requesters
3711
    REALM_ASSERT(m_file_ident_requests.size() >= m_work.file_ident_alloc_slots.size());
36,706✔
3712
    auto begin = m_file_ident_requests.begin();
36,706✔
3713
    auto i = begin;
36,706✔
3714
    for (const FileIdentAllocSlot& slot : m_work.file_ident_alloc_slots) {
36,706✔
3715
        FileIdentRequestInfo& info = i->second;
1,370✔
3716
        REALM_ASSERT(info.proxy_file == slot.proxy_file);
1,370✔
3717
        REALM_ASSERT(info.client_type == slot.client_type);
1,370✔
3718
        if (FileIdentReceiver* receiver = info.receiver) {
1,370✔
3719
            info.receiver = nullptr;
1,340✔
3720
            receiver->receive_file_ident(slot.file_ident); // Throws
1,340✔
3721
        }
1,340✔
3722
        ++i;
1,370✔
3723
    }
1,370✔
3724
    m_file_ident_requests.erase(begin, i);
36,706✔
3725

3726
    // Resume download to downstream clients
3727
    if (resume_download_and_upload) {
36,706✔
3728
        resume_download();
18,098✔
3729
    }
18,098✔
3730
}
36,706✔
3731

3732
// ============================ Worker implementation ============================
3733

3734
Worker::Worker(ServerImpl& server)
3735
    : logger_ptr{std::make_shared<util::PrefixLogger>(util::LogCategory::server, "Worker: ", server.logger_ptr)}
548✔
3736
    // Throws
3737
    , logger(*logger_ptr)
548✔
3738
    , m_server{server}
548✔
3739
    , m_file_access_cache{server.get_config().max_open_files, logger, *this, server.get_config().encryption_key}
548✔
3740
{
1,200✔
3741
    util::seed_prng_nondeterministically(m_random); // Throws
1,200✔
3742
}
1,200✔
3743

3744

3745
void Worker::enqueue(ServerFile* file)
3746
{
37,028✔
3747
    util::LockGuard lock{m_mutex};
37,028✔
3748
    m_queue.push_back(file); // Throws
37,028✔
3749
    m_cond.notify_all();
37,028✔
3750
}
37,028✔
3751

3752

3753
std::mt19937_64& Worker::server_history_get_random() noexcept
3754
{
2,410✔
3755
    return m_random;
2,410✔
3756
}
2,410✔
3757

3758

3759
void Worker::run()
3760
{
1,144✔
3761
    for (;;) {
38,148✔
3762
        ServerFile* file = nullptr;
38,148✔
3763
        {
38,148✔
3764
            util::LockGuard lock{m_mutex};
38,148✔
3765
            for (;;) {
75,804✔
3766
                if (REALM_UNLIKELY(m_stop))
75,804✔
3767
                    return;
1,144✔
3768
                if (!m_queue.empty()) {
74,660✔
3769
                    file = m_queue.front();
37,004✔
3770
                    m_queue.pop_front();
37,004✔
3771
                    break;
37,004✔
3772
                }
37,004✔
3773
                m_cond.wait(lock);
37,656✔
3774
            }
37,656✔
3775
        }
38,148✔
3776
        file->worker_process_work_unit(m_state); // Throws
37,004✔
3777
    }
37,004✔
3778
}
1,144✔
3779

3780

3781
void Worker::stop() noexcept
3782
{
1,144✔
3783
    util::LockGuard lock{m_mutex};
1,144✔
3784
    m_stop = true;
1,144✔
3785
    m_cond.notify_all();
1,144✔
3786
}
1,144✔
3787

3788

3789
// ============================ ServerImpl implementation ============================
3790

3791
ServerImpl::ServerImpl(const std::string& root_dir, util::Optional<sync::PKey> pkey, Server::Config config)
3792
    : logger_ptr{std::make_shared<util::CategoryLogger>(util::LogCategory::server, std::move(config.logger))}
548✔
3793
    , logger{*logger_ptr}
548✔
3794
    , m_config{std::move(config)}
548✔
3795
    , m_max_upload_backlog{determine_max_upload_backlog(config)}
548✔
3796
    , m_root_dir{root_dir} // Throws
548✔
3797
    , m_access_control{std::move(pkey)}
548✔
3798
    , m_protocol_version_range{determine_protocol_version_range(config)}                 // Throws
548✔
3799
    , m_file_access_cache{m_config.max_open_files, logger, *this, config.encryption_key} // Throws
548✔
3800
    , m_worker{*this}                                                                    // Throws
548✔
3801
    , m_acceptor{get_service()}
548✔
3802
    , m_server_protocol{}       // Throws
548✔
3803
    , m_compress_memory_arena{} // Throws
548✔
3804
{
1,200✔
3805
    if (m_config.ssl) {
1,200✔
3806
        m_ssl_context = std::make_unique<network::ssl::Context>();                // Throws
24✔
3807
        m_ssl_context->use_certificate_chain_file(m_config.ssl_certificate_path); // Throws
24✔
3808
        m_ssl_context->use_private_key_file(m_config.ssl_certificate_key_path);   // Throws
24✔
3809
    }
24✔
3810
}
1,200✔
3811

3812

3813
ServerImpl::~ServerImpl() noexcept
3814
{
1,200✔
3815
    bool server_destroyed_while_still_running = m_running;
1,200✔
3816
    REALM_ASSERT_RELEASE(!server_destroyed_while_still_running);
1,200✔
3817
}
1,200✔
3818

3819

3820
void ServerImpl::start()
3821
{
1,200✔
3822
    logger.info("Realm sync server started (%1)", REALM_VER_CHUNK); // Throws
1,200✔
3823
    logger.info("Supported protocol versions: %1-%2 (%3-%4 configured)",
1,200✔
3824
                ServerImplBase::get_oldest_supported_protocol_version(), get_current_protocol_version(),
1,200✔
3825
                m_protocol_version_range.first,
1,200✔
3826
                m_protocol_version_range.second); // Throws
1,200✔
3827
    logger.info("Platform: %1", util::get_platform_info());
1,200✔
3828
    bool is_debug_build = false;
1,200✔
3829
#if REALM_DEBUG
1,200✔
3830
    is_debug_build = true;
1,200✔
3831
#endif
1,200✔
3832
    {
1,200✔
3833
        const char* lead_text = "Build mode";
1,200✔
3834
        if (is_debug_build) {
1,200✔
3835
            logger.info("%1: Debug", lead_text); // Throws
1,200✔
3836
        }
1,200✔
3837
        else {
×
3838
            logger.info("%1: Release", lead_text); // Throws
×
3839
        }
×
3840
    }
1,200✔
3841
    if (is_debug_build) {
1,200✔
3842
        logger.warn("Build mode is Debug! CAN SEVERELY IMPACT PERFORMANCE - "
1,200✔
3843
                    "NOT RECOMMENDED FOR PRODUCTION"); // Throws
1,200✔
3844
    }
1,200✔
3845
    logger.info("Directory holding persistent state: %1", m_root_dir);        // Throws
1,200✔
3846
    logger.info("Maximum number of open files: %1", m_config.max_open_files); // Throws
1,200✔
3847
    {
1,200✔
3848
        const char* lead_text = "Encryption";
1,200✔
3849
        if (m_config.encryption_key) {
1,200✔
3850
            logger.info("%1: Yes", lead_text); // Throws
4✔
3851
        }
4✔
3852
        else {
1,196✔
3853
            logger.info("%1: No", lead_text); // Throws
1,196✔
3854
        }
1,196✔
3855
    }
1,200✔
3856
    logger.info("Log level: %1", logger.get_level_threshold()); // Throws
1,200✔
3857
    {
1,200✔
3858
        const char* lead_text = "Disable sync to disk";
1,200✔
3859
        if (m_config.disable_sync_to_disk) {
1,200✔
3860
            logger.info("%1: All files", lead_text); // Throws
496✔
3861
        }
496✔
3862
        else {
704✔
3863
            logger.info("%1: No", lead_text); // Throws
704✔
3864
        }
704✔
3865
    }
1,200✔
3866
    if (m_config.disable_sync_to_disk) {
1,200✔
3867
        logger.warn("Testing/debugging feature 'disable sync to disk' enabled - "
496✔
3868
                    "never do this in production!"); // Throws
496✔
3869
    }
496✔
3870
    logger.info("Download compaction: %1",
1,200✔
3871
                (m_config.disable_download_compaction ? "No" : "Yes")); // Throws
1,200✔
3872
    logger.info("Download bootstrap caching: %1",
1,200✔
3873
                (m_config.enable_download_bootstrap_cache ? "Yes" : "No"));                // Throws
1,200✔
3874
    logger.info("Max download size: %1 bytes", m_config.max_download_size);                // Throws
1,200✔
3875
    logger.info("Max upload backlog: %1 bytes", m_max_upload_backlog);                     // Throws
1,200✔
3876
    logger.info("HTTP request timeout: %1 ms", m_config.http_request_timeout);             // Throws
1,200✔
3877
    logger.info("HTTP response timeout: %1 ms", m_config.http_response_timeout);           // Throws
1,200✔
3878
    logger.info("Connection reaper timeout: %1 ms", m_config.connection_reaper_timeout);   // Throws
1,200✔
3879
    logger.info("Connection reaper interval: %1 ms", m_config.connection_reaper_interval); // Throws
1,200✔
3880
    logger.info("Connection soft close timeout: %1 ms", m_config.soft_close_timeout);      // Throws
1,200✔
3881
    logger.debug("Authorization header name: %1", m_config.authorization_header_name);     // Throws
1,200✔
3882

3883
    m_realm_names = _impl::find_realm_files(m_root_dir); // Throws
1,200✔
3884

3885
    initiate_connection_reaper_timer(m_config.connection_reaper_interval); // Throws
1,200✔
3886

3887
    listen(); // Throws
1,200✔
3888
}
1,200✔
3889

3890

3891
void ServerImpl::run()
3892
{
1,144✔
3893
    auto ta = util::make_temp_assign(m_running, true);
1,144✔
3894

3895
    {
1,144✔
3896
        auto worker_thread = util::make_thread_exec_guard(m_worker, *this); // Throws
1,144✔
3897
        std::string name;
1,144✔
3898
        if (util::Thread::get_name(name)) {
1,144✔
3899
            name += "-worker";
622✔
3900
            worker_thread.start_with_signals_blocked(name); // Throws
622✔
3901
        }
622✔
3902
        else {
522✔
3903
            worker_thread.start_with_signals_blocked(); // Throws
522✔
3904
        }
522✔
3905

3906
        m_service.run(); // Throws
1,144✔
3907

3908
        worker_thread.stop_and_rethrow(); // Throws
1,144✔
3909
    }
1,144✔
3910

3911
    logger.info("Realm sync server stopped");
1,144✔
3912
}
1,144✔
3913

3914

3915
void ServerImpl::stop() noexcept
3916
{
2,054✔
3917
    util::LockGuard lock{m_mutex};
2,054✔
3918
    if (m_stopped)
2,054✔
3919
        return;
854✔
3920
    m_stopped = true;
1,200✔
3921
    m_wait_or_service_stopped_cond.notify_all();
1,200✔
3922
    m_service.stop();
1,200✔
3923
}
1,200✔
3924

3925

3926
void ServerImpl::inc_byte_size_for_pending_downstream_changesets(std::size_t byte_size)
3927
{
24,192✔
3928
    m_pending_changesets_from_downstream_byte_size += byte_size;
24,192✔
3929
    logger.debug("Byte size for pending downstream changesets incremented by "
24,192✔
3930
                 "%1 to reach a total of %2",
24,192✔
3931
                 byte_size,
24,192✔
3932
                 m_pending_changesets_from_downstream_byte_size); // Throws
24,192✔
3933
}
24,192✔
3934

3935

3936
void ServerImpl::dec_byte_size_for_pending_downstream_changesets(std::size_t byte_size)
3937
{
18,120✔
3938
    REALM_ASSERT(byte_size <= m_pending_changesets_from_downstream_byte_size);
18,120✔
3939
    m_pending_changesets_from_downstream_byte_size -= byte_size;
18,120✔
3940
    logger.debug("Byte size for pending downstream changesets decremented by "
18,120✔
3941
                 "%1 to reach a total of %2",
18,120✔
3942
                 byte_size,
18,120✔
3943
                 m_pending_changesets_from_downstream_byte_size); // Throws
18,120✔
3944
}
18,120✔
3945

3946

3947
std::mt19937_64& ServerImpl::server_history_get_random() noexcept
3948
{
1,138✔
3949
    return get_random();
1,138✔
3950
}
1,138✔
3951

3952

3953
void ServerImpl::listen()
3954
{
1,200✔
3955
    network::Resolver resolver{get_service()};
1,200✔
3956
    network::Resolver::Query query(m_config.listen_address, m_config.listen_port,
1,200✔
3957
                                   network::Resolver::Query::passive | network::Resolver::Query::address_configured);
1,200✔
3958
    network::Endpoint::List endpoints = resolver.resolve(query); // Throws
1,200✔
3959

3960
    auto i = endpoints.begin();
1,200✔
3961
    auto end = endpoints.end();
1,200✔
3962
    for (;;) {
1,200✔
3963
        std::error_code ec;
1,200✔
3964
        m_acceptor.open(i->protocol(), ec);
1,200✔
3965
        if (!ec) {
1,200✔
3966
            using SocketBase = network::SocketBase;
1,200✔
3967
            m_acceptor.set_option(SocketBase::reuse_address(m_config.reuse_address), ec);
1,200✔
3968
            if (!ec) {
1,200✔
3969
                m_acceptor.bind(*i, ec);
1,200✔
3970
                if (!ec)
1,200✔
3971
                    break;
1,200✔
3972
            }
1,200✔
3973
            m_acceptor.close();
×
3974
        }
×
3975
        if (i + 1 == end) {
×
3976
            for (auto i2 = endpoints.begin(); i2 != i; ++i2) {
×
3977
                // FIXME: We don't have the error code for previous attempts, so
3978
                // can't print a nice message.
3979
                logger.error("Failed to bind to %1:%2", i2->address(),
×
3980
                             i2->port()); // Throws
×
3981
            }
×
3982
            logger.error("Failed to bind to %1:%2: %3", i->address(), i->port(),
×
3983
                         ec.message()); // Throws
×
3984
            throw std::runtime_error("Could not create a listening socket: All endpoints failed");
×
3985
        }
×
3986
    }
×
3987

3988
    m_acceptor.listen(m_config.listen_backlog);
1,200✔
3989

3990
    network::Endpoint local_endpoint = m_acceptor.local_endpoint();
1,200✔
3991
    const char* ssl_mode = (m_ssl_context ? "TLS" : "non-TLS");
1,200✔
3992
    logger.info("Listening on %1:%2 (max backlog is %3, %4)", local_endpoint.address(), local_endpoint.port(),
1,200✔
3993
                m_config.listen_backlog, ssl_mode); // Throws
1,200✔
3994

3995
    initiate_accept();
1,200✔
3996
}
1,200✔
3997

3998

3999
void ServerImpl::initiate_accept()
4000
{
3,278✔
4001
    auto handler = [this](std::error_code ec) {
3,278✔
4002
        if (ec != util::error::operation_aborted)
2,078✔
4003
            handle_accept(ec);
2,078✔
4004
    };
2,078✔
4005
    bool is_ssl = bool(m_ssl_context);
3,278✔
4006
    m_next_http_conn.reset(new HTTPConnection(*this, ++m_next_conn_id, is_ssl));                            // Throws
3,278✔
4007
    m_acceptor.async_accept(m_next_http_conn->get_socket(), m_next_http_conn_endpoint, std::move(handler)); // Throws
3,278✔
4008
}
3,278✔
4009

4010

4011
void ServerImpl::handle_accept(std::error_code ec)
4012
{
2,078✔
4013
    if (ec) {
2,078✔
4014
        if (ec != util::error::connection_aborted) {
×
4015
            REALM_ASSERT(ec != util::error::operation_aborted);
×
4016

4017
            // We close the reserved files to get a few extra file descriptors.
4018
            for (size_t i = 0; i < sizeof(m_reserved_files) / sizeof(m_reserved_files[0]); ++i) {
×
4019
                m_reserved_files[i].reset();
×
4020
            }
×
4021

4022
            // FIXME: There are probably errors that need to be treated
4023
            // specially, and not cause the server to "crash".
4024

4025
            if (ec == make_basic_system_error_code(EMFILE)) {
×
4026
                logger.error("Failed to accept a connection due to the file descriptor limit, "
×
4027
                             "consider increasing the limit in your system config"); // Throws
×
4028
                throw OutOfFilesError(ec);
×
4029
            }
×
4030
            else {
×
4031
                throw std::system_error(ec);
×
4032
            }
×
4033
        }
×
4034
        logger.debug("Skipping aborted connection"); // Throws
×
4035
    }
×
4036
    else {
2,078✔
4037
        HTTPConnection& conn = *m_next_http_conn;
2,078✔
4038
        if (m_config.tcp_no_delay)
2,078✔
4039
            conn.get_socket().set_option(network::SocketBase::no_delay(true));  // Throws
1,730✔
4040
        m_http_connections.emplace(conn.get_id(), std::move(m_next_http_conn)); // Throws
2,078✔
4041
        Formatter& formatter = m_misc_buffers.formatter;
2,078✔
4042
        formatter.reset();
2,078✔
4043
        formatter << "[" << m_next_http_conn_endpoint.address() << "]:" << m_next_http_conn_endpoint.port(); // Throws
2,078✔
4044
        std::string remote_endpoint = {formatter.data(), formatter.size()};                                  // Throws
2,078✔
4045
        conn.initiate(std::move(remote_endpoint));                                                           // Throws
2,078✔
4046
    }
2,078✔
4047
    initiate_accept(); // Throws
2,078✔
4048
}
2,078✔
4049

4050

4051
void ServerImpl::remove_http_connection(std::int_fast64_t conn_id) noexcept
4052
{
2,078✔
4053
    m_http_connections.erase(conn_id);
2,078✔
4054
}
2,078✔
4055

4056

4057
void ServerImpl::add_sync_connection(int_fast64_t connection_id, std::unique_ptr<SyncConnection>&& sync_conn)
4058
{
2,036✔
4059
    m_sync_connections.emplace(connection_id, std::move(sync_conn));
2,036✔
4060
}
2,036✔
4061

4062

4063
void ServerImpl::remove_sync_connection(int_fast64_t connection_id)
4064
{
1,188✔
4065
    m_sync_connections.erase(connection_id);
1,188✔
4066
}
1,188✔
4067

4068

4069
void ServerImpl::set_connection_reaper_timeout(milliseconds_type timeout)
4070
{
4✔
4071
    get_service().post([this, timeout](Status) {
4✔
4072
        m_config.connection_reaper_timeout = timeout;
4✔
4073
    });
4✔
4074
}
4✔
4075

4076

4077
void ServerImpl::close_connections()
4078
{
16✔
4079
    get_service().post([this](Status) {
16✔
4080
        do_close_connections(); // Throws
16✔
4081
    });
16✔
4082
}
16✔
4083

4084

4085
bool ServerImpl::map_virtual_to_real_path(const std::string& virt_path, std::string& real_path)
4086
{
72✔
4087
    return _impl::map_virt_to_real_realm_path(m_root_dir, virt_path, real_path); // Throws
72✔
4088
}
72✔
4089

4090

4091
void ServerImpl::recognize_external_change(const std::string& virt_path)
4092
{
4,800✔
4093
    std::string virt_path_2 = virt_path; // Throws (copy)
4,800✔
4094
    get_service().post([this, virt_path = std::move(virt_path_2)](Status) {
4,800✔
4095
        do_recognize_external_change(virt_path); // Throws
4,800✔
4096
    });                                          // Throws
4,800✔
4097
}
4,800✔
4098

4099

4100
void ServerImpl::stop_sync_and_wait_for_backup_completion(
4101
    util::UniqueFunction<void(bool did_backup)> completion_handler, milliseconds_type timeout)
4102
{
×
4103
    logger.info("stop_sync_and_wait_for_backup_completion() called with "
×
4104
                "timeout = %1",
×
4105
                timeout); // Throws
×
4106

4107
    get_service().post([this, completion_handler = std::move(completion_handler), timeout](Status) mutable {
×
4108
        do_stop_sync_and_wait_for_backup_completion(std::move(completion_handler),
×
4109
                                                    timeout); // Throws
×
4110
    });
×
4111
}
×
4112

4113

4114
void ServerImpl::initiate_connection_reaper_timer(milliseconds_type timeout)
4115
{
1,316✔
4116
    m_connection_reaper_timer.emplace(get_service());
1,316✔
4117
    m_connection_reaper_timer->async_wait(std::chrono::milliseconds(timeout), [this, timeout](Status status) {
1,316✔
4118
        if (status != ErrorCodes::OperationAborted) {
116✔
4119
            reap_connections();                        // Throws
116✔
4120
            initiate_connection_reaper_timer(timeout); // Throws
116✔
4121
        }
116✔
4122
    }); // Throws
116✔
4123
}
1,316✔
4124

4125

4126
void ServerImpl::reap_connections()
4127
{
116✔
4128
    logger.debug("Discarding dead connections"); // Throws
116✔
4129
    SteadyTimePoint now = steady_clock_now();
116✔
4130
    {
116✔
4131
        auto end = m_http_connections.end();
116✔
4132
        auto i = m_http_connections.begin();
116✔
4133
        while (i != end) {
118✔
4134
            HTTPConnection& conn = *i->second;
2✔
4135
            ++i;
2✔
4136
            // Suicide
4137
            conn.terminate_if_dead(now); // Throws
2✔
4138
        }
2✔
4139
    }
116✔
4140
    {
116✔
4141
        auto end = m_sync_connections.end();
116✔
4142
        auto i = m_sync_connections.begin();
116✔
4143
        while (i != end) {
228✔
4144
            SyncConnection& conn = *i->second;
112✔
4145
            ++i;
112✔
4146
            // Suicide
4147
            conn.terminate_if_dead(now); // Throws
112✔
4148
        }
112✔
4149
    }
116✔
4150
}
116✔
4151

4152

4153
void ServerImpl::do_close_connections()
4154
{
16✔
4155
    for (auto& entry : m_sync_connections) {
16✔
4156
        SyncConnection& conn = *entry.second;
16✔
4157
        conn.initiate_soft_close(); // Throws
16✔
4158
    }
16✔
4159
}
16✔
4160

4161

4162
void ServerImpl::do_recognize_external_change(const std::string& virt_path)
4163
{
4,800✔
4164
    auto i = m_files.find(virt_path);
4,800✔
4165
    if (i == m_files.end())
4,800✔
4166
        return;
×
4167
    ServerFile& file = *i->second;
4,800✔
4168
    file.recognize_external_change();
4,800✔
4169
}
4,800✔
4170

4171

4172
void ServerImpl::do_stop_sync_and_wait_for_backup_completion(
4173
    util::UniqueFunction<void(bool did_complete)> completion_handler, milliseconds_type timeout)
4174
{
×
4175
    static_cast<void>(timeout);
×
4176
    if (m_sync_stopped)
×
4177
        return;
×
4178
    do_close_connections(); // Throws
×
4179
    m_sync_stopped = true;
×
4180
    bool completion_reached = false;
×
4181
    completion_handler(completion_reached); // Throws
×
4182
}
×
4183

4184

4185
// ============================ SyncConnection implementation ============================
4186

4187
SyncConnection::~SyncConnection() noexcept
4188
{
2,036✔
4189
    m_sessions_enlisted_to_send.clear();
2,036✔
4190
    m_sessions.clear();
2,036✔
4191
}
2,036✔
4192

4193

4194
void SyncConnection::initiate()
4195
{
2,036✔
4196
    m_last_activity_at = steady_clock_now();
2,036✔
4197
    logger.debug("Sync Connection initiated");
2,036✔
4198
    m_websocket.initiate_server_websocket_after_handshake();
2,036✔
4199
    send_log_message(util::Logger::Level::info, "Client connection established with server", 0,
2,036✔
4200
                     m_appservices_request_id);
2,036✔
4201
}
2,036✔
4202

4203

4204
template <class... Params>
4205
void SyncConnection::terminate(Logger::Level log_level, const char* log_message, Params... log_params)
4206
{
1,188✔
4207
    terminate_sessions();                              // Throws
1,188✔
4208
    logger.log(log_level, log_message, log_params...); // Throws
1,188✔
4209
    m_websocket.stop();
1,188✔
4210
    m_ssl_stream.reset();
1,188✔
4211
    m_socket.reset();
1,188✔
4212
    // Suicide
4213
    m_server.remove_sync_connection(m_id);
1,188✔
4214
}
1,188✔
4215

4216

4217
void SyncConnection::terminate_if_dead(SteadyTimePoint now)
4218
{
112✔
4219
    milliseconds_type time = steady_duration(m_last_activity_at, now);
112✔
4220
    const Server::Config& config = m_server.get_config();
112✔
4221
    if (m_is_closing) {
112✔
4222
        if (time >= config.soft_close_timeout) {
×
4223
            // Suicide
4224
            terminate(Logger::Level::detail,
×
4225
                      "Sync connection closed (timeout during soft close)"); // Throws
×
4226
        }
×
4227
    }
×
4228
    else {
112✔
4229
        if (time >= config.connection_reaper_timeout) {
112✔
4230
            // Suicide
4231
            terminate(Logger::Level::detail,
4✔
4232
                      "Sync connection closed (no heartbeat)"); // Throws
4✔
4233
        }
4✔
4234
    }
112✔
4235
}
112✔
4236

4237

4238
void SyncConnection::enlist_to_send(Session* sess) noexcept
4239
{
110,334✔
4240
    REALM_ASSERT(m_send_trigger);
110,334✔
4241
    REALM_ASSERT(!m_is_closing);
110,334✔
4242
    REALM_ASSERT(!sess->is_enlisted_to_send());
110,334✔
4243
    m_sessions_enlisted_to_send.push_back(sess);
110,334✔
4244
    m_send_trigger->trigger();
110,334✔
4245
}
110,334✔
4246

4247

4248
void SyncConnection::handle_protocol_error(Status status)
4249
{
×
4250
    logger.error("%1", status);
×
4251
    switch (status.code()) {
×
4252
        case ErrorCodes::SyncProtocolInvariantFailed:
×
4253
            protocol_error(ProtocolError::bad_syntax); // Throws
×
4254
            break;
×
4255
        case ErrorCodes::LimitExceeded:
×
4256
            protocol_error(ProtocolError::limits_exceeded); // Throws
×
4257
            break;
×
4258
        default:
×
4259
            protocol_error(ProtocolError::other_error);
×
4260
            break;
×
4261
    }
×
4262
}
×
4263

4264
void SyncConnection::receive_bind_message(session_ident_type session_ident, std::string path,
4265
                                          std::string signed_user_token, bool need_client_file_ident,
4266
                                          bool is_subserver)
4267
{
5,206✔
4268
    auto p = m_sessions.emplace(session_ident, nullptr); // Throws
5,206✔
4269
    bool was_inserted = p.second;
5,206✔
4270
    if (REALM_UNLIKELY(!was_inserted)) {
5,206✔
4271
        logger.error("Overlapping reuse of session identifier %1 in BIND message",
×
4272
                     session_ident);                           // Throws
×
4273
        protocol_error(ProtocolError::reuse_of_session_ident); // Throws
×
4274
        return;
×
4275
    }
×
4276
    try {
5,206✔
4277
        p.first->second.reset(new Session(*this, session_ident)); // Throws
5,206✔
4278
    }
5,206✔
4279
    catch (...) {
5,206✔
4280
        m_sessions.erase(p.first);
×
4281
        throw;
×
4282
    }
×
4283

4284
    Session& sess = *p.first->second;
5,204✔
4285
    sess.initiate(); // Throws
5,204✔
4286
    ProtocolError error;
5,204✔
4287
    bool success =
5,204✔
4288
        sess.receive_bind_message(std::move(path), std::move(signed_user_token), need_client_file_ident, is_subserver,
5,204✔
4289
                                  error); // Throws
5,204✔
4290
    if (REALM_UNLIKELY(!success))         // Throws
5,204✔
4291
        protocol_error(error, &sess);     // Throws
28✔
4292
}
5,204✔
4293

4294

4295
void SyncConnection::receive_ident_message(session_ident_type session_ident, file_ident_type client_file_ident,
4296
                                           salt_type client_file_ident_salt, version_type scan_server_version,
4297
                                           version_type scan_client_version, version_type latest_server_version,
4298
                                           salt_type latest_server_version_salt)
4299
{
4,218✔
4300
    auto i = m_sessions.find(session_ident);
4,218✔
4301
    if (REALM_UNLIKELY(i == m_sessions.end())) {
4,218✔
4302
        bad_session_ident("IDENT", session_ident); // Throws
×
4303
        return;
×
4304
    }
×
4305
    Session& sess = *i->second;
4,218✔
4306
    if (REALM_UNLIKELY(sess.unbind_message_received())) {
4,218✔
4307
        message_after_unbind("IDENT", session_ident); // Throws
×
4308
        return;
×
4309
    }
×
4310
    if (REALM_UNLIKELY(sess.error_occurred())) {
4,218✔
4311
        // Protocol state is SendError or WaitForUnbindErr. In these states, all
4312
        // messages, other than UNBIND, must be ignored.
4313
        return;
16✔
4314
    }
16✔
4315
    if (REALM_UNLIKELY(sess.must_send_ident_message())) {
4,202✔
4316
        logger.error("Received IDENT message before IDENT message was sent"); // Throws
×
4317
        protocol_error(ProtocolError::bad_message_order);                     // Throws
×
4318
        return;
×
4319
    }
×
4320
    if (REALM_UNLIKELY(sess.ident_message_received())) {
4,202✔
4321
        logger.error("Received second IDENT message for session"); // Throws
×
4322
        protocol_error(ProtocolError::bad_message_order);          // Throws
×
4323
        return;
×
4324
    }
×
4325

4326
    ProtocolError error = {};
4,202✔
4327
    bool success = sess.receive_ident_message(client_file_ident, client_file_ident_salt, scan_server_version,
4,202✔
4328
                                              scan_client_version, latest_server_version, latest_server_version_salt,
4,202✔
4329
                                              error); // Throws
4,202✔
4330
    if (REALM_UNLIKELY(!success))                     // Throws
4,202✔
4331
        protocol_error(error, &sess);                 // Throws
32✔
4332
}
4,202✔
4333

4334
void SyncConnection::receive_upload_message(session_ident_type session_ident, version_type progress_client_version,
4335
                                            version_type progress_server_version, version_type locked_server_version,
4336
                                            const UploadChangesets& upload_changesets)
4337
{
44,594✔
4338
    auto i = m_sessions.find(session_ident);
44,594✔
4339
    if (REALM_UNLIKELY(i == m_sessions.end())) {
44,594✔
4340
        bad_session_ident("UPLOAD", session_ident); // Throws
×
4341
        return;
×
4342
    }
×
4343
    Session& sess = *i->second;
44,594✔
4344
    if (REALM_UNLIKELY(sess.unbind_message_received())) {
44,594✔
4345
        message_after_unbind("UPLOAD", session_ident); // Throws
×
4346
        return;
×
4347
    }
×
4348
    if (REALM_UNLIKELY(sess.error_occurred())) {
44,594✔
4349
        // Protocol state is SendError or WaitForUnbindErr. In these states, all
4350
        // messages, other than UNBIND, must be ignored.
4351
        return;
×
4352
    }
×
4353
    if (REALM_UNLIKELY(!sess.ident_message_received())) {
44,594✔
4354
        message_before_ident("UPLOAD", session_ident); // Throws
×
4355
        return;
×
4356
    }
×
4357

4358
    ProtocolError error = {};
44,594✔
4359
    bool success = sess.receive_upload_message(progress_client_version, progress_server_version,
44,594✔
4360
                                               locked_server_version, upload_changesets, error); // Throws
44,594✔
4361
    if (REALM_UNLIKELY(!success))                                                                // Throws
44,594✔
4362
        protocol_error(error, &sess);                                                            // Throws
×
4363
}
44,594✔
4364

4365

4366
void SyncConnection::receive_mark_message(session_ident_type session_ident, request_ident_type request_ident)
4367
{
12,056✔
4368
    auto i = m_sessions.find(session_ident);
12,056✔
4369
    if (REALM_UNLIKELY(i == m_sessions.end())) {
12,056✔
4370
        bad_session_ident("MARK", session_ident);
×
4371
        return;
×
4372
    }
×
4373
    Session& sess = *i->second;
12,056✔
4374
    if (REALM_UNLIKELY(sess.unbind_message_received())) {
12,056✔
4375
        message_after_unbind("MARK", session_ident); // Throws
×
4376
        return;
×
4377
    }
×
4378
    if (REALM_UNLIKELY(sess.error_occurred())) {
12,056✔
4379
        // Protocol state is SendError or WaitForUnbindErr. In these states, all
4380
        // messages, other than UNBIND, must be ignored.
4381
        return;
48✔
4382
    }
48✔
4383
    if (REALM_UNLIKELY(!sess.ident_message_received())) {
12,008✔
4384
        message_before_ident("MARK", session_ident); // Throws
×
4385
        return;
×
4386
    }
×
4387

4388
    ProtocolError error;
12,008✔
4389
    bool success = sess.receive_mark_message(request_ident, error); // Throws
12,008✔
4390
    if (REALM_UNLIKELY(!success))                                   // Throws
12,008✔
4391
        protocol_error(error, &sess);                               // Throws
×
4392
}
12,008✔
4393

4394

4395
void SyncConnection::receive_unbind_message(session_ident_type session_ident)
4396
{
2,388✔
4397
    auto i = m_sessions.find(session_ident); // Throws
2,388✔
4398
    if (REALM_UNLIKELY(i == m_sessions.end())) {
2,388✔
4399
        bad_session_ident("UNBIND", session_ident); // Throws
×
4400
        return;
×
4401
    }
×
4402
    Session& sess = *i->second;
2,388✔
4403
    if (REALM_UNLIKELY(sess.unbind_message_received())) {
2,388✔
4404
        message_after_unbind("UNBIND", session_ident); // Throws
×
4405
        return;
×
4406
    }
×
4407

4408
    sess.receive_unbind_message(); // Throws
2,388✔
4409
    // NOTE: The session might have gotten destroyed at this time!
4410
}
2,388✔
4411

4412

4413
void SyncConnection::receive_ping(milliseconds_type timestamp, milliseconds_type rtt)
4414
{
122✔
4415
    logger.debug("Received: PING(timestamp=%1, rtt=%2)", timestamp, rtt); // Throws
122✔
4416
    m_send_pong = true;
122✔
4417
    m_last_ping_timestamp = timestamp;
122✔
4418
    if (!m_is_sending)
122✔
4419
        send_next_message();
120✔
4420
}
122✔
4421

4422

4423
void SyncConnection::receive_error_message(session_ident_type session_ident, int error_code,
4424
                                           std::string_view error_body)
4425
{
×
4426
    logger.debug("Received: ERROR(error_code=%1, message_size=%2, session_ident=%3)", error_code, error_body.size(),
×
4427
                 session_ident); // Throws
×
4428
    auto i = m_sessions.find(session_ident);
×
4429
    if (REALM_UNLIKELY(i == m_sessions.end())) {
×
4430
        bad_session_ident("ERROR", session_ident);
×
4431
        return;
×
4432
    }
×
4433
    Session& sess = *i->second;
×
4434
    if (REALM_UNLIKELY(sess.unbind_message_received())) {
×
4435
        message_after_unbind("ERROR", session_ident); // Throws
×
4436
        return;
×
4437
    }
×
4438

4439
    sess.receive_error_message(session_ident, error_code, error_body); // Throws
×
4440
}
×
4441

4442
void SyncConnection::send_log_message(util::Logger::Level level, const std::string&& message,
4443
                                      session_ident_type sess_ident, std::optional<std::string> co_id)
4444
{
6,212✔
4445
    if (get_client_protocol_version() < SyncConnection::SERVER_LOG_PROTOCOL_VERSION) {
6,212✔
4446
        return logger.log(level, message.c_str());
×
4447
    }
×
4448

4449
    LogMessage log_msg{sess_ident, level, std::move(message), std::move(co_id)};
6,212✔
4450
    {
6,212✔
4451
        std::lock_guard lock(m_log_mutex);
6,212✔
4452
        m_log_messages.push(std::move(log_msg));
6,212✔
4453
    }
6,212✔
4454
    m_send_trigger->trigger();
6,212✔
4455
}
6,212✔
4456

4457

4458
void SyncConnection::bad_session_ident(const char* message_type, session_ident_type session_ident)
4459
{
×
4460
    logger.error("Bad session identifier in %1 message, session_ident = %2", message_type,
×
4461
                 session_ident);                      // Throws
×
4462
    protocol_error(ProtocolError::bad_session_ident); // Throws
×
4463
}
×
4464

4465

4466
void SyncConnection::message_after_unbind(const char* message_type, session_ident_type session_ident)
4467
{
×
4468
    logger.error("Received %1 message after UNBIND message, session_ident = %2", message_type,
×
4469
                 session_ident);                      // Throws
×
4470
    protocol_error(ProtocolError::bad_message_order); // Throws
×
4471
}
×
4472

4473

4474
void SyncConnection::message_before_ident(const char* message_type, session_ident_type session_ident)
4475
{
×
4476
    logger.error("Received %1 message before IDENT message, session_ident = %2", message_type,
×
4477
                 session_ident);                      // Throws
×
4478
    protocol_error(ProtocolError::bad_message_order); // Throws
×
4479
}
×
4480

4481

4482
void SyncConnection::handle_message_received(const char* data, size_t size)
4483
{
68,582✔
4484
    // parse_message_received() parses the message and calls the
4485
    // proper handler on the SyncConnection object (this).
4486
    get_server_protocol().parse_message_received<SyncConnection>(*this, std::string_view(data, size));
68,582✔
4487
    return;
68,582✔
4488
}
68,582✔
4489

4490

4491
void SyncConnection::handle_ping_received(const char* data, size_t size)
4492
{
×
4493
    // parse_message_received() parses the message and calls the
4494
    // proper handler on the SyncConnection object (this).
4495
    get_server_protocol().parse_ping_received<SyncConnection>(*this, std::string_view(data, size));
×
4496
    return;
×
4497
}
×
4498

4499

4500
void SyncConnection::send_next_message()
4501
{
106,554✔
4502
    REALM_ASSERT(!m_is_sending);
106,554✔
4503
    REALM_ASSERT(!m_sending_pong);
106,554✔
4504
    if (m_send_pong) {
106,554✔
4505
        send_pong(m_last_ping_timestamp);
122✔
4506
        if (m_sending_pong)
122✔
4507
            return;
122✔
4508
    }
122✔
4509
    for (;;) {
159,048✔
4510
        Session* sess = m_sessions_enlisted_to_send.pop_front();
159,048✔
4511
        if (!sess) {
159,048✔
4512
            // No sessions were enlisted to send
4513
            if (REALM_LIKELY(!m_is_closing))
49,212✔
4514
                break; // Check to see if there are any log messages to go out
49,196✔
4515
            // Send a connection level ERROR
4516
            REALM_ASSERT(!is_session_level_error(m_error_code));
16✔
4517
            initiate_write_error(m_error_code, m_error_session_ident); // Throws
16✔
4518
            return;
16✔
4519
        }
49,212✔
4520
        sess->send_message(); // Throws
109,836✔
4521
        // NOTE: The session might have gotten destroyed at this time!
4522

4523
        // At this point, `m_is_sending` is true if, and only if the session
4524
        // chose to send a message. If it chose to not send a message, we must
4525
        // loop back and give the next session in `m_sessions_enlisted_to_send`
4526
        // a chance.
4527
        if (m_is_sending)
109,836✔
4528
            return;
57,230✔
4529
    }
109,836✔
4530
    {
49,186✔
4531
        std::lock_guard lock(m_log_mutex);
49,186✔
4532
        if (!m_log_messages.empty()) {
49,186✔
4533
            send_log_message(m_log_messages.front());
6,034✔
4534
            m_log_messages.pop();
6,034✔
4535
        }
6,034✔
4536
    }
49,186✔
4537
    // Otherwise, nothing to do
4538
}
49,186✔
4539

4540

4541
void SyncConnection::initiate_write_output_buffer()
4542
{
63,260✔
4543
    auto handler = [this](std::error_code ec, size_t) {
63,260✔
4544
        if (!ec) {
63,242✔
4545
            handle_write_output_buffer();
63,122✔
4546
        }
63,122✔
4547
    };
63,242✔
4548

4549
    m_websocket.async_write_binary(m_output_buffer.data(), m_output_buffer.size(),
63,260✔
4550
                                   std::move(handler)); // Throws
63,260✔
4551
    m_is_sending = true;
63,260✔
4552
}
63,260✔
4553

4554

4555
void SyncConnection::initiate_pong_output_buffer()
4556
{
122✔
4557
    auto handler = [this](std::error_code ec, size_t) {
122✔
4558
        if (!ec) {
122✔
4559
            handle_pong_output_buffer();
122✔
4560
        }
122✔
4561
    };
122✔
4562

4563
    REALM_ASSERT(!m_is_sending);
122✔
4564
    REALM_ASSERT(!m_sending_pong);
122✔
4565
    m_websocket.async_write_binary(m_output_buffer.data(), m_output_buffer.size(),
122✔
4566
                                   std::move(handler)); // Throws
122✔
4567

4568
    m_is_sending = true;
122✔
4569
    m_sending_pong = true;
122✔
4570
}
122✔
4571

4572

4573
void SyncConnection::send_pong(milliseconds_type timestamp)
4574
{
122✔
4575
    REALM_ASSERT(m_send_pong);
122✔
4576
    REALM_ASSERT(!m_sending_pong);
122✔
4577
    m_send_pong = false;
122✔
4578
    logger.debug("Sending: PONG(timestamp=%1)", timestamp); // Throws
122✔
4579

4580
    OutputBuffer& out = get_output_buffer();
122✔
4581
    get_server_protocol().make_pong(out, timestamp); // Throws
122✔
4582

4583
    initiate_pong_output_buffer(); // Throws
122✔
4584
}
122✔
4585

4586
void SyncConnection::send_log_message(const LogMessage& log_msg)
4587
{
6,032✔
4588
    OutputBuffer& out = get_output_buffer();
6,032✔
4589
    get_server_protocol().make_log_message(out, log_msg.level, log_msg.message, log_msg.sess_ident,
6,032✔
4590
                                           log_msg.co_id); // Throws
6,032✔
4591

4592
    initiate_write_output_buffer(); // Throws
6,032✔
4593
}
6,032✔
4594

4595

4596
void SyncConnection::handle_write_output_buffer()
4597
{
63,122✔
4598
    release_output_buffer();
63,122✔
4599
    m_is_sending = false;
63,122✔
4600
    send_next_message(); // Throws
63,122✔
4601
}
63,122✔
4602

4603

4604
void SyncConnection::handle_pong_output_buffer()
4605
{
122✔
4606
    release_output_buffer();
122✔
4607
    REALM_ASSERT(m_is_sending);
122✔
4608
    REALM_ASSERT(m_sending_pong);
122✔
4609
    m_is_sending = false;
122✔
4610
    m_sending_pong = false;
122✔
4611
    send_next_message(); // Throws
122✔
4612
}
122✔
4613

4614

4615
void SyncConnection::initiate_write_error(ProtocolError error_code, session_ident_type session_ident)
4616
{
16✔
4617
    const char* message = get_protocol_error_message(int(error_code));
16✔
4618
    std::size_t message_size = std::strlen(message);
16✔
4619
    bool try_again = determine_try_again(error_code);
16✔
4620

4621
    logger.detail("Sending: ERROR(error_code=%1, message_size=%2, try_again=%3, session_ident=%4)", int(error_code),
16✔
4622
                  message_size, try_again, session_ident); // Throws
16✔
4623

4624
    OutputBuffer& out = get_output_buffer();
16✔
4625
    int protocol_version = get_client_protocol_version();
16✔
4626
    get_server_protocol().make_error_message(protocol_version, out, error_code, message, message_size, try_again,
16✔
4627
                                             session_ident); // Throws
16✔
4628

4629
    auto handler = [this](std::error_code ec, size_t) {
16✔
4630
        handle_write_error(ec); // Throws
16✔
4631
    };
16✔
4632
    m_websocket.async_write_binary(out.data(), out.size(), std::move(handler));
16✔
4633
    m_is_sending = true;
16✔
4634
}
16✔
4635

4636

4637
void SyncConnection::handle_write_error(std::error_code ec)
4638
{
16✔
4639
    m_is_sending = false;
16✔
4640
    REALM_ASSERT(m_is_closing);
16✔
4641
    if (!m_ssl_stream) {
16✔
4642
        m_socket->shutdown(network::Socket::shutdown_send, ec);
16✔
4643
        if (ec && ec != make_basic_system_error_code(ENOTCONN))
16!
4644
            throw std::system_error(ec);
×
4645
    }
16✔
4646
}
16✔
4647

4648

4649
// For connection level errors, `sess` is ignored. For session level errors, a
4650
// session must be specified.
4651
//
4652
// If a session is specified, that session object will have been detached from
4653
// the ServerFile object (and possibly destroyed) upon return from
4654
// protocol_error().
4655
//
4656
// If a session is specified for a protocol level error, that session object
4657
// will have been destroyed upon return from protocol_error(). For session level
4658
// errors, the specified session will have been destroyed upon return from
4659
// protocol_error() if, and only if the negotiated protocol version is less than
4660
// 23.
4661
void SyncConnection::protocol_error(ProtocolError error_code, Session* sess)
4662
{
80✔
4663
    REALM_ASSERT(!m_is_closing);
80✔
4664
    bool session_level = is_session_level_error(error_code);
80✔
4665
    REALM_ASSERT(!session_level || sess);
80✔
4666
    REALM_ASSERT(!sess || m_sessions.count(sess->get_session_ident()) == 1);
80✔
4667
    if (logger.would_log(util::Logger::Level::debug)) {
80✔
4668
        const char* message = get_protocol_error_message(int(error_code));
×
4669
        Logger& logger_2 = (session_level ? sess->logger : logger);
×
4670
        logger_2.debug("Protocol error: %1 (error_code=%2)", message, int(error_code)); // Throws
×
4671
    }
×
4672
    session_ident_type session_ident = (session_level ? sess->get_session_ident() : 0);
80✔
4673
    if (session_level) {
80✔
4674
        sess->initiate_deactivation(error_code); // Throws
80✔
4675
        return;
80✔
4676
    }
80✔
4677
    do_initiate_soft_close(error_code, session_ident); // Throws
×
4678
}
×
4679

4680

4681
void SyncConnection::do_initiate_soft_close(ProtocolError error_code, session_ident_type session_ident)
4682
{
16✔
4683
    REALM_ASSERT(get_protocol_error_message(int(error_code)));
16✔
4684

4685
    // With recent versions of the protocol (when the version is greater than,
4686
    // or equal to 23), this function will only be called for connection level
4687
    // errors, never for session specific errors. However, for the purpose of
4688
    // emulating earlier protocol versions, this function might be called for
4689
    // session specific errors too.
4690
    REALM_ASSERT(is_session_level_error(error_code) == (session_ident != 0));
16✔
4691
    REALM_ASSERT(!is_session_level_error(error_code));
16✔
4692

4693
    REALM_ASSERT(m_send_trigger);
16✔
4694
    REALM_ASSERT(!m_is_closing);
16✔
4695
    m_is_closing = true;
16✔
4696

4697
    m_error_code = error_code;
16✔
4698
    m_error_session_ident = session_ident;
16✔
4699

4700
    // Don't waste time and effort sending any other messages
4701
    m_send_pong = false;
16✔
4702
    m_sessions_enlisted_to_send.clear();
16✔
4703

4704
    m_receiving_session = nullptr;
16✔
4705

4706
    terminate_sessions(); // Throws
16✔
4707

4708
    m_send_trigger->trigger();
16✔
4709
}
16✔
4710

4711

4712
void SyncConnection::close_due_to_close_by_client(std::error_code ec)
4713
{
672✔
4714
    auto log_level = (ec == util::MiscExtErrors::end_of_input ? Logger::Level::detail : Logger::Level::info);
672✔
4715
    // Suicide
4716
    terminate(log_level, "Sync connection closed by client: %1", ec.message()); // Throws
672✔
4717
}
672✔
4718

4719

4720
void SyncConnection::close_due_to_error(std::error_code ec)
4721
{
512✔
4722
    // Suicide
4723
    terminate(Logger::Level::error, "Sync connection closed due to error: %1",
512✔
4724
              ec.message()); // Throws
512✔
4725
}
512✔
4726

4727

4728
void SyncConnection::terminate_sessions()
4729
{
1,204✔
4730
    for (auto& entry : m_sessions) {
1,844✔
4731
        Session& sess = *entry.second;
1,844✔
4732
        sess.terminate(); // Throws
1,844✔
4733
    }
1,844✔
4734
    m_sessions_enlisted_to_send.clear();
1,204✔
4735
    m_sessions.clear();
1,204✔
4736
}
1,204✔
4737

4738

4739
void SyncConnection::initiate_soft_close()
4740
{
16✔
4741
    if (!m_is_closing) {
16✔
4742
        session_ident_type session_ident = 0;                                    // Not session specific
16✔
4743
        do_initiate_soft_close(ProtocolError::connection_closed, session_ident); // Throws
16✔
4744
    }
16✔
4745
}
16✔
4746

4747

4748
void SyncConnection::discard_session(session_ident_type session_ident) noexcept
4749
{
2,082✔
4750
    m_sessions.erase(session_ident);
2,082✔
4751
}
2,082✔
4752

4753
} // anonymous namespace
4754

4755

4756
// ============================ sync::Server implementation ============================
4757

4758
class Server::Implementation : public ServerImpl {
4759
public:
4760
    Implementation(const std::string& root_dir, util::Optional<PKey> pkey, Server::Config config)
4761
        : ServerImpl{root_dir, std::move(pkey), std::move(config)} // Throws
548✔
4762
    {
1,200✔
4763
    }
1,200✔
4764
    virtual ~Implementation() {}
1,200✔
4765
};
4766

4767

4768
Server::Server(const std::string& root_dir, util::Optional<sync::PKey> pkey, Config config)
4769
    : m_impl{new Implementation{root_dir, std::move(pkey), std::move(config)}} // Throws
548✔
4770
{
1,200✔
4771
}
1,200✔
4772

4773

4774
Server::Server(Server&& serv) noexcept
4775
    : m_impl{std::move(serv.m_impl)}
4776
{
×
4777
}
×
4778

4779

4780
Server::~Server() noexcept {}
1,200✔
4781

4782

4783
void Server::start()
4784
{
516✔
4785
    m_impl->start(); // Throws
516✔
4786
}
516✔
4787

4788

4789
void Server::start(const std::string& listen_address, const std::string& listen_port, bool reuse_address)
4790
{
684✔
4791
    m_impl->start(listen_address, listen_port, reuse_address); // Throws
684✔
4792
}
684✔
4793

4794

4795
network::Endpoint Server::listen_endpoint() const
4796
{
1,254✔
4797
    return m_impl->listen_endpoint(); // Throws
1,254✔
4798
}
1,254✔
4799

4800

4801
void Server::run()
4802
{
1,144✔
4803
    m_impl->run(); // Throws
1,144✔
4804
}
1,144✔
4805

4806

4807
void Server::stop() noexcept
4808
{
2,054✔
4809
    m_impl->stop();
2,054✔
4810
}
2,054✔
4811

4812

4813
uint_fast64_t Server::errors_seen() const noexcept
4814
{
684✔
4815
    return m_impl->errors_seen;
684✔
4816
}
684✔
4817

4818

4819
void Server::stop_sync_and_wait_for_backup_completion(util::UniqueFunction<void(bool did_backup)> completion_handler,
4820
                                                      milliseconds_type timeout)
4821
{
×
4822
    m_impl->stop_sync_and_wait_for_backup_completion(std::move(completion_handler), timeout); // Throws
×
4823
}
×
4824

4825

4826
void Server::set_connection_reaper_timeout(milliseconds_type timeout)
4827
{
4✔
4828
    m_impl->set_connection_reaper_timeout(timeout);
4✔
4829
}
4✔
4830

4831

4832
void Server::close_connections()
4833
{
16✔
4834
    m_impl->close_connections();
16✔
4835
}
16✔
4836

4837

4838
bool Server::map_virtual_to_real_path(const std::string& virt_path, std::string& real_path)
4839
{
72✔
4840
    return m_impl->map_virtual_to_real_path(virt_path, real_path); // Throws
72✔
4841
}
72✔
4842

4843

4844
void Server::recognize_external_change(const std::string& virt_path)
4845
{
4,800✔
4846
    m_impl->recognize_external_change(virt_path); // Throws
4,800✔
4847
}
4,800✔
4848

4849

4850
void Server::get_workunit_timers(milliseconds_type& parallel_section, milliseconds_type& sequential_section)
4851
{
×
4852
    m_impl->get_workunit_timers(parallel_section, sequential_section);
×
4853
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc