from __future__ import print_function
class NoHelperFound(BaseException):
class ParsingError(BaseException):
def __init__(self, line='<line not provided>', reader=None):
BaseException.__init__(self,
'Error at file offset %d, parsing line: %s' %
BaseException.__init__(self, 'Error parsing line: %s' % line)
An object representing the description of an eBPF helper function.
@proto: function prototype of the helper function
@desc: textual description of the helper function
@ret: description of the return value of the helper function
def __init__(self, proto='', desc='', ret=''):
def proto_break_down(self):
Break down helper function protocol into smaller chunks: return type,
name, distincts arguments.
arg_re = re.compile('((const )?(struct )?(\w+|...))( (\**)(\w+))?$')
proto_re = re.compile('(.+) (\**)(\w+)\(((([^,]+)(, )?){1,5})\)$')
capture = proto_re.match(self.proto)
res['ret_type'] = capture.group(1)
res['ret_star'] = capture.group(2)
res['name'] = capture.group(3)
args = capture.group(4).split(', ')
capture = arg_re.match(a)
'type' : capture.group(1),
'star' : capture.group(6),
'name' : capture.group(7)
class HeaderParser(object):
An object used to parse a file in order to extract the documentation of a
list of eBPF helper functions. All the helpers that can be retrieved are
stored as Helper object, in the self.helpers() array.
@filename: name of file to parse, usually include/uapi/linux/bpf.h in the
def __init__(self, filename):
self.reader = open(filename, 'r')
proto = self.parse_proto()
return Helper(proto=proto, desc=desc, ret=ret)
p = re.compile(' \* ?((.+) \**\w+\((((const )?(struct )?(\w+|\.\.\.)( \**\w+)?)(, )?){1,5}\))$')
capture = p.match(self.line)