mirror of https://github.com/fail2ban/fail2ban
move global groups to start of expression (python 3.11 compat)
parent
500895dcfa
commit
7e2ab36d86
|
@ -334,7 +334,7 @@ class Fail2banRegex(object):
|
||||||
fltFile = None
|
fltFile = None
|
||||||
fltOpt = {}
|
fltOpt = {}
|
||||||
if regextype == 'fail':
|
if regextype == 'fail':
|
||||||
if re.search(r'^(?ms)/{0,3}[\w/_\-.]+(?:\[.*\])?$', value):
|
if re.search(r'(?ms)^/{0,3}[\w/_\-.]+(?:\[.*\])?$', value):
|
||||||
try:
|
try:
|
||||||
fltName, fltOpt = extractOptions(value)
|
fltName, fltOpt = extractOptions(value)
|
||||||
if "." in fltName[~5:]:
|
if "." in fltName[~5:]:
|
||||||
|
|
|
@ -35,6 +35,7 @@ logSys = getLogger(__name__)
|
||||||
# check already grouped contains "(", but ignores char "\(" and conditional "(?(id)...)":
|
# check already grouped contains "(", but ignores char "\(" and conditional "(?(id)...)":
|
||||||
RE_GROUPED = re.compile(r'(?<!(?:\(\?))(?<!\\)\((?!\?)')
|
RE_GROUPED = re.compile(r'(?<!(?:\(\?))(?<!\\)\((?!\?)')
|
||||||
RE_GROUP = ( re.compile(r'^((?:\(\?\w+\))?\^?(?:\(\?\w+\))?)(.*?)(\$?)$'), r"\1(\2)\3" )
|
RE_GROUP = ( re.compile(r'^((?:\(\?\w+\))?\^?(?:\(\?\w+\))?)(.*?)(\$?)$'), r"\1(\2)\3" )
|
||||||
|
RE_GLOBALFLAGS = re.compile(r'((?:^|(?!<\\))\(\?[a-z]+\))')
|
||||||
|
|
||||||
RE_EXLINE_NO_BOUNDS = re.compile(r'^\{UNB\}')
|
RE_EXLINE_NO_BOUNDS = re.compile(r'^\{UNB\}')
|
||||||
RE_EXLINE_BOUND_BEG = re.compile(r'^\{\^LN-BEG\}')
|
RE_EXLINE_BOUND_BEG = re.compile(r'^\{\^LN-BEG\}')
|
||||||
|
@ -110,6 +111,11 @@ class DateTemplate(object):
|
||||||
# because it may be very slow in negative case (by long log-lines not matching pattern)
|
# because it may be very slow in negative case (by long log-lines not matching pattern)
|
||||||
|
|
||||||
regex = regex.strip()
|
regex = regex.strip()
|
||||||
|
# cut global flags like (?iu) from RE in order to pre-set it after processing:
|
||||||
|
gf = RE_GLOBALFLAGS.search(regex)
|
||||||
|
if gf:
|
||||||
|
regex = RE_GLOBALFLAGS.sub('', regex, count=1)
|
||||||
|
# check word boundaries needed:
|
||||||
boundBegin = wordBegin and not RE_NO_WRD_BOUND_BEG.search(regex)
|
boundBegin = wordBegin and not RE_NO_WRD_BOUND_BEG.search(regex)
|
||||||
boundEnd = wordEnd and not RE_NO_WRD_BOUND_END.search(regex)
|
boundEnd = wordEnd and not RE_NO_WRD_BOUND_END.search(regex)
|
||||||
# if no group add it now, should always have a group(1):
|
# if no group add it now, should always have a group(1):
|
||||||
|
@ -135,6 +141,8 @@ class DateTemplate(object):
|
||||||
self.flags |= DateTemplate.LINE_END
|
self.flags |= DateTemplate.LINE_END
|
||||||
# remove possible special pattern "**" in front and end of regex:
|
# remove possible special pattern "**" in front and end of regex:
|
||||||
regex = RE_DEL_WRD_BOUNDS[0].sub(RE_DEL_WRD_BOUNDS[1], regex)
|
regex = RE_DEL_WRD_BOUNDS[0].sub(RE_DEL_WRD_BOUNDS[1], regex)
|
||||||
|
if gf: # restore global flags:
|
||||||
|
regex = gf.group(1) + regex
|
||||||
self._regex = regex
|
self._regex = regex
|
||||||
logSys.log(4, ' constructed regex %s', regex)
|
logSys.log(4, ' constructed regex %s', regex)
|
||||||
self._cRegex = None
|
self._cRegex = None
|
||||||
|
|
Loading…
Reference in New Issue