Database administration tool for non-admin users, rewrite of https://git.pvv.ntnu.no/Projects/mysql-admutils
Go to file
Oystein Kristoffer Tveit a0be0d3b92
Wrap database users and database names in newtypes
Also, use less cloning where possible
2024-08-20 17:46:43 +02:00
nix Integrate better with systemd + better logs and protocol usage 2024-08-20 17:46:40 +02:00
src Wrap database users and database names in newtypes 2024-08-20 17:46:43 +02:00
.gitignore .gitignore: add nix ignores 2024-08-04 14:30:35 +02:00
Cargo.lock Integrate better with systemd + better logs and protocol usage 2024-08-20 17:46:40 +02:00
Cargo.toml Integrate better with systemd + better logs and protocol usage 2024-08-20 17:46:40 +02:00
LICENSE Initial commit 2024-04-20 03:38:29 +02:00
README.md README: fix outdated command names 2024-08-19 19:03:04 +02:00
build.rs build.rs: small cleanup 2024-08-19 02:23:49 +02:00
deny.toml cargo-deny: init 2024-08-20 17:46:43 +02:00
example-config.toml server/config: revamp 2024-08-19 16:57:25 +02:00
flake.lock "downgrade" nixpkgs to stable, to avoid rust 1.80 breakage 2024-08-19 17:11:19 +02:00
flake.nix cargo-deny: init 2024-08-20 17:46:43 +02:00

README.md

mysqladm-rs

Work in progress rewrite of https://git.pvv.ntnu.no/Projects/mysql-admutils

Installation

The resulting binary will probably need to be marked as either SUID or SGID to work in a multi-user environment. The UID/GID of the binary should have access to the config file, which contains secrets to log in to an admin-like MySQL user. Preferrably, this UID/GID should not be root, in order to minimize the potential damage that can be done in case of security vulnerabilities in the program.

Development and testing

Ensure you have a rust toolchain installed.

In order to set up a test instance of mariadb in a docker container, run the following command:

docker run --rm --name mariadb -e MYSQL_ROOT_PASSWORD=secret -p 3306:3306 -d mariadb:latest

This will start a mariadb instance with the root password secret, and expose the port 3306 on the host machine.

Run the following command to create a configuration file with the default settings:

cp ./example-config.toml ./config.toml

If you used the docker command above, you can use these settings as is, but if you are running mariadb/mysql on another host, port or with another password, adjust the corresponding fields in config.toml. This file will contain your database password, but is ignored by git, so it will not be committed to the repository.

You should now be able to connect to the mariadb instance, after building the program and using arguments to specify the config file.

cargo run -- --config-file ./config.toml <args>

# example usage
cargo run -- --config-file ./config.toml create-db "${USER}_testdb"
cargo run -- --config-file ./config.toml create-user "${USER}_testuser"
cargo run -- --config-file ./config.toml edit-db-privs -p "${USER}_testdb:${USER}_testuser:A"
cargo run -- --config-file ./config.toml show-db-privs

To stop and remove the container, run the following command:

docker stop mariadb

Compatibility mode with mysql-admutils

If you enable the feature flag mysql-admutils-compatibility (enabled by default), the output directory will contain two symlinks to the binary, mysql-dbadm and mysql-useradm. In the same fashion as busybox, the binary will react to its argv[0] and behave as if it was called with the corresponding name. While the internal functionality is written in rust, these modes strive to behave as similar as possible to the original programs.

cargo build
./target/debug/mysql-dbadm --help
./target/debug/mysql-useradm --help

Known deviations from the original programs

  • Added flags for database configuration, not present in the original programs
  • --help output is formatted by clap in a modern style.
  • mysql-dbadm edit-perm uses the new implementation. The idea was that the parsing logic was too complex to be worth porting, and there wouldn't be any scripts depending on this command anyway. As such, the new implementation is more user-friendly and only brings positive changes.
  • The new tools use the modern implementation to find it's configuration. If you compiled the old programs with --sysconfdir=<somewhere>, you might have to provide --config-file where the old program would just work by itself.
  • The order in which some things are validated (e.g. whether you own a user, whether the contains illegal characters, whether the user does or does not exist) might be different from the original program, leading to the same command giving the errors in a different order.