2017-11-06 15:02:05 +03:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 - 2013 Dan Williams <dcbw@redhat.com> and Red Hat, Inc.
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include "nm-default.h"
|
|
|
|
|
|
|
|
#include "import-export.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
#include "nm-utils/nm-shared-utils.h"
|
|
|
|
|
|
|
|
const char *_nmovpn_test_temp_path = NULL;
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
_arg_is_set (const char *value)
|
|
|
|
{
|
|
|
|
return (value && value[0]) ? value : NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_auto_free_gstring_p (GString **ptr)
|
|
|
|
{
|
|
|
|
if (*ptr)
|
|
|
|
g_string_free (*ptr, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_is_utf8 (const char *str)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (str, FALSE);
|
|
|
|
|
|
|
|
return g_utf8_validate (str, -1, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
__attribute__((__format__ (__printf__, 3, 4)))
|
|
|
|
setting_vpn_add_data_item_v (NMSettingVpn *setting,
|
|
|
|
const char *key,
|
|
|
|
const char *format,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
char buf[256];
|
|
|
|
char *s;
|
|
|
|
int l;
|
|
|
|
va_list ap, ap2;
|
|
|
|
|
|
|
|
g_return_if_fail (NM_IS_SETTING_VPN (setting));
|
|
|
|
g_return_if_fail (key && key[0]);
|
|
|
|
|
|
|
|
/* let's first try with a stack allocated buffer,
|
|
|
|
* it's large enough for most cases. */
|
|
|
|
va_start (ap, format);
|
|
|
|
va_copy (ap2, ap);
|
|
|
|
l = g_vsnprintf (buf, sizeof (buf), format, ap2);
|
|
|
|
va_end (ap2);
|
|
|
|
|
|
|
|
if (l < sizeof (buf) - 1) {
|
|
|
|
va_end (ap);
|
|
|
|
nm_setting_vpn_add_data_item (setting, key, buf);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = g_strdup_vprintf (format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
nm_setting_vpn_add_data_item (setting, key, s);
|
|
|
|
g_free (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setting_vpn_add_data_item_int64 (NMSettingVpn *setting,
|
|
|
|
const char *key,
|
|
|
|
gint64 value)
|
|
|
|
{
|
|
|
|
setting_vpn_add_data_item_v (setting, key, "%"G_GINT64_FORMAT, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
setting_vpn_add_data_item (NMSettingVpn *setting,
|
|
|
|
const char *key,
|
|
|
|
const char *value)
|
|
|
|
{
|
|
|
|
g_return_if_fail (NM_IS_SETTING_VPN (setting));
|
|
|
|
g_return_if_fail (key && key[0]);
|
|
|
|
g_return_if_fail (value && value[0]);
|
|
|
|
g_return_if_fail (_is_utf8 (value));
|
|
|
|
|
|
|
|
nm_setting_vpn_add_data_item (setting, key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
static char
|
|
|
|
_ch_step_1 (const char **str, gsize *len)
|
|
|
|
{
|
|
|
|
char ch;
|
|
|
|
g_assert (str);
|
|
|
|
g_assert (len && *len > 0);
|
|
|
|
|
|
|
|
ch = (*str)[0];
|
|
|
|
|
|
|
|
(*str)++;
|
|
|
|
(*len)--;
|
|
|
|
return ch;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_ch_skip_over_leading_whitespace (const char **str, gsize *len)
|
|
|
|
{
|
|
|
|
while (*len > 0 && g_ascii_isspace ((*str)[0]))
|
|
|
|
_ch_step_1 (str, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_strbuf_append_c (char **buf, gsize *len, char ch)
|
|
|
|
{
|
|
|
|
nm_assert (buf);
|
|
|
|
nm_assert (len);
|
|
|
|
|
|
|
|
g_return_if_fail (*len > 0);
|
|
|
|
|
|
|
|
(*buf)[0] = ch;
|
|
|
|
(*len)--;
|
|
|
|
*buf = &(*buf)[1];
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// split the line into an array of strings
|
2017-11-06 15:02:05 +03:00
|
|
|
static gboolean
|
|
|
|
args_parse_line (const char *line,
|
|
|
|
gsize line_len,
|
|
|
|
const char ***out_p,
|
|
|
|
char **out_error)
|
|
|
|
{
|
|
|
|
gs_unref_array GArray *index = NULL;
|
|
|
|
gs_free char *str_buf_orig = NULL;
|
|
|
|
char *str_buf;
|
|
|
|
gsize str_buf_len;
|
|
|
|
gsize i;
|
|
|
|
const char *line_start = line;
|
|
|
|
char **data;
|
|
|
|
char *pdata;
|
|
|
|
|
|
|
|
/* reimplement openvpn's parse_line(). */
|
|
|
|
|
|
|
|
g_return_val_if_fail (line, FALSE);
|
|
|
|
g_return_val_if_fail (out_p && !*out_p, FALSE);
|
|
|
|
g_return_val_if_fail (out_error && !*out_error, FALSE);
|
|
|
|
|
|
|
|
*out_p = NULL;
|
|
|
|
|
|
|
|
/* we expect no newline during the first line_len chars. */
|
|
|
|
for (i = 0; i < line_len; i++) {
|
|
|
|
if (NM_IN_SET (line[i], '\0', '\n'))
|
|
|
|
g_return_val_if_reached (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the line ends with '\r', drop that right way (covers \r\n). */
|
|
|
|
if (line_len > 0 && line[line_len - 1] == '\r')
|
|
|
|
line_len--;
|
|
|
|
|
|
|
|
/* skip over leading space. */
|
|
|
|
_ch_skip_over_leading_whitespace (&line, &line_len);
|
|
|
|
|
|
|
|
if (line_len == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (NM_IN_SET (line[0], ';', '#')) {
|
|
|
|
/* comment. Note that als openvpn allows for leading spaces
|
|
|
|
* *before* the comment starts */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the maximum required buffer is @line_len+1 characters. We don't produce
|
|
|
|
* *more* characters then given in the input (plus trailing '\0'). */
|
|
|
|
str_buf_len = line_len + 1;
|
|
|
|
str_buf_orig = g_malloc (str_buf_len);
|
|
|
|
str_buf = str_buf_orig;
|
|
|
|
|
|
|
|
index = g_array_new (FALSE, FALSE, sizeof (gsize));
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
char quote, ch0;
|
|
|
|
gssize word_start = line - line_start;
|
|
|
|
gsize index_i;
|
|
|
|
|
|
|
|
index_i = str_buf - str_buf_orig;
|
|
|
|
g_array_append_val (index, index_i);
|
|
|
|
|
|
|
|
switch ((ch0 = _ch_step_1 (&line, &line_len))) {
|
|
|
|
case '"':
|
|
|
|
case '\'':
|
|
|
|
quote = ch0;
|
|
|
|
|
|
|
|
while (line_len > 0 && line[0] != quote) {
|
|
|
|
if (quote == '"' && line[0] == '\\') {
|
|
|
|
_ch_step_1 (&line, &line_len);
|
|
|
|
if (line_len <= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_strbuf_append_c (&str_buf, &str_buf_len, _ch_step_1 (&line, &line_len));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (line_len <= 0) {
|
|
|
|
*out_error = g_strdup_printf (_("unterminated %s at position %lld"),
|
|
|
|
quote == '"' ? _("double quote") : _("single quote"),
|
|
|
|
(long long) word_start);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* openvpn terminates parsing of quoted paramaters after the closing quote.
|
|
|
|
* E.g. "'a'b" gives "a", "b". */
|
|
|
|
_ch_step_1 (&line, &line_len);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* once openvpn encounters a non-quoted word, it doesn't consider quoting
|
|
|
|
* inside the word.
|
|
|
|
* E.g. "a'b'" gives "a'b'". */
|
|
|
|
for (;;) {
|
|
|
|
if (ch0 == '\\') {
|
|
|
|
if (line_len <= 0) {
|
|
|
|
*out_error = g_strdup_printf (_("trailing escaping backslash at position %lld"),
|
|
|
|
(long long) word_start);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
ch0 = _ch_step_1 (&line, &line_len);
|
|
|
|
}
|
|
|
|
_strbuf_append_c (&str_buf, &str_buf_len, ch0);
|
|
|
|
if (line_len <= 0)
|
|
|
|
break;
|
|
|
|
ch0 = _ch_step_1 (&line, &line_len);
|
|
|
|
if (g_ascii_isspace (ch0))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* the current word is complete.*/
|
|
|
|
_strbuf_append_c (&str_buf, &str_buf_len, '\0');
|
|
|
|
_ch_skip_over_leading_whitespace (&line, &line_len);
|
|
|
|
|
|
|
|
if (line_len <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (NM_IN_SET (line[0], ';', '#')) {
|
|
|
|
/* comments are allowed to start at the beginning of the next word. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
str_buf_len = str_buf - str_buf_orig;
|
|
|
|
|
|
|
|
/* pack the result in a strv array */
|
|
|
|
data = g_malloc ((sizeof (const char *) * (index->len + 1)) + str_buf_len);
|
|
|
|
|
|
|
|
pdata = (char *) &data[index->len + 1];
|
|
|
|
memcpy (pdata, str_buf_orig, str_buf_len);
|
|
|
|
|
|
|
|
for (i = 0; i < index->len; i++)
|
|
|
|
data[i] = &pdata[g_array_index (index, gsize, i)];
|
|
|
|
data[i] = NULL;
|
|
|
|
|
|
|
|
*out_p = (const char **) data;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_nmovpn_test_args_parse_line (const char *line,
|
|
|
|
gsize line_len,
|
|
|
|
const char ***out_p,
|
|
|
|
char **out_error)
|
|
|
|
{
|
|
|
|
return args_parse_line (line, line_len, out_p, out_error);
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// return the next line of the content
|
|
|
|
// and adjust the content pointer to start at the line after the current one
|
2017-11-06 15:02:05 +03:00
|
|
|
static gboolean
|
|
|
|
args_next_line (const char **content,
|
|
|
|
gsize *content_len,
|
|
|
|
const char **cur_line,
|
|
|
|
gsize *cur_line_len,
|
|
|
|
const char **cur_line_delimiter)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
gsize l, offset;
|
|
|
|
|
|
|
|
g_return_val_if_fail (content, FALSE);
|
|
|
|
g_return_val_if_fail (content_len, FALSE);
|
|
|
|
g_return_val_if_fail (cur_line, FALSE);
|
|
|
|
g_return_val_if_fail (cur_line_len, FALSE);
|
|
|
|
g_return_val_if_fail (cur_line_delimiter, FALSE);
|
|
|
|
|
|
|
|
l = *content_len;
|
|
|
|
|
|
|
|
if (l <= 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*cur_line = s = *content;
|
|
|
|
|
|
|
|
while (l > 0 && !NM_IN_SET (s[0], '\0', '\n'))
|
|
|
|
_ch_step_1 (&s, &l);
|
|
|
|
|
|
|
|
offset = s - *content;
|
|
|
|
*cur_line_len = offset;
|
|
|
|
|
|
|
|
/* cur_line_delimiter will point to a (static) string
|
|
|
|
* containing the dropped character.
|
|
|
|
* Or NULL if we reached the end of content. */
|
|
|
|
if (l > 0) {
|
2018-02-12 20:06:21 +03:00
|
|
|
if (s[0] == '\0') {
|
2017-11-06 15:02:05 +03:00
|
|
|
*cur_line_delimiter = "\0";
|
2018-02-12 20:06:21 +03:00
|
|
|
} else {
|
2017-11-06 15:02:05 +03:00
|
|
|
*cur_line_delimiter = "\n";
|
2018-02-12 20:06:21 +03:00
|
|
|
}
|
2017-11-06 15:02:05 +03:00
|
|
|
offset++;
|
2018-02-12 20:06:21 +03:00
|
|
|
} else {
|
2017-11-06 15:02:05 +03:00
|
|
|
*cur_line_delimiter = NULL;
|
2018-02-12 20:06:21 +03:00
|
|
|
}
|
2017-11-06 15:02:05 +03:00
|
|
|
|
|
|
|
*content_len -= offset;
|
|
|
|
*content += offset;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// take an array of strings, which is basically the read line split at specific tokens
|
|
|
|
// (here, it's most likely split at each white-space)
|
|
|
|
// "search" for the first index of the equals sign and store that index in the argument 'idx'
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
|
|
|
_parse_common (const char **line, int *idx, char **out_error)
|
|
|
|
{
|
|
|
|
int len = 0;
|
|
|
|
while(line && line[len]){
|
|
|
|
len++;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// TODO fix scenario when we have "KEY=VALUE" and not "KEY = VALUE"
|
2018-02-09 17:05:19 +03:00
|
|
|
|
|
|
|
if(!line[0]){
|
|
|
|
*out_error = g_strdup_printf("Nothing found in the line");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if(!line[1]){
|
|
|
|
*out_error = g_strdup_printf("No value found for setting '%s'", line[0]);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else if(!g_strcmp0("=", line[1])){
|
|
|
|
// we have an equals sign included
|
|
|
|
// KEY = VALUE
|
|
|
|
if(!line[2]){
|
|
|
|
*out_error = g_strdup_printf("Expected line to be of form KEY = VALUE");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*idx = 2;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
// we don't have an equals sign included
|
|
|
|
// KEY VALUE
|
|
|
|
*idx = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse the endpoint (can be just about anything)
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
|
|
|
parse_endpoint(const char **line, char **endpoint, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*endpoint = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// TODO maybe restrict to IPs?
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
*endpoint = g_strdup(line[idx]);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse the local listen port (integer with range [0 - 65535])
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
2018-02-10 00:43:16 +03:00
|
|
|
parse_listen_port(const char **line, guint64 *port, char **out_error)
|
2018-02-09 17:05:19 +03:00
|
|
|
{
|
|
|
|
int idx = 0;
|
2018-02-10 00:43:16 +03:00
|
|
|
char *tmp = NULL;
|
|
|
|
gboolean success = TRUE;
|
2018-02-09 17:05:19 +03:00
|
|
|
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
tmp = g_strdup(line[idx]);
|
|
|
|
if(!g_ascii_string_to_unsigned(tmp, 10, 0, 65535, port, NULL)){
|
|
|
|
*out_error = g_strdup_printf("'%s' is not a valid port assignment!", tmp);
|
|
|
|
*port = -1;
|
|
|
|
success = FALSE;
|
2018-02-09 17:05:19 +03:00
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
g_free(tmp);
|
|
|
|
return success;
|
2018-02-09 17:05:19 +03:00
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse the private key
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
|
|
|
parse_private_key(const char **line, char **key, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*key = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*key = g_strdup(line[idx]);
|
|
|
|
|
|
|
|
// TODO check if base64?
|
|
|
|
// TOOD check length?
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define parse_public_key(line, key, out_error) parse_private_key(line, key, out_error)
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse the pre-shared key
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
|
|
|
parse_preshared_key(const char **line, char **key, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*key = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*key = g_strdup(line[idx]);
|
|
|
|
|
|
|
|
// TODO any checks?
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// check if the string contains a valid IP4 address (also, remove a trailing comma if there is one)
|
2018-02-11 19:29:38 +03:00
|
|
|
static char *
|
|
|
|
_parse_ip4_address(const char *address)
|
2018-02-09 17:05:19 +03:00
|
|
|
{
|
2018-02-11 19:29:38 +03:00
|
|
|
char *ip4 = g_strdup(address);
|
|
|
|
size_t len = strlen(ip4);
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
// if there is a trailing comma, remove it
|
|
|
|
// -- might be, because the config can have an IP4 and IP6
|
|
|
|
if(ip4[len - 1] == ','){
|
|
|
|
ip4[len - 1] = '\0';
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!is_ip4(ip4)){
|
|
|
|
g_free(ip4);
|
|
|
|
ip4 = NULL;
|
2018-02-09 17:05:19 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
return ip4;
|
|
|
|
}
|
2018-02-09 17:05:19 +03:00
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// analogous to the ip4 variant above
|
2018-02-11 19:29:38 +03:00
|
|
|
static char *
|
|
|
|
_parse_ip6_address(const char *address)
|
|
|
|
{
|
|
|
|
char *ip6 = g_strdup(address);
|
|
|
|
size_t len = strlen(ip6);
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
// same as for IP4
|
|
|
|
if(ip6[len - 1] == ','){
|
|
|
|
ip6[len - 1] = '\0';
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
2018-02-09 17:05:19 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!is_ip6(ip6)){
|
|
|
|
g_free(ip6);
|
|
|
|
ip6 = NULL;
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
2018-02-09 17:05:19 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
return ip6;
|
|
|
|
}
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse an IP (4 or 6) address from the line
|
2018-02-11 19:29:38 +03:00
|
|
|
static gboolean
|
|
|
|
parse_dns(const char **line, char **dns, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
char *tmp = NULL;
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*dns = NULL;
|
|
|
|
return FALSE;
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
tmp = _parse_ip4_address(line[idx]);
|
|
|
|
if(!tmp){
|
|
|
|
// if the DNS isn't an IPv4 address, let's try IPv6...
|
|
|
|
tmp = _parse_ip6_address(line[idx]);
|
|
|
|
if(tmp){
|
|
|
|
*dns = tmp;
|
|
|
|
return TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
*out_error = g_strdup_printf("'%s' is not a valid DNS address!", line[idx]);
|
|
|
|
*dns = NULL;
|
|
|
|
return FALSE;
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
*dns = tmp;
|
|
|
|
return TRUE;
|
|
|
|
}
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse an MTU from the line (integer with range [0 - 1500])
|
2018-02-11 19:29:38 +03:00
|
|
|
static gboolean
|
|
|
|
parse_mtu(const char **line, guint64 *mtu, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
char *tmp = NULL;
|
|
|
|
gboolean success = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
return FALSE;
|
2018-02-10 00:43:16 +03:00
|
|
|
}
|
2018-02-11 19:29:38 +03:00
|
|
|
|
|
|
|
tmp = g_strdup(line[idx]);
|
|
|
|
if(!g_ascii_string_to_unsigned(tmp, 10, 0, 1500, mtu, NULL)){
|
|
|
|
*out_error = g_strdup_printf("'%s' is not a valid MTU assignment!", tmp);
|
|
|
|
*mtu = -1;
|
2018-02-10 00:43:16 +03:00
|
|
|
success = FALSE;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
g_free(tmp);
|
2018-02-10 00:43:16 +03:00
|
|
|
return success;
|
2018-02-09 17:05:19 +03:00
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse the line and check if there were any IP4 and IP6 included
|
|
|
|
// (if there are more than just one IP4, the later take precedence; same for IP6)
|
|
|
|
//
|
|
|
|
// ip4_address: either the string that was recognised as an IP4 address or NULL if none was found
|
|
|
|
// ip6_address: pretty much the same, just for IP6
|
2018-02-09 17:05:19 +03:00
|
|
|
static gboolean
|
2018-02-11 19:29:38 +03:00
|
|
|
parse_address(const char **line, char **ip4_address, char **ip6_address, char **out_error)
|
2018-02-09 17:05:19 +03:00
|
|
|
{
|
2018-02-11 19:29:38 +03:00
|
|
|
int idx = 0;
|
|
|
|
char *ip4 = NULL;
|
|
|
|
char *ip6 = NULL;
|
|
|
|
gboolean success = FALSE;
|
2018-02-10 00:43:16 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*ip4_address = NULL;
|
|
|
|
*ip6_address = NULL;
|
2018-02-09 17:05:19 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
while(line && line[idx]){
|
|
|
|
ip4 = _parse_ip4_address(line[idx]);
|
|
|
|
if(ip4){
|
|
|
|
*ip4_address = ip4;
|
|
|
|
idx++;
|
2018-02-10 00:43:16 +03:00
|
|
|
success = TRUE;
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip6 = _parse_ip6_address(line[idx]);
|
|
|
|
if(ip6){
|
|
|
|
*ip6_address = ip6;
|
2018-02-10 00:43:16 +03:00
|
|
|
success = TRUE;
|
2018-02-09 17:05:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!success)
|
|
|
|
{
|
|
|
|
*out_error = g_strdup_printf("Assignment of Addresses was invalid (requires at least one valid IPv4 or IPv6 address)!");
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse IPs (v4 and v6) from a line and save them in a GArray
|
2018-02-10 00:43:16 +03:00
|
|
|
static gboolean
|
|
|
|
parse_allowed_ips(const char **line, GArray **addresses, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
char *ip4 = NULL;
|
|
|
|
char *ip6 = NULL;
|
|
|
|
gboolean success = FALSE;
|
|
|
|
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*addresses = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*addresses = g_array_new(TRUE, TRUE, sizeof(char *));
|
|
|
|
while(line && line[idx]){
|
2018-02-12 20:06:21 +03:00
|
|
|
// check if we have an IP4 or IP6 at our hands and if so,
|
|
|
|
// add them to our array of Allowed Addresses
|
2018-02-10 00:43:16 +03:00
|
|
|
ip4 = _parse_ip4_address(line[idx]);
|
|
|
|
if(ip4){
|
|
|
|
g_array_append_val(*addresses, ip4);
|
|
|
|
success = TRUE;
|
|
|
|
goto ip4next;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip6 = _parse_ip6_address(line[idx]);
|
|
|
|
if(ip6){
|
|
|
|
g_array_append_val(*addresses, ip6);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip4next:
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!success){
|
2018-02-11 19:29:38 +03:00
|
|
|
*out_error = g_strdup_printf("Assignment of Allowed IPs was invalid (requires at least one valid IPv4 or IPv6 address)!");
|
2018-02-10 00:43:16 +03:00
|
|
|
g_array_free(*addresses, TRUE);
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// parse a script: just concatenate the parts of the read line after the equals sign
|
2018-02-10 00:43:16 +03:00
|
|
|
static gboolean
|
|
|
|
parse_script(const char **line, char **script, char **out_error)
|
|
|
|
{
|
|
|
|
int idx = 0;
|
|
|
|
char *tmp = NULL;
|
|
|
|
int len = 0;
|
|
|
|
int idx2 = 0;
|
|
|
|
|
|
|
|
if(!_parse_common(line, &idx, out_error)){
|
|
|
|
*script = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// calculate how much space we are going to need
|
|
|
|
idx2 = idx;
|
|
|
|
while(line && line[idx2]){
|
|
|
|
// one extra character for the space between the commands
|
|
|
|
len += strlen(line[idx2]) + 1;
|
|
|
|
idx2++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// the last extra slot isn't taken by a space, but by a NULL-byte
|
|
|
|
*script = g_malloc(len);
|
|
|
|
tmp = g_stpcpy(*script, "");
|
|
|
|
while(line && line[idx]){
|
|
|
|
tmp = g_stpcpy(tmp, line[idx]);
|
|
|
|
if(line[idx+1]){
|
|
|
|
tmp = g_stpcpy(tmp, " ");
|
|
|
|
}
|
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// create a single string from the contents of a GArray
|
2018-02-10 00:43:16 +03:00
|
|
|
static gchar *
|
|
|
|
concatenate_strings(const GArray *string_array, char *separator)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int len = 0;
|
|
|
|
int sep_len = 0;
|
|
|
|
char *result;
|
|
|
|
char *tmp;
|
|
|
|
|
|
|
|
if(!string_array){
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!separator){
|
|
|
|
separator = ",";
|
|
|
|
}
|
|
|
|
|
|
|
|
// check how much space we are going to need
|
|
|
|
sep_len = strlen(separator);
|
|
|
|
for(i = 0; i < string_array->len; i++){
|
|
|
|
len += strlen(g_array_index(string_array, char *, i));
|
|
|
|
if(i < (string_array->len - 1)){
|
|
|
|
len += sep_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// space for the trailing NULL-byte
|
|
|
|
len += 1;
|
|
|
|
|
|
|
|
// allocate memory and do the appending
|
|
|
|
result = g_malloc(len);
|
|
|
|
tmp = g_stpcpy(result, "");
|
|
|
|
for(i = 0; i < string_array->len; i++){
|
|
|
|
tmp = g_stpcpy(tmp, g_array_index(string_array, char *, i));
|
|
|
|
if(i < (string_array->len - 1)){
|
|
|
|
tmp = g_stpcpy(tmp, separator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2018-02-09 17:05:19 +03:00
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// read a wg-quick .conf file and parse its contents to create a NMConnection from it
|
2017-11-06 15:02:05 +03:00
|
|
|
NMConnection *
|
|
|
|
do_import (const char *path, const char *contents, gsize contents_len, GError **error)
|
|
|
|
{
|
|
|
|
gs_unref_object NMConnection *connection_free = NULL;
|
|
|
|
NMConnection *connection;
|
|
|
|
NMSettingConnection *s_con;
|
|
|
|
NMSettingIPConfig *s_ip4;
|
|
|
|
NMSettingVpn *s_vpn;
|
|
|
|
const char *cur_line, *cur_line_delimiter;
|
|
|
|
gsize cur_line_len;
|
|
|
|
gsize contents_cur_line;
|
2018-02-11 19:29:38 +03:00
|
|
|
gboolean have_endpoint = FALSE, have_allowed_ips = FALSE;
|
|
|
|
gboolean have_pub_key = FALSE, have_priv_key = FALSE;
|
|
|
|
gboolean have_ip4_addr = FALSE, have_ip6_addr = FALSE;
|
|
|
|
gboolean have_listen_port = FALSE;
|
2017-11-06 15:02:05 +03:00
|
|
|
gs_free char *basename = NULL;
|
|
|
|
gs_free char *default_path = NULL;
|
|
|
|
char *tmp, *tmp2;
|
|
|
|
|
|
|
|
g_return_val_if_fail (!error || !*error, NULL);
|
|
|
|
|
|
|
|
connection = nm_simple_connection_new ();
|
|
|
|
connection_free = connection;
|
|
|
|
s_con = NM_SETTING_CONNECTION (nm_setting_connection_new ());
|
|
|
|
nm_connection_add_setting (connection, NM_SETTING (s_con));
|
|
|
|
s_ip4 = NM_SETTING_IP_CONFIG (nm_setting_ip4_config_new ());
|
|
|
|
nm_connection_add_setting (connection, NM_SETTING (s_ip4));
|
|
|
|
g_object_set (s_ip4, NM_SETTING_IP_CONFIG_METHOD, NM_SETTING_IP4_CONFIG_METHOD_AUTO, NULL);
|
|
|
|
s_vpn = NM_SETTING_VPN (nm_setting_vpn_new ());
|
2018-02-12 20:50:57 +03:00
|
|
|
g_object_set (s_vpn, NM_SETTING_VPN_SERVICE_TYPE, NM_VPN_SERVICE_TYPE_WIREGUARD, NULL);
|
2017-11-06 15:02:05 +03:00
|
|
|
nm_connection_add_setting (connection, NM_SETTING (s_vpn));
|
|
|
|
|
|
|
|
/* Get the default path for ca, cert, key file, these files maybe
|
|
|
|
* in same path with the configuration file */
|
|
|
|
if (g_path_is_absolute (path))
|
|
|
|
default_path = g_path_get_dirname (path);
|
|
|
|
else {
|
|
|
|
tmp = g_get_current_dir ();
|
|
|
|
tmp2 = g_path_get_dirname (path);
|
|
|
|
default_path = g_build_filename (tmp, tmp2, NULL);
|
|
|
|
g_free (tmp);
|
|
|
|
g_free (tmp2);
|
|
|
|
}
|
|
|
|
|
|
|
|
basename = g_path_get_basename (path);
|
|
|
|
tmp = strrchr (basename, '.');
|
|
|
|
if (tmp)
|
|
|
|
*tmp = '\0';
|
|
|
|
g_object_set (s_con, NM_SETTING_CONNECTION_ID, basename, NULL);
|
|
|
|
|
|
|
|
if (strncmp (contents, "\xEF\xBB\xBF", 3) == 0) {
|
|
|
|
/* skip over UTF-8 BOM */
|
|
|
|
contents += 3;
|
|
|
|
contents_len -= 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
contents_cur_line = 0;
|
|
|
|
while (args_next_line (&contents,
|
|
|
|
&contents_len,
|
|
|
|
&cur_line,
|
|
|
|
&cur_line_len,
|
|
|
|
&cur_line_delimiter)) {
|
|
|
|
gs_free const char **params = NULL;
|
|
|
|
char *line_error = NULL;
|
|
|
|
|
|
|
|
contents_cur_line++;
|
|
|
|
|
|
|
|
if (!args_parse_line (cur_line, cur_line_len, ¶ms, &line_error))
|
|
|
|
goto handle_line_error;
|
|
|
|
|
|
|
|
if (!params) {
|
|
|
|
/* empty line of comments. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_assert (params[0]);
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
// interface section
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_INTERFACE)){
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s\n", params[0]);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_LISTEN_PORT)){
|
2018-02-10 00:43:16 +03:00
|
|
|
guint64 port = 0;
|
2018-02-09 17:05:19 +03:00
|
|
|
if(!parse_listen_port(params, &port, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
setting_vpn_add_data_item_int64(s_vpn, NM_WG_KEY_LISTEN_PORT, port);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_listen_port = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %ld\n", NMV_WG_TAG_LISTEN_PORT, port);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_ADDRESS)){
|
|
|
|
char *addr4 = NULL;
|
|
|
|
char *addr6 = NULL;
|
|
|
|
if(!parse_address(params, &addr4, &addr6, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
if(addr4 && addr6){
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ADDR_IP4, addr4);
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ADDR_IP6, addr6);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_ip4_addr = TRUE;
|
|
|
|
have_ip6_addr = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s, %s\n", NMV_WG_TAG_ADDRESS, addr4, addr6);
|
|
|
|
}
|
|
|
|
else if(addr4){
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ADDR_IP4, addr4);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_ip4_addr = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_ADDRESS, addr4);
|
|
|
|
}
|
|
|
|
else if(addr6){
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ADDR_IP6, addr6);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_ip6_addr = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_ADDRESS, addr6);
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_DNS)){
|
|
|
|
char *dns = NULL;
|
|
|
|
if(!parse_dns(params, &dns, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_DNS, dns);
|
|
|
|
printf("%s = %s\n", NM_WG_KEY_DNS, dns);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_MTU)){
|
2018-02-12 20:06:21 +03:00
|
|
|
guint64 mtu = 1420;
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!parse_mtu(params, &mtu, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item_int64(s_vpn, NM_WG_KEY_MTU, mtu);
|
2018-02-12 20:06:21 +03:00
|
|
|
printf("%s = %ld\n", NM_WG_KEY_DNS, mtu);
|
2018-02-11 19:29:38 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_PRIVATE_KEY)){
|
|
|
|
char *key = NULL;
|
|
|
|
if(!parse_private_key(params, &key, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_PRIVATE_KEY, key);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_priv_key = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_PRIVATE_KEY, key);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_PRE_UP)){
|
|
|
|
char *script = NULL;
|
|
|
|
if(!parse_script(params, &script, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_PRE_UP, script);
|
|
|
|
printf("%s = %s\n", NMV_WG_TAG_PRE_UP, script);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_POST_UP)){
|
|
|
|
char *script = NULL;
|
2018-02-10 00:43:16 +03:00
|
|
|
if(!parse_script(params, &script, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_POST_UP, script);
|
|
|
|
printf("%s = %s\n", NMV_WG_TAG_POST_UP, script);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_PRE_DOWN)){
|
|
|
|
char *script = NULL;
|
|
|
|
if(!parse_script(params, &script, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_PRE_DOWN, script);
|
|
|
|
printf("%s = %s\n", NMV_WG_TAG_PRE_DOWN, script);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-09 17:05:19 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_POST_DOWN)){
|
2018-02-10 00:43:16 +03:00
|
|
|
char *script = NULL;
|
|
|
|
if(!parse_script(params, &script, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_POST_DOWN, script);
|
|
|
|
printf("%s = %s\n", NMV_WG_TAG_POST_DOWN, script);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// peer section
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_PEER)){
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s\n", params[0]);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(NM_IN_STRSET (params[0], NMV_WG_TAG_ALLOWED_IPS)){
|
2018-02-10 00:43:16 +03:00
|
|
|
GArray *addrs = NULL;
|
|
|
|
int i = 0;
|
|
|
|
int len = 0;
|
|
|
|
char *ip_string = NULL;
|
|
|
|
char *allowed_ips = NULL;
|
|
|
|
|
|
|
|
if(!parse_allowed_ips(params, &addrs, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(i = 0; i < addrs->len; i++){
|
|
|
|
len += strlen(g_array_index(addrs, char *, i)) + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
ip_string = concatenate_strings(addrs, ", ");
|
|
|
|
allowed_ips = concatenate_strings(addrs, ",");
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(addrs->len >= 1){
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ALLOWED_IPS, allowed_ips);
|
|
|
|
have_allowed_ips = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_array_free(addrs, TRUE);
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_ALLOWED_IPS, ip_string);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(NM_IN_STRSET (params[0], NMV_WG_TAG_PUBLIC_KEY)){
|
|
|
|
char *key = NULL;
|
|
|
|
if(!parse_public_key(params, &key, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
2018-02-10 00:43:16 +03:00
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_PUBLIC_KEY, key);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_pub_key = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_PUBLIC_KEY, key);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_ENDPOINT)){
|
|
|
|
char *endpoint;
|
|
|
|
if(!parse_endpoint(params, &endpoint, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:43:16 +03:00
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ENDPOINT, endpoint);
|
2018-02-11 19:29:38 +03:00
|
|
|
have_endpoint = TRUE;
|
2018-02-10 00:43:16 +03:00
|
|
|
printf("%s = %s\n", NMV_WG_TAG_ENDPOINT, endpoint);
|
2018-02-09 17:05:19 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-04-05 14:58:07 +03:00
|
|
|
if (NM_IN_STRSET (params[0], NMV_WG_TAG_PRESHARED_KEY)){
|
|
|
|
char *psk = NULL;
|
|
|
|
if(!parse_preshared_key(params, &psk, &line_error)){
|
|
|
|
goto handle_line_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_PRESHARED_KEY, psk);
|
|
|
|
printf("%s = %s\n", NMV_WG_TAG_PRESHARED_KEY, psk);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
/* currently we ignore any unknown options and skip over them. */
|
2017-11-06 15:02:05 +03:00
|
|
|
continue;
|
|
|
|
|
|
|
|
handle_line_error:
|
|
|
|
g_set_error (error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_INVALID,
|
|
|
|
_("configuration error: %s (line %ld)"),
|
|
|
|
line_error ? : _("unknown or unsupported option"),
|
|
|
|
(long) contents_cur_line);
|
|
|
|
g_free (line_error);
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
// check requirements for interface
|
|
|
|
|
|
|
|
if(!have_priv_key){
|
|
|
|
g_set_error_literal(error, NMV_EDITOR_PLUGIN_ERROR, NMV_EDITOR_PLUGIN_ERROR_FAILED,
|
|
|
|
"The file to import wasn't a valid Wireguard configuration (no local private key)");
|
2017-11-06 15:02:05 +03:00
|
|
|
|
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!have_listen_port){
|
|
|
|
g_set_error_literal(error, NMV_EDITOR_PLUGIN_ERROR, NMV_EDITOR_PLUGIN_ERROR_FAILED,
|
|
|
|
"The file to import wasn't a valid Wireguard configuration (no local listen port)");
|
|
|
|
|
2017-11-06 15:02:05 +03:00
|
|
|
goto out_error;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!have_ip4_addr && !have_ip6_addr){
|
|
|
|
g_set_error_literal(error, NMV_EDITOR_PLUGIN_ERROR, NMV_EDITOR_PLUGIN_ERROR_FAILED,
|
|
|
|
"The file to import wasn't a valid Wireguard configuration (no local IPv4 or IPv6 addresses)");
|
|
|
|
|
|
|
|
goto out_error;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
2018-02-11 19:29:38 +03:00
|
|
|
|
|
|
|
// check requirements for peer
|
|
|
|
|
|
|
|
if(!have_pub_key){
|
|
|
|
g_set_error_literal(error, NMV_EDITOR_PLUGIN_ERROR, NMV_EDITOR_PLUGIN_ERROR_FAILED,
|
|
|
|
"The file to import wasn't a valid Wireguard configuration (no peer public key)");
|
|
|
|
|
|
|
|
goto out_error;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!have_allowed_ips){
|
|
|
|
// if we don't have allowed IPs set: don't fret!
|
|
|
|
setting_vpn_add_data_item(s_vpn, NM_WG_KEY_ALLOWED_IPS, "0.0.0.0/0,::/0");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!have_endpoint){
|
|
|
|
g_set_error_literal(error, NMV_EDITOR_PLUGIN_ERROR, NMV_EDITOR_PLUGIN_ERROR_FAILED,
|
|
|
|
"The file to import wasn't a valid Wireguard configuration (no peer endpoint)");
|
|
|
|
|
|
|
|
goto out_error;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
connection_free = NULL;
|
|
|
|
g_return_val_if_fail (!error || !*error, connection);
|
|
|
|
return connection;
|
|
|
|
|
|
|
|
out_error:
|
|
|
|
g_return_val_if_fail (!error || *error, NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
args_write_line_v (GString *f, gsize nargs, const char **args)
|
|
|
|
{
|
|
|
|
gsize i;
|
|
|
|
gboolean printed = FALSE;
|
|
|
|
|
|
|
|
nm_assert (args);
|
|
|
|
nm_assert (args[0]);
|
|
|
|
|
|
|
|
for (i = 0; i < nargs; i++) {
|
|
|
|
/* NULL is skipped. This is for convenience to specify
|
|
|
|
* optional arguments. */
|
|
|
|
if (!args[i])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (printed)
|
|
|
|
g_string_append_c (f, ' ');
|
|
|
|
printed = TRUE;
|
2018-02-11 19:29:38 +03:00
|
|
|
g_string_append (f, args[i]);
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
g_string_append_c (f, '\n');
|
|
|
|
}
|
|
|
|
#define args_write_line(f, ...) args_write_line_v(f, NM_NARG (__VA_ARGS__), (const char *[]) { __VA_ARGS__ })
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// create a string in our (wg-quick) format from the specified connection
|
|
|
|
// this can be used to export a config file
|
2018-02-12 01:17:22 +03:00
|
|
|
GString *
|
|
|
|
create_config_string (NMConnection *connection, GError **error)
|
2017-11-06 15:02:05 +03:00
|
|
|
{
|
|
|
|
NMSettingConnection *s_con;
|
|
|
|
NMSettingVpn *s_vpn;
|
2018-02-11 19:29:38 +03:00
|
|
|
const char *ip4;
|
|
|
|
const char *ip6;
|
|
|
|
const char *listen_port;
|
|
|
|
const char *private_key;
|
|
|
|
const char *post_up;
|
|
|
|
const char *post_down;
|
|
|
|
const char *public_key;
|
|
|
|
const char *allowed_ips;
|
|
|
|
const char *endpoint;
|
|
|
|
const char *psk;
|
|
|
|
char *value = NULL;
|
|
|
|
char **ip_list, **ip_iter;
|
|
|
|
GArray *ips;
|
2017-11-06 15:02:05 +03:00
|
|
|
nm_auto(_auto_free_gstring_p) GString *f = NULL;
|
|
|
|
|
|
|
|
s_con = nm_connection_get_setting_connection (connection);
|
|
|
|
s_vpn = nm_connection_get_setting_vpn (connection);
|
|
|
|
if (!s_con || !s_vpn) {
|
|
|
|
g_set_error_literal (error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
2018-02-11 19:29:38 +03:00
|
|
|
_("connection is not a valid Wireguard connection"));
|
2017-11-06 15:02:05 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
ip4 = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_ADDR_IP4));
|
|
|
|
ip6 = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_ADDR_IP6));
|
|
|
|
listen_port = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_LISTEN_PORT));
|
|
|
|
private_key = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_PRIVATE_KEY));
|
|
|
|
post_up = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_POST_UP));
|
|
|
|
post_down = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_POST_DOWN));
|
|
|
|
public_key = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_PUBLIC_KEY));
|
|
|
|
allowed_ips = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_ALLOWED_IPS));
|
|
|
|
endpoint = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_ENDPOINT));
|
|
|
|
psk = _arg_is_set(nm_setting_vpn_get_data_item(s_vpn, NM_WG_KEY_PRESHARED_KEY));
|
|
|
|
|
|
|
|
if(!ip4 && !ip6){
|
|
|
|
g_set_error_literal(error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
"Connection was incomplete (missing local address)");
|
2017-11-06 15:02:05 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!listen_port){
|
|
|
|
g_set_error_literal(error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
"Connection was incomplete (missing local listen port)");
|
|
|
|
return NULL;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!private_key){
|
|
|
|
g_set_error_literal(error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
"Connection was incomplete (missing local private key)");
|
|
|
|
return NULL;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!public_key){
|
|
|
|
g_set_error_literal(error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
"Connection was incomplete (missing peer public key)");
|
|
|
|
return NULL;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(!endpoint){
|
|
|
|
g_set_error_literal(error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
"Connection was incomplete (missing endpoint)");
|
|
|
|
return NULL;
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
// if we don't have a limitation on the peer's allowed IPs, we assume that everything is allowed
|
|
|
|
if(!allowed_ips){
|
|
|
|
allowed_ips = "0.0.0.0/0,::/0";
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
f = g_string_sized_new (512);
|
2017-11-06 15:02:05 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
args_write_line (f, NMV_WG_TAG_INTERFACE);
|
|
|
|
args_write_line(f, NMV_WG_TAG_PRIVATE_KEY, "=", private_key);
|
2017-11-06 15:02:05 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(ip4 && ip6){
|
|
|
|
value = g_strdup_printf("%s = %s, %s", NMV_WG_TAG_ADDRESS, ip4, ip6);
|
|
|
|
}
|
|
|
|
else if(ip4){
|
|
|
|
value = g_strdup_printf("%s = %s", NMV_WG_TAG_ADDRESS, ip4);
|
|
|
|
}
|
|
|
|
else if(ip6){
|
|
|
|
value = g_strdup_printf("%s = %s", NMV_WG_TAG_ADDRESS, ip6);
|
|
|
|
}
|
|
|
|
args_write_line(f, value);
|
|
|
|
g_free(value);
|
2017-11-06 15:02:05 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
args_write_line(f, NMV_WG_TAG_LISTEN_PORT, "=", listen_port);
|
2017-11-06 15:02:05 +03:00
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
if(post_up){
|
|
|
|
args_write_line(f, NMV_WG_TAG_POST_UP, "=", post_up);
|
|
|
|
}
|
|
|
|
if(post_down){
|
|
|
|
args_write_line(f, NMV_WG_TAG_POST_DOWN, "=", post_down);
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
args_write_line(f, NMV_WG_TAG_PEER);
|
|
|
|
args_write_line(f, NMV_WG_TAG_PUBLIC_KEY, "=", public_key);
|
|
|
|
args_write_line(f, NMV_WG_TAG_ENDPOINT, "=", endpoint);
|
|
|
|
|
|
|
|
ip_list = g_strsplit_set (allowed_ips, " \t,", 0);
|
|
|
|
ips = g_array_new(TRUE, TRUE, sizeof(char *));
|
|
|
|
for (ip_iter = ip_list; ip_iter && *ip_iter; ip_iter++) {
|
|
|
|
g_array_append_val(ips, *ip_iter);
|
2017-11-06 15:02:05 +03:00
|
|
|
}
|
|
|
|
|
2018-02-11 19:29:38 +03:00
|
|
|
allowed_ips = concatenate_strings(ips, ", ");
|
|
|
|
args_write_line(f, NMV_WG_TAG_ALLOWED_IPS, "=", allowed_ips);
|
|
|
|
g_strfreev (ip_list);
|
|
|
|
g_array_free(ips, TRUE);
|
2017-11-06 15:02:05 +03:00
|
|
|
|
2018-04-05 14:58:07 +03:00
|
|
|
if(psk){
|
|
|
|
args_write_line(f, NMV_WG_TAG_PRESHARED_KEY, "=", psk);
|
|
|
|
}
|
|
|
|
|
2017-11-06 15:02:05 +03:00
|
|
|
return g_steal_pointer (&f);
|
|
|
|
}
|
|
|
|
|
2018-02-12 20:06:21 +03:00
|
|
|
// export the connection's configuration to a file in our (wg-quick) format
|
2017-11-06 15:02:05 +03:00
|
|
|
gboolean
|
|
|
|
do_export (const char *path, NMConnection *connection, GError **error)
|
|
|
|
{
|
|
|
|
nm_auto(_auto_free_gstring_p) GString *f = NULL;
|
|
|
|
gs_free_error GError *local = NULL;
|
|
|
|
|
2018-02-12 01:17:22 +03:00
|
|
|
f = create_config_string (connection, error);
|
2018-02-12 20:06:21 +03:00
|
|
|
if (!f){
|
2017-11-06 15:02:05 +03:00
|
|
|
return FALSE;
|
2018-02-12 20:06:21 +03:00
|
|
|
}
|
2017-11-06 15:02:05 +03:00
|
|
|
|
|
|
|
if (!g_file_set_contents (path, f->str, f->len, &local)) {
|
|
|
|
g_set_error (error,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR,
|
|
|
|
NMV_EDITOR_PLUGIN_ERROR_FILE_NOT_VPN,
|
|
|
|
_("failed to write file: %s"),
|
|
|
|
local->message);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|