2005-06-23 19:55:23 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
# Author(s): Donald Miner <dminer@tresys.com>
|
|
|
|
# Dave Sugar <dsugar@tresys.com>
|
|
|
|
# Brian Williams <bwilliams@tresys.com>
|
2007-03-26 18:41:45 +00:00
|
|
|
# Caleb Case <ccase@tresys.com>
|
2005-06-23 19:55:23 +00:00
|
|
|
#
|
2006-05-25 15:09:06 +00:00
|
|
|
# Copyright (C) 2005 - 2006 Tresys Technology, LLC
|
2005-06-23 19:55:23 +00:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""
|
|
|
|
This script generates XML documentation information for layers specified
|
|
|
|
by the user.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import glob
|
2005-10-07 18:08:50 +00:00
|
|
|
import re
|
2007-03-26 18:41:45 +00:00
|
|
|
import getopt
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
# GLOBALS
|
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Default values of command line arguments:
|
2005-06-23 19:55:23 +00:00
|
|
|
warn = False
|
|
|
|
meta = "metadata"
|
2006-02-10 18:41:53 +00:00
|
|
|
third_party = "third-party"
|
|
|
|
layers = {}
|
2005-06-23 19:55:23 +00:00
|
|
|
tunable_files = []
|
2005-10-07 18:08:50 +00:00
|
|
|
bool_files = []
|
2006-02-10 18:41:53 +00:00
|
|
|
xml_tunable_files = []
|
|
|
|
xml_bool_files = []
|
|
|
|
output_dir = ""
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
# Pre compiled regular expressions:
|
|
|
|
|
|
|
|
# Matches either an interface or a template declaration. Will give the tuple:
|
|
|
|
# ("interface" or "template", name)
|
|
|
|
# Some examples:
|
|
|
|
# "interface(`kernel_read_system_state',`"
|
|
|
|
# -> ("interface", "kernel_read_system_state")
|
|
|
|
# "template(`base_user_template',`"
|
|
|
|
# -> ("template", "base_user_template")
|
2006-01-27 15:47:52 +00:00
|
|
|
INTERFACE = re.compile("^\s*(interface|template)\(`(\w*)'")
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
# Matches either a gen_bool or a gen_tunable statement. Will give the tuple:
|
|
|
|
# ("tunable" or "bool", name, "true" or "false")
|
|
|
|
# Some examples:
|
|
|
|
# "gen_bool(secure_mode, false)"
|
|
|
|
# -> ("bool", "secure_mode", "false")
|
|
|
|
# "gen_tunable(allow_kerberos, false)"
|
|
|
|
# -> ("tunable", "allow_kerberos", "false")
|
2006-01-27 15:47:52 +00:00
|
|
|
BOOLEAN = re.compile("^\s*gen_(tunable|bool)\(\s*(\w*)\s*,\s*(true|false)\s*\)")
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
# Matches a XML comment in the policy, which is defined as any line starting
|
|
|
|
# with two # and at least one character of white space. Will give the single
|
|
|
|
# valued tuple:
|
|
|
|
# ("comment")
|
|
|
|
# Some Examples:
|
|
|
|
# "## <summary>"
|
|
|
|
# -> ("<summary>")
|
|
|
|
# "## The domain allowed access. "
|
|
|
|
# -> ("The domain allowed access.")
|
|
|
|
XML_COMMENT = re.compile("^##\s+(.*?)\s*$")
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
# FUNCTIONS
|
|
|
|
def getModuleXML(file_name):
|
|
|
|
'''
|
|
|
|
Returns the XML data for a module in a list, one line per list item.
|
|
|
|
'''
|
|
|
|
|
2007-03-26 18:41:45 +00:00
|
|
|
# Gather information.
|
|
|
|
module_dir = os.path.dirname(file_name)
|
|
|
|
module_name = os.path.basename(file_name)
|
|
|
|
module_te = "%s/%s.te" % (module_dir, module_name)
|
|
|
|
module_if = "%s/%s.if" % (module_dir, module_name)
|
|
|
|
|
2005-06-23 19:55:23 +00:00
|
|
|
# Try to open the file, if it cant, just ignore it.
|
|
|
|
try:
|
2007-03-26 18:41:45 +00:00
|
|
|
module_file = open(module_if, "r")
|
2005-06-23 19:55:23 +00:00
|
|
|
module_code = module_file.readlines()
|
|
|
|
module_file.close()
|
|
|
|
except:
|
|
|
|
warning("cannot open file %s for read, skipping" % file_name)
|
|
|
|
return []
|
|
|
|
|
|
|
|
module_buf = []
|
|
|
|
|
2005-06-24 13:36:22 +00:00
|
|
|
# Infer the module name, which is the base of the file name.
|
2006-01-27 15:47:52 +00:00
|
|
|
module_buf.append("<module name=\"%s\" filename=\"%s\">\n"
|
2007-03-26 18:41:45 +00:00
|
|
|
% (os.path.splitext(os.path.split(file_name)[-1])[0], module_if))
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
temp_buf = []
|
2005-10-07 18:08:50 +00:00
|
|
|
interface = None
|
2005-06-23 19:55:23 +00:00
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# finding_header is a flag to denote whether we are still looking
|
|
|
|
# for the XML documentation at the head of the file.
|
|
|
|
finding_header = True
|
|
|
|
|
|
|
|
# Get rid of whitespace at top of file
|
|
|
|
while(module_code and module_code[0].isspace()):
|
|
|
|
module_code = module_code[1:]
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
# Go line by line and figure out what to do with it.
|
2006-01-27 15:47:52 +00:00
|
|
|
line_num = 0
|
2005-06-23 19:55:23 +00:00
|
|
|
for line in module_code:
|
2006-01-27 15:47:52 +00:00
|
|
|
line_num += 1
|
2005-10-07 18:08:50 +00:00
|
|
|
if finding_header:
|
|
|
|
# If there is a XML comment, add it to the temp buffer.
|
|
|
|
comment = XML_COMMENT.match(line)
|
|
|
|
if comment:
|
|
|
|
temp_buf.append(comment.group(1) + "\n")
|
2005-06-23 19:55:23 +00:00
|
|
|
continue
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
# Once a line that is not an XML comment is reached,
|
|
|
|
# either put the XML out to module buffer as the
|
|
|
|
# module's documentation, or attribute it to an
|
|
|
|
# interface/template.
|
|
|
|
elif temp_buf:
|
|
|
|
finding_header = False
|
|
|
|
interface = INTERFACE.match(line)
|
|
|
|
if not interface:
|
2005-06-24 20:36:49 +00:00
|
|
|
module_buf += temp_buf
|
2005-10-07 18:08:50 +00:00
|
|
|
temp_buf = []
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Skip over empty lines
|
|
|
|
if line.isspace():
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Grab a comment and add it to the temprorary buffer, if it
|
|
|
|
# is there.
|
|
|
|
comment = XML_COMMENT.match(line)
|
|
|
|
if comment:
|
|
|
|
temp_buf.append(comment.group(1) + "\n")
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Grab the interface information. This is only not true when
|
|
|
|
# the interface is at the top of the file and there is no
|
|
|
|
# documentation for the module.
|
|
|
|
if not interface:
|
|
|
|
interface = INTERFACE.match(line)
|
|
|
|
if interface:
|
|
|
|
# Add the opening tag for the interface/template
|
2006-01-27 15:47:52 +00:00
|
|
|
groups = interface.groups()
|
|
|
|
module_buf.append("<%s name=\"%s\" lineno=\"%s\">\n" % (groups[0], groups[1], line_num))
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
# Add all the comments attributed to this interface to
|
|
|
|
# the module buffer.
|
|
|
|
if temp_buf:
|
|
|
|
module_buf += temp_buf
|
2005-06-24 13:36:22 +00:00
|
|
|
temp_buf = []
|
2005-06-23 19:55:23 +00:00
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Add default summaries and parameters so that the
|
|
|
|
# DTD is happy.
|
|
|
|
else:
|
2006-02-10 18:41:53 +00:00
|
|
|
warning ("unable to find XML for %s %s()" % (groups[0], groups[1]))
|
2005-10-07 18:08:50 +00:00
|
|
|
module_buf.append("<summary>\n")
|
|
|
|
module_buf.append("Summary is missing!\n")
|
|
|
|
module_buf.append("</summary>\n")
|
|
|
|
module_buf.append("<param name=\"?\">\n")
|
2006-02-15 18:17:57 +00:00
|
|
|
module_buf.append("<summary>\n")
|
2005-10-07 18:08:50 +00:00
|
|
|
module_buf.append("Parameter descriptions are missing!\n")
|
2006-02-15 18:17:57 +00:00
|
|
|
module_buf.append("</summary>\n")
|
2005-10-07 18:08:50 +00:00
|
|
|
module_buf.append("</param>\n")
|
2005-08-11 14:55:41 +00:00
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Close the interface/template tag.
|
|
|
|
module_buf.append("</%s>\n" % interface.group(1))
|
|
|
|
|
|
|
|
interface = None
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# If the file just had a header, add the comments to the module buffer.
|
|
|
|
if finding_header:
|
|
|
|
module_buf += temp_buf
|
|
|
|
# Otherwise there are some lingering XML comments at the bottom, warn
|
|
|
|
# the user.
|
|
|
|
elif temp_buf:
|
2005-06-23 19:55:23 +00:00
|
|
|
warning("orphan XML comments at bottom of file %s" % file_name)
|
2005-10-07 18:08:50 +00:00
|
|
|
|
2007-03-26 18:41:45 +00:00
|
|
|
# Process the TE file if it exists.
|
|
|
|
module_buf = module_buf + getTunableXML(module_te, "both")
|
|
|
|
|
2005-06-23 19:55:23 +00:00
|
|
|
module_buf.append("</module>\n")
|
|
|
|
|
|
|
|
return module_buf
|
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
def getTunableXML(file_name, kind):
|
2005-06-23 19:55:23 +00:00
|
|
|
'''
|
2005-10-07 18:08:50 +00:00
|
|
|
Return all the XML for the tunables/bools in the file specified.
|
2005-06-23 19:55:23 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
# Try to open the file, if it cant, just ignore it.
|
|
|
|
try:
|
|
|
|
tunable_file = open(file_name, "r")
|
|
|
|
tunable_code = tunable_file.readlines()
|
|
|
|
tunable_file.close()
|
|
|
|
except:
|
|
|
|
warning("cannot open file %s for read, skipping" % file_name)
|
|
|
|
return []
|
|
|
|
|
|
|
|
tunable_buf = []
|
|
|
|
temp_buf = []
|
|
|
|
|
|
|
|
# Find tunables and booleans line by line and use the comments above
|
|
|
|
# them.
|
|
|
|
for line in tunable_code:
|
|
|
|
# If it is an XML comment, add it to the buffer and go on.
|
2005-10-07 18:08:50 +00:00
|
|
|
comment = XML_COMMENT.match(line)
|
|
|
|
if comment:
|
2006-02-10 18:41:53 +00:00
|
|
|
temp_buf.append(comment.group(1) + "\n")
|
2005-06-23 19:55:23 +00:00
|
|
|
continue
|
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Get the boolean/tunable data.
|
|
|
|
boolean = BOOLEAN.match(line)
|
|
|
|
|
|
|
|
# If we reach a boolean/tunable declaration, attribute all XML
|
|
|
|
# in the temp buffer to it and add XML to the tunable buffer.
|
|
|
|
if boolean:
|
|
|
|
# If there is a gen_bool in a tunable file or a
|
|
|
|
# gen_tunable in a boolean file, error and exit.
|
2007-03-26 18:41:45 +00:00
|
|
|
# Skip if both kinds are valid.
|
|
|
|
if kind != "both":
|
|
|
|
if boolean.group(1) != kind:
|
|
|
|
error("%s in a %s file." % (boolean.group(1), kind))
|
2005-10-07 18:08:50 +00:00
|
|
|
|
|
|
|
tunable_buf.append("<%s name=\"%s\" dftval=\"%s\">\n" % boolean.groups())
|
2005-06-23 19:55:23 +00:00
|
|
|
tunable_buf += temp_buf
|
|
|
|
temp_buf = []
|
2005-10-07 18:08:50 +00:00
|
|
|
tunable_buf.append("</%s>\n" % boolean.group(1))
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
# If there are XML comments at the end of the file, they arn't
|
|
|
|
# attributed to anything. These are ignored.
|
|
|
|
if len(temp_buf):
|
|
|
|
warning("orphan XML comments at bottom of file %s" % file_name)
|
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
|
|
|
|
# If the caller requested a the global_tunables and global_booleans to be
|
|
|
|
# output to a file output them now
|
|
|
|
if len(output_dir) > 0:
|
|
|
|
xmlfile = os.path.split(file_name)[1] + ".xml"
|
|
|
|
|
|
|
|
try:
|
|
|
|
xml_outfile = open(output_dir + "/" + xmlfile, "w")
|
|
|
|
for tunable_line in tunable_buf:
|
|
|
|
xml_outfile.write (tunable_line)
|
|
|
|
xml_outfile.close()
|
|
|
|
except:
|
|
|
|
warning ("cannot write to file %s, skipping creation" % xmlfile)
|
|
|
|
|
2005-06-23 19:55:23 +00:00
|
|
|
return tunable_buf
|
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
def getXMLFileContents (file_name):
|
2005-06-23 19:55:23 +00:00
|
|
|
'''
|
2006-02-10 18:41:53 +00:00
|
|
|
Return all the XML in the file specified.
|
2005-06-23 19:55:23 +00:00
|
|
|
'''
|
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
tunable_buf = []
|
|
|
|
# Try to open the xml file for this type of file
|
|
|
|
# append the contents to the buffer.
|
2005-06-23 19:55:23 +00:00
|
|
|
try:
|
2006-02-10 18:41:53 +00:00
|
|
|
tunable_xml = open(file_name, "r")
|
|
|
|
tunable_buf += tunable_xml.readlines()
|
|
|
|
tunable_xml.close()
|
2005-06-23 19:55:23 +00:00
|
|
|
except:
|
2006-02-10 18:41:53 +00:00
|
|
|
warning("cannot open file %s for read, assuming no data" % file_name)
|
|
|
|
|
|
|
|
return tunable_buf
|
|
|
|
|
|
|
|
def getPolicyXML():
|
|
|
|
'''
|
|
|
|
Return the compelete reference policy XML documentation through a list,
|
|
|
|
one line per item.
|
|
|
|
'''
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
policy_buf = []
|
|
|
|
policy_buf.append("<policy>\n")
|
|
|
|
|
|
|
|
# Add to the XML each layer specified by the user.
|
2006-02-10 18:41:53 +00:00
|
|
|
for layer in layers.keys ():
|
|
|
|
policy_buf += getLayerXML(layer, layers[layer])
|
2005-06-23 19:55:23 +00:00
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Add to the XML each tunable file specified by the user.
|
2005-06-23 19:55:23 +00:00
|
|
|
for tunable_file in tunable_files:
|
2005-10-07 18:08:50 +00:00
|
|
|
policy_buf += getTunableXML(tunable_file, "tunable")
|
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
# Add to the XML each XML tunable file specified by the user.
|
|
|
|
for tunable_file in xml_tunable_files:
|
|
|
|
policy_buf += getXMLFileContents (tunable_file)
|
|
|
|
|
2005-10-07 18:08:50 +00:00
|
|
|
# Add to the XML each bool file specified by the user.
|
|
|
|
for bool_file in bool_files:
|
|
|
|
policy_buf += getTunableXML(bool_file, "bool")
|
2005-06-23 19:55:23 +00:00
|
|
|
|
2006-02-10 18:41:53 +00:00
|
|
|
# Add to the XML each XML bool file specified by the user.
|
|
|
|
for bool_file in xml_bool_files:
|
|
|
|
policy_buf += getXMLFileContents (bool_file)
|
2005-06-23 19:55:23 +00:00
|
|
|
|
|
|
|
policy_buf.append("</policy>\n")
|
|
|
|
|
|
|
|
return policy_buf
|
|
|
|
|
|
|
|
def usage():
|
|
|
|
"""
|
|
|
|
Displays a message describing the proper usage of this script.
|
|
|
|
"""
|
|
|
|
|
2007-03-26 18:41:45 +00:00
|
|
|
sys.stdout.write("usage: %s [-w] [-mtb] <file>\n\n" % sys.argv[0])
|
|
|
|
sys.stdout.write("-w --warn\t\t\tshow warnings\n"+\
|
|
|
|
"-m --module <file>\t\tname of module to process\n"+\
|
|
|
|
"-t --tunable <file>\t\tname of global tunable file to process\n"+\
|
|
|
|
"-b --boolean <file>\t\tname of global boolean file to process\n\n")
|
2005-06-23 19:55:23 +00:00
|
|
|
|
2007-03-26 18:41:45 +00:00
|
|
|
sys.stdout.write("examples:\n")
|
|
|
|
sys.stdout.write("> %s -w -m policy/modules/apache\n" % sys.argv[0])
|
|
|
|
sys.stdout.write("> %s -t policy/global_tunables\n" % sys.argv[0])
|
2005-10-07 18:08:50 +00:00
|
|
|
|
2005-06-23 19:55:23 +00:00
|
|
|
def warning(description):
|
|
|
|
'''
|
|
|
|
Warns the user of a non-critical error.
|
|
|
|
'''
|
|
|
|
|
|
|
|
if warn:
|
|
|
|
sys.stderr.write("%s: " % sys.argv[0] )
|
|
|
|
sys.stderr.write("warning: " + description + "\n")
|
|
|
|
|
|
|
|
def error(description):
|
|
|
|
'''
|
|
|
|
Describes an error and exists the program.
|
|
|
|
'''
|
|
|
|
|
|
|
|
sys.stderr.write("%s: " % sys.argv[0] )
|
|
|
|
sys.stderr.write("error: " + description + "\n")
|
|
|
|
sys.stderr.flush()
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# MAIN PROGRAM
|
2007-03-26 18:41:45 +00:00
|
|
|
|
|
|
|
# Defaults
|
|
|
|
warn = False
|
|
|
|
module = False
|
|
|
|
tunable = False
|
|
|
|
boolean = False
|
|
|
|
|
2005-06-23 19:55:23 +00:00
|
|
|
# Check that there are command line arguments.
|
|
|
|
if len(sys.argv) <= 1:
|
|
|
|
usage()
|
|
|
|
sys.exit(1)
|
|
|
|
|
2007-03-26 18:41:45 +00:00
|
|
|
# Parse command line args
|
|
|
|
try:
|
|
|
|
opts, args = getopt.getopt(sys.argv[1:], 'whm:t:b:', ['warn', 'help', 'module=', 'tunable=', 'boolean='])
|
|
|
|
except getopt.GetoptError:
|
|
|
|
usage()
|
|
|
|
sys.exit(2)
|
|
|
|
for o, a in opts:
|
|
|
|
if o in ('-w', '--warn'):
|
2005-06-23 19:55:23 +00:00
|
|
|
warn = True
|
2007-03-26 18:41:45 +00:00
|
|
|
elif o in ('-h', '--help'):
|
|
|
|
usage()
|
|
|
|
sys.exit(0)
|
|
|
|
elif o in ('-m', '--module'):
|
|
|
|
module = a
|
|
|
|
break
|
|
|
|
elif o in ('-t', '--tunable'):
|
|
|
|
tunable = a
|
|
|
|
break
|
|
|
|
elif o in ('-b', '--boolean'):
|
|
|
|
boolean = a
|
|
|
|
break
|
2005-06-23 19:55:23 +00:00
|
|
|
else:
|
2007-03-26 18:41:45 +00:00
|
|
|
usage()
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
if module:
|
|
|
|
sys.stdout.writelines(getModuleXML(module))
|
|
|
|
elif tunable:
|
|
|
|
sys.stdout.writelines(getTunableXML(tunable, "tunable"))
|
|
|
|
elif boolean:
|
|
|
|
sys.stdout.writelines(getTunableXML(boolean, "bool"))
|
|
|
|
else:
|
|
|
|
usage()
|
|
|
|
sys.exit(2)
|
2006-02-10 18:41:53 +00:00
|
|
|
|