3 from sfatables.globals import *
6 def apply_processor(self, type, doc, output_xpath_filter=None):
7 processor = self.processors[type]
10 filepath = os.path.join(sfatables_config, 'processors', processor)
13 styledoc = libxml2.parseFile(filepath)
14 style = libxslt.parseStylesheetDoc(styledoc)
15 result = style.applyStylesheet(doc, None)
16 if (output_xpath_filter):
17 p = result.xpathNewContext()
18 xpath_result = p.xpathEval(output_xpath_filter)
19 if (xpath_result == []):
20 raise Exception("Could not apply processor %s."%processor)
22 stylesheet_result = xpath_result
25 stylesheet_result = result #style.saveResultToString(result)
27 style.freeStylesheet()
31 return stylesheet_result
33 def wrap_up(self, doc):
34 filepath = os.path.join(sfatables_config, 'processors', self.final_processor)
36 if not os.path.exists(filepath):
37 raise Exception('Could not find final rule filter')
39 styledoc = libxml2.parseFile(filepath)
40 style = libxslt.parseStylesheetDoc(styledoc)
41 result = style.applyStylesheet(doc, None)
42 stylesheet_result = result#style.saveResultToString(result)
43 style.freeStylesheet()
47 return stylesheet_result
49 def match(self, rspec):
50 match_result = self.apply_processor('match',rspec,"//result/@verdict")
51 return (match_result[0].content=='True')
53 def target(self, rspec):
54 target_result = self.apply_processor('target',rspec,None)
57 def add_rule_context_to_rspec(self, doc):
58 p = doc.xpathNewContext()
59 context = p.xpathEval("//RSpec")
61 raise Exception('Request is not an rspec')
63 # Add the request context
64 matchNode = libxml2.newNode('match-context')
65 for match_argument in self.arguments['match']:
66 matchNode.addChild(match_argument)
68 targetNode = libxml2.newNode('target-context')
69 for target_argument in self.arguments['target']:
70 targetNode.addChild(target_argument)
72 context[0].addChild(matchNode)
73 context[0].addChild(targetNode)
78 def apply_interpreted(self, rspec):
79 rspec = self.add_rule_context_to_rspec(rspec)
83 # if (match(match_args, rspec)
84 # then target(target_args, rspec)
88 if (self.match(rspec)):
89 return (True,self.wrap_up(self.target(rspec)))
91 return (False,self.wrap_up(rspec))
94 def apply_compiled(rspec):
98 def load_xml_extension (self, type, chain, rule_number):
99 filename = sfatables_config+"/"+chain+"/"+"sfatables-%d-%s"%(rule_number,type)
101 self.xmldoc = libxml2.parseFile(filename)
102 p = self.xmldoc.xpathNewContext()
104 context = p.xpathEval('//context/@select')
105 self.context[type] = context[0].content
107 processor = p.xpathEval('//processor/@filename')
109 context = p.xpathEval('//attributes/attribute[@terminal="yes"]')
113 self.processors[type] = processor[0].content
114 self.arguments[type] = p.xpathEval('//rule//argument[value!=""]')
119 def __init__(self, chain=None, rule_number=None):
120 self.rule_number = None
124 self.final_processor = '__sfatables_rule_wrap_up__.xsl'
126 self.arguments = {'match':None,'target':None}
127 self.processors = {'match':None,'target':None}
128 self.context = {'match':None,'target':None}
130 if (chain and rule_number):
131 self.load_xml_extension('match', chain, rule_number)
132 self.load_xml_extension('target',chain, rule_number)
133 self.rule_number = rule_number
138 self.xmldoc.freeDoc()