aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-24 18:14:49 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-24 18:16:05 -0400
commit9b7916774c5536806a27d12dcddefb87e62cedfc (patch)
tree4dfacc848e87cd6c2252388ba6c6031332e5ea8e
parent13a7694840c06bbd49875e16d68017dd44e937ab (diff)
downloadb4-9b7916774c5536806a27d12dcddefb87e62cedfc.tar.gz
Warn when we are ignoring trailers
Provide a warning when we are ignoring trailers due to from/name mismatch between the headers and the body. Also provides a -S,--sloppy-trailers option to ignore all mismatches. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--b4/__init__.py96
-rw-r--r--b4/command.py2
-rw-r--r--b4/mbox.py9
3 files changed, 65 insertions, 42 deletions
diff --git a/b4/__init__.py b/b4/__init__.py
index 1883024..24451d4 100644
--- a/b4/__init__.py
+++ b/b4/__init__.py
@@ -135,7 +135,7 @@ class LoreMailbox:
return self.msgid_map[msgid]
return None
- def get_series(self, revision=None):
+ def get_series(self, revision=None, sloppytrailers=False):
if revision is None:
if not len(self.series):
return None
@@ -201,7 +201,9 @@ class LoreMailbox:
else:
pmsg = self.msgid_map[fmsg.in_reply_to]
- trailers = set(fmsg.trailers)
+ trailers, mismatches = fmsg.get_trailers(sloppy=sloppytrailers)
+ for tname, tvalue in mismatches:
+ lser.trailer_mismatches.add((tvalue, fmsg.fromname, fmsg.fromemail))
lvl = 1
while True:
logger.debug('%sParent: %s', ' ' * lvl, pmsg.full_subject)
@@ -293,6 +295,7 @@ class LoreSeries:
self.expected = expected
self.patches = [None] * (expected+1)
self.followups = list()
+ self.trailer_mismatches = set()
self.complete = False
self.has_cover = False
@@ -584,48 +587,59 @@ class LoreMessage:
# Do we have something that looks like a person-trailer?
matches = re.findall(r'^\s*([\w-]+):[ \t]+(.*<\S+>)\s*$', self.body, re.MULTILINE)
+ # These are commonly part of patch/commit metadata
+ badtrailers = ('from', 'author')
if matches:
- # Basic sanity checking -- the trailer must match the name or the email
- # in the From header, to avoid false-positive trailer parsing errors
for tname, tvalue in matches:
- tmatch = False
- namedata = email.utils.getaddresses([tvalue])[0]
- tfrom = re.sub(r'\+[^@]+@', '@', namedata[1].lower())
- hfrom = re.sub(r'\+[^@]+@', '@', self.fromemail.lower())
- tlname = namedata[0].lower()
- hlname = self.fromname.lower()
- tchunks = tfrom.split('@')
- hchunks = hfrom.split('@')
- if tfrom == hfrom:
- logger.debug(' trailer exact email match')
- tmatch = True
- # See if domain part of one of the addresses is a subset of the other one,
- # which should match cases like @linux.intel.com and @intel.com
- elif (len(tchunks) == 2 and len(hchunks) == 2
- and tchunks[0] == hchunks[0]
- and (tchunks[1].find(hchunks[1]) >= 0 or hchunks[1].find(tchunks[1]) >= 0)):
- logger.debug(' trailer fuzzy email match')
- tmatch = True
- # Does the name match, at least?
- elif tlname == hlname:
- logger.debug(' trailer exact name match')
- tmatch = True
- # Finally, see if the header From has a comma in it and try to find all
- # parts in the trailer name
- elif hlname.find(',') > 0:
- nmatch = True
- for nchunk in hlname.split(','):
- if hlname.find(nchunk.strip()) < 0:
- nmatch = False
- break
- if nmatch:
- logger.debug(' trailer fuzzy name match')
- tmatch = True
- if tmatch:
+ if tname.lower() not in badtrailers:
self.trailers.add((tname, tvalue))
- else:
- logger.debug(' ignoring "%s: %s" due to from mismatch (from: %s %s)', tname, tvalue,
- self.fromname, self.fromemail)
+
+ def get_trailers(self, sloppy=False):
+ mismatches = set()
+ if sloppy:
+ return set(self.trailers), mismatches
+
+ trailers = set()
+ for tname, tvalue in self.trailers:
+ tmatch = False
+ namedata = email.utils.getaddresses([tvalue])[0]
+ tfrom = re.sub(r'\+[^@]+@', '@', namedata[1].lower())
+ hfrom = re.sub(r'\+[^@]+@', '@', self.fromemail.lower())
+ tlname = namedata[0].lower()
+ hlname = self.fromname.lower()
+ tchunks = tfrom.split('@')
+ hchunks = hfrom.split('@')
+ if tfrom == hfrom:
+ logger.debug(' trailer exact email match')
+ tmatch = True
+ # See if domain part of one of the addresses is a subset of the other one,
+ # which should match cases like @linux.intel.com and @intel.com
+ elif (len(tchunks) == 2 and len(hchunks) == 2
+ and tchunks[0] == hchunks[0]
+ and (tchunks[1].find(hchunks[1]) >= 0 or hchunks[1].find(tchunks[1]) >= 0)):
+ logger.debug(' trailer fuzzy email match')
+ tmatch = True
+ # Does the name match, at least?
+ elif tlname == hlname:
+ logger.debug(' trailer exact name match')
+ tmatch = True
+ # Finally, see if the header From has a comma in it and try to find all
+ # parts in the trailer name
+ elif hlname.find(',') > 0:
+ nmatch = True
+ for nchunk in hlname.split(','):
+ if hlname.find(nchunk.strip()) < 0:
+ nmatch = False
+ break
+ if nmatch:
+ logger.debug(' trailer fuzzy name match')
+ tmatch = True
+ if tmatch:
+ trailers.add((tname, tvalue))
+ else:
+ mismatches.add((tname, tvalue))
+
+ return trailers, mismatches
def __repr__(self):
out = list()
diff --git a/b4/command.py b/b4/command.py
index a2c7c28..3997035 100644
--- a/b4/command.py
+++ b/b4/command.py
@@ -75,6 +75,8 @@ def cmd():
help='Get a specific version of the patch/series')
sp_am.add_argument('-t', '--apply-cover-trailers', dest='covertrailers', action='store_true', default=False,
help='Apply trailers sent to the cover letter to all patches')
+ sp_am.add_argument('-S', '--sloppy-trailers', dest='sloppytrailers', action='store_true', default=False,
+ help='Apply trailers without email address match checking')
sp_am.add_argument('-T', '--no-add-trailers', dest='noaddtrailers', action='store_true', default=False,
help='Do not add or sort any trailers')
sp_am.add_argument('-s', '--add-my-sob', dest='addmysob', action='store_true', default=False,
diff --git a/b4/mbox.py b/b4/mbox.py
index 5e301c2..7043fa1 100644
--- a/b4/mbox.py
+++ b/b4/mbox.py
@@ -113,7 +113,7 @@ def mbox_to_am(mboxfile, config, cmdargs):
for key, msg in mbx.items():
lmbx.add_message(msg)
- lser = lmbx.get_series(revision=wantver)
+ lser = lmbx.get_series(revision=wantver, sloppytrailers=cmdargs.sloppytrailers)
if lser is None and wantver is None:
logger.critical('No patches found.')
return
@@ -156,6 +156,13 @@ def mbox_to_am(mboxfile, config, cmdargs):
for trailer in lser.patches[0].followup_trailers:
logger.critical(' %s: %s', trailer[0], trailer[1])
logger.critical('NOTE: Rerun with -t to apply them to all patches')
+ if len(lser.trailer_mismatches):
+ logger.critical('---')
+ logger.critical('NOTE: some trailers ignored due to from/email mismatches:')
+ for tvalue, fname, femail in lser.trailer_mismatches:
+ logger.critical(' ! Trailer: %s', tvalue)
+ logger.critical(' From: %s <%s>', fname, femail)
+ logger.critical('NOTE: Rerun with -S to apply them anyway')
logger.critical('---')
if not lser.complete: