mirror of
https://github.com/jmcorgan/fips.git
synced 2026-08-09 16:24:45 +00:00
The macOS packaging installs config under /usr/local/etc/fips, wired through the launchd plist and build-pkg.sh, but the default-path constants and the config search path were hardcoded to /etc/fips for all Unix. On macOS the daemon and fipsctl therefore looked in a directory that does not exist: the ACL and host-map loaders hit their NotFound no-op arm and returned empty state, so a populated peers.deny reported effective_mode "default_open" with enforcement inactive, and host-file aliases went unloaded, with no error. The peers.allow, peers.deny and hosts defaults now follow the platform's packaging, and fipsctl keygen writes its identity there too. The config search path keeps probing /etc/fips first and adds /usr/local/etc/fips after it, so an existing install keeps working across the upgrade and the packaged file still wins over a stale leftover. Both the macOS search-path entry and the keygen output directory read one SYSTEM_CONFIG_DIR constant, so they cannot drift apart. At startup the daemon warns once about hosts, peers.allow or peers.deny stranded at the old location; the config file is deliberately excluded, since both directories stay on the search path and a config left behind is still read. The control-socket snapshot tests repoint the ACL reloader at non-existent paths under the temp dir, so the snapshot no longer reflects whatever ACL files happen to exist on the machine running the tests. Platform-gated unit tests pin both layouts, so a future refactor cannot silently drift either one. Linux and Windows behavior is unchanged. Adding a second system config directory moves the directory the daemon derives the identity key path from, since that comes from whichever config file loaded last. A host carrying fips.yaml at both locations would have resolved fips.key to the new directory, found none, and under persistent generated a fresh identity, silently changing its npub, routing address and mesh IPv6 with no migration path. The daemon now adopts a key stranded at the legacy path and warns to move it rather than generating one. The fallback is confined to keys resolved from the system config directory, so a run using ./fips.yaml or a user config is never redirected to a system key. Co-authored-by: Johnathan Corgan <johnathan@corganlabs.com>
150 lines
7.0 KiB
Markdown
150 lines
7.0 KiB
Markdown
# `fipsctl`
|
|
|
|
Command-line client for the FIPS daemon's control socket.
|
|
|
|
## Synopsis
|
|
|
|
```text
|
|
fipsctl [-s SOCKET] <subcommand> [args...]
|
|
```
|
|
|
|
## Description
|
|
|
|
`fipsctl` connects to a running daemon over its control socket
|
|
(Unix domain socket on Linux/macOS, TCP loopback on Windows), sends
|
|
one JSON request, and pretty-prints the response. Exits with a
|
|
non-zero status if the socket cannot be reached, the daemon returns an
|
|
error, or the request times out.
|
|
|
|
`fipsctl keygen` is a special case: it does not contact the daemon and
|
|
operates purely on local files.
|
|
|
|
For the line-delimited JSON wire protocol, see
|
|
[control-socket.md](control-socket.md). For the YAML configuration
|
|
that defines the socket location, see
|
|
[configuration.md](configuration.md).
|
|
|
|
## Global Options
|
|
|
|
| Flag | Argument | Description |
|
|
| ---- | -------- | ----------- |
|
|
| `-s`, `--socket` | `PATH` | Override the control-socket path (Linux/macOS) or TCP port (Windows). |
|
|
| `-V`, `--version` | — | Print the short version. |
|
|
| `--version` | — | Print the long version. |
|
|
| `-h`, `--help` | — | Print usage and exit. Per-subcommand help via `fipsctl <subcommand> --help`. |
|
|
|
|
## Subcommands
|
|
|
|
### `show <what>`
|
|
|
|
Read-only queries against the daemon. Each subcommand maps 1:1 to a
|
|
control-socket query (see [control-socket.md](control-socket.md)) and
|
|
prints the response's `data` object as pretty JSON.
|
|
|
|
| Subcommand | Control-socket command | Returns |
|
|
| ---------- | ---------------------- | ------- |
|
|
| `show status` | `show_status` | Node-level status: identity, version, peer/link/session counts, TUN state, recent sparklines. |
|
|
| `show peers` | `show_peers` | Authenticated peer list with link IDs, transport addresses, MMP metrics, Noise/rekey state. |
|
|
| `show links` | `show_links` | Active links (one per FMP-authenticated peer): direction, state, byte counters. |
|
|
| `show tree` | `show_tree` | Spanning-tree state: root, my coordinates, parent, peer declarations. |
|
|
| `show sessions` | `show_sessions` | End-to-end FSP sessions: state, traffic counters, session-MMP metrics, path MTU. |
|
|
| `show bloom` | `show_bloom` | Bloom-filter state: own filter sequence, leaf dependents, per-peer filter summaries. |
|
|
| `show mmp` | `show_mmp` | MMP metrics summary: per-peer link-layer metrics and per-session session-layer metrics. |
|
|
| `show cache` | `show_cache` | Coordinate cache: TTL, fill ratio, per-destination coords and path MTU. |
|
|
| `show connections` | `show_connections` | Pending handshake connections: state, idle time, resend count. |
|
|
| `show transports` | `show_transports` | Transport instances: type, state, MTU, local address, per-transport stats. |
|
|
| `show routing` | `show_routing` | Routing summary: pending lookups, retry state, forwarding/discovery/error/congestion counters. |
|
|
| `show identity-cache` | `show_identity_cache` | Cached `(node_addr → npub)` entries with last-seen timestamps. |
|
|
|
|
### `acl <what>`
|
|
|
|
| Subcommand | Control-socket command | Returns |
|
|
| ---------- | ---------------------- | ------- |
|
|
| `acl show` | `show_acl` | Loaded peer-ACL state: allow/deny files, effective mode, default decision, entry counts. |
|
|
|
|
### `stats <what>`
|
|
|
|
Time-series metrics from the in-process history rings.
|
|
|
|
| Subcommand | Control-socket command | Description |
|
|
| ---------- | ---------------------- | ----------- |
|
|
| `stats list` | `show_stats_list` | Enumerate available metrics, their units, and the per-ring retention windows. |
|
|
| `stats metrics` | `show_metrics` | Dump current counter values for every protocol metric family (`forwarding`, `discovery`, `tree`, `bloom`, `congestion`, `errors`). |
|
|
| `stats peers` | `show_stats_peers` | List peers tracked in stats history (active or recently active). |
|
|
| `stats history <metric> [options]` | `show_stats_history` | Fetch a time-series window for one metric. |
|
|
|
|
`stats history` options:
|
|
|
|
| Flag | Argument | Default | Description |
|
|
| ---- | -------- | ------- | ----------- |
|
|
| `--peer` | `npub` or hostname | *(none)* | Required for per-peer metrics; resolves through `/etc/fips/hosts` if not an npub. |
|
|
| `--window` | `<N>s` / `<N>m` / `<N>h` | `10m` | Window duration. |
|
|
| `--granularity` | `1s` or `1m` | `1s` | Ring resolution. `1s` uses the fast ring; `1m` uses the slow ring. |
|
|
| `--plot` | — | off | Render a Unicode-block sparkline to stdout instead of JSON. |
|
|
|
|
### `keygen [options]`
|
|
|
|
Generate a new FIPS identity keypair locally. Does not contact the
|
|
daemon.
|
|
|
|
| Flag | Argument | Default | Description |
|
|
| ---- | -------- | ------- | ----------- |
|
|
| `-d`, `--dir` | `DIR` | `/usr/local/etc/fips` (macOS), `/etc/fips` (other Unix), `%APPDATA%\fips` (Windows) | Output directory for `fips.key` and `fips.pub`. Matches the directory the platform's packaging installs config into, which is where the daemon derives the key paths from. |
|
|
| `-f`, `--force` | — | off | Overwrite an existing `fips.key`. |
|
|
| `-s`, `--stdout` | — | off | Print `nsec` then `npub` to stdout instead of writing files. |
|
|
|
|
`fips.key` is written with mode `0600` and `fips.pub` with mode `0644`
|
|
on Unix. After running `keygen`, set `node.identity.persistent: true`
|
|
in `fips.yaml` or the daemon will overwrite the keys on next start.
|
|
|
|
### `connect <peer> <address> <transport>`
|
|
|
|
Tell the daemon to dial a peer over a specific transport.
|
|
|
|
| Argument | Description |
|
|
| -------- | ----------- |
|
|
| `peer` | npub (bech32) or hostname from `/etc/fips/hosts`. |
|
|
| `address` | Transport endpoint, e.g. `192.168.1.10:2121`, `[2001:db8::1]:2121`, or a Tor onion. FIPS-mesh ULAs (`fd00::/8`) are rejected for the IP-based transports (udp, tcp, ethernet). |
|
|
| `transport` | One of `udp`, `tcp`, `tor`, `nym`, `ethernet`. The named transport must be configured and running. |
|
|
|
|
### `disconnect <peer>`
|
|
|
|
Tell the daemon to drop a peer link.
|
|
|
|
| Argument | Description |
|
|
| -------- | ----------- |
|
|
| `peer` | npub (bech32) or hostname from `/etc/fips/hosts`. |
|
|
|
|
## Exit Codes
|
|
|
|
| Code | Meaning |
|
|
| ---- | ------- |
|
|
| `0` | Daemon returned `{"status":"ok",...}`. |
|
|
| `1` | Argument parse failure, control-socket connection failure, daemon returned `{"status":"error",...}`, or local I/O failure (keygen). The error message is printed to stderr. |
|
|
|
|
## Environment
|
|
|
|
| Variable | Description |
|
|
| -------- | ----------- |
|
|
| `XDG_RUNTIME_DIR` | Used to derive the default control-socket path when `/run/fips` is absent. |
|
|
|
|
`fipsctl` does not consume `RUST_LOG`; logging is for the daemon.
|
|
|
|
## Files
|
|
|
|
| Path | Purpose |
|
|
| ---- | ------- |
|
|
| `/etc/fips/hosts` | Maps hostnames to npubs for the `connect`, `disconnect`, and `--peer` arguments. See [configuration.md](configuration.md). |
|
|
| Control socket (default) | Same resolution as the daemon: `/run/fips/control.sock` if present, else `$XDG_RUNTIME_DIR/fips/control.sock`, else `/tmp/fips-control.sock` (Unix); TCP `localhost:21210` (Windows). |
|
|
|
|
If you get `Permission denied` connecting to the socket on Linux,
|
|
add your user to the `fips` group (`sudo usermod -aG fips $USER`)
|
|
and log out and back in.
|
|
|
|
## See also
|
|
|
|
- [`fips`](cli-fips.md) — the daemon.
|
|
- [`fipstop`](cli-fipstop.md) — live-status TUI.
|
|
- [control-socket.md](control-socket.md) — wire protocol.
|
|
- [configuration.md](configuration.md) — YAML reference.
|