Basically every relay operator who wants to make use of available system
ressources (CPU, RAM, bandwidth) has to run multiple tor instances on a single host, but the current init script does not include such a feature and everyone who needs it has to hack something togheter on their own.
This ticket is about modifying/extending /etc/init.d/tor (shipped with your debian packages) to allow for easy multi-tor instance handling.
The idea is to introduce an new boolean "MULTI_INSTANCE" in /etc/default/tor
If MULTI_INSTANCE is set to "yes" the init script would start a tor instance per every available
*.torrc file in /etc/tor, in all other cases proceed as usual (current behaviour).
This allows for an easy and transparent transitioning.
There is another reason to support multiple instances: it is not recommended to enable relaying and configure onion services on the same instance.
[For security reasons and also because once the relay reaches its bandwidth limit it stops the onion services as well, IIRC]
The script on GitHub scans for /etc/tor/*.cfg
In order for the user to be able to enable/disable instances, /etc/tor/enabled and /etc/tor/available could be used, or, in alternative, /etc/tor/torrc.d
My current plan is to first make a systemd unit file, and then add some support for multiple instances based on that, similar to how one can run multiple postgresql clusters, ideally with a per-instance user (in addition to datadir, config dir, etc.).
Either way, the Tor trac is not the place to discuss Debian packaging enhancements.
Just to be clear which debian packages I'm talking about here. This has been filed in trac because it is about the torproject's debian packages located here:
https://deb.torproject.org/torproject.org/dists/
(maybe the title of this trac entry was a bit misleading, I just wanted to split that ticket from hiviah's RPM ticket #14996 (moved))
Where should I file tickets if tor trac is not the correct place for that?
(unless otherwise stated I will continue the discussion here)
Anyway, I find it great to hear that you have plans for systemd unit files - that was also something I was thinking about because debian goes systemd anyway. Do you have some prototype unit files already, that we could look at and test?
Hm. I don't like how you need to specifically enable this. Can't we make it so it picks up torrc*?
Could you elaborate on why you do not like it?
Modifying a single line in a config file to opt-in doesn't seem to be a big effort, no?
(and my ansible role will take care of that as well ;)
The motivation was to preserve old behaviour and provide an smooth upgrade path that doesn't break for users not expecting this.
If you start parsing any torrc files without explicitly requiring opt-in, this will likely break things somewhere I guess.
Trac: Summary: debian packages: add support for multiple tor instances to init.d start script to debian packages: systemd unit files (with multi-instance support)