python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / programs / proxychains.nix
blob0771f03c77d308546b89293cd210c4d11486c0d7
1 { config, lib, pkgs, ... }:
2 with lib;
3 let
5   cfg = config.programs.proxychains;
7   configFile = ''
8     ${cfg.chain.type}_chain
9     ${optionalString (cfg.chain.type == "random")
10     "chain_len = ${builtins.toString cfg.chain.length}"}
11     ${optionalString cfg.proxyDNS "proxy_dns"}
12     ${optionalString cfg.quietMode "quiet_mode"}
13     remote_dns_subnet ${builtins.toString cfg.remoteDNSSubnet}
14     tcp_read_time_out ${builtins.toString cfg.tcpReadTimeOut}
15     tcp_connect_time_out ${builtins.toString cfg.tcpConnectTimeOut}
16     localnet ${cfg.localnet}
17     [ProxyList]
18     ${builtins.concatStringsSep "\n"
19       (lib.mapAttrsToList (k: v: "${v.type} ${v.host} ${builtins.toString v.port}")
20         (lib.filterAttrs (k: v: v.enable) cfg.proxies))}
21   '';
23   proxyOptions = {
24     options = {
25       enable = mkEnableOption (lib.mdDoc "this proxy");
27       type = mkOption {
28         type = types.enum [ "http" "socks4" "socks5" ];
29         description = lib.mdDoc "Proxy type.";
30       };
32       host = mkOption {
33         type = types.str;
34         description = lib.mdDoc "Proxy host or IP address.";
35       };
37       port = mkOption {
38         type = types.port;
39         description = lib.mdDoc "Proxy port";
40       };
41     };
42   };
44 in {
46   ###### interface
48   options = {
50     programs.proxychains = {
52       enable = mkEnableOption (lib.mdDoc "installing proxychains configuration");
54       chain = {
55         type = mkOption {
56           type = types.enum [ "dynamic" "strict" "random" ];
57           default = "strict";
58           description = lib.mdDoc ''
59             `dynamic` - Each connection will be done via chained proxies
60             all proxies chained in the order as they appear in the list
61             at least one proxy must be online to play in chain
62             (dead proxies are skipped)
63             otherwise `EINTR` is returned to the app.
65             `strict` - Each connection will be done via chained proxies
66             all proxies chained in the order as they appear in the list
67             all proxies must be online to play in chain
68             otherwise `EINTR` is returned to the app.
70             `random` - Each connection will be done via random proxy
71             (or proxy chain, see {option}`programs.proxychains.chain.length`) from the list.
72           '';
73         };
74         length = mkOption {
75           type = types.nullOr types.int;
76           default = null;
77           description = lib.mdDoc ''
78             Chain length for random chain.
79           '';
80         };
81       };
83       proxyDNS = mkOption {
84         type = types.bool;
85         default = true;
86         description = lib.mdDoc "Proxy DNS requests - no leak for DNS data.";
87       };
89       quietMode = mkEnableOption (lib.mdDoc "Quiet mode (no output from the library).");
91       remoteDNSSubnet = mkOption {
92         type = types.enum [ 10 127 224 ];
93         default = 224;
94         description = lib.mdDoc ''
95           Set the class A subnet number to use for the internal remote DNS mapping, uses the reserved 224.x.x.x range by default.
96         '';
97       };
99       tcpReadTimeOut = mkOption {
100         type = types.int;
101         default = 15000;
102         description = lib.mdDoc "Connection read time-out in milliseconds.";
103       };
105       tcpConnectTimeOut = mkOption {
106         type = types.int;
107         default = 8000;
108         description = lib.mdDoc "Connection time-out in milliseconds.";
109       };
111       localnet = mkOption {
112         type = types.str;
113         default = "127.0.0.0/255.0.0.0";
114         description = lib.mdDoc "By default enable localnet for loopback address ranges.";
115       };
117       proxies = mkOption {
118         type = types.attrsOf (types.submodule proxyOptions);
119         description = lib.mdDoc ''
120           Proxies to be used by proxychains.
121         '';
123         example = literalExpression ''
124           { myproxy =
125             { type = "socks4";
126               host = "127.0.0.1";
127               port = 1337;
128             };
129           }
130         '';
131       };
133     };
135   };
137   ###### implementation
139   meta.maintainers = with maintainers; [ sorki ];
141   config = mkIf cfg.enable {
143     assertions = singleton {
144       assertion = cfg.chain.type != "random" && cfg.chain.length == null;
145       message = ''
146         Option `programs.proxychains.chain.length`
147         only makes sense with `programs.proxychains.chain.type` = "random".
148       '';
149     };
151     programs.proxychains.proxies = mkIf config.services.tor.client.enable
152       {
153         torproxy = mkDefault {
154           enable = true;
155           type = "socks4";
156           host = "127.0.0.1";
157           port = 9050;
158         };
159       };
161     environment.etc."proxychains.conf".text = configFile;
162     environment.systemPackages = [ pkgs.proxychains ];
163   };