fix(passwd): also reset The Lounge web-login password (#61)
Some checks failed
CI / build (push) Has been cancelled
deploy / deploy (push) Has been cancelled
test / test (push) Has been cancelled

passwd@ reset the IRC SASL credential (Ergo store + The Lounge saslPassword) but
NOT The Lounge's own web-login password (the bcrypt field used to sign in to
chat.<domain> itself). So a member who reset their password could connect to IRC
but got "auth failed" at chat.profullstack.com/sign-in.

set-irc-password.sh now sets all THREE chat credentials to the new password:
Ergo SASL, the Lounge saslPassword, and the Lounge web-login password via
`thelounge reset <member>` (AGENTBBS_LOUNGE_RESET_CMD, default targets the
dockerized The Lounge). The password is piped on stdin to `thelounge reset`, so
it never lands on a command line. Best-effort: a Lounge web-reset failure warns
but doesn't fail the run (Ergo SASL stays the primary IRC secret).

Bumped ircpass SetPassword's context timeout 20s→60s since the helper now also
runs a `docker exec thelounge ...` step.

Verified live on bbs.profullstack.com: the modified helper sets all three for an
existing member (web bcrypt match + saslPassword + Ergo store), and the affected
member's web login was reconciled.

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Anthony Ettinger 2026-06-27 09:40:28 -07:00 committed by GitHub
parent 54ede811f9
commit 105ff0ed8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 72 additions and 11 deletions

View file

@ -3,8 +3,13 @@
#
# Writes a pbkdf2-sha256 hash to the Ergo password store
# (/var/lib/ergo/irc-passwd, ergo:ergo 0600) that ergo-auth-member verifies on
# SASL login, and (if a The Lounge user file exists for the member) updates that
# user's saslPassword so the web client keeps working without member action.
# SASL login. When a The Lounge user file exists for the member it ALSO sets two
# distinct Lounge credentials to the same password:
# - the IRC network saslPassword (so the web client authenticates to Ergo), and
# - the Lounge WEB LOGIN password (the bcrypt field used to sign in to
# chat.<domain> itself), via `thelounge reset` (AGENTBBS_LOUNGE_RESET_CMD).
# Without the web-login sync a member who reset via passwd@ could connect to IRC
# but not log into the web client — the bug this guards against.
#
# Usage:
# set-irc-password.sh <member> [password] # password generated if omitted
@ -16,10 +21,19 @@
#
# Run as root on the BBS box. The member must already be a BBS member; this only
# sets the secret — membership itself is still gated by /irc-auth.
import sys, os, json, glob, secrets, hashlib, pwd, grp
import sys, os, json, glob, secrets, hashlib, pwd, grp, subprocess
PASSWD_FILE = os.environ.get("ERGO_IRC_PASSWD", "/var/lib/ergo/irc-passwd")
LOUNGE_USERS = os.environ.get("AGENTBBS_LOUNGE_USERS", "/var/lib/thelounge/users")
# Command that resets a member's The Lounge *web login* password — distinct from
# the IRC saslPassword. We feed the new password to it on STDIN (so it never
# lands on a command line) and append the member name. Default targets the
# dockerized The Lounge (`thelounge reset <member>` reads the password from
# stdin). Set AGENTBBS_LOUNGE_RESET_CMD="" to skip the web-login sync (e.g. when
# The Lounge isn't deployed), or override it for a native/other install.
LOUNGE_RESET_CMD = os.environ.get(
"AGENTBBS_LOUNGE_RESET_CMD", "docker exec -i thelounge thelounge reset"
)
ITERS = 200_000
@ -55,10 +69,40 @@ def write_store(store):
os.replace(tmp, PASSWD_FILE)
def set_lounge_web_password(member, pw):
"""Set The Lounge WEB LOGIN password (its own bcrypt field), distinct from the
IRC saslPassword. Pipes the new password to `thelounge reset <member>` on
stdin so it never appears on a command line. Best-effort: warns but never
fails the run (the Ergo SASL credential is the primary IRC secret)."""
cmd = LOUNGE_RESET_CMD.strip()
if not cmd:
return
try:
r = subprocess.run(
cmd.split() + [member],
input=(pw + "\n").encode(),
capture_output=True,
timeout=30,
)
if r.returncode != 0:
print(
f"WARN: Lounge web-login reset for {member} failed (rc={r.returncode}): "
f"{r.stderr.decode(errors='replace').strip()[:200]}",
file=sys.stderr,
)
else:
print(f" (updated The Lounge web-login password for {member})")
except Exception as e:
print(f"WARN: Lounge web-login reset for {member}: {e}", file=sys.stderr)
def sync_lounge(member, pw):
p = os.path.join(LOUNGE_USERS, member + ".json")
if not os.path.exists(p):
return
# Web login password first (rewrites the user file via the Lounge CLI), then
# the saslPassword edit below reads that fresh file and preserves it.
set_lounge_web_password(member, pw)
try:
d = json.load(open(p))
except Exception as e: