1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
//! # UPnP daemon
//!
//! A daemon for continuously opening ports via UPnP.
//!
//! ## Motivation
//!
//! There are quite some programs out there that need certain network ports to be
//! open to work properly, but do not provide the capability for opening them
//! automatically via UPnP. Sure, one could always argue about the security
//! implications that come with UPnP, but if you are willing to take the risk, it
//! is just annoying, that for example your webserver is not reachable from the
//! internet, because you forgot to open port 80, or your router rebooted and
//! cleared the table of open ports. Or your machine does for whatever reason not
//! have a static IP address, so you cannot add a consistent port mapping.
//!
//! Because of this frustration, I created `upnp-daemon`, a small service written
//! in Rust, that will periodically check a file with your defined port mappings
//! and send them to your router. The main usage will be that you start it once
//! and let it run as a background service forever. The file with the port
//! mappings will be newly read in on each iteration, so you can add new mappings
//! on the fly.
//!
//! ## Installation
//!
//! upnp-daemon can be installed easily through Cargo via `crates.io`:
//!
//! ```shell script
//! cargo install upnp-daemon
//! ```
//!
//! ## Usage
//!
//! In the most basic case, a call might look like so:
//!
//! ```shell script
//! upnp-daemon --file ports.csv
//! ```
//!
//! This will start a background process (daemon) that reads in port mappings from
//! a CSV file (see [config file format](#config-file-format)) every minute and
//! ask the appropriate routers to open those ports.
//!
//! The PID of the process will be written to `/tmp/upnp-daemon.pid` and locked
//! exclusively, so that only one instance is running at a time. To quit it, kill
//! the PID that is written in this file.
//!
//! Bash can do it like so:
//!
//! ```shell script
//! kill $(</tmp/upnp-daemon.pid)
//! ```
//!
//! **A note to Windows users:** The `daemonize` library that is used to send this
//! program to the background, does only work on Unix like systems. You can still
//! install and use the program on Windows, but it will behave as if you started
//! it with the `--foreground` option (see [below](#foreground-operation)).
//!
//! ### Foreground Operation
//!
//! Some service monitors expect services to start in the foreground, so they can
//! handle them with their own custom functions. For this use case, you can use
//! the `foreground` flag, like so:
//!
//! ```shell script
//! upnp-daemon --foreground --file ports.csv
//! ```
//!
//! This will leave the program running in the foreground. You can terminate it by
//! issuing a `SIGINT` (Ctrl-C), for example.
//!
//! **A note to Windows users:** This option flag does not exist in the Windows
//! version of this program. Instead, foreground operation is the default
//! operation mode, since due to technical limitations, it cannot be sent to the
//! background there.
//!
//! ### Oneshot Mode
//!
//! If you just want to test your configuration, without letting the daemon run
//! forever, you can use the `oneshot` flag, like so:
//!
//! ```shell script
//! upnp-daemon --foreground --oneshot --file ports.csv
//! ```
//!
//! You could of course leave off the `foreground` flag, but then you will not
//! know when the process has finished, which could take some time, depending on
//! the size of the mapping file.
//!
//! ### Closing Ports
//!
//! If you want to close your opened ports when the program exits, you can use the
//! `close-ports-on-exit` flag, like so:
//!
//! ```shell script
//! upnp-daemon --close-ports-on-exit --file ports.csv
//! ```
//!
//! If the program later terminates, either by using the `kill` command or by
//! sending a `SIGINT` in foreground mode, the currently defined ports in the
//! configuration file will be closed. Errors will be logged, but are not fatal,
//! so they will not cause the program to panic. Those errors might arise, for
//! example, when a port has not been opened in the first place.
//!
//! If you just want to close all defined ports, without even running the main
//! program, you can use the `--only-close-ports` flag, like so:
//!
//! ```shell script
//! upnp-daemon --foreground --only-close-ports --file ports.csv
//! ```
//!
//! The `foreground` flag here is optional, but it is useful if you need to know
//! when all ports have been closed, since the program only terminates then.
//!
//! ### Logging
//!
//! If you want to activate logging to have a better understanding what the
//! program does under the hood, you need to set the environment variable
//! `RUST_LOG`, like so:
//!
//! ```shell script
//! RUST_LOG=info upnp-daemon --foreground --file ports.csv
//! ```
//!
//! To make the logger even more verbose, try to set the log level to `debug`:
//!
//! ```shell script
//! RUST_LOG=debug upnp-daemon --foreground --file ports.csv
//! ```
//!
//! Please note that it does not make sense to activate logging without using
//! `foreground`, since the output (stdout as well as stderr) will not be saved in
//! daemon mode. This might change in a future release.
//!
//! ## Config File Format
//!
//! The format of the port mapping file is a simple CSV file, like the following
//! example:
//!
//! ```text
//! address;port;protocol;duration;comment
//! 192.168.0.10;12345;UDP;60;Test 1
//! ;12346;TCP;60;Test 2
//! ```
//!
//! Please note that the first line is mandatory at the moment, it is needed to
//! accurately map the fields to the internal options.
//!
//! ### Fields
//!
//! -   address
//!
//!     The IP address for which the port mapping should be added. This field can
//!     be empty, in which case every connected interface will be tried, until one
//!     gateway reports success. Useful if the IP address is dynamic and not
//!     consistent over reboots.
//!
//!     Fill in an IP address if you want to add a port mapping for a foreign
//!     device, or if you know your machine's address and want to slightly speed
//!     up the process.
//!
//! -   port
//!
//!     The port number to open for the given IP address. Note that upnp-daemon is
//!     greedy at the moment, if a port mapping is already in place, it will be
//!     deleted and re-added with the given IP address. This might be configurable
//!     in a future release.
//!
//! -   protocol
//!
//!     The protocol for which the given port will be opened. Possible values are
//!     `UDP` and `TCP`.
//!
//! -   duration
//!
//!     The lease duration for the port mapping in seconds. Please note that some
//!     UPnP capable routers might choose to ignore this value, so do not
//!     exclusively rely on this.
//!
//! -   comment
//!
//!     A comment about the reason for the port mapping. Will be stored together
//!     with the mapping in the router.

use std::error::Error;
use std::net::{SocketAddr, SocketAddrV4};

use igd::{AddPortError, Gateway, SearchOptions};
use log::{debug, warn};
use serde::Deserialize;

pub use cli::Cli;

mod cli;

#[derive(Debug, Deserialize)]
pub enum PortMappingProtocol {
    TCP,
    UDP,
}

impl From<PortMappingProtocol> for igd::PortMappingProtocol {
    fn from(proto: PortMappingProtocol) -> Self {
        match proto {
            PortMappingProtocol::TCP => igd::PortMappingProtocol::TCP,
            PortMappingProtocol::UDP => igd::PortMappingProtocol::UDP,
        }
    }
}

#[derive(Debug, Deserialize)]
pub struct Options {
    pub address: Option<String>,
    pub port: u16,
    pub protocol: PortMappingProtocol,
    pub duration: u32,
    pub comment: String,
}

fn find_gateway_with_bind_addr(bind_addr: SocketAddr) -> Gateway {
    let options = SearchOptions {
        bind_addr,
        ..Default::default()
    };
    igd::search_gateway(options).unwrap()
}

fn find_gateway_and_addr() -> (Gateway, SocketAddr) {
    let ifaces = get_if_addrs::get_if_addrs().unwrap();
    ifaces
        .iter()
        .filter_map(|iface| {
            if iface.is_loopback() || !iface.ip().is_ipv4() {
                None
            } else {
                let options = SearchOptions {
                    bind_addr: format!("{}:0", iface.addr.ip()).parse().unwrap(),
                    ..Default::default()
                };
                igd::search_gateway(options).ok().and_then(|gateway| {
                    if let get_if_addrs::IfAddr::V4(addr) = &iface.addr {
                        Some((gateway, SocketAddr::V4(SocketAddrV4::new(addr.ip, 0))))
                    } else {
                        unreachable!()
                    }
                })
            }
        })
        .next()
        .unwrap()
}

fn get_gateway_and_address_from_options(
    address: Option<String>,
    port: u16,
) -> (Gateway, SocketAddrV4) {
    match address {
        None => {
            let (gateway, mut addr) = find_gateway_and_addr();
            addr.set_port(port);

            let addr = match addr {
                SocketAddr::V4(addr) => addr,
                _ => panic!("No IPv4 given"),
            };

            (gateway, addr)
        }

        Some(addr) => {
            let addr = format!("{}:{}", addr, port).parse().unwrap();

            let gateway = find_gateway_with_bind_addr(addr);

            let addr = match addr {
                SocketAddr::V4(addr) => addr,
                _ => panic!("No IPv4 given"),
            };

            (gateway, addr)
        }
    }
}

fn delete(options: Options) {
    let port = options.port;
    let protocol = options.protocol.into();

    let (gateway, _) = get_gateway_and_address_from_options(options.address, port);

    gateway.remove_port(protocol, port).unwrap_or_else(|e| {
        warn!(
            "The following, non-fatal error appeared while deleting port {}:",
            port
        );
        warn!("{}", e);
    });
}

fn run(options: Options) -> Result<(), Box<dyn Error>> {
    let port = options.port;
    let protocol = options.protocol.into();
    let duration = options.duration;
    let comment = options.comment;

    let (gateway, addr) = get_gateway_and_address_from_options(options.address, port);

    let f = || gateway.add_port(protocol, port, addr, duration, &comment);
    f().or_else(|e| match e {
        AddPortError::PortInUse => {
            debug!("Port already in use. Delete mapping.");
            gateway.remove_port(protocol, port).unwrap();
            debug!("Retry port mapping.");
            f()
        }
        e => Err(e),
    })?;

    Ok(())
}