Authentication & Authorization

July 10, 2026 ยท View on GitHub

A mongreldb-server daemon runs in one of three modes:

  1. Open (default) - no auth required.
  2. Bearer token (--auth-token <TOKEN>) - every request must carry an Authorization: Bearer <TOKEN> header.
  3. HTTP Basic (--auth-users) - every request must carry an Authorization: Basic <base64(user:pass)> header.

The Odin client supports all three through the Options struct passed to connect. This guide shows each mode and how to manage users and roles via SQL when the server is in Basic mode.


Bearer token mode

Start the daemon with a token:

mongreldb-server --auth-token s3cret-token

Connect with Options.token. The token is sent as Authorization: Bearer ... on every request.

import m "mdb:mongreldb"

db := m.connect("http://127.0.0.1:8453", m.Options{
	token = "s3cret-token",
})

ok, err := m.health(db)
if err == .Auth {
	fmt.eprintln("bad or missing token")
	return
}

A missing or wrong token surfaces as .Auth (HTTP 401/403).

Where the token comes from

Hard-coding secrets in source is bad practice. Read it from the environment:

import "core:os"

token := os.get_env_alloc("MONGRELDB_TOKEN", context.allocator)
if token == "" {
	fmt.eprintln("MONGRELDB_TOKEN not set")
	return
}
db := m.connect("http://127.0.0.1:8453", m.Options{token = token})

Basic auth mode

Start the daemon with a users file or inline users:

mongreldb-server --auth-users

Connect with Options.username / Options.password:

db := m.connect("http://127.0.0.1:8453", m.Options{
	username = "admin",
	password = "s3cret",
})

The client base64-encodes username:password and sets Authorization: Basic ... on every request.

Token takes precedence

A Bearer token takes precedence over Basic credentials. The rule holds if you ever set both; in practice you pick one.

Request-smuggling guard

The client refuses to send a token or username that contains a CR or LF character. This prevents a malicious credential from injecting extra header lines through the auth header (request smuggling). Such a credential surfaces as .Query rather than being sent.

User and role management via SQL

When the daemon is in Basic auth mode, users and roles live in the catalog and are managed with SQL. Run these statements through sql.

Create a user

_, _ = m.sql(db, "CREATE USER alice WITH PASSWORD 'hunter2'")

Alter a user

Change a password:

_, _ = m.sql(db, "ALTER USER alice WITH PASSWORD 'new-password'")

Grant the admin role:

_, _ = m.sql(db, "ALTER USER alice ADMIN")

ALTER USER ... ADMIN is how you promote a user to full administrative privileges (table creation/drop, compaction, user management). Use it sparingly.

Drop a user

_, _ = m.sql(db, "DROP USER alice")

Roles and grants

_, _ = m.sql(db, "CREATE ROLE analyst")
_, _ = m.sql(db, "GRANT SELECT ON orders TO analyst")
_, _ = m.sql(db, "GRANT analyst TO alice")
_, _ = m.sql(db, "REVOKE SELECT ON orders FROM analyst")
_, _ = m.sql(db, "DROP ROLE analyst")

Exact grant syntax mirrors the server's SQL flavor; consult the server's SQL reference for the full GRANT/REVOKE grammar available in your build.

Common pitfalls

Auth errors look like other errors without the variant. A 401/403 maps to .Auth; a 404 maps to .Not_Found. Always switch on the error variant rather than string-matching labels.

Forgetting to set auth in production. A client built with empty Options sends no credentials. Against an auth-enabled daemon, every call fails with .Auth. Centralize client construction so the auth fields are never accidentally dropped.

One client is one identity. A Client carries one set of credentials. If you serve multiple authenticated users, build a client per user with that user's token.

Token in version control. Put secrets in the environment, a secret manager, or a file outside the repo. Never commit a real token.

Next steps