Project to learn golang.org in the context of user lifecycle management.
This repository contains the heart of the UserStack project. The core domain model is implemented at the ustackd. The daemon has multiple backend implementations in which the data can be stored.
We may stole ideas from:
- Apache Syncope
- ConnID
This section describes the configuration of the ustackd.
[Daemon]
# Interface and port where the daemon should listen
listen = 0.0.0.0:7654
; listen = 127.0.0.1:7654
# the realm send by the server after connect
realm = ustackd $VERSION$
# be default the daemon is in background, foreground at demand
# in foreground mode the syslog is disabled and logging appears on STDOUT
; foreground = yes
# The backend to use
backend = sqlite
# path to folder where pid file can be stored
; pid-path = /var/run
[syslog]
# which syslog facility should be used
facility = 3 # (system daemons)
# set the syslog log level
# (Emergency, Alert, Critical, Error, Warning, Notice, Informational, Debug)
level = Debug
[client]
# client that is allowed to issue all commands (e.g. web gui)
auth = 42421da75756d69832d:deny://
# client that is restricted to certain commands (e.g. auth server)
auth = 6d95e4ac638daf4b786:allow:/^(login|set|get|change (password|email))/
# client that can manage everything, but is secure from data stealing
auth = 04d6eb93ab5d30f7bb0:deny:/^(users|groups|group users)/
[security]
# change root to this location after start
; chroot = /var/run/ustackd
# change group to this location after start
; gid = ustack
# change user to this location after start
; uid = ustack
[ssl]
# status
enabled = yes
# Interface and Port where the daemon should listen with ssl/tls enabled
; listen = 0.0.0.0:8765
# location of the private key in pem format
; key = /etc/ustack/key.pem
# location of the certificate in pem format
; cert = /etc/ustack/cert.pem
# protocols to support
# SSL v3.0 = 768
# TLS v1.0 = 769
# TLS v1.1 = 770
# TLS v1.2 = 771
; protocol-min = 771
; protocol-max = 771
# ciphers to support
; ciphers = ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
[sqlite]
url = ustack.db
ustackd [-c config file] [-f|--foreground]
If now config file is passed, the file will be searched in the following locations in order:
- ./ustack.conf
- /etc/ustack.conf
- /usr/local/etc/ustack.conf
User
* uid (int)
* firstname (string)
* lastname (string)
* email (string)
* password (string)
* active (bool)
has many Groups
Group
* gid (int)
* name (string)
has many Users
The backends in ustackd are based on a plugin mechanism. This way, ustackd should be able to communicate with all possible backends.
Capability: Customer, User
Sqlite 3 implementation of the backend.
Capability: Customer, User
PostgreSQL backend implementation.
Capability: Customer, User
Redis backend implementation.
Capability: Customer, User
MongoDB backend implementation.
Capability: User, Group
PAM backend implementation.
Capability: User, Group
Unix backend implementation.
This section describes the protocol that is used to interface with the daemon.
Following notation is used
-> Client sends something to the server
<- Server send something back to the client
CRLF "\r\n" is implicit for every line sent. If the request was ok the response is prefixed with a "+" otherwise with a minus, followed by the response code.
Capability: ()
If a secret is set, the client has to issue the client auth command in order to get access to the system. Depending on the secret the capabilities may change. This is useful, to for example not allow apps to list all users. Generally consider use of SSL/TLS!
-> client auth <secret>
<- + OK (user group admin)
Return Codes:
OK: Ok with a list of privileges
EPERM: no valid secret
Capability: (admin)
-> stats
<- logins: 13435
<- err logins: 1123
<- users: 651
<- inactive users: 15
<- groups: 4
<- + OK
Capability: (user)
-> user <email> <password>
<- + OK 1
Return Codes:
OK: Ok with the uid
EEXIST: User already exists
EINVAL: Parameter missing or invalid
Capability: (user)
-> disable <email|uid>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
Capability: (user)
-> enable <email|uid>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
Capability: (user)
-> set <email|uid> <key> <value>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
EINVAL: Parameter missing or invalid
Recommended Keys:
firstname
lastname
Capability: (user)
-> get <email,uid> <key>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
EINVAL: Parameter missing or invalid
Capability: (user)
-> login <email> <password>
<- + OK 1
Return Codes:
OK: Ok with the uid
EPERM: email and password are not a valid combination
Capability: (user)
-> change password <email|uid> <password> <newpassword>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
EPERM: email and password are not a valid combination
EINVAL: Parameter missing or invalid
Capability: (user)
-> change email <email|uid> <password> <newemail>
<- + OK
Return Codes:
OK: Ok
ENOENT: email or uid unknown
EPERM: email and password are not a valid combination
EINVAL: Parameter missing or invalid
Capability: (user group)
-> user groups <email|uid>
<- administrators:1
<- sales:20
<- engineering:10
<- + OK
Format:
List of groups with group id: <group>:<gid>
Return Codes:
OK: Ok with the list of objects
ENOENT: email or uid unknown
EINVAL: Parameter missing or invalid
Capability: (user)
delete user <email|uid>
Return Codes:
OK: Ok user deleted
ENOENT: email or uid unknown
EINVAL: Parameter missing or invalid
Capability: (user admin)
-> users
<- [email protected]:1
<- [email protected]:2
<- [email protected]:3
<- + OK
Format:
List of emails with user id: <email>:<uid>
Return Codes:
OK: Ok
Capability: (group)
-> group <name>
<- + OK 1
Return Codes:
OK: Ok with the gid
EEXIST: Group already exists
EINVAL: Parameter missing or invalid
Capability: (user group)
-> add <email|uid> <group|gid>
<- + OK
Return Codes:
OK: Ok
ENOENT: Group or user doesn't exist
Capability: (user group)
-> remove <email|uid> <group|gid>
<- + OK
Return Codes:
OK: Ok
ENOENT: Group or user doesn't exist
Capability: (group)
-> delete group <group|gid>
<- + OK
Return Codes:
OK: Ok
ENOENT: Group doesn't exist
Capability: (group)
-> groups
<- administrators:1
<- sales:20
<- engineering:10
<- + OK
Format:
List of groups with group id: <group>:<gid>
Return Codes:
OK: Ok
Capability: (user group admin)
-> group users <group|gid>
<- [email protected]:1
<- [email protected]:2
<- [email protected]:3
<- + OK
Format:
List of emails with user id: <email>:<uid>
Return Codes:
OK: Ok
ENOENT: Group doesn't exist