2005-06-07 18:23:00 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# Author: Joshua Brindle <jbrindle@tresys.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2003 - 2005 Tresys Technology, LLC
|
|
|
|
# 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, version 2.
|
|
|
|
|
|
|
|
"""
|
2005-06-09 18:16:51 +00:00
|
|
|
This module generates configuration files and documentation from the
|
|
|
|
SELinux reference policy XML format.
|
2005-06-07 18:23:00 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import getopt
|
|
|
|
import pyplate
|
2005-06-09 18:16:51 +00:00
|
|
|
import os
|
2005-06-09 20:53:45 +00:00
|
|
|
import string
|
|
|
|
from xml.dom.minidom import parse, parseString
|
2005-06-07 18:23:00 +00:00
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
#modules enabled and disabled values
|
2005-07-05 19:35:07 +00:00
|
|
|
MOD_BASE = "base"
|
|
|
|
MOD_ENABLED = "module"
|
2005-06-28 18:01:47 +00:00
|
|
|
MOD_DISABLED = "off"
|
|
|
|
|
|
|
|
#tunables enabled and disabled values
|
|
|
|
TUN_ENABLED = "true"
|
|
|
|
TUN_DISABLED = "false"
|
2005-06-28 15:19:40 +00:00
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
def read_policy_xml(filename):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Takes in XML from a file and returns a parsed file.
|
|
|
|
"""
|
|
|
|
|
2005-06-09 19:02:32 +00:00
|
|
|
try:
|
|
|
|
xml_fh = open(filename)
|
|
|
|
except:
|
|
|
|
error("error opening " + filename)
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
try:
|
2005-06-09 20:53:45 +00:00
|
|
|
doc = parseString(xml_fh.read())
|
2005-06-07 18:23:00 +00:00
|
|
|
except:
|
2005-06-09 19:02:32 +00:00
|
|
|
xml_fh.close()
|
2005-06-07 18:23:00 +00:00
|
|
|
error("Error while parsing xml")
|
2005-06-09 19:02:32 +00:00
|
|
|
|
|
|
|
xml_fh.close()
|
2005-06-07 18:23:00 +00:00
|
|
|
return doc
|
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
def gen_tunable_conf(doc, file_name, namevalue_list):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Generates the tunable configuration file using the XML provided and the
|
|
|
|
previous tunable configuration.
|
|
|
|
"""
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
for node in doc.getElementsByTagName("tunable"):
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in node.getElementsByTagName("desc"):
|
|
|
|
tun_desc = format_txt_desc(desc)
|
|
|
|
s = string.split(tun_desc, "\n")
|
|
|
|
file_name.write("#\n")
|
2005-06-07 18:23:00 +00:00
|
|
|
for line in s:
|
2005-07-05 19:35:07 +00:00
|
|
|
file_name.write("# %s\n" % line)
|
2005-06-07 18:23:00 +00:00
|
|
|
tun_name = tun_val = None
|
|
|
|
for (name, value) in node.attributes.items():
|
2005-06-09 20:53:45 +00:00
|
|
|
if name == "name":
|
|
|
|
tun_name = value
|
|
|
|
elif name == "dftval":
|
|
|
|
tun_val = value
|
2005-06-07 18:23:00 +00:00
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
if [tun_name,TUN_ENABLED] in namevalue_list:
|
|
|
|
tun_val = TUN_ENABLED
|
|
|
|
elif [tun_name,TUN_DISABLED] in namevalue_list:
|
|
|
|
tun_val = TUN_DISABLED
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
if tun_name and tun_val:
|
2005-07-05 19:35:07 +00:00
|
|
|
file_name.write("%s = %s\n\n" % (tun_name, tun_val))
|
2005-06-07 18:23:00 +00:00
|
|
|
tun_name = tun_val = None
|
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
def gen_module_conf(doc, file_name, namevalue_list):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Generates the module configuration file using the XML provided and the
|
|
|
|
previous module configuration.
|
|
|
|
"""
|
2005-06-28 15:19:40 +00:00
|
|
|
# If file exists, preserve settings and modify if needed.
|
|
|
|
# Otherwise, create it.
|
2005-06-28 19:50:38 +00:00
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
file_name.write("#\n# This file contains a listing of available modules.\n")
|
|
|
|
file_name.write("# To prevent a module from being used in policy\n")
|
|
|
|
file_name.write("# creation, set the module name to \"%s\".\n#\n" % MOD_DISABLED)
|
|
|
|
file_name.write("# For monolithic policies, modules set to \"%s\" and \"%s\"\n" % (MOD_BASE, MOD_ENABLED))
|
|
|
|
file_name.write("# will be built into the policy.\n#\n")
|
|
|
|
file_name.write("# For modular policies, modules set to \"%s\" will be\n" % MOD_BASE)
|
|
|
|
file_name.write("# included in the base module. \"%s\" will be compiled\n" % MOD_ENABLED)
|
|
|
|
file_name.write("# as individual loadable modules.\n#\n\n")
|
|
|
|
|
|
|
|
# For required in [True,False] is present so that the requiered modules
|
|
|
|
# are at the top of the config file.
|
|
|
|
for required in [True,False]:
|
|
|
|
for node in doc.getElementsByTagName("module"):
|
|
|
|
mod_req = False
|
|
|
|
for req in node.getElementsByTagName("required"):
|
|
|
|
if req.getAttribute("val") == "true":
|
|
|
|
mod_req = True
|
|
|
|
|
|
|
|
# Skip if we arnt working on the right set of modules.
|
|
|
|
if mod_req and not required or not mod_req and required:
|
|
|
|
continue
|
2005-06-09 18:16:51 +00:00
|
|
|
|
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
mod_name = mod_layer = None
|
|
|
|
|
|
|
|
mod_name = node.getAttribute("name")
|
|
|
|
mod_layer = node.parentNode.getAttribute("name")
|
2005-06-28 15:19:40 +00:00
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
if mod_name and mod_layer:
|
|
|
|
file_name.write("# Layer: %s\n# Module: %s\n" % (mod_layer,mod_name))
|
|
|
|
if required:
|
|
|
|
file_name.write("# Required in base\n")
|
|
|
|
file_name.write("#\n")
|
|
|
|
|
|
|
|
for desc in node.getElementsByTagName("summary"):
|
|
|
|
if not desc.parentNode == node:
|
|
|
|
continue
|
|
|
|
s = string.split(format_txt_desc(desc), "\n")
|
|
|
|
for line in s:
|
|
|
|
file_name.write("# %s\n" % line)
|
|
|
|
|
2005-08-15 20:31:37 +00:00
|
|
|
# If the module is set as disabled.
|
2005-07-05 19:35:07 +00:00
|
|
|
if [mod_name, MOD_DISABLED] in namevalue_list:
|
|
|
|
file_name.write("%s = %s\n\n" % (mod_name, MOD_DISABLED))
|
2005-08-15 20:31:37 +00:00
|
|
|
# If the module is set as enabled.
|
2005-07-05 19:35:07 +00:00
|
|
|
elif [mod_name, MOD_ENABLED] in namevalue_list:
|
|
|
|
file_name.write("%s = %s\n\n" % (mod_name, MOD_ENABLED))
|
2005-08-15 20:31:37 +00:00
|
|
|
# If the module is set as base.
|
|
|
|
elif [mod_name, MOD_BASE] in namevalue_list:
|
2005-07-05 19:35:07 +00:00
|
|
|
file_name.write("%s = %s\n\n" % (mod_name, MOD_BASE))
|
2005-08-15 20:31:37 +00:00
|
|
|
# If the module is a new module.
|
|
|
|
else:
|
|
|
|
# Set the module to base if it is marked as required.
|
|
|
|
if mod_req:
|
|
|
|
file_name.write("%s = %s\n\n" % (mod_name, MOD_BASE))
|
|
|
|
# Set the module to enabled if it is not required.
|
|
|
|
else:
|
|
|
|
file_name.write("%s = %s\n\n" % (mod_name, MOD_ENABLED))
|
2005-06-28 15:19:40 +00:00
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
def get_conf(conf):
|
|
|
|
"""
|
|
|
|
Returns a list of [name, value] pairs from a config file with the format
|
|
|
|
name = value
|
|
|
|
"""
|
2005-06-28 15:19:40 +00:00
|
|
|
|
|
|
|
conf_lines = conf.readlines()
|
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue_list = []
|
2005-06-28 19:50:38 +00:00
|
|
|
for i in range(0,len(conf_lines)):
|
|
|
|
line = conf_lines[i]
|
2005-06-28 15:19:40 +00:00
|
|
|
if line.strip() != '' and line.strip()[0] != "#":
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue = line.strip().split("=")
|
2005-06-28 19:50:38 +00:00
|
|
|
if len(namevalue) != 2:
|
|
|
|
warning("line %d: \"%s\" is not a valid line, skipping"\
|
|
|
|
% (i, line.strip()))
|
|
|
|
continue
|
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue[0] = namevalue[0].strip()
|
2005-06-28 19:50:38 +00:00
|
|
|
if len(namevalue[0].split()) > 1:
|
|
|
|
warning("line %d: \"%s\" is not a valid line, skipping"\
|
|
|
|
% (i, line.strip()))
|
|
|
|
continue
|
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue[1] = namevalue[1].strip()
|
2005-06-28 19:50:38 +00:00
|
|
|
if len(namevalue[1].split()) > 1:
|
|
|
|
warning("line %d: \"%s\" is not a valid line, skipping"\
|
|
|
|
% (i, line.strip()))
|
|
|
|
continue
|
|
|
|
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue_list.append(namevalue)
|
|
|
|
|
|
|
|
return namevalue_list
|
2005-06-09 18:16:51 +00:00
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
def first_cmp(a, b):
|
|
|
|
"""
|
|
|
|
Compares the two first elements of a list instead of the entire list.
|
|
|
|
"""
|
|
|
|
|
2005-06-09 21:05:33 +00:00
|
|
|
return cmp(a[0], b[0])
|
2005-06-10 01:35:43 +00:00
|
|
|
|
|
|
|
def int_cmp(a, b):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Compares two interfaces.
|
|
|
|
"""
|
|
|
|
|
2005-06-10 01:35:43 +00:00
|
|
|
return cmp(a["interface_name"], b["interface_name"])
|
2005-06-28 20:41:50 +00:00
|
|
|
|
|
|
|
def temp_cmp(a, b):
|
|
|
|
"""
|
|
|
|
Compares two templates.
|
|
|
|
"""
|
|
|
|
|
|
|
|
return cmp(a["template_name"], b["template_name"])
|
2005-07-08 21:02:59 +00:00
|
|
|
|
|
|
|
def tun_cmp(a, b):
|
|
|
|
"""
|
|
|
|
Compares two tunables.
|
|
|
|
"""
|
|
|
|
|
|
|
|
return cmp(a["tun_name"], b["tun_name"])
|
|
|
|
def bool_cmp(a, b):
|
|
|
|
"""
|
|
|
|
Compares two booleans.
|
|
|
|
"""
|
|
|
|
|
|
|
|
return cmp(a["bool_name"], b["bool_name"])
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
def gen_doc_menu(mod_layer, module_list):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Generates the HTML document menu.
|
|
|
|
"""
|
|
|
|
|
2005-06-09 21:05:33 +00:00
|
|
|
menu = []
|
|
|
|
for layer, value in module_list.iteritems():
|
|
|
|
cur_menu = (layer, [])
|
|
|
|
menu.append(cur_menu)
|
|
|
|
if layer != mod_layer and mod_layer != None:
|
|
|
|
continue
|
2005-06-09 18:16:51 +00:00
|
|
|
#we are in our layer so fill in the other modules or we want them all
|
2005-06-09 21:05:33 +00:00
|
|
|
for mod, desc in value.iteritems():
|
|
|
|
cur_menu[1].append((mod, desc))
|
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
menu.sort(first_cmp)
|
2005-06-09 21:05:33 +00:00
|
|
|
for x in menu:
|
2005-06-28 19:50:38 +00:00
|
|
|
x[1].sort(first_cmp)
|
2005-06-09 18:16:51 +00:00
|
|
|
return menu
|
|
|
|
|
2005-06-13 17:41:38 +00:00
|
|
|
def format_html_desc(node):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Formats a XML node into a HTML format.
|
|
|
|
"""
|
2005-06-10 20:39:41 +00:00
|
|
|
|
|
|
|
desc_buf = ''
|
|
|
|
for desc in node.childNodes:
|
|
|
|
if desc.nodeName == "#text":
|
2005-06-13 18:07:35 +00:00
|
|
|
if desc.data is not '':
|
2005-07-22 19:15:49 +00:00
|
|
|
if desc.parentNode.nodeName != "p":
|
|
|
|
desc_buf += "<p>" + desc.data + "</p>"
|
|
|
|
else:
|
|
|
|
desc_buf += desc.data
|
|
|
|
else:
|
|
|
|
desc_buf += "<" + desc.nodeName + ">" \
|
|
|
|
+ format_html_desc(desc) \
|
|
|
|
+ "</" + desc.nodeName +">"
|
2005-06-10 20:39:41 +00:00
|
|
|
|
|
|
|
return desc_buf
|
|
|
|
|
2005-06-13 17:41:38 +00:00
|
|
|
def format_txt_desc(node):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Formats a XML node into a plain text format.
|
|
|
|
"""
|
2005-06-13 17:41:38 +00:00
|
|
|
|
|
|
|
desc_buf = ''
|
|
|
|
for desc in node.childNodes:
|
|
|
|
if desc.nodeName == "#text":
|
|
|
|
desc_buf += desc.data + "\n"
|
|
|
|
elif desc.nodeName == "p":
|
|
|
|
desc_buf += desc.firstChild.data + "\n"
|
|
|
|
for chld in desc.childNodes:
|
|
|
|
if chld.nodeName == "ul":
|
|
|
|
desc_buf += "\n"
|
|
|
|
for li in chld.getElementsByTagName("li"):
|
|
|
|
desc_buf += "\t -" + li.firstChild.data + "\n"
|
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
return desc_buf.strip() + "\n"
|
2005-06-10 20:39:41 +00:00
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
def gen_docs(doc, working_dir, templatedir):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Generates all the documentation.
|
|
|
|
"""
|
2005-06-07 18:23:00 +00:00
|
|
|
|
|
|
|
try:
|
2005-06-10 01:35:43 +00:00
|
|
|
#get the template data ahead of time so we don't reopen them over and over
|
2005-06-09 18:16:51 +00:00
|
|
|
bodyfile = open(templatedir + "/header.html", "r")
|
|
|
|
bodydata = bodyfile.read()
|
|
|
|
bodyfile.close()
|
|
|
|
intfile = open(templatedir + "/interface.html", "r")
|
|
|
|
intdata = intfile.read()
|
|
|
|
intfile.close()
|
2005-06-28 20:41:50 +00:00
|
|
|
templatefile = open(templatedir + "/template.html", "r")
|
|
|
|
templatedata = templatefile.read()
|
|
|
|
templatefile.close()
|
2005-06-09 18:16:51 +00:00
|
|
|
menufile = open(templatedir + "/menu.html", "r")
|
|
|
|
menudata = menufile.read()
|
|
|
|
menufile.close()
|
|
|
|
indexfile = open(templatedir + "/module_list.html","r")
|
|
|
|
indexdata = indexfile.read()
|
|
|
|
indexfile.close()
|
|
|
|
modulefile = open(templatedir + "/module.html","r")
|
|
|
|
moduledata = modulefile.read()
|
|
|
|
modulefile.close()
|
2005-06-10 01:35:43 +00:00
|
|
|
intlistfile = open(templatedir + "/int_list.html", "r")
|
|
|
|
intlistdata = intlistfile.read()
|
|
|
|
intlistfile.close()
|
2005-06-28 20:41:50 +00:00
|
|
|
templistfile = open(templatedir + "/temp_list.html", "r")
|
|
|
|
templistdata = templistfile.read()
|
|
|
|
templistfile.close()
|
2005-07-08 21:02:59 +00:00
|
|
|
boollistfile = open(templatedir + "/global_bool_list.html", "r")
|
|
|
|
boollistdata = boollistfile.read()
|
|
|
|
boollistfile.close()
|
|
|
|
tunlistfile = open(templatedir + "/global_tun_list.html", "r")
|
|
|
|
tunlistdata = tunlistfile.read()
|
|
|
|
tunlistfile.close()
|
2005-06-07 18:23:00 +00:00
|
|
|
except:
|
|
|
|
error("Could not open templates")
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
|
|
|
|
try:
|
2005-07-05 19:35:07 +00:00
|
|
|
os.chdir(working_dir)
|
2005-06-09 18:16:51 +00:00
|
|
|
except:
|
2005-06-20 20:31:58 +00:00
|
|
|
error("Could not chdir to target directory")
|
2005-06-09 18:16:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
#arg, i have to go through this dom tree ahead of time to build up the menus
|
|
|
|
module_list = {}
|
|
|
|
for node in doc.getElementsByTagName("module"):
|
|
|
|
mod_name = mod_layer = interface_buf = ''
|
2005-06-20 20:31:58 +00:00
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
mod_name = node.getAttribute("name")
|
|
|
|
mod_layer = node.parentNode.getAttribute("name")
|
2005-06-20 20:31:58 +00:00
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
for desc in node.getElementsByTagName("summary"):
|
2005-06-13 17:41:38 +00:00
|
|
|
if desc.parentNode == node and desc:
|
|
|
|
mod_summary = format_html_desc(desc)
|
2005-06-09 18:16:51 +00:00
|
|
|
if not module_list.has_key(mod_layer):
|
|
|
|
module_list[mod_layer] = {}
|
|
|
|
|
|
|
|
module_list[mod_layer][mod_name] = mod_summary
|
|
|
|
|
|
|
|
#generate index pages
|
|
|
|
main_content_buf = ''
|
|
|
|
for mod_layer,modules in module_list.iteritems():
|
|
|
|
menu = gen_doc_menu(mod_layer, module_list)
|
|
|
|
|
2005-07-07 20:56:27 +00:00
|
|
|
layer_summary = None
|
|
|
|
for desc in doc.getElementsByTagName("summary"):
|
|
|
|
if desc.parentNode.getAttribute("name") == mod_layer:
|
|
|
|
layer_summary = format_html_desc(desc)
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
menu_args = { "menulist" : menu,
|
2005-07-07 20:56:27 +00:00
|
|
|
"mod_layer" : mod_layer,
|
|
|
|
"layer_summary" : layer_summary }
|
2005-06-09 18:16:51 +00:00
|
|
|
menu_tpl = pyplate.Template(menudata)
|
|
|
|
menu_buf = menu_tpl.execute_string(menu_args)
|
|
|
|
|
|
|
|
content_tpl = pyplate.Template(indexdata)
|
|
|
|
content_buf = content_tpl.execute_string(menu_args)
|
|
|
|
|
|
|
|
main_content_buf += content_buf
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : content_buf }
|
|
|
|
|
|
|
|
index_file = mod_layer + ".html"
|
|
|
|
index_fh = open(index_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
body_tpl.execute(index_fh, body_args)
|
|
|
|
index_fh.close()
|
|
|
|
|
|
|
|
menu = gen_doc_menu(None, module_list)
|
|
|
|
menu_args = { "menulist" : menu,
|
|
|
|
"mod_layer" : None }
|
|
|
|
menu_tpl = pyplate.Template(menudata)
|
|
|
|
menu_buf = menu_tpl.execute_string(menu_args)
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : main_content_buf }
|
|
|
|
|
|
|
|
index_file = "index.html"
|
|
|
|
index_fh = open(index_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
body_tpl.execute(index_fh, body_args)
|
|
|
|
index_fh.close()
|
2005-06-10 01:35:43 +00:00
|
|
|
#now generate the individual module pages
|
2005-06-07 18:23:00 +00:00
|
|
|
|
2005-06-10 01:35:43 +00:00
|
|
|
all_interfaces = []
|
2005-06-28 20:41:50 +00:00
|
|
|
all_templates = []
|
2005-06-07 18:23:00 +00:00
|
|
|
for node in doc.getElementsByTagName("module"):
|
2005-06-10 20:39:41 +00:00
|
|
|
mod_name = mod_layer = mod_desc = interface_buf = ''
|
2005-06-20 20:31:58 +00:00
|
|
|
|
2005-07-05 19:35:07 +00:00
|
|
|
mod_name = node.getAttribute("name")
|
|
|
|
mod_layer = node.parentNode.getAttribute("name")
|
|
|
|
|
|
|
|
mod_req = None
|
|
|
|
for req in node.getElementsByTagName("required"):
|
|
|
|
if req.getAttribute("val") == "true":
|
|
|
|
mod_req = True
|
2005-06-20 20:31:58 +00:00
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
for desc in node.getElementsByTagName("summary"):
|
2005-06-10 20:39:41 +00:00
|
|
|
if desc.parentNode == node:
|
2005-06-13 17:41:38 +00:00
|
|
|
mod_summary = format_html_desc(desc)
|
2005-06-23 16:06:25 +00:00
|
|
|
for desc in node.getElementsByTagName("desc"):
|
2005-06-10 20:39:41 +00:00
|
|
|
if desc.parentNode == node:
|
2005-06-13 17:41:38 +00:00
|
|
|
mod_desc = format_html_desc(desc)
|
2005-06-10 01:35:43 +00:00
|
|
|
|
|
|
|
interfaces = []
|
2005-06-07 18:23:00 +00:00
|
|
|
for interface in node.getElementsByTagName("interface"):
|
2005-06-09 18:16:51 +00:00
|
|
|
interface_parameters = []
|
2005-08-11 17:55:47 +00:00
|
|
|
interface_desc = interface_summary = None
|
2006-02-01 13:08:48 +00:00
|
|
|
interface_name = interface.getAttribute("name")
|
|
|
|
interface_line = interface.getAttribute("lineno")
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in interface.childNodes:
|
|
|
|
if desc.nodeName == "desc":
|
|
|
|
interface_desc = format_html_desc(desc)
|
|
|
|
elif desc.nodeName == "summary":
|
|
|
|
interface_summary = format_html_desc(desc)
|
|
|
|
|
2005-06-23 16:06:25 +00:00
|
|
|
for args in interface.getElementsByTagName("param"):
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in args.getElementsByTagName("summary"):
|
|
|
|
paramdesc = format_html_desc(desc)
|
2006-02-01 13:08:48 +00:00
|
|
|
paramname = args.getAttribute("name")
|
|
|
|
if args.getAttribute("optional") == "true":
|
|
|
|
paramopt = "Yes"
|
|
|
|
else:
|
|
|
|
paramopt = "No"
|
2005-06-09 18:16:51 +00:00
|
|
|
parameter = { "name" : paramname,
|
|
|
|
"desc" : paramdesc,
|
|
|
|
"optional" : paramopt }
|
|
|
|
interface_parameters.append(parameter)
|
2005-06-10 01:35:43 +00:00
|
|
|
interfaces.append( { "interface_name" : interface_name,
|
2005-06-10 20:39:41 +00:00
|
|
|
"interface_summary" : interface_summary,
|
2005-06-09 18:16:51 +00:00
|
|
|
"interface_desc" : interface_desc,
|
2005-08-11 17:55:47 +00:00
|
|
|
"interface_parameters" : interface_parameters })
|
2005-06-10 01:35:43 +00:00
|
|
|
#all_interfaces is for the main interface index with all interfaces
|
|
|
|
all_interfaces.append( { "interface_name" : interface_name,
|
2005-06-10 20:39:41 +00:00
|
|
|
"interface_summary" : interface_summary,
|
2005-06-10 01:35:43 +00:00
|
|
|
"interface_desc" : interface_desc,
|
|
|
|
"interface_parameters" : interface_parameters,
|
|
|
|
"mod_name": mod_name,
|
|
|
|
"mod_layer" : mod_layer })
|
|
|
|
interfaces.sort(int_cmp)
|
|
|
|
interface_tpl = pyplate.Template(intdata)
|
|
|
|
interface_buf = interface_tpl.execute_string({"interfaces" : interfaces})
|
|
|
|
|
2005-06-28 20:41:50 +00:00
|
|
|
|
|
|
|
# now generate individual template pages
|
|
|
|
templates = []
|
|
|
|
for template in node.getElementsByTagName("template"):
|
|
|
|
template_parameters = []
|
2005-08-11 17:55:47 +00:00
|
|
|
template_desc = template_summary = None
|
2006-02-01 13:08:48 +00:00
|
|
|
template_name = template.getAttribute("name")
|
|
|
|
template_line = template.getAttribute("lineno")
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in template.childNodes:
|
|
|
|
if desc.nodeName == "desc":
|
|
|
|
template_desc = format_html_desc(desc)
|
|
|
|
elif desc.nodeName == "summary":
|
|
|
|
template_summary = format_html_desc(desc)
|
|
|
|
|
2005-06-28 20:41:50 +00:00
|
|
|
for args in template.getElementsByTagName("param"):
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in args.getElementsByTagName("summary"):
|
|
|
|
paramdesc = format_html_desc(desc)
|
2006-02-01 13:08:48 +00:00
|
|
|
paramname = args.getAttribute("name")
|
|
|
|
if args.getAttribute("optional") == "true":
|
|
|
|
paramopt = "Yes"
|
|
|
|
else:
|
|
|
|
paramopt = "No"
|
2005-06-28 20:41:50 +00:00
|
|
|
parameter = { "name" : paramname,
|
|
|
|
"desc" : paramdesc,
|
|
|
|
"optional" : paramopt }
|
|
|
|
template_parameters.append(parameter)
|
|
|
|
templates.append( { "template_name" : template_name,
|
|
|
|
"template_summary" : template_summary,
|
|
|
|
"template_desc" : template_desc,
|
2005-08-11 17:55:47 +00:00
|
|
|
"template_parameters" : template_parameters })
|
2005-06-28 20:41:50 +00:00
|
|
|
#all_templates is for the main interface index with all templates
|
|
|
|
all_templates.append( { "template_name" : template_name,
|
|
|
|
"template_summary" : template_summary,
|
|
|
|
"template_desc" : template_desc,
|
|
|
|
"template_parameters" : template_parameters,
|
|
|
|
"mod_name": mod_name,
|
|
|
|
"mod_layer" : mod_layer })
|
|
|
|
|
|
|
|
templates.sort(temp_cmp)
|
|
|
|
template_tpl = pyplate.Template(templatedata)
|
|
|
|
template_buf = template_tpl.execute_string({"templates" : templates})
|
|
|
|
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
menu = gen_doc_menu(mod_layer, module_list)
|
|
|
|
|
|
|
|
menu_tpl = pyplate.Template(menudata)
|
2005-06-10 01:35:43 +00:00
|
|
|
menu_buf = menu_tpl.execute_string({ "menulist" : menu })
|
2005-06-09 18:16:51 +00:00
|
|
|
|
2005-06-29 14:48:13 +00:00
|
|
|
|
|
|
|
# pyplate's execute_string gives us a line of whitespace in
|
|
|
|
# template_buf or interface_buf if there are no interfaces or
|
|
|
|
# templates for this module. This is problematic because the
|
|
|
|
# HTML templates use a conditional if on interface_buf or
|
|
|
|
# template_buf being 'None' to decide if the "Template:" or
|
|
|
|
# "Interface:" headers need to be printed in the module pages.
|
|
|
|
# This detects if either of these are just whitespace, and sets
|
|
|
|
# their values to 'None' so that when applying it to the
|
|
|
|
# templates, they are properly recognized as not existing.
|
|
|
|
if not interface_buf.strip():
|
|
|
|
interface_buf = None
|
|
|
|
if not template_buf.strip():
|
|
|
|
template_buf = None
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
module_args = { "mod_layer" : mod_layer,
|
|
|
|
"mod_name" : mod_name,
|
|
|
|
"mod_summary" : mod_summary,
|
2005-06-10 20:39:41 +00:00
|
|
|
"mod_desc" : mod_desc,
|
2005-07-05 19:35:07 +00:00
|
|
|
"mod_req" : mod_req,
|
2005-06-28 20:41:50 +00:00
|
|
|
"interfaces" : interface_buf,
|
|
|
|
"templates": template_buf }
|
2005-06-09 18:16:51 +00:00
|
|
|
|
|
|
|
module_tpl = pyplate.Template(moduledata)
|
|
|
|
module_buf = module_tpl.execute_string(module_args)
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : module_buf }
|
|
|
|
|
|
|
|
module_file = mod_layer + "_" + mod_name + ".html"
|
|
|
|
module_fh = open(module_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
body_tpl.execute(module_fh, body_args)
|
|
|
|
module_fh.close()
|
2005-06-07 18:23:00 +00:00
|
|
|
|
2005-06-28 20:41:50 +00:00
|
|
|
|
2005-07-08 21:02:59 +00:00
|
|
|
menu = gen_doc_menu(None, module_list)
|
|
|
|
menu_args = { "menulist" : menu,
|
|
|
|
"mod_layer" : None }
|
|
|
|
menu_tpl = pyplate.Template(menudata)
|
|
|
|
menu_buf = menu_tpl.execute_string(menu_args)
|
2005-06-10 01:35:43 +00:00
|
|
|
|
2005-07-08 21:02:59 +00:00
|
|
|
#build the interface index
|
|
|
|
all_interfaces.sort(int_cmp)
|
|
|
|
interface_tpl = pyplate.Template(intlistdata)
|
|
|
|
interface_buf = interface_tpl.execute_string({"interfaces" : all_interfaces})
|
|
|
|
int_file = "interfaces.html"
|
|
|
|
int_fh = open(int_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
2005-06-10 01:35:43 +00:00
|
|
|
|
2005-07-08 21:02:59 +00:00
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : interface_buf }
|
2005-06-10 01:35:43 +00:00
|
|
|
|
2005-07-08 21:02:59 +00:00
|
|
|
body_tpl.execute(int_fh, body_args)
|
|
|
|
int_fh.close()
|
2005-06-10 01:35:43 +00:00
|
|
|
|
2005-06-28 20:41:50 +00:00
|
|
|
|
2005-07-08 21:02:59 +00:00
|
|
|
#build the template index
|
|
|
|
all_templates.sort(temp_cmp)
|
|
|
|
template_tpl = pyplate.Template(templistdata)
|
|
|
|
template_buf = template_tpl.execute_string({"templates" : all_templates})
|
|
|
|
temp_file = "templates.html"
|
|
|
|
temp_fh = open(temp_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : template_buf }
|
|
|
|
|
|
|
|
body_tpl.execute(temp_fh, body_args)
|
|
|
|
temp_fh.close()
|
|
|
|
|
|
|
|
|
|
|
|
#build the global tunable index
|
|
|
|
global_tun_buf = []
|
|
|
|
for tunable in doc.getElementsByTagName("tunable"):
|
|
|
|
if tunable.parentNode.nodeName == "policy":
|
|
|
|
tunable_name = tunable.getAttribute("name")
|
|
|
|
default_value = tunable.getAttribute("dftval")
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in tunable.getElementsByTagName("desc"):
|
|
|
|
description = format_html_desc(desc)
|
2005-07-08 21:02:59 +00:00
|
|
|
global_tun_buf.append( { "tun_name" : tunable_name,
|
2005-07-11 13:49:15 +00:00
|
|
|
"def_val" : default_value,
|
|
|
|
"desc" : description } )
|
2005-07-08 21:02:59 +00:00
|
|
|
global_tun_buf.sort(tun_cmp)
|
|
|
|
global_tun_tpl = pyplate.Template(tunlistdata)
|
|
|
|
global_tun_buf = global_tun_tpl.execute_string({"tunables" : global_tun_buf})
|
|
|
|
global_tun_file = "global_tunables.html"
|
|
|
|
global_tun_fh = open(global_tun_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : global_tun_buf }
|
|
|
|
|
|
|
|
body_tpl.execute(global_tun_fh, body_args)
|
|
|
|
global_tun_fh.close()
|
|
|
|
|
|
|
|
|
|
|
|
#build the global boolean index
|
|
|
|
global_bool_buf = []
|
2005-10-07 18:08:50 +00:00
|
|
|
for boolean in doc.getElementsByTagName("bool"):
|
2005-07-08 21:02:59 +00:00
|
|
|
if boolean.parentNode.nodeName == "policy":
|
|
|
|
bool_name = boolean.getAttribute("name")
|
|
|
|
default_value = boolean.getAttribute("dftval")
|
2006-02-10 18:41:53 +00:00
|
|
|
for desc in boolean.getElementsByTagName("desc"):
|
|
|
|
description = format_html_desc(desc)
|
2005-07-08 21:02:59 +00:00
|
|
|
global_bool_buf.append( { "bool_name" : bool_name,
|
2005-07-11 13:49:15 +00:00
|
|
|
"def_val" : default_value,
|
|
|
|
"desc" : description } )
|
2005-07-08 21:02:59 +00:00
|
|
|
global_bool_buf.sort(bool_cmp)
|
|
|
|
global_bool_tpl = pyplate.Template(boollistdata)
|
|
|
|
global_bool_buf = global_bool_tpl.execute_string({"booleans" : global_bool_buf})
|
|
|
|
global_bool_file = "global_booleans.html"
|
|
|
|
global_bool_fh = open(global_bool_file, "w")
|
|
|
|
body_tpl = pyplate.Template(bodydata)
|
|
|
|
|
|
|
|
body_args = { "menu" : menu_buf,
|
|
|
|
"content" : global_bool_buf }
|
|
|
|
|
|
|
|
body_tpl.execute(global_bool_fh, body_args)
|
|
|
|
global_bool_fh.close()
|
2005-06-28 20:41:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
def error(error):
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Print an error message and exit.
|
|
|
|
"""
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
sys.stderr.write("%s exiting for: " % sys.argv[0])
|
|
|
|
sys.stderr.write("%s\n" % error)
|
|
|
|
sys.stderr.flush()
|
|
|
|
sys.exit(1)
|
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
def warning(warn):
|
|
|
|
"""
|
|
|
|
Print a warning message.
|
|
|
|
"""
|
|
|
|
|
|
|
|
sys.stderr.write("%s warning: " % sys.argv[0])
|
|
|
|
sys.stderr.write("%s\n" % warn)
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
def usage():
|
2005-06-28 19:50:38 +00:00
|
|
|
"""
|
|
|
|
Describes the proper usage of this tool.
|
|
|
|
"""
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
sys.stdout.write("%s [-tmdT] -x <xmlfile>\n\n" % sys.argv[0])
|
2005-06-07 18:23:00 +00:00
|
|
|
sys.stdout.write("Options:\n")
|
2005-06-09 18:16:51 +00:00
|
|
|
sys.stdout.write("-t --tunables <file> -- write tunable config to <file>\n")
|
2005-06-07 18:23:00 +00:00
|
|
|
sys.stdout.write("-m --modules <file> -- write module config to <file>\n")
|
|
|
|
sys.stdout.write("-d --docs <dir> -- write interface documentation to <dir>\n")
|
|
|
|
sys.stdout.write("-x --xml <file> -- filename to read xml data from\n")
|
2005-06-09 18:16:51 +00:00
|
|
|
sys.stdout.write("-T --templates <dir> -- template directory for documents\n")
|
2005-06-07 18:23:00 +00:00
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
|
|
|
|
# MAIN PROGRAM
|
2005-06-07 18:23:00 +00:00
|
|
|
try:
|
2005-06-09 18:16:51 +00:00
|
|
|
opts, args = getopt.getopt(sys.argv[1:], "t:m:d:x:T:", ["tunables","modules","docs","xml", "templates"])
|
2005-06-07 18:23:00 +00:00
|
|
|
except getopt.GetoptError:
|
|
|
|
usage()
|
|
|
|
sys.exit(1)
|
|
|
|
|
2005-06-09 19:02:32 +00:00
|
|
|
tunables = modules = docsdir = None
|
2005-06-09 18:16:51 +00:00
|
|
|
templatedir = "templates/"
|
|
|
|
xmlfile = "policy.xml"
|
2005-06-07 18:23:00 +00:00
|
|
|
|
|
|
|
for opt, val in opts:
|
|
|
|
if opt in ("-t", "--tunables"):
|
|
|
|
tunables = val
|
|
|
|
if opt in ("-m", "--modules"):
|
|
|
|
modules = val
|
|
|
|
if opt in ("-d", "--docs"):
|
2005-06-09 18:16:51 +00:00
|
|
|
docsdir = val
|
2005-06-07 18:23:00 +00:00
|
|
|
if opt in ("-x", "--xml"):
|
|
|
|
xmlfile = val
|
2005-06-09 18:16:51 +00:00
|
|
|
if opt in ("-T", "--templates"):
|
|
|
|
templatedir = val
|
2005-06-07 18:23:00 +00:00
|
|
|
|
|
|
|
doc = read_policy_xml(xmlfile)
|
|
|
|
|
|
|
|
if tunables:
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue_list = []
|
|
|
|
if os.path.exists(tunables):
|
|
|
|
try:
|
|
|
|
conf = open(tunables, 'r')
|
|
|
|
except:
|
|
|
|
error("Could not open tunables file for reading")
|
|
|
|
|
2005-06-28 19:50:38 +00:00
|
|
|
namevalue_list = get_conf(conf)
|
2005-06-28 18:01:47 +00:00
|
|
|
|
|
|
|
conf.close()
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
try:
|
|
|
|
conf = open(tunables, 'w')
|
|
|
|
except:
|
|
|
|
error("Could not open tunables file for writing")
|
2005-06-28 18:01:47 +00:00
|
|
|
|
|
|
|
gen_tunable_conf(doc, conf, namevalue_list)
|
2005-06-07 18:23:00 +00:00
|
|
|
conf.close()
|
|
|
|
|
|
|
|
|
|
|
|
if modules:
|
2005-06-28 18:01:47 +00:00
|
|
|
namevalue_list = []
|
2005-06-28 15:19:40 +00:00
|
|
|
if os.path.exists(modules):
|
|
|
|
try:
|
|
|
|
conf = open(modules, 'r')
|
|
|
|
except:
|
|
|
|
error("Could not open modules file for reading")
|
2005-06-28 19:50:38 +00:00
|
|
|
namevalue_list = get_conf(conf)
|
2005-06-28 15:19:40 +00:00
|
|
|
conf.close()
|
|
|
|
|
2005-06-07 18:23:00 +00:00
|
|
|
try:
|
|
|
|
conf = open(modules, 'w')
|
|
|
|
except:
|
|
|
|
error("Could not open modules file for writing")
|
2005-06-28 18:01:47 +00:00
|
|
|
gen_module_conf(doc, conf, namevalue_list)
|
2005-06-07 18:23:00 +00:00
|
|
|
conf.close()
|
|
|
|
|
2005-06-09 18:16:51 +00:00
|
|
|
if docsdir:
|
|
|
|
gen_docs(doc, docsdir, templatedir)
|