|
1
|
|
|
# -*- coding: utf-8 -*- |
|
2
|
|
|
# Copyright (C) 2019 Greenbone Networks GmbH |
|
3
|
|
|
# |
|
4
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later |
|
5
|
|
|
# |
|
6
|
|
|
# This program is free software: you can redistribute it and/or modify |
|
7
|
|
|
# it under the terms of the GNU General Public License as published by |
|
8
|
|
|
# the Free Software Foundation, either version 3 of the License, or |
|
9
|
|
|
# (at your option) any later version. |
|
10
|
|
|
# |
|
11
|
|
|
# This program is distributed in the hope that it will be useful, |
|
12
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
14
|
|
|
# GNU General Public License for more details. |
|
15
|
|
|
# |
|
16
|
|
|
# You should have received a copy of the GNU General Public License |
|
17
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
18
|
|
|
""" |
|
19
|
|
|
Module to store gvm-tools configuration settings |
|
20
|
|
|
""" |
|
21
|
|
|
|
|
22
|
|
|
import configparser |
|
23
|
|
|
import logging |
|
24
|
|
|
|
|
25
|
|
|
from gvm.connections import DEFAULT_UNIX_SOCKET_PATH, DEFAULT_GVM_PORT |
|
26
|
|
|
|
|
27
|
|
|
logger = logging.getLogger(__name__) |
|
28
|
|
|
|
|
29
|
|
|
DEFAULT_SSH_PORT = 22 |
|
30
|
|
|
|
|
31
|
|
|
|
|
32
|
|
|
class Config: |
|
33
|
|
|
def __init__(self): |
|
34
|
|
|
self._config = configparser.ConfigParser(default_section='main') |
|
35
|
|
|
|
|
36
|
|
|
self._config = {} |
|
37
|
|
|
|
|
38
|
|
|
self._config['gmp'] = dict(username='', password='') |
|
39
|
|
|
self._config['ssh'] = dict( |
|
40
|
|
|
username='gmp', password='gmp', port=DEFAULT_SSH_PORT |
|
41
|
|
|
) |
|
42
|
|
|
self._config['unixsocket'] = dict(socketpath=DEFAULT_UNIX_SOCKET_PATH) |
|
43
|
|
|
self._config['tls'] = dict(port=DEFAULT_GVM_PORT) |
|
44
|
|
|
|
|
45
|
|
|
self._defaults = dict() |
|
46
|
|
|
|
|
47
|
|
|
def load(self, filepath): |
|
48
|
|
|
path = filepath.expanduser() |
|
49
|
|
|
|
|
50
|
|
|
config = configparser.ConfigParser(default_section='main') |
|
51
|
|
|
|
|
52
|
|
|
with path.open() as f: |
|
53
|
|
|
config.read_file(f) |
|
54
|
|
|
|
|
55
|
|
|
if 'Auth' in config: |
|
56
|
|
|
logger.warning( |
|
57
|
|
|
"Warning: Loaded config file %s contains deprecated 'Auth' " |
|
58
|
|
|
"section. This section will be ignored in future.", |
|
59
|
|
|
str(filepath), |
|
60
|
|
|
) |
|
61
|
|
|
gmp_username = config.get('Auth', 'gmp_username', fallback='') |
|
62
|
|
|
gmp_password = config.get('Auth', 'gmp_password', fallback='') |
|
63
|
|
|
self._config['gmp']['username'] = gmp_username |
|
64
|
|
|
self._config['gmp']['password'] = gmp_password |
|
65
|
|
|
|
|
66
|
|
|
self._defaults.update(config.defaults()) |
|
67
|
|
|
|
|
68
|
|
|
for section in config.sections(): |
|
69
|
|
|
if section == 'Auth': |
|
70
|
|
|
continue |
|
71
|
|
|
|
|
72
|
|
|
for key, value in config.items(section): |
|
73
|
|
|
self._config.setdefault(section, dict())[key] = value |
|
|
|
|
|
|
74
|
|
|
|
|
75
|
|
|
def defaults(self): |
|
76
|
|
|
return self._defaults |
|
77
|
|
|
|
|
78
|
|
|
def get(self, section, name): |
|
79
|
|
|
if not section in self._config: |
|
80
|
|
|
return None |
|
81
|
|
|
|
|
82
|
|
|
return self._config[section].get(name) |
|
83
|
|
|
|