Backend for Sapphire (C)

Alyssa Rosenzweig b49a7b490f Switch to set преди 5 години
accounts 05e8dde29c Accounts/README преди 5 години
.editorconfig 3ef6ef2b3b Add .editorconfig преди 5 години
.gitignore 960b1c4ba5 Ignore the proxy преди 5 години
LICENSE 7559951990 LICENSE file преди 5 години
Makefile 8d4970e3e8 Strip out all message processing преди 5 години
README.md 888e8faec5 .. преди 5 години
cert.sh 05f4aff5c2 Opt-in HTTPS преди 5 години
core.c b49a7b490f Switch to set преди 5 години
core.h 6465665df5 Strip some old code преди 5 години
event-loop.c 60d14a6af1 Refactor event loop преди 5 години
event-loop.h 60d14a6af1 Refactor event loop преди 5 години
jailed.sh 39ceb00ee7 jailed.sh update преди 5 години
json_compat.h 1d439ad47a Broadcast write_conv as JSON преди 5 години
proxy.c 9b1479ce4a Ignore writes to closed websockets преди 5 години
push.c 8a12c50102 Implement suuuper tenative mailx-based SMS push notifications преди 5 години
push.h 8a12c50102 Implement suuuper tenative mailx-based SMS push notifications преди 5 години
sapphire-accounts.json d1ad08ddcc Add new files преди 5 години
secure-compare-64.h d1ad08ddcc Add new files преди 5 години
websocket.c b534232e77 Print gerror I guess преди 5 години
websocket.h 79d99f94e5 Beep beep преди 5 години

README.md

Backend

sapphire-backend communicates only over local filesystem-resident sockets, to simplify jailing. To reach the outside world -- in particular, to benefit from websockets -- it must be paired with sapphire-proxy, which implements proxying, authentication, and SSL.

To set this up, use:

$ ./sapphire-backend & ./sapphire-proxy

And if you need to restart, it's probably safest to quit both.

This process might be further streamlined in the future.

Proxy

Historically, on a local single-user Sapphire instance, the architecture was simple:

Browser <--> Backend

However, this does not work for multi-user, public-facing instances. In these cases, to minimise attack surface, this proxy is publicly facing while the backends only listen to localhost and are sandboxed:

Browser <--> Proxy (<--> Backends)

This package proxies WebSockets and implements authentication. It therefore depends on glib/json-glib/libsoup, but it MUST NOT depend on libpurple due to security isolation concerns.