Pressing Lock nulled and disposed the vault view model and touched nothing else. TerminalWorkspace is injected from App.axaml.cs and outlives every lock, so the SSH connection, the pty and the pump all kept running while the window said "Unlock your vault" — and since0500e43collapsed the WebView while locked, that live session was invisible as well as unstopped. CloseSessionAsync was reachable in production only from DisposeAsync, i.e. shutdown. None of this was written down anywhere, so it was neither a policy nor a bug, which is the actual problem. Shells now deliberately outlive the lock, and every layer says so. The reason to prefer this over making Lock a disconnect: locking is what a person does when they walk away from the machine, which is exactly when a long upgrade, build or transfer is most likely to be in flight. Ending every shell would make Lock a button that destroys work, and the predictable response is to stop pressing it and leave the vault open instead. The idle auto-lock this will grow decides it outright — an unattended timeout that killed a running job would be worse than the exposure it removes. Closing the channel also buys less than it looks: the session was authorised at connect time by a credential the remote verified itself, and no vault key participates in keeping it alive, so locking cannot retroactively un-authorise it any more than removing a member can. Stated honestly rather than implied, because the lock screen is what hides it: - The unlock screen shows how many shells are still connected, and that locking closes the vault and not the connections — so a machine still holding authenticated SSH channels does not present itself as merely "locked". Shown only when there is something to disclose. Quitting is what ends them, and the text admits that. - The Lock button carries the same thing in a tooltip, since its name implies the opposite of what it does to a shell. - README lists it as a third architecture consequence beside non-retroactive revocation, which is the same shape of honest limit; docs/crypto.md §10 records it as a threat-model boundary; TerminalWorkspace and LockAsync carry the argument next to the code. LiveSessionCount deliberately does not count dictionary entries. Nothing removes a session when the remote closes the channel by itself — RunSessionAsync only drops the renderer registration — so sessions.Count would report a shell that exited half an hour ago as still running, on the one screen where a user is deciding whether it is safe to walk away. A completed Run task is what "the shell is gone" actually looks like. While locked the number can only fall, since opening a session needs the vault, so a stale value over-reports rather than under-reports. Both new tests fail when the policy is reverted: the count test times out against sessions.Count, and the shell test reports "workspace.LiveSessionCount should be 1 but was 0" when Lock closes sessions. ShellFlowTests also stops building its workspace with a real SshNetConnectionFactory that nothing ever called, which had made the suite's independence from the network a coincidence rather than a property. Verified by hand with a live shell, which nothing had done: a harness mirroring MainWindow.axaml's 340,* grid with a real NativeWebView, the shipped WebAssets, a real sshd in a container, and an ISshShellSession decorator recording every window-change the remote is actually told about. Across lock and unlock, no window-change reached the remote at all, stty size answered 50 118 before and after, the renderer's own buffer came back byte for byte with the wrapped line intact, and the session stayed live throughout. A control run that never hides the WebView behaves identically, so nothing above is startup or idle behaviour. Keystrokes injected while locked reach nothing: twelve of twelve SendInput events accepted with the harness confirmed as the foreground window, no probe character in the remote's output, and a following Ctrl-U answered BEL, so nothing was queued in the line editor either. A hidden WS_CHILD window is not eligible for keyboard focus, which is what makes surviving the lock defensible rather than merely convenient. Correction to a claim made inf80b3d4: terminal.js's guard comment listed "a host that hides the WebView while the vault is locked" among the paths that reach a degenerate fit. It does not. Collapsing the control hides a native child window without resizing it, so the page still reports paneWidth 840 and paneHeight 760 with unchanged cols and rows, no ResizeObserver callback fires and the fit never runs. Establishing that rather than assuming it: the same cycle with MINIMUM_FITTABLE_PIXELS patched to 0 — the guard fully disabled — is equally clean. The guard is still right for minimising and for a splitter dragged to the edge; it is simply not what makes locking safe, and must not be cited as though it were. Recorded, not fixed: - Nothing closes one terminal from the interface, so a user reading "1 shell is still connected" can only act on it by quitting. CloseSessionAsync is tested and correct; VaultViewModel discards the session id it would need. - A session whose remote exits keeps its ISshConnection, and the thread ShellStream parks, until the process ends. - Suspected and seen once: before the harness waited for the window's scale to settle, a DPI settle pushed a 2202x1328 pane for a window 1180 logical units wide and a later re-push reflowed the wrapped line. Three later runs at RenderScaling 1.00 never showed it, so it is filed as a lead, not a finding. - WebView2 fails to initialise with CO_E_SERVER_EXEC_FAILURE when the host executable sits under a very long path. Cost an hour on the harness; relevant to packaging.
27 KiB
Platform flags
Things known or suspected to behave differently outside Windows, plus deployment gotchas that have already cost time once. Development and testing are currently Windows-only, so anything here marked unverified has not run on the platform in question and must not be assumed to work.
Each entry says what the risk is, why it matters, and what to do about it. Delete an entry when it has been verified or made moot — not when it merely stops being convenient.
Cryptography
ChaCha20Poly1305.IsSupported is false on macOS, and on Windows builds before 10.0.20142.
This is why the client uses NSec (libsodium) rather than the BCL for content encryption; see
docs/crypto.md §1. Already mitigated — but if a BCL AEAD path is ever added as a fallback it
must gate on IsSupported rather than assuming availability, or the client will fail to open
any vault on macOS.
Argon2id timings are measured on one Windows machine only. 256 MiB with t=4 took 323 ms here.
The floor and ceiling in EnrollmentLimits were chosen against that number. Unverified
elsewhere: recalibrate on the slowest target platform before recommending a default profile,
because a cost that is comfortable on a desktop can make unlock unusable on a low-power laptop —
and the parameters are stored per user at enrollment, so a bad default is a per-user migration.
libsodium ships native binaries per RID. This complicates single-file and AOT publishing, and
on macOS every native library (libsodium, libSkiaSharp, libHarfBuzzSharp, libe_sqlite3)
must be signed individually with --options runtime --timestamp before the bundle is signed,
or notarization fails with an error that does not name the offending file.
Desktop client
The WebView runs on Windows. Avalonia.Controls.WebView 12.0.1 (MIT, no licence key) hosts the
terminal page: WebView2 launches, navigates to the loopback page, runs its JavaScript and completes the
WebSocket handshake. Verified by observing an established TCP connection from msedgewebview2 to the data
plane port.
Note precisely what that evidence covers, because it was once stretched to cover more: every clause above is about the process and the socket. It says nothing about how the control composites with Avalonia-drawn content, which is the axis on which it does not behave like an ordinary control — see the next entry.
A native child window cannot be covered by Avalonia content, on any platform that hosts it windowed.
NativeWebView attaches a real Win32 child HWND through NativeControlHost — on Windows the backend
creates a WS_CHILD holder window and SetParents WebView2's HWND into it — and a child window paints
above everything its parent draws, whatever the visual tree's z-order says. This is by design and
acknowledged upstream: "NativeControlHost places native controls over Avalonia content just like WPF one
does. So it suffers from the same airspace problem" (Avalonia's maintainer,
#6605, still open). Reproduced in a 60-line standalone
app with no DodoSSH code: a 340,* grid, a NativeWebView in column 1 and an opaque Border as a later
Panel sibling renders the overlay sliced dead on x=340.
Layering a screen over the terminal therefore does nothing: the WebView's rectangle stays on top. In this shell that sliced the setup and unlock cards at the terminal column's left edge, put every one of their buttons inside the WebView's rectangle at the window's default width — so the flow could only be completed by keyboard — and handed Win32 focus to WebView2 on any click in that region, which makes a text box stop accepting keystrokes with no visible cause.
The fix is to collapse the control, not to cover it: IsVisible="{Binding IsUnlocked}" on the
NativeWebView. That is safe, and this is the part worth recording, because the opposite was asserted here
for a while:
-
NativeControlHostcreates the native attachment from attach to the visual tree, not from layout and not from visibility. ItsUpdateHostnever readsIsEffectivelyVisible; onlyTryUpdateNativeControlPositiondoes, choosingHideWithSizeoverShowInBounds. -
NativeWebViewstashes aSourceassigned before its adapter exists and replays it once created, so navigation is never lost to ordering. The shell already depends on that replay. -
So a collapsed WebView still starts WebView2, still loads the page and still lets the renderer attach its socket. Measured on Windows in a harness mirroring the data plane's handshake, with
IsVisible=falseset before the window was ever shown: adapter created,GET /, then the WebSocket 101 sent — the momentRendererAttachedfires — followed by frames arriving over the socket, all while hidden. A cold WebView2 profile behaves the same. Revealing it recomputes bounds within about 7 ms, on oneResizeObservercallback, over the same socket.It must be
IsVisible, not removal from the tree. Detaching runsDestroyNativeControland takes the whole WebView2 process tree with it, so conditional content or a template swap would pay a cold start on every unlock. Hiding merely doesSetWindowPos(holder, …, SWP_HIDEWINDOW). NegativeMarginalso works as a runtime toggle;RenderTransformdoes not, becauseNativeControlHostnever watches it.Note the earlier version of this bullet cited "35
msedgewebview2processes" as the confirmation. A process count cannot show that a socket was accepted — it is the same shape of mistake as the one described below, one level down.
The previous version of this entry claimed the reverse — that hiding it would mean never realising it — and
cited the msedgewebview2 connection as verification. That observation was made while the overlay was
showing but, because of the airspace behaviour above, the WebView was in fact uncovered and in plain view.
It confirmed only that a visible WebView is realised, which nobody disputed, and could not discriminate
the case it was attached to. A process-level check cannot verify a rendering claim; that needs a
screenshot, and this defect shipped because one was never taken.
What the first connection after unlocking actually depends on is the await workspace.WaitForRendererAsync() in VaultViewModel.ConnectAsync, because TerminalDataPlane.SendAsync
drops frames when no renderer is attached rather than queueing them. That await is the invariant; the
control's visibility is not. It currently has no timeout, so a WebView2 that fails to initialise hangs
Connect with the busy flag stuck — worth fixing on its own merits.
Hiding the WebView does not pause it. With the holder window hidden, the page keeps
visibilityState: "visible" and requestAnimationFrame keeps firing at roughly 115/s — Chromium does not
treat a hidden child HWND as a hidden page. That is why the handshake completes while collapsed, so it is
load-bearing rather than merely wasteful, but it means a locked DodoSSH is still animating a full-size
off-screen page. Worth revisiting if idle power ever matters.
A degenerate pane size reaches the remote pty. The fit addon floors its proposal at 2 columns by 1 row
rather than refusing, so any path that fits a terminal with almost no viewport sends window-change for a
2x1 window and permanently mangles the wrapped scrollback. Reachable today by minimising, and — once splits
land — by dragging a splitter to the edge. terminal.js now skips the fit below 40 px in either axis.
Related and not yet addressed: the conflict log above the terminal is an ItemsControl with no
ScrollViewer and no MaxHeight on an Auto row, so enough conflicts squeeze the terminal row toward
nothing.
The lock/unlock cycle does not resize the pane at all, and the 40 px guard is not what makes it safe.
Measured on Windows with a live shell, against a real sshd in a container, in a harness mirroring
MainWindow.axaml's 340,* grid: with the NativeWebView collapsed by IsVisible=false, the page still
reports paneWidth: 840, paneHeight: 760, unchanged cols/rows, and visibilityState: "visible".
Hiding is SetWindowPos(holder, …, SWP_HIDEWINDOW), which does not resize the holder, so no
ResizeObserver callback fires, no fit runs, and no window-change reaches the remote — before,
during or after the cycle. stty size on the remote answered 50 118 both before locking and after
unlocking, and the renderer's own buffer came back byte for byte, wrapped lines included.
The guard's irrelevance here was established rather than assumed: the same run with
MINIMUM_FITTABLE_PIXELS patched to 0 — the guard fully disabled — produced an identical clean result.
So the guard is still worth keeping for the paths it was written for, minimising and a splitter dragged to
the edge, but it is not on the lock path and must not be cited as the reason locking is safe. It was
described that way when it landed.
Two further results from the same harness, both about the deliberate decision that shells outlive a lock
(README, MainWindowViewModel.LockAsync):
- A collapsed WebView cannot be typed into. With the harness confirmed as the foreground window and
all twelve injected
SendInputevents accepted, not one character of the probe reached the remote pty, and aCtrl-Uafterwards answeredBEL— nothing was sitting in the remote's line editor either. A hiddenWS_CHILDwindow is not eligible for keyboard focus, so the lock screen is a real input barrier even though the session behind it is live. That is what makes surviving the lock defensible rather than merely convenient. - The session survives the cycle in the real control, not only in tests.
LiveSessionCountwas 1 before, during and after, and the shell accepted a command again immediately on unlock.
Suspected, seen once, not reproduced: on the first run — before the harness learned to wait for the
window's scale to settle — the window opened at 2558x1367 px and the page reported a 2202x1328 pane
(312x88 characters) for a window 1180 logical units wide, which looks like physical pixels arriving where
CSS pixels were expected. A later re-push to 1177x672 then reflowed the wrapped line and split it in two.
Both events straddled a DPI settle rather than the lock, and three later runs at RenderScaling 1.00
never showed it. If a user reports mangled scrollback after moving the window between displays of
different scale, start here.
WebView2 will not initialise when the host executable sits under a very long path.
CreateCoreWebView2Environment fails with COMException 0x80080005 CO_E_SERVER_EXEC_FAILURE ("Server
execution failed") and the terminal never appears. Hit while building the harness above: the same binary
that failed from a ~230-character directory ran first time from %TEMP%\h. The exact threshold was not
established and the mechanism is unconfirmed — the user data folder is created beside the executable by
default and the browser process is launched with paths derived from it, so MAX_PATH is the obvious
suspect. Relevant to packaging: an installer that lands under a deep per-user path would break the
terminal with an error that names nothing.
Nothing hands the terminal keyboard focus after connecting. The page calls term.focus(), which focuses
the textarea inside the document, but Avalonia's focus is still on the Connect button — so the first
keystrokes after a successful connect go to the shell's UI, not to the remote shell. Click inside the
terminal first. This is a focus-plumbing gap between Avalonia and the native child window, not a terminal
bug.
The Windows app manifest must declare a supportedOS list. Without it the process reports a
downlevel Windows version and Avalonia's native control host fails outright — "Unable to create child
window for native control host" — so the WebView, and therefore the terminal, does not start at all.
[STAThread] on Main is equally mandatory: WebView2 checks the apartment state and refuses to
initialise on an MTA thread.
WebView2 spawns a process tree, not a process. Around 35 processes were observed for one embedded view. That is the concrete reason the design uses one WebView hosting N terminals rather than one per tab: twenty tabs would mean twenty of those trees.
The Avalonia WebView on Linux remains unproven, and is still the largest risk in the plan. The
package's own release notes say NativeWebView gained Linux support via a WPE backend
(libwpewebkit-2.0), which is much less widely installed than WebKitGTK — and it ships a separate
NativeWebDialog described as "particularly useful for platforms like Linux where embedded WebView
controls might not be available", which is the vendor confirming the concern. Unverified: a spike
must cover Ubuntu on both Wayland and X11, Fedora KDE, and macOS 15.
ITerminalHost was supposed to be the seam that keeps a backend swap cheap, and it is declared but not
implemented — nothing in the application uses it, and the view navigates NativeWebView.Source directly.
Swapping backends today means editing MainWindow.axaml and its code-behind. That is a small job, but do
not plan around a seam that is currently only a file.
One more reason the Linux picture may be better than this entry assumes: the package also ships
NativeWebViewCompositorHost, a non-windowed host drawn through Avalonia's compositor. A compositor host
would not have the airspace problem described below at all. Whether it can be selected deliberately is
unknown and worth establishing during the spike, because it would change how overlays can be built.
Avalonia.Diagnostics has no 12.x release (latest is 11.3.18), so the developer tools overlay is
unavailable on Avalonia 12. Development-only, so nothing ships differently — but debugging a layout
problem currently means reasoning rather than inspecting.
The xterm bundles are vendored, not built. @xterm/xterm 6.0.0 with the fit and webgl addons, all
MIT, committed as UMD bundles under WebAssets/vendor and embedded as Avalonia resources. No npm or
esbuild step, so a clean clone builds with the .NET SDK alone. The cost is that upgrades are a manual
re-download; the licence and versions are recorded here so that stays visible.
SSH.NET's window-change is verified working as of 2025.1.0 — resolved, not a flag.
ShellStream.ChangeWindowSize(columns, rows, width, height) exists and the remote genuinely
observes it: PtyAndResizeSpikeTests reads stty size back from a real sshd after resizing, and
repeated resizes each take effect. The IChannelSession fallback is not needed. That suite stays
in place as a regression guard, because an upgrade that silently stopped sending the request would
present as wrapped output only after a resize — easy to misattribute to the terminal emulator.
ShellStream.Write buffers and requires an explicit Flush. Without one a keystroke is accepted,
reported as written, and never reaches the remote — the terminal displays output perfectly and simply
stops responding to input. SSH.NET's own WriteLine flushes, which is why a spike that used it never
hit this. SshNetShellSession.WriteAsync now flushes per write; batching would be wrong anyway, since
a terminal has to put a keystroke on the wire immediately.
ShellStream does not override ReadAsync. The base Stream implementation therefore runs
the blocking Read on a thread-pool thread, so every open session parks one thread for as long as
it is idle. Fine for the handful of tabs M1 targets; revisit before advertising many concurrent
sessions, since the fix is either an upstream change or driving IChannelSession directly.
SSH.NET cannot share one connection between SshClient and SftpClient. A shell plus SFTP to
the same host means two TCP connections, two authentications and — later — two relay sockets.
Connect SFTP lazily and reuse the cached decrypted credential so the user is not prompted twice.
Agent forwarding is de-scoped from v1. It needs an upstream SSH.NET change. A vault-backed agent of our own plus ProxyJump covers the real use cases.
The SSH suite pulls linuxserver/openssh-server from Docker Hub, which is rate-limited for
unauthenticated pulls. If CI starts failing on image pulls rather than on tests, that is why.
MSIX packaging is ruled out, not merely deprioritised. A packaged app runs WebView2 in an
AppContainer where loopback connections are blocked without a CheckNetIsolation exemption. The
terminal data plane is a loopback WebSocket, so MSIX would break the product outright. Velopack
for Windows/macOS/AppImage; Flatpak and deb/rpm defer updates to the package manager.
Linux ships AppImage and Flatpak first, specifically so the WebKit runtime is bundled rather than assumed present on the user's machine.
Opening the system browser depends on the platform handler. SystemBrowserLauncher uses
UseShellExecute, which delegates to ShellExecute on Windows, open on macOS and xdg-open on
Linux. Unverified off Windows: xdg-open comes from xdg-utils, which is not guaranteed on a
minimal desktop or inside a Flatpak sandbox — where the portal is the correct route instead. If
sign-in silently does nothing on Linux, this is the first thing to check. IBrowserLauncher exists
so a platform-specific opener can be substituted without touching the flow.
Identity provider
A loopback redirect URI must be registered without a port, not with a wildcard port. Keycloak — and
providers implementing RFC 8252 §7.3 generally — ignores the port when the registered redirect URI's host
is a loopback literal, which is what lets a native client bind an ephemeral port. Registering
http://127.0.0.1:*/callback looks more explicit and is broken: the * is parsed as a literal port and
every real authorization request comes back 400 Invalid parameter: redirect_uri. Keycloak's wildcard
support is trailing-only, so a * in the middle of a URI never means what it looks like.
Register http://127.0.0.1/callback. Keep the path — it is the part that stops another process on the
machine having an authorization code delivered to a different endpoint. Oidc:LoopbackRedirectPattern,
which the server advertises through /.well-known/dodossh-configuration, says the same thing so an
operator configuring a different provider copies something that works.
Found by running the sign-in against a real Keycloak; every test until then used a stub that accepted whatever it was given.
Keycloak marks its session cookies Secure even over plain HTTP, because SameSite=None is only
legal alongside Secure. A spec-conformant HTTP client therefore refuses to store them from an http://
origin — .NET's CookieContainer drops every one silently — and the login form POST then comes back
400 with no explanation at all. Browsers complete the flow because they treat loopback as a trustworthy
origin and make the exception.
This does not affect the product: the client uses the system browser, which makes that exception. It does
affect any non-browser automation against a development Keycloak, which has to carry the cookies by hand
(see ScriptedBrowser) or be given HTTPS. Two hours of "the credentials must be wrong".
--import-realm skips a realm that already exists. Editing deploy/keycloak/realm-dodossh.json and
running docker compose restart keycloak therefore changes nothing, and the stale configuration keeps
being served — which reads exactly like the edit being wrong. start-dev keeps its state in an H2
database inside the container, so the realm has to be recreated along with it:
docker compose rm -sf keycloak && docker compose up -d keycloak. Cost an otherwise inexplicable
debugging detour.
DodoSSH.SystemTests is immune to this by construction — its Keycloak is created and destroyed per run —
which is a second reason the end-to-end suite starts its own containers rather than reusing the developer's
stack. Editing the realm file and rerunning the suite always tests the edit.
Local cache
The cache location is per-OS and must stay non-roaming. ClientPaths chooses it:
%LOCALAPPDATA%\DodoSSH on Windows, ~/Library/Application Support/DodoSSH on macOS,
$XDG_DATA_HOME/dodossh or ~/.local/share/dodossh on Linux. It must not land anywhere that syncs
to a cloud drive or roams: two machines writing one SQLite file through a file-sync client corrupts it,
and the whole point of the outbox is that each machine has its own. That is also why Windows uses
%LOCALAPPDATA% and not %APPDATA%, which roams in a domain environment.
The platform branches are explicit rather than delegating to
Environment.SpecialFolder.LocalApplicationData everywhere, because on macOS the runtime maps that to
~/.local/share rather than to ~/Library/Application Support. Verified on Windows only — the client
created %LOCALAPPDATA%\DodoSSH\cache.db and migrated it on first launch. The macOS and Linux branches
are reasoned, not run.
SQLite timestamps are stored as integers, deliberately. EF's default DateTimeOffset mapping for
SQLite is a text form it then refuses to order or compare, so any query that sorts or filters by time
throws at execution rather than at model build. UnixMillisecondsConverter is applied as a convention
so a timestamp added later cannot be the one left unconverted. This is provider behaviour, not
platform behaviour, but it cost a debugging session and will again if the converter is removed.
The cache is three files, not one. EF Core's SQLite provider puts the database in WAL mode, which is
the right mode here — a background sync pass writes while the interface reads, and under the default
rollback journal those reads would fail busy — but it means cache.db is accompanied by cache.db-wal
and cache.db-shm. Any backup, export or uninstall routine that touches only cache.db is wrong.
Verified by launching the client and reading PRAGMA journal_mode, after a comment in the code claimed
the opposite.
Pooled SQLite connections keep the file open after the last context is disposed. On Windows that
means locked, so the application cannot delete or replace its own cache and a test cannot clean up after
itself. ClientCacheFactory.Dispose clears the pool for exactly this reason; removing that line makes
the failure appear only on Windows.
No SQLCipher, on any platform. The rows are already ciphertext from the server, so an encrypted
database file would protect bytes that are protected already at the cost of a native dependency and a
licence obligation — and bundle_e_sqlcipher was deprecated in SQLitePCLRaw 3.0. The consequence to
be honest about: the cache offers no protection against another process running as the same user. See
LocalCacheProtector for what it does and does not defend against.
Build and CI
Integration tests need a Docker daemon (Testcontainers). They run on ubuntu-latest in CI.
macOS runners have no Docker daemon, and the Windows CI job is deliberately build-only. So
anything proved by an integration test is proved on Linux only — which is the right place for
server code, and no coverage at all for client platform behaviour.
The end-to-end suite launches the API's own launcher executable, falling back to dotnet exec on the
assembly. The fallback exists for one reason: a checkout or artefact copy that lost the execute bit
produces a Win32Exception on Linux and nothing whatsoever on Windows. Verified on Windows only — the
launcher path is what runs here, so the fallback itself is reasoned rather than exercised. If the suite
fails in CI with a permission error before any container work, that is the path to look at.
It also depends on Server:PublicBaseUrl being knowable before startup. The port is chosen by binding
a loopback socket and releasing it, because the API reads that URL at startup and advertises it to clients,
so it cannot be discovered from Kestrel afterwards. The window for another process to take the port is a
few milliseconds; if the suite ever fails with an address-in-use, this is why, and a retry is the fix
rather than a redesign.
[CallerFilePath] is rewritten to /_/... under ContinuousIntegrationBuild. Any test that
locates a fixture by source path passes locally and fails in CI. Copy fixtures to the output
directory and read them via AppContext.BaseDirectory instead; GoldenVectorTests shows the
pattern.
dotnet format --verify-no-changes is part of the CI gate and exits non-zero on style
warnings, not just whitespace. Run it before pushing; a build with zero warnings can still fail
that step.
Deployment
PostgreSQL 18 moved its data directory to /var/lib/postgresql, not /var/lib/postgresql/data
as in 17 and earlier. A compose file carried over from an older version silently gets an empty
volume — the database appears to work and loses everything on restart. Relevant to any compose
file other than deploy/docker-compose.dev.yml, which is already correct.
Keycloak in the dev stack listens on host port 18080, not 8080. On this machine an unrelated
Apache Tomcat holds 127.0.0.1:8080, and a loopback-specific bind wins over Docker's 0.0.0.0
publish when resolving localhost — so every realm request returned 404 while the container
looked healthy. If discovery fails against a locally-published container, check for another
process bound specifically to loopback before suspecting the container.
A path prefix in the server URL is silently discarded. The client uses the typed address only as
HttpClient.BaseAddress and every request path is root-absolute (/api/v1/meta,
/.well-known/dodossh-configuration, …), so https://example.test/dodossh reaches
https://example.test/api/v1/... and the prefix is dropped without a word. That rules out hosting DodoSSH
under a sub-path — which is exactly what a reverse proxy in front of several services usually does. Nothing
trims or normalises the typed URL either, and it is the raw string, not the parsed form, that becomes the
local cache's identity. The server already publishes a canonical apiBaseUrl in its discovery document
that the client could normalise against and currently ignores.
Sync:CursorSigningKey generates an ephemeral per-process key when unset. Fine for a single
node; on a multi-node deployment cursors issued by one node are rejected by another, so clients
resync from the beginning repeatedly. Must be configured explicitly before running more than one
instance. WarnOnRiskyConfiguration logs this at startup.
Rate limiting is not implemented yet (M2). POST /api/v1/me/enrollment and the sync endpoints
are reachable by any authenticated caller at any rate. Enrollment requires a valid access token
and is idempotent, so the exposure is resource consumption rather than a credential-guessing
surface — but it is still an unmetered write path.
/api/v1/me does not update last_seen_at_utc. Deliberate: a GET that writes on every call is
a smell, and nothing depends on the value yet. Revisit when device management lands, since that is
the first feature that needs it.