mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
161 lines
4.4 KiB
Python
161 lines
4.4 KiB
Python
#
|
|
# This file is part of Plinth.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
"""
|
|
Plinth module to configure BIND server
|
|
"""
|
|
|
|
import re
|
|
|
|
from django.urls import reverse_lazy
|
|
from django.utils.translation import ugettext_lazy as _
|
|
from django.core.validators import validate_ipv46_address
|
|
|
|
from plinth import actions
|
|
from plinth import action_utils
|
|
from plinth import cfg
|
|
from plinth import frontpage
|
|
from plinth import service as service_module
|
|
from plinth.views import ServiceView
|
|
|
|
|
|
version = 1
|
|
|
|
depends = ['system']
|
|
|
|
title = _('Domain Name Server \n (BIND)')
|
|
|
|
service = None
|
|
|
|
managed_services = ['bind9']
|
|
|
|
managed_packages = ['bind9', 'bind9utils', 'bind9-doc']
|
|
|
|
description = [
|
|
_('BIND is open source software that enables you to publish your Domain '
|
|
'Name System (DNS) information on the Internet, and to resolve '
|
|
'DNS queries for your users.'),
|
|
|
|
_('BIND is by far the most widely used DNS software on the Internet, '
|
|
'providing a robust and stable platform on top of which organizations'
|
|
' can build distributed computing systems with the knowledge that those '
|
|
'systems are fully compliant with published DNS standards.')
|
|
]
|
|
|
|
CONFIG_FILE = '/etc/bind/named.conf.options'
|
|
|
|
|
|
def init():
|
|
"""Intialize the BIND module."""
|
|
menu = cfg.main_menu.get('system:index')
|
|
menu.add_urlname(title, 'glyphicon-globe', 'bind:index')
|
|
|
|
global service
|
|
setup_helper = globals()['setup_helper']
|
|
if setup_helper.get_state() != 'needs-setup':
|
|
service = service_module.Service(
|
|
managed_services[0], title, ports=['dns'],
|
|
is_external=False,
|
|
)
|
|
|
|
|
|
class BindServiceView(ServiceView):
|
|
service_id = managed_services[0]
|
|
diagnostics_module_name = "bind"
|
|
description = description
|
|
|
|
|
|
def setup(helper, old_version=None):
|
|
"""Install and configure the module."""
|
|
helper.install(managed_packages)
|
|
global service
|
|
if service is None:
|
|
service = service_module.Service(
|
|
managed_services[0], title, ports=['dns'],
|
|
is_external=True,
|
|
enable=enable, disable=disable)
|
|
helper.call('post', service.notify_enabled, None, True)
|
|
helper.call('post', default_config)
|
|
|
|
|
|
def enable():
|
|
"""Enable the module."""
|
|
actions.superuser_run('service', ['enable', managed_services[0]])
|
|
|
|
|
|
def disable():
|
|
"""Disable the module."""
|
|
actions.superuser_run('service', ['disable', managed_services[0]])
|
|
|
|
|
|
def diagnose():
|
|
"""Run diagnostics and return the results."""
|
|
results = []
|
|
|
|
results.append(action_utils.diagnose_port_listening(53, 'tcp6'))
|
|
results.append(action_utils.diagnose_port_listening(53, 'udp6'))
|
|
results.append(action_utils.diagnose_port_listening(53, 'tcp4'))
|
|
results.append(action_utils.diagnose_port_listening(53, 'udp4'))
|
|
|
|
return results
|
|
|
|
|
|
def default_config():
|
|
"""Setp BIND configuration"""
|
|
actions.superuser_run('bind', ['setup'])
|
|
|
|
|
|
def get_default():
|
|
"""Get initial value for forwarding"""
|
|
data = [line.strip() for line in open(CONFIG_FILE, 'r')]
|
|
if '// forwarders {' in data:
|
|
set_forwarding = False
|
|
else:
|
|
set_forwarding = True
|
|
if '// dnssec-enable yes;' in data or '//dnssec-enable yes;' in data:
|
|
enable_dnssec = False
|
|
else:
|
|
enable_dnssec = True
|
|
|
|
flag = 0
|
|
for line in data:
|
|
|
|
if flag == 1:
|
|
if '//' in line:
|
|
dns_set = ''
|
|
else:
|
|
dns_set = re.sub('[;]', '', line)
|
|
flag = 0
|
|
if 'forwarders {' in line:
|
|
flag = 1
|
|
|
|
conf = {
|
|
'set_forwarding': set_forwarding,
|
|
'enable_dnssec': enable_dnssec,
|
|
'dns_set': dns_set
|
|
}
|
|
return conf
|
|
|
|
|
|
def validate(IP):
|
|
for ip in IP.split():
|
|
try :
|
|
validate_ipv46_address(ip)
|
|
except:
|
|
return False
|
|
return True
|