diff options
author | André Twupack <atwupack@mailbox.org> | 2014-07-09 22:07:58 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-13 14:20:18 +0200 |
commit | f44e908c1176c0de7cb0bb5a591760a35149a772 (patch) | |
tree | ffd1756c9ea3092f6cd6203f6172582a84ea8520 | |
parent | fa5615022c7c44c3d1482027b5c56849002361eb (diff) | |
download | rneovim-f44e908c1176c0de7cb0bb5a591760a35149a772.tar.gz rneovim-f44e908c1176c0de7cb0bb5a591760a35149a772.tar.bz2 rneovim-f44e908c1176c0de7cb0bb5a591760a35149a772.zip |
os/server: Fix possible port overflow
- add documentation about port being optional
- parse port into long and check for valid value
-rw-r--r-- | src/nvim/os/server.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/nvim/os/server.c b/src/nvim/os/server.c index e5c21f3aca..9adc867cd0 100644 --- a/src/nvim/os/server.c +++ b/src/nvim/os/server.c @@ -81,10 +81,11 @@ void server_teardown() /// Starts listening on arbitrary tcp/unix addresses specified by /// `endpoint` for API calls. The type of socket used(tcp or unix/pipe) will /// be determined by parsing `endpoint`: If it's a valid tcp address in the -/// 'ip:port' format, then it will be tcp socket, else it will be a unix -/// socket or named pipe. +/// 'ip[:port]' format, then it will be tcp socket. The port is optional +/// and if omitted will default to NEOVIM_DEFAULT_TCP_PORT. Otherwise it will +/// be a unix socket or named pipe. /// -/// @param endpoint Address of the server. Either a 'ip:port' string or an +/// @param endpoint Address of the server. Either a 'ip[:port]' string or an /// arbitrary identifier(trimmed to 256 bytes) for the unix socket or /// named pipe. void server_start(char *endpoint) @@ -126,11 +127,12 @@ void server_start(char *endpoint) if (*ip_end == ':') { // Extract the port - port = strtol(ip_end + 1, NULL, 10); - - if (port == 0 || port > 0xffff) { + long lport = strtol(ip_end + 1, NULL, 10); // NOLINT + if (lport <= 0 || lport > 0xffff) { // Invalid port, treat as named pipe or unix socket server_type = kServerTypePipe; + } else { + port = (int) lport; } } |