/usr/lib/python2.7/dist-packages/dhcpy6/Config.py is in dhcpy6d 0.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 | # encoding: utf8
#
# DHCPy6d DHCPv6 Daemon
#
# Copyright (C) 2009-2014 Henri Wahl <h.wahl@ifw-dresden.de>
#
# 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
import sys
import ConfigParser
import stat
import os.path
import uuid
import time
import shlex
import copy
import platform
import pwd
import grp
import getopt
import re
import ctypes
from Helpers import *
# use ctypes for libc access in GetLibC from Helpers
LIBC = GetLibC()
# needed for boolean options
BOOLPOOL = {"0":False, "1":True, "no":False, "yes":True, "false":False, "true":True, False:False, True:True, "on":True, "off":False}
# whitespace for options with more than one value
WHITESPACE = " ,"
# default usage text - to be extended
USAGE = """
dhcpy6d - DHCPv6 server
Usage: dhcpy6d --config <file> [--user <user>] [--group <group>] [--duid <duid>] [--really-do-it <yes>|<no>]
dhcpy6d --generate-duid
See manpage dhcpy6d(8) for details.
"""
def GenerateDUID():
return "00010001%08x%012x" % (time.time(), uuid.getnode())
class Config(object):
"""
general settings
"""
def __init__(self):
"""
define defaults
"""
# default settings
# Server cfg.INTERFACE + addresses
self.INTERFACE = "eth0"
self.MCAST = "ff02::1:2"
self.PORT = "547"
self.ADDRESS = "2001:db8::1"
# effective user and group - will have to be set mainly by distribution package
self.USER = "root"
self.GROUP = "root"
# lets make the water turn black... or build a shiny server DUID
# in case someone will ever debug something here: Wireshark shows
# year 2042 even if it is 2012 - time itself is OK
self.SERVERDUID = "00010001%08x%012x" % (time.time(), uuid.getnode())
self.NAMESERVER = ""
# domain for FQDN hostnames
self.DOMAIN = "domain"
# domain search list for option 24, according to RFC 3646
# defaults to DOMAIN
self.DOMAIN_SEARCH_LIST = ""
# IA_NA Options
# Default preferred lifetime for addresses
self.PREFERRED_LIFETIME = "5400"
# Default valid lifetime for addresses
self.VALID_LIFETIME = "7200"
# T1 RENEW
self.T1 = "2700"
# T2 REBIND
self.T2 = "4050"
# Server Preference
self.SERVER_PREFERENCE = "255"
# SNTP SERVERS Option 31
self.SNTP_SERVERS = [ self.ADDRESS ]
# INFORMATION REFRESH TIME option 32 for option 11 (INFORMATION REQUEST)
# see RFC http://tools.ietf.org/html/rfc4242
self.INFORMATION_REFRESH_TIME = "6000"
# config type
# one of file, mysql, sqlite or none
self.STORE_CONFIG = "none"
# one of mysql or sqlite
self.STORE_VOLATILE = "sqlite"
# file for client information
self.STORE_FILE_CONFIG = "clients.conf"
# DB data
self.STORE_MYSQL_HOST = "localhost"
self.STORE_MYSQL_DB = "dhcpy6d"
self.STORE_MYSQL_USER = "user"
self.STORE_MYSQL_PASSWORD = "password"
self.STORE_SQLITE_CONFIG = "config.sqlite"
self.STORE_SQLITE_VOLATILE = "volatile.sqlite"
# whether MAC-LLIP pairs should be stored forever or retrieved freshly if needed
self.CACHE_MAC_LLIP = "False"
# DNS Update settings
self.DNS_UPDATE = "False"
self.DNS_UPDATE_NAMESERVER = "::1"
self.DNS_TTL = 86400
self.DNS_RNDC_KEY = "rndc-key"
self.DNS_RNDC_SECRET = "0000000000000000000000000000000000000000000000000000000000000"
# DNS RFC 4704 client DNS wishes
# use client supplied hostname
self.DNS_USE_CLIENT_HOSTNAME = "False"
# ignore client ideas about DNS (if at all, what name to use, self-updating...)
self.DNS_IGNORE_CLIENT = "True"
# Log ot not
self.LOG = "False"
# Log level
self.LOG_LEVEL = "INFO"
# Log on console
self.LOG_CONSOLE = "False"
# Logfile
self.LOG_FILE = ""
# Log to syslog
self.LOG_SYSLOG = "False"
# Syslog facility
self.LOG_SYSLOG_FACILITY = "daemon"
# Local syslog socket or server:port
if platform.system() in ["Linux", "OpenBSD"]:
self.LOG_SYSLOG_DESTINATION = "/dev/log"
else:
self.LOG_SYSLOG_DESTINATION = "/var/run/log"
# Log newly found MAC addresses - if CACHE_MAC_LLIP is false this might be way too much
self.LOG_MAC_LLIP = "False"
# some 128 bits
self.AUTHENTICATION_INFORMATION = "00000000000000000000000000000000"
# for debugging - if False nothing is done
self.REALLY_DO_IT = "True"
# interval for TidyUp thread - time to sleep in TidyUpThread
self.CLEANING_INTERVAL = 5
# Address and class schemes
self.ADDRESSES = dict()
self.CLASSES = dict()
self.IDENTIFICATION = "mac"
self.IDENTIFICATION_MODE = "match_all"
# regexp filters for hostnames etc.
self.FILTERS = {"mac":[], "duid":[], "hostname":[]}
# define a fallback default class and address scheme
self.ADDRESSES["default"] = ConfigAddress(ia_type="na",
prefix_length="64",
category="mac",
pattern="fdef::$mac$",
aclass="default",
atype="default",
prototype="fdef0000000000000000XXXXXXXXXXXX")
self.CLASSES["default"] = Class()
self.CLASSES["default"].ADDRESSES.append("default")
# define dummy address scheme for fixed addresses
# pattern and prototype are not really needed as this
# addresses are fixed
self.ADDRESSES["fixed"] = ConfigAddress(ia_type="na",
prefix_length="64",
category="fixed",
pattern="fdef0000000000000000000000000001",
aclass="default",
atype="fixed",
prototype="fdef0000000000000000000000000000")
# config file from command line
# default config file and cli values
configfile = self.cli_options = self.cli_user = self.cli_group = self.cli_duid = self.cli_really_do_it = None
# get multiple options
try:
self.cli_options, cli_remains = getopt.gnu_getopt(sys.argv[1:], "c:g:u:d:Gr:",
["config=",
"user=",
"group=",
"duid=",
"generate-duid",
"really-do-it="])
for opt, arg in self.cli_options:
if opt in ("-c", "--config"):
configfile = arg
if opt in ("-g", "--group"):
self.cli_group = arg
if opt in ("-u", "--user"):
self.cli_user = arg
if opt in ("-d", "--duid"):
self.cli_duid = arg
if opt in ("-r", "--really-do-it"):
self.cli_really_do_it = arg
if opt in ("-G", "--generate-duid"):
print GenerateDUID()
sys.exit(0)
except getopt.GetoptError, err:
print err
print USAGE
sys.exit(1)
if configfile == None:
ErrorExit("No config file given - please use --config <config.file>")
if os.path.exists(configfile):
if not (os.path.isfile(configfile) or
os.path.islink(configfile)):
ErrorExit("Configuration file '%s' is no file or link." % (configfile))
else:
ErrorExit("Configuration file '%s' does not exist." % (configfile))
# read config at once
self.ReadConfig(configfile)
def ReadConfig(self, configfile):
"""
read configuration from file, should work with included files too - at least this is the plan
"""
# instantiate Configparser
config = ConfigParser.ConfigParser()
config.read(configfile)
# whyever sections classes get overwritten sometimes and so some configs had been missing
# so create classes and addresses here
for section in config.sections():
if section.startswith("class_"):
self.CLASSES[section.split("class_")[1]] = Class(name=section.split("class_")[1].strip())
if section.startswith("address_"):
self.ADDRESSES[section.split("address_")[1].strip()] = ConfigAddress()
for section in config.sections():
# go through all items
for item in config.items(section):
if section.upper() == "DHCPY6D":
# check if keyword is known - if not, exit
if not item[0].upper() in self.__dict__:
ErrorExit("Keyword '%s' in section '[%s]' of configuration file '%s' is unknown." % (item[0], section, configfile))
# ConfigParser seems to be not case sensitive so settings get normalized
object.__setattr__(self, item[0].upper(), str(item[1]).strip())
else:
# global address schemes
if section.startswith("address_"):
# check if keyword is known - if not, exit
if not item[0].upper() in self.ADDRESSES[section.split("address_")[1]].__dict__:
ErrorExit("Keyword '%s' in section '[%s]' of configuration file '%s' is unknown." % (item[0], section, configfile))
self.ADDRESSES[section.split("address_")[1]].__setattr__(item[0].upper(), str(item[1]).strip())
# global classes with their addresses
elif section.startswith("class_"):
# check if keyword is known - if not, exit
if not item[0].upper() in self.CLASSES[section.split("class_")[1]].__dict__:
ErrorExit("Keyword '%s' in section '[%s]' of configuration file '%s' is unknown." % (item[0], section, configfile))
if item[0].upper() == "ADDRESSES":
# strip whitespace and separators of addresses
lex = shlex.shlex(item[1])
lex.whitespace = WHITESPACE
lex.wordchars += ":."
for address in lex:
if len(address) > 0:
self.CLASSES[section.split("class_")[1]].ADDRESSES.append(address)
elif item[0].upper() == "INTERFACE":
# strip whitespace and separators of interfaces
lex = shlex.shlex(item[1])
lex.whitespace = WHITESPACE
lex.wordchars += ":."
for interface in lex:
if not interface in self.INTERFACE:
ErrorExit("Interface '%s' used in section '[%s]' of configuration file '%s' is not defined in general settings." % (interface, section, configfile))
else:
self.CLASSES[section.split("class_")[1]].__setattr__(item[0].upper(), str(item[1]).strip())
# The next paragraphs contain finetuning
self.IDENTIFICATION = ListifyOption(self.IDENTIFICATION)
# get interfaces as list
self.INTERFACE = ListifyOption(self.INTERFACE)
# create default classes for each interface - if not defined
# derive from default "default" class
for i in self.INTERFACE:
if not "default_" + i in self.CLASSES:
self.CLASSES["default_" + i] = copy.copy(self.CLASSES["default"])
self.CLASSES["default_" + i].NAME = "default_" + i
self.CLASSES["default_" + i].INTERFACE = i
# lower storage
self.STORE_CONFIG = self.STORE_CONFIG.lower()
self.STORE_VOLATILE = self.STORE_VOLATILE.lower()
# boolize none-config-store
if self.STORE_CONFIG.lower() == "none":
self.STORE_CONFIG = False
# if no domain search list has been given use DOMAIN
if len(self.DOMAIN_SEARCH_LIST) == 0:
self.DOMAIN_SEARCH_LIST = self.DOMAIN
# domain search list has to be a list
self.DOMAIN_SEARCH_LIST = ListifyOption(self.DOMAIN_SEARCH_LIST)
# get nameservers as list
if len(self.NAMESERVER) > 0:
self.NAMESERVER = ListifyOption(self.NAMESERVER)
# convert to boolean value
self.DNS_UPDATE = BOOLPOOL[self.DNS_UPDATE.lower()]
self.DNS_USE_CLIENT_HOSTNAME = BOOLPOOL[self.DNS_USE_CLIENT_HOSTNAME.lower()]
self.DNS_IGNORE_CLIENT = BOOLPOOL[self.DNS_IGNORE_CLIENT.lower()]
self.REALLY_DO_IT = BOOLPOOL[self.REALLY_DO_IT.lower()]
self.LOG = BOOLPOOL[self.LOG.lower()]
self.LOG_CONSOLE = BOOLPOOL[self.LOG_CONSOLE.lower()]
self.LOG_LEVEL = self.LOG_LEVEL.upper()
self.LOG_SYSLOG = BOOLPOOL[self.LOG_SYSLOG.lower()]
self.CACHE_MAC_LLIP = BOOLPOOL[self.CACHE_MAC_LLIP.lower()]
self.LOG_MAC_LLIP= BOOLPOOL[self.LOG_MAC_LLIP.lower()]
self.LOG_SYSLOG_FACILITY = self.LOG_SYSLOG_FACILITY.upper()
# index of classes which add some identification rules etc.
for c in self.CLASSES.values():
if c.FILTER_MAC != "": self.FILTERS["mac"].append(c)
if c.FILTER_DUID != "": self.FILTERS["duid"].append(c)
if c.FILTER_HOSTNAME != "": self.FILTERS["hostname"].append(c)
if c.NAMESERVER != "": c.NAMESERVER = ListifyOption(c.NAMESERVER)
if c.INTERFACE != "":
c.INTERFACE = ListifyOption(c.INTERFACE)
else:
# use general setting if none specified
c.INTERFACE = self.INTERFACE
# use default T1 and T2 if not defined
if c.T1 == 0: c.T1 = self.T1
if c.T2 == 0: c.T2 = self.T2
# set type properties for addresses
for a in self.ADDRESSES:
# name for address, important for leases db
self.ADDRESSES[a].TYPE = a
if self.ADDRESSES[a].VALID_LIFETIME == 0: self.ADDRESSES[a].VALID_LIFETIME = self.VALID_LIFETIME
if self.ADDRESSES[a].PREFERRED_LIFETIME == 0: self.ADDRESSES[a].PREFERRED_LIFETIME = self.PREFERRED_LIFETIME
# normalize ranges
self.ADDRESSES[a].RANGE = self.ADDRESSES[a].RANGE.lower()
# add prototype for later fast validity comparison of rebinding leases
# also use as proof of validity of address patterns
self.ADDRESSES[a]._build_prototype()
# convert boolean string to boolean value
self.ADDRESSES[a].DNS_UPDATE = BOOLPOOL[self.ADDRESSES[a].DNS_UPDATE]
if self.ADDRESSES[a].DNS_ZONE == "": self.ADDRESSES[a].DNS_ZONE = self.DOMAIN
if self.ADDRESSES[a].DNS_TTL == "0": self.ADDRESSES[a].DNS_TTL = self.DNS_TTL
# check if some options are set by cli options
if not self.cli_user == None:
self.USER = self.cli_user
if not self.cli_group == None:
self.GROUP = self.cli_group
if not self.cli_duid == None:
self.SERVERDUID = self.cli_duid
if not self.cli_really_do_it == None:
self.REALLY_DO_IT = BOOLPOOL[self.cli_really_do_it.lower()]
# check config
msg_prefix = "General configuration:"
# check user and group
try:
pwd.getpwnam(self.USER)
except:
ErrorExit("%s User '%s' does not exist" % (msg_prefix, self.USER))
try:
grp.getgrnam(self.GROUP)
except:
ErrorExit("%s Group '%s' does not exist" % (msg_prefix, self.GROUP))
# check interface
for i in self.INTERFACE:
# also accept Linux VLAN and other definitions but interface must exist
if LIBC.if_nametoindex(i) == 0 or not re.match("^[a-z0-9_:%-]*$", i, re.IGNORECASE):
ErrorExit("%s Interface '%s' is invalid." % (msg_prefix, i))
# check multicast address
try:
DecompressIP6(self.MCAST)
except Exception, err:
ErrorExit("%s Multicast address '%s' is invalid." % (msg_prefix, err))
if not self.MCAST.lower().startswith("ff"):
ErrorExit("Multicast address '%s' is invalid." % (msg_prefix))
# check DHCPv6 port
if not self.PORT.isdigit():
ErrorExit("%s Port '%s' is invalid" % (msg_prefix, self.PORT))
elif not 0 < int(self.PORT) <= 65535:
ErrorExit("%s Port '%s' is invalid" % (msg_prefix, self.PORT))
# check server's address
try:
DecompressIP6(self.ADDRESS)
except Exception, err:
ErrorExit("%s Server address '%s' is invalid." % (msg_prefix, err))
# check server duid
if not self.SERVERDUID.isalnum():
ErrorExit("%s Server DUID '%s' must be alphanumeric." % (msg_prefix, self.SERVERDUID))
# check nameserver to be given to client
for nameserver in self.NAMESERVER:
try:
DecompressIP6(nameserver)
except Exception, err:
ErrorExit("%s Name server address '%s' is invalid." % (msg_prefix, err))
# partly check of domain name validity
if not re.match("^[a-z0-9.-]*$", self.DOMAIN, re.IGNORECASE):
ErrorExit("%s Domain name '%s' is invalid." % (msg_prefix, self.DOMAIN))
# partly check of domain name validity
if not self.DOMAIN.lower()[0].isalpha() or \
not self.DOMAIN.lower()[-1].isalpha():
ErrorExit("%s Domain name '%s' is invalid." % (msg_prefix, self.DOMAIN))
# check domain search list domains
for d in self.DOMAIN_SEARCH_LIST:
# partly check of domain name validity
if not re.match("^[a-z0-9.-]*$", d, re.IGNORECASE):
ErrorExit("%s Domain search list domain name '%s' is invalid." % (msg_prefix, d))
# partly check of domain name validity
if not d.lower()[0].isalpha() or \
not d.lower()[-1].isalpha():
ErrorExit("%s Domain search list domain name '%s' is invalid." % (msg_prefix, d))
# check if valid lifetime is a number
if not self.VALID_LIFETIME.isdigit():
ErrorExit("%s Valid lifetime '%s' is invalid." % (msg_prefix, self.VALID_LIFETIME))
# check if preferred lifetime is a number
if not self.PREFERRED_LIFETIME.isdigit():
ErrorExit("%s Preferred lifetime '%s' is invalid." % (msg_prefix, self.PREFERRED_LIFETIME))
# check if valid lifetime is longer than preferred lifetime
if not int(self.VALID_LIFETIME) > int(self.PREFERRED_LIFETIME):
ErrorExit("%s Valid lifetime '%s' is shorter than preferred lifetime '%s' and thus invalid." %\
(msg_prefix, self.VALID_LIFETIME, self.PREFERRED_LIFETIME))
# check if T1 is a number
if not self.T1.isdigit():
ErrorExit("%s T1 '%s' is invalid." % (msg_prefix, self.T1))
# check if T2 is a number
if not self.T2.isdigit():
ErrorExit("%s T2 '%s' is invalid." % (msg_prefix, self.T2))
# check T2 is not smaller than T1
if not int(self.T2) >= int(self.T1):
ErrorExit("%s T2 '%s' is shorter than T1 '%s' and thus invalid." %\
(msg_prefix, self.T2, self.T1))
# check if T1 <= T2 <= PREFERRED_LIFETIME <= VALID_LIFETIME
if not (int(self.T1) <= int(self.T2) <= int(self.PREFERRED_LIFETIME) <= int(self.VALID_LIFETIME)):
ErrorExit("%s Time intervals T1 '%s' <= T2 '%s' <= preferred_lifetime '%s' <= valid_lifetime '%s' are wrong." %\
(msg_prefix, self.T1, self.T2, self.PREFERRED_LIFETIME, self.VALID_LIFETIME))
# check server preference
if not self.SERVER_PREFERENCE.isdigit():
ErrorExit("%s Server preference '%s' is invalid." % (msg_prefix, self.SERVER_PREFERENCE))
elif not 0 <= int(self.SERVER_PREFERENCE) <= 255:
ErrorExit("Server preference '%s' is invalid" % (self.SERVER_PREFERENCE))
# check information refresh time
if not self.INFORMATION_REFRESH_TIME.isdigit():
ErrorExit("%s Information refresh time '%s' is invalid." % (msg_prefix, self.INFORMATION_REFRESH_TIME))
elif not 0 < int(self.INFORMATION_REFRESH_TIME):
ErrorExit("%s Information refresh time preference '%s' is pretty short." % (msg_prefix, self.INFORMATION_REFRESH_TIME))
# check validity of configuration source
if not self.STORE_CONFIG in ["mysql", "sqlite", "file", False]:
ErrorExit("%s Unknown config storage type '%s' is invalid." % (msg_prefix, self.STORAGE))
# check which type of storage to use for leases
if not self.STORE_VOLATILE in ["mysql", "sqlite"]:
ErrorExit("%s Unknown volatile storage type '%s' is invalid." % (msg_prefix, self.VOLATILE))
# check validity of config file
if self.STORE_CONFIG == "file":
if os.path.exists(self.STORE_FILE_CONFIG):
if not (os.path.isfile(self.STORE_FILE_CONFIG) or
os.path.islink(self.STORE_FILE_CONFIG)):
ErrorExit("%s Config file '%s' is no file or link." % (msg_prefix, self.STORE_FILE_CONFIG))
else:
ErrorExit("%s Config file '%s' does not exist." % (msg_prefix, self.STORE_FILE_CONFIG))
# check validity of config db sqlite file
if self.STORE_CONFIG == "sqlite":
if os.path.exists(self.STORE_SQLITE_CONFIG):
if not (os.path.isfile(self.STORE_SQLITE_CONFIG) or
os.path.islink(self.STORE_SQLITE_CONFIG)):
ErrorExit("%s SQLite file '%s' is no file or link." % (msg_prefix, self.STORE_SQLITE_CONFIG))
else:
ErrorExit("%s SQLite file '%s' does not exist." % (msg_prefix, self.STORE_SQLITE_CONFIG))
# check validity of volatile db sqlite file
if self.STORE_VOLATILE == "sqlite":
if os.path.exists(self.STORE_SQLITE_VOLATILE):
if not (os.path.isfile(self.STORE_SQLITE_VOLATILE) or
os.path.islink(self.STORE_SQLITE_VOLATILE)):
ErrorExit("%s SQLite file '%s' is no file or link." % (msg_prefix, self.STORE_SQLITE_VOLATILE))
else:
ErrorExit("%s SQLite file '%s' does not exist." % (msg_prefix, self.STORE_SQLITE_VOLATILE))
# check log validity
if self.LOG:
if self.LOG_FILE != "":
if os.path.exists(self.LOG_FILE):
if not (os.path.isfile(self.LOG_FILE) or
os.path.islink(self.LOG_FILE)):
ErrorExit("%s Logfile '%s' is no file or link." % (msg_prefix, self.LOG_FILE))
else:
ErrorExit("%s Logfile '%s' does not exist." % (msg_prefix, self.LOG_FILE))
# check ownership of logfile
stat_result = os.stat(self.LOG_FILE)
if not stat_result.st_uid == pwd.getpwnam(self.USER).pw_uid:
ErrorExit("%s User %s is not owner of logfile '%s'." % (msg_prefix, self.USER, self.LOG_FILE))
if not stat_result.st_gid == grp.getgrnam(self.GROUP).gr_gid:
ErrorExit("%s Group %s is not owner of logfile '%s'." % (msg_prefix, self.GROUP, self.LOG_FILE))
else:
ErrorExit("%s No logfile configured." % (msg_prefix))
if not self.LOG_LEVEL in ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]:
ErrorExit("Log level %s is invalid" % (self.LOG_LEVEL))
if self.LOG_SYSLOG:
if not self.LOG_SYSLOG_FACILITY in ["KERN", "USER", "MAIL", "DAEMON", "AUTH",
"LPR", "NEWS", "UUCP", "CRON", "SYSLOG",
"LOCAL0", "LOCAL1", "LOCAL2", "LOCAL3",
"LOCAL4", "LOCAL5", "LOCAL6", "LOCAL7"]:
ErrorExit("%s Syslog facility '%s' is invalid." % (msg_prefix, self.LOG_SYSLOG_FACILITY))
if self.LOG_SYSLOG_DESTINATION.startswith("/"):
stat_result = os.stat(self.LOG_SYSLOG_DESTINATION)
if not stat.S_ISSOCK(stat_result.st_mode):
ErrorExit("%s Syslog destination '%s' is no socket." % (msg_prefix, self.LOG_SYSLOG_DESTINATION))
elif self.LOG_SYSLOG_DESTINATION.count(":") > 0:
if self.LOG_SYSLOG_DESTINATION.count(":") > 1:
ErrorExit("%s Syslog destination '%s' is no valid host:port destination." % (msg_prefix, self.LOG_SYSLOG_DESTINATION))
# check authentification information
if not self.AUTHENTICATION_INFORMATION.isalnum():
ErrorExit("%s Authentification information '%s' must be alphanumeric." % (msg_prefix, self.AUTHENTICATION_INFORMATION))
# check validity of identification attributes
for i in self.IDENTIFICATION:
if not i in ["mac", "hostname", "duid"]:
ErrorExit("%s Identification must consist of 'mac', 'hostname' and/or 'duid'." % (msg_prefix))
# check validity of identification mode
if not self.IDENTIFICATION_MODE.strip() in ["match_all", "match_some"]:
ErrorExit("%s Identification mode must be one of 'match_all' or 'macht_some'." % (msg_prefix))
# cruise through classes
# more checks to come...
for c in self.CLASSES:
msg_prefix = "Class '%s':" % (c)
if not self.CLASSES[c].ANSWER in ["normal", "noaddress", "none"]:
ErrorExit("%s answer type must be one of 'normal', 'noaddress' and 'none'." % (msg_prefix))
# check interface
for i in self.CLASSES[c].INTERFACE:
# also accept Linux VLAN and other definitions but interface must exist
if LIBC.if_nametoindex(i) == 0 or not re.match("^[a-z0-9_:%-]*$", i, re.IGNORECASE):
ErrorExit("%s Interface '%s' is invalid." % (msg_prefix, i))
# check nameserver to be given to client
for nameserver in self.CLASSES[c].NAMESERVER:
try:
DecompressIP6(nameserver)
except Exception, err:
ErrorExit("%s Name server address '%s' is invalid." % (msg_prefix, err))
# check if T1 is a number
if not self.CLASSES[c].T1.isdigit():
ErrorExit("%s T1 '%s' is invalid." % (msg_prefix, self.CLASSES[c].T1))
# check if T2 is a number
if not self.CLASSES[c].T2.isdigit():
ErrorExit("%s T2 '%s' is invalid." % (msg_prefix, self.CLASSES[c].T2))
# check T2 is not smaller than T1
if not int(self.CLASSES[c].T2) >= int(self.CLASSES[c].T1):
ErrorExit("%s T2 '%s' is shorter than T1 '%s' and thus invalid." %\
(msg_prefix, self.CLASSES[c].T2, self.CLASSES[c].T1))
# check every single address of a class
for a in self.CLASSES[c].ADDRESSES:
msg_prefix = "Class '%s' Address type '%s':" % (c, a)
# test if used addresses are defined
if not a in self.ADDRESSES:
ErrorExit("%s Address type '%s' is not defined." % (msg_prefix, a))
# test validity of category
if not self.ADDRESSES[a].CATEGORY.strip() in ["fixed", "range", "random", "mac", "id"]:
ErrorExit("%s Category '%s' is invalid. Category must be one of 'fixed', 'range', 'random', 'mac' and 'id'." % (msg_prefix, self.ADDRESSES[a].CATEGORY))
# test numberness and length of prefix
if not self.ADDRESSES[a].PREFIX_LENGTH.strip().isdigit():
ErrorExit("%s Prefix length '%s' is not a number." % (msg_prefix, self.ADDRESSES[a].PREFIX_LENGTH.strip()))
elif not 0 <= int(self.ADDRESSES[a].PREFIX_LENGTH) <= 128:
ErrorExit("%s Prefix length '%s' is out of range." % (msg_prefix, self.ADDRESSES[a].PREFIX_LENGTH.strip()))
# test validity of pattern - has its own error output
self.ADDRESSES[a]._build_prototype()
# test existence of category specific variable in pattern
if self.ADDRESSES[a].CATEGORY == "range":
if not 0 < self.ADDRESSES[a].PATTERN.count("$range$") < 2:
ErrorExit("%s Pattern '%s' contains wrong number of '$range$' variables for category 'range'." %\
(msg_prefix, self.ADDRESSES[a].PATTERN.strip()))
elif not self.ADDRESSES[a].PATTERN.endswith("$range$"):
ErrorExit("%s Pattern '%s' must end with '$range$' variable for category 'range'." %\
(msg_prefix, self.ADDRESSES[a].PATTERN.strip()))
if self.ADDRESSES[a].CATEGORY == "mac":
if not 0 < self.ADDRESSES[a].PATTERN.count("$mac$") < 2:
ErrorExit("%s Pattern '%s' contains wrong number of '$mac$' variables for category 'mac'." %\
(msg_prefix, self.ADDRESSES[a].PATTERN.strip()))
if self.ADDRESSES[a].CATEGORY == "id":
if not self.ADDRESSES[a].PATTERN.count("$id$") == 1:
ErrorExit("%s Pattern '%s' contains wrong number of '$id$' variables for category 'id'." %\
(msg_prefix, self.ADDRESSES[a].PATTERN.strip()))
if self.ADDRESSES[a].CATEGORY == "random":
if not self.ADDRESSES[a].PATTERN.count("$random64$") == 1:
ErrorExit("%s Pattern '%s' contains wrong number of '$random64$' variables for category 'random'." %\
(msg_prefix, self.ADDRESSES[a].PATTERN.strip()))
# check ia_type
if not self.ADDRESSES[a].IA_TYPE.strip().lower() in ["na", "ta"]:
ErrorExit("%s: IA type '%s' must be one of 'na' or 'ta'." % (msg_prefix, self.ADDRESSES[a].IA_TYPE.strip()))
# check if valid lifetime is a number
if not self.ADDRESSES[a].VALID_LIFETIME.isdigit():
ErrorExit("%s Valid lifetime '%s' is invalid." % (msg_prefix, self.ADDRESSES[a].VALID_LIFETIME))
# check if preferred lifetime is a number
if not self.ADDRESSES[a].PREFERRED_LIFETIME.isdigit():
ErrorExit("%s Preferred lifetime '%s' is invalid." % (msg_prefix, self.ADDRESSES[a].PREFERRED_LIFETIME))
# check if valid lifetime is longer than preferred lifetime
if not int(self.ADDRESSES[a].VALID_LIFETIME) >= int(self.ADDRESSES[a].PREFERRED_LIFETIME):
ErrorExit("%s Valid lifetime '%s' is shorter than preferred lifetime '%s' and thus invalid." %\
(msg_prefix, self.ADDRESSES[a].VALID_LIFETIME, self.ADDRESSES[a].PREFERRED_LIFETIME))
# check if T1 <= T2 <= PREFERRED_LIFETIME <= VALID_LIFETIME
if not (int(self.CLASSES[c].T1) <= int(self.CLASSES[c].T2) <=\
int(self.ADDRESSES[a].PREFERRED_LIFETIME) <= int(self.ADDRESSES[a].VALID_LIFETIME)):
ErrorExit("%s Time intervals T1 '%s' <= T2 '%s' <= preferred_lifetime '%s' <= valid_lifetime '%s' are wrong." %\
(msg_prefix, self.CLASSES[c].T1, self.CLASSES[c].T2,
self.ADDRESSES[a].PREFERRED_LIFETIME, self.ADDRESSES[a].VALID_LIFETIME))
class ConfigAddress(object):
"""
class for address definition, used for config
"""
def __init__(self, address=None,
ia_type="na",
prefix_length="64",
category="random",
pattern="2001:db8::$random64$",
preferred_lifetime=0,
valid_lifetime=0,
atype="default",
aclass="default",
prototype="",
range="",
dns_update=False,
dns_zone="",
dns_rev_zone="0.8.b.d.1.0.0.2.ip6.arpa",
dns_ttl = "0",
valid = True):
self.PREFIX_LENGTH = prefix_length
self.CATEGORY = category
self.PATTERN = pattern
self.IA_TYPE = ia_type
self.PREFERRED_LIFETIME = preferred_lifetime
self.VALID_LIFETIME = valid_lifetime
self.ADDRESS = address
self.RANGE = range.lower()
# because "class" is a python keyword we use "aclass" here
self.CLASS = aclass
# same with type
self.TYPE = atype
# a prototypical address to be compared with leases given by
# clients - if prototype and lease address kind of match
# give back the lease as valid
self.PROTOTYPE = prototype
# flag for updating address in DNS or not
self.DNS_UPDATE = dns_update
# DNS zone data
self.DNS_ZONE = dns_zone.lower()
self.DNS_REV_ZONE = dns_rev_zone.lower()
self.DNS_TTL = dns_ttl
# flag invalid addresses as invalid, valid ones as valid
self.VALID = valid
def _build_prototype(self):
"""
build prototype of pattern for later comparison with leases
"""
a = self.PATTERN
# check different client address categories - to be extended!
if self.CATEGORY in ["mac", "id", "range", "random"]:
if self.CATEGORY == "mac":
a = a.replace("$mac$", "XXXX:XXXX:XXXX")
elif self.CATEGORY == "id":
a = a.replace("$id$", "XXXX")
elif self.CATEGORY == "random":
a = a.replace("$random64$", "XXXX:XXXX:XXXX:XXXX")
elif self.CATEGORY == "range":
a = a.replace("$range$", "XXXX")
try:
# build complete "address" and ignore all the Xs (strict=False)
a = DecompressIP6(a, strict=False)
except:
#print "Address", self.TYPE + ": address pattern", self.PATTERN, "is not valid!"
ErrorExit("Address type '%s' address pattern '%s' is not valid." % (self.TYPE, self.PATTERN))
self.PROTOTYPE = a
def matches_prototype(self, address):
"""
test if given address matches prototype and therefore this address' DNS zone
information might be used
only used for address types, not client instances
"""
match = False
# compare all chars of address and prototype, if they do match or
# prototype has placeholder X return finally True, otherwise stop
# at the first difference and give back False
for i in range(32):
if self.PROTOTYPE[i] == address[i] or self.PROTOTYPE[i] == "X":
match = True
else:
match = False
break
return match
class ClientAddress(object):
"""
class for address definition, used for clients
"""
def __init__(self, address=None,
ia_type="na",
prefix_length="64",
category="random",
preferred_lifetime=0,
valid_lifetime=0,
atype="default",
aclass="default",
dns_update=False,
dns_zone="",
dns_rev_zone="0.8.b.d.1.0.0.2.ip6.arpa",
dns_ttl = "0",
valid = True,
):
self.PREFIX_LENGTH = prefix_length
self.CATEGORY = category
self.IA_TYPE = ia_type
self.PREFERRED_LIFETIME = preferred_lifetime
self.VALID_LIFETIME = valid_lifetime
self.ADDRESS = address
# because "class" is a python keyword we use "aclass" here
# this property stores the class the address is used for
self.CLASS = aclass
# same with type
self.TYPE = atype
# flag for updating address in DNS or not
self.DNS_UPDATE = dns_update
# DNS zone data
self.DNS_ZONE = dns_zone.lower()
self.DNS_REV_ZONE = dns_rev_zone.lower()
self.DNS_TTL = dns_ttl
# flag invalid addresses as invalid, valid ones as valid
self.VALID = valid
class Class(object):
"""
class for class definition
"""
def __init__(self, name=""):
self.NAME = name
self.ADDRESSES = list()
self.NAMESERVER = ""
self.FILTER_MAC = ""
self.FILTER_HOSTNAME = ""
self.FILTER_DUID = ""
self.IDENTIFICATION_MODE = "match_all"
# RENEW time
self.T1 = 0
# REBIND time
self.T2 = 0
# at which interface this class of clients is served
self.INTERFACE = ""
# in certain cases it might be useful not to give any address to clients, for example if only a defined group
# of hosts should get IPv6 addresses and others not. They will get a "NoAddrsAvail" response if this option
# is set to "noaddress" or no answer at all if set to "none"
self.ANSWER = "normal"
|