aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-14 21:54:40 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2020-03-14 21:54:40 -0400
commitae57d6ea0b7abb7f945cac6010f5c9b28b041dde (patch)
treee21b608b991c7d1be5c4d94c1e51feecefbcc628
downloadb4-ae57d6ea0b7abb7f945cac6010f5c9b28b041dde.tar.gz
Initial commit after porting from korg-helpers
This is the beginning of a new tool that inherits from get-lore-mbox and attest-patches. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--.gitignore11
-rw-r--r--b4/__init__.py1226
-rw-r--r--b4/attest.py179
-rw-r--r--b4/command.py130
-rw-r--r--b4/mbox.py397
-rw-r--r--requirements.txt1
-rw-r--r--setup.py34
7 files changed, 1978 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..68be5d4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,11 @@
+*.swp
+*.pyc
+*.pyo
+*.json
+*.pdf
+test.log
+build/*
+dist/*
+MANIFEST
+.idea
+__pycache__
diff --git a/b4/__init__.py b/b4/__init__.py
new file mode 100644
index 0000000..217508e
--- /dev/null
+++ b/b4/__init__.py
@@ -0,0 +1,1226 @@
+# -*- coding: utf-8 -*-
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (C) 2020 by the Linux Foundation
+import subprocess
+import logging
+import hashlib
+import re
+import os
+import fnmatch
+import time
+import email.utils
+import email.policy
+import requests
+import urllib.parse
+
+from tempfile import mkstemp
+
+from email import charset
+charset.add_charset('utf-8', None)
+emlpolicy = email.policy.EmailPolicy(utf8=True, cte_type='8bit', max_line_length=None)
+
+VERSION = '0.3.0'
+ATTESTATION_FORMAT_VER = '0.1'
+
+logger = logging.getLogger('b4')
+
+HUNK_RE = re.compile(r'^@@ -\d+(?:,(\d+))? \+\d+(?:,(\d+))? @@')
+FILENAME_RE = re.compile(r'^(---|\+\+\+) (\S+)')
+
+PASS_SIMPLE = '[P]'
+FAIL_SIMPLE = '[F]'
+PASS_FANCY = '[\033[32m✓\033[0m]'
+FAIL_FANCY = '[\033[31m✗\033[0m]'
+
+# You can use bash-style globbing here
+WANTHDRS = [
+ 'sender',
+ 'from',
+ 'to',
+ 'cc',
+ 'subject',
+ 'date',
+ 'message-id',
+ 'resent-message-id',
+ 'reply-to',
+ 'in-reply-to',
+ 'references',
+ 'list-id',
+ 'errors-to',
+ 'x-mailing-list',
+ 'resent-to',
+]
+
+# You can use bash-style globbing here
+# end with '*' to include any other trailers
+# You can change the default in your ~/.gitconfig, e.g.:
+# [b4]
+# # remember to end with ,*
+# trailer-order=link*,fixes*,cc*,reported*,suggested*,original*,co-*,tested*,reviewed*,acked*,signed-off*,*
+DEFAULT_TRAILER_ORDER = 'fixes*,reported*,suggested*,original*,co-*,signed-off*,tested*,reviewed*,acked*,cc*,link*,*'
+
+LOREADDR = 'https://lore.kernel.org'
+
+DEFAULT_CONFIG = {
+ 'midmask': LOREADDR + '/r/%s',
+ 'linkmask': LOREADDR + '/r/%s',
+ 'trailer-order': DEFAULT_TRAILER_ORDER,
+ # off: do not bother checking attestation
+ # check: print an attaboy when attestation is found
+ # softfail: print a warning when no attestation found
+ # hardfail: exit with an error when no attestation found
+ 'attestation-policy': 'check',
+ # "gpg" (whatever gpg is configured to do) or "tofu" to force tofu mode
+ 'attestation-trust-model': 'gpg',
+ # strict: must match one of the uids on the key to pass
+ # loose: any valid and trusted key will be accepted
+ 'attestation-uid-match': 'loose',
+ # NB! This whole behaviour will change once public-inbox
+ # gains support for cross-list searches
+ 'attestation-query-url': LOREADDR + '/signatures',
+ # We'll use the default gnupg homedir, unless you set it here
+ 'attestation-gnupghome': None,
+ # Do you like simple or fancy checkmarks?
+ 'attestation-checkmarks': 'fancy',
+ # If this is not set, we'll use what we find in
+ # git-config for gpg.program, and if that's not set,
+ # we'll use "gpg" and hope for the better
+ 'gpgbin': None,
+}
+
+# This is where we store actual config
+MAIN_CONFIG = None
+# This is git-config user.*
+USER_CONFIG = None
+
+# Used for tracking attestations we have already looked up
+ATTESTATIONS = list()
+# Used for keeping a cache of subkey lookups to minimize shelling out to gpg
+SUBKEY_DATA = dict()
+# Used for storing our requests session
+REQSESSION = None
+
+
+class LoreMailbox:
+ def __init__(self):
+ self.msgid_map = dict()
+ self.series = dict()
+ self.followups = list()
+ self.unknowns = list()
+
+ def __repr__(self):
+ out = list()
+ for key, lser in self.series.items():
+ out.append(str(lser))
+ out.append('--- Followups ---')
+ for lmsg in self.followups:
+ out.append(' %s' % lmsg.full_subject)
+ out.append('--- Unknowns ---')
+ for lmsg in self.unknowns:
+ out.append(' %s' % lmsg.full_subject)
+
+ return '\n'.join(out)
+
+ def get_by_msgid(self, msgid):
+ if msgid in self.msgid_map:
+ return self.msgid_map[msgid]
+ return None
+
+ def get_series(self, revision=None):
+ if revision is None:
+ if not len(self.series):
+ return None
+ # Use the highest revision
+ revision = max(self.series.keys())
+ elif revision not in self.series.keys():
+ return None
+
+ lser = self.series[revision]
+
+ # Is it empty?
+ empty = True
+ for lmsg in lser.patches:
+ if lmsg is not None:
+ empty = False
+ break
+ if empty:
+ logger.critical('All patches in series v%s are missing.', lser.revision)
+ return None
+
+ # Do we have a cover letter for it?
+ if not lser.has_cover:
+ # Let's find the first patch with an in-reply-to and see if that
+ # is our cover letter
+ for member in lser.patches:
+ if member is not None and member.in_reply_to is not None:
+ potential = self.get_by_msgid(member.in_reply_to)
+ if potential is not None and potential.has_diffstat and not potential.has_diff:
+ # This is *probably* the cover letter
+ lser.patches[0] = potential
+ lser.has_cover = True
+ break
+
+ # Do we have any follow-ups?
+ for fmsg in self.followups:
+ logger.debug('Analyzing follow-up: %s (%s)', fmsg.full_subject, fmsg.fromemail)
+ # If there are no trailers in this one, ignore it
+ if not len(fmsg.trailers):
+ logger.debug(' no trailers found, skipping')
+ continue
+ # if it's for the wrong revision, ignore it
+ if not fmsg.revision_inferred and lser.revision != fmsg.revision:
+ logger.debug(' follow-up for the wrong revision, skipping')
+ continue
+ # Go up through the follow-ups and tally up trailers until
+ # we either run out of in-reply-tos, or we find a patch in
+ # our series
+ if fmsg.in_reply_to is None:
+ # Check if there's something matching in References
+ refs = fmsg.msg.get('References', '')
+ pmsg = None
+ for ref in refs.split():
+ refid = ref.strip('<>')
+ if refid in self.msgid_map and refid != fmsg.msgid:
+ pmsg = self.msgid_map[refid]
+ break
+ if pmsg is None:
+ # Can't find the message we're replying to here
+ continue
+ else:
+ pmsg = self.msgid_map[fmsg.in_reply_to]
+
+ trailers = fmsg.trailers
+ lvl = 1
+ while True:
+ logger.debug('%sParent: %s', ' ' * lvl, pmsg.full_subject)
+ logger.debug('%sTrailers:', ' ' * lvl)
+ for trailer in set(trailers):
+ logger.debug('%s%s: %s', ' ' * (lvl+1), trailer[0], trailer[1])
+ found = False
+ if lser.revision != pmsg.revision:
+ break
+ for lmsg in lser.patches:
+ if lmsg is not None and lmsg.msgid == pmsg.msgid:
+ # Confirmed, this is our parent patch
+ lmsg.followup_trailers += trailers
+ found = True
+ break
+ if found:
+ break
+ elif pmsg.in_reply_to and pmsg.in_reply_to in self.msgid_map:
+ lvl += 1
+ trailers += pmsg.trailers
+ pmsg = self.msgid_map[pmsg.in_reply_to]
+ else:
+ break
+
+ return lser
+
+ def add_message(self, msg):
+ lmsg = LoreMessage(msg)
+ logger.debug('Looking at: %s', lmsg.full_subject)
+ self.msgid_map[lmsg.msgid] = lmsg
+
+ if lmsg.has_diff or lmsg.has_diffstat:
+ if lmsg.revision not in self.series:
+ self.series[lmsg.revision] = LoreSeries(lmsg.revision, lmsg.expected)
+ if len(self.series) > 1:
+ logger.info('Found new series v%s', lmsg.revision)
+ if lmsg.has_diff:
+ # Attempt to auto-number series from the same author who did not bother
+ # to set v2, v3, etc in the patch revision
+ if (lmsg.counter == 1 and lmsg.counters_inferred
+ and not lmsg.reply and lmsg.lsubject.patch and not lmsg.lsubject.resend):
+ omsg = self.series[lmsg.revision].patches[lmsg.counter]
+ if (omsg is not None and omsg.counters_inferred and lmsg.fromemail == omsg.fromemail
+ and omsg.date < lmsg.date):
+ lmsg.revision = len(self.series) + 1
+ self.series[lmsg.revision] = LoreSeries(lmsg.revision, lmsg.expected)
+ logger.info('Assuming new revision: v%s (%s)', lmsg.revision, lmsg.full_subject)
+ logger.debug(' adding as patch')
+ self.series[lmsg.revision].add_patch(lmsg)
+ elif lmsg.counter == 0 and lmsg.has_diffstat:
+ # Bona-fide cover letter
+ logger.debug(' adding as cover letter')
+ self.series[lmsg.revision].add_cover(lmsg)
+ elif lmsg.reply:
+ # We'll figure out where this belongs later
+ logger.debug(' adding to followups')
+ self.followups.append(lmsg)
+ elif lmsg.reply:
+ logger.debug(' adding to followups')
+ self.followups.append(lmsg)
+ elif re.search(r'^Comment: att-fmt-ver:', lmsg.body, re.I | re.M):
+ logger.debug('Found attestation message')
+ LoreAttestationDocument.load_from_string(lmsg.msgid, lmsg.body)
+ # We don't keep it, because it's not useful for us beyond this point
+ else:
+ logger.debug(' adding to unknowns')
+ self.unknowns.append(lmsg)
+
+
+class LoreSeries:
+ def __init__(self, revision, expected):
+ self.revision = revision
+ self.expected = expected
+ self.patches = [None] * (expected+1)
+ self.followups = list()
+ self.complete = False
+ self.has_cover = False
+
+ def __repr__(self):
+ out = list()
+ if self.has_cover:
+ out.append('- Series: [v%s] %s' % (self.revision, self.patches[0].subject))
+ elif self.patches[1] is not None:
+ out.append('- Series: [v%s] %s' % (self.revision, self.patches[1].subject))
+ else:
+ out.append('- Series: [v%s] (untitled)' % self.revision)
+
+ out.append(' revision: %s' % self.revision)
+ out.append(' expected: %s' % self.expected)
+ out.append(' complete: %s' % self.complete)
+ out.append(' has_cover: %s' % self.has_cover)
+ out.append(' patches:')
+ at = 0
+ for member in self.patches:
+ if member is not None:
+ out.append(' [%s/%s] %s' % (at, self.expected, member.subject))
+ if member.followup_trailers:
+ out.append(' Add: %s' % ', '.join(member.followup_trailers))
+ else:
+ out.append(' [%s/%s] MISSING' % (at, self.expected))
+ at += 1
+
+ return '\n'.join(out)
+
+ def add_patch(self, lmsg):
+ while len(self.patches) < lmsg.expected + 1:
+ self.patches.append(None)
+ self.expected = lmsg.expected
+ if self.patches[lmsg.counter] is not None:
+ # Okay, weird, is the one in there a reply?
+ omsg = self.patches[lmsg.counter]
+ if omsg.reply or (omsg.counters_inferred and not lmsg.counters_inferred):
+ # Replace that one with this one
+ logger.debug(' replacing existing: %s', omsg.subject)
+ self.patches[lmsg.counter] = lmsg
+ else:
+ self.patches[lmsg.counter] = lmsg
+ self.complete = not (None in self.patches[1:])
+
+ def add_cover(self, lmsg):
+ self.add_patch(lmsg)
+ self.has_cover = True
+
+ def get_slug(self):
+ # Find the first non-None entry
+ lmsg = None
+ for lmsg in self.patches:
+ if lmsg is not None:
+ break
+
+ if lmsg is None:
+ return 'undefined'
+
+ prefix = time.strftime('%Y%m%d', lmsg.date[:9])
+ authorline = email.utils.getaddresses(lmsg.msg.get_all('from', []))[0]
+ author = re.sub(r'\W+', '_', authorline[1]).strip('_').lower()
+ slug = '%s_%s' % (prefix, author)
+ if self.revision != 1:
+ slug = 'v%s_%s' % (self.revision, slug)
+
+ return slug
+
+ def save_am_mbox(self, mbx, noaddtrailers, covertrailers,
+ trailer_order=None, addmysob=False, addlink=False, linkmask=None):
+
+ usercfg = get_user_config()
+ config = get_main_config()
+
+ if addmysob:
+ if 'name' not in usercfg or 'email' not in usercfg:
+ logger.critical('WARNING: Unable to add your Signed-off-by: git returned no user.name or user.email')
+ addmysob = False
+
+ attdata = [None] * self.expected
+ attpolicy = config['attestation-policy']
+ exact_from_match = False
+ if config['attestation-uid-match'] == 'strict':
+ exact_from_match = True
+
+ if config['attestation-checkmarks'] == 'fancy':
+ attpass = PASS_FANCY
+ attfail = FAIL_FANCY
+ else:
+ attpass = PASS_SIMPLE
+ attfail = FAIL_SIMPLE
+
+ at = 1
+ for lmsg in self.patches[1:]:
+ if lmsg is not None:
+ if self.has_cover and covertrailers and self.patches[0].followup_trailers:
+ lmsg.followup_trailers += self.patches[0].followup_trailers
+ if addmysob:
+ lmsg.followup_trailers.append(('Signed-off-by', '%s <%s>' % (usercfg['name'], usercfg['email'])))
+ if addlink:
+ lmsg.followup_trailers.append(('Link', linkmask % lmsg.msgid))
+
+ if attpolicy != 'off':
+ lore_lookup = False
+ if at == 1:
+ # We only hit lore on the first patch
+ lore_lookup = True
+ attdoc = lmsg.get_attestation(lore_lookup=lore_lookup, exact_from_match=exact_from_match)
+ if attdoc is None:
+ if attpolicy in ('softfail', 'hardfail'):
+ logger.info(' %s %s', attfail, lmsg.full_subject)
+ else:
+ logger.info(' %s', lmsg.full_subject)
+ else:
+ logger.info(' %s %s', attpass, lmsg.full_subject)
+ attdata[at-1] = attdoc.attestor.get_trailer(lmsg.fromemail)
+ else:
+ logger.info(' %s', lmsg.full_subject)
+
+ add_trailers = True
+ if noaddtrailers:
+ add_trailers = False
+ msg = lmsg.get_am_message(add_trailers=add_trailers, trailer_order=trailer_order)
+ # Pass a policy that avoids most legacy encoding horrors
+ mbx.add(msg.as_bytes(policy=emlpolicy))
+ else:
+ logger.error(' ERROR: missing [%s/%s]!', at, self.expected)
+ at += 1
+
+ if attpolicy == 'off':
+ return mbx
+ failed = None in attdata
+ if not failed:
+ logger.info(' ---')
+ for trailer in set(attdata):
+ logger.info(' %s %s', attpass, trailer)
+ return mbx
+
+ errors = set()
+ for attdoc in ATTESTATIONS:
+ errors.update(attdoc.errors)
+
+ if errors:
+ logger.critical(' ---')
+ logger.critical(' Attestation is available, but did not succeed:')
+ for error in errors:
+ logger.critical(' %s %s', attfail, error)
+
+ if attpolicy == 'hardfail':
+ import sys
+ sys.exit(128)
+
+ return mbx
+
+ def save_cover(self, outfile):
+ cover_msg = self.patches[0].get_am_message(add_trailers=False, trailer_order=None)
+ with open(outfile, 'w') as fh:
+ fh.write(cover_msg.as_string(policy=emlpolicy))
+ logger.critical('Cover: %s', outfile)
+
+
+class LoreMessage:
+ def __init__(self, msg):
+ self.msg = msg
+ self.msgid = None
+
+ # Subject-based info
+ self.lsubject = None
+ self.full_subject = None
+ self.subject = None
+ self.reply = False
+ self.revision = 1
+ self.counter = 1
+ self.expected = 1
+ self.revision_inferred = True
+ self.counters_inferred = True
+
+ # Header-based info
+ self.in_reply_to = None
+ self.fromname = None
+ self.fromemail = None
+ self.date = None
+
+ # Body and body-based info
+ self.body = None
+ self.has_diff = False
+ self.has_diffstat = False
+ self.trailers = list()
+ self.followup_trailers = list()
+
+ self.attestation = None
+
+ self.msgid = LoreMessage.get_clean_msgid(self.msg)
+ self.lsubject = LoreSubject(msg['Subject'])
+ # Copy them into this object for convenience
+ self.full_subject = self.lsubject.full_subject
+ self.subject = self.lsubject.subject
+ self.reply = self.lsubject.reply
+ self.revision = self.lsubject.revision
+ self.counter = self.lsubject.counter
+ self.expected = self.lsubject.expected
+ self.revision_inferred = self.lsubject.revision_inferred
+ self.counters_inferred = self.lsubject.counters_inferred
+
+ # Handle [PATCH 6/5]
+ if self.counter > self.expected:
+ self.expected = self.counter
+
+ self.in_reply_to = LoreMessage.get_clean_msgid(self.msg, header='In-Reply-To')
+
+ try:
+ fromdata = email.utils.getaddresses(self.msg.get_all('from', []))[0]
+ self.fromname = fromdata[0]
+ self.fromemail = fromdata[1]
+ except IndexError:
+ pass
+
+ self.date = email.utils.parsedate_tz(str(self.msg['Date']))
+
+ diffre = re.compile(r'^(---.*\n\+\+\+|GIT binary patch)', re.M | re.I)
+ diffstatre = re.compile(r'^\s*\d+ file.*\d+ (insertion|deletion)', re.M | re.I)
+
+ # walk until we find the first text/plain part
+ mcharset = self.msg.get_content_charset()
+ if not mcharset:
+ mcharset = 'utf-8'
+
+ for part in msg.walk():
+ cte = part.get_content_type()
+ if cte.find('/plain') < 0 and cte.find('/x-patch') < 0:
+ continue
+ payload = part.get_payload(decode=True)
+ if payload is None:
+ continue
+ pcharset = part.get_content_charset()
+ if not pcharset:
+ pcharset = mcharset
+ payload = payload.decode(pcharset, errors='replace')
+ if self.body is None:
+ self.body = payload
+ continue
+ # If we already found a body, but we now find something that contains a diff,
+ # then we prefer this part
+ if diffre.search(payload):
+ self.body = payload
+
+ if diffstatre.search(self.body):
+ self.has_diffstat = True
+ if diffre.search(self.body):
+ self.has_diff = True
+
+ # We only pay attention to trailers that are sent in reply
+ if self.reply:
+ # Do we have something that looks like a person-trailer?
+ matches = re.findall(r'^\s*([\w-]+):[ \t]+(.*<\S+>)\s*$', self.body, re.MULTILINE)
+ 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:
+ self.trailers.append((tname, tvalue))
+ else:
+ logger.debug(' ignoring "%s: %s" due to from mismatch (from: %s %s)', tname, tvalue,
+ self.fromname, self.fromemail)
+
+ def __repr__(self):
+ out = list()
+ out.append('msgid: %s' % self.msgid)
+ out.append(str(self.lsubject))
+
+ out.append(' fromname: %s' % self.fromname)
+ out.append(' fromemail: %s' % self.fromemail)
+ out.append(' date: %s' % str(self.date))
+ out.append(' in_reply_to: %s' % self.in_reply_to)
+
+ # Header-based info
+ out.append(' --- begin body ---')
+ for line in self.body.split('\n'):
+ out.append(' |%s' % line)
+ out.append(' --- end body ---')
+
+ # Body and body-based info
+ out.append(' has_diff: %s' % self.has_diff)
+ out.append(' has_diffstat: %s' % self.has_diffstat)
+ out.append(' --- begin my trailers ---')
+ for trailer in self.trailers:
+ out.append(' |%s' % str(trailer))
+ out.append(' --- begin followup trailers ---')
+ for trailer in self.followup_trailers:
+ out.append(' |%s' % str(trailer))
+ out.append(' --- end trailers ---')
+
+ return '\n'.join(out)
+
+ @staticmethod
+ def clean_header(hdrval):
+ uval = hdrval.replace('\n', ' ')
+ new_hdrval = re.sub(r'\s+', ' ', uval)
+ return new_hdrval.strip()
+
+ @staticmethod
+ def get_clean_msgid(msg, header='Message-Id'):
+ msgid = None
+ raw = msg.get(header)
+ if raw:
+ matches = re.search(r'<([^>]+)>', LoreMessage.clean_header(raw))
+ if matches:
+ msgid = matches.groups()[0]
+ return msgid
+
+ @staticmethod
+ def get_patch_hash(diff):
+ # The aim is to represent the patch as if you did the following:
+ # git diff HEAD~.. | dos2unix | sha256sum
+ #
+ # This subroutine removes anything at the beginning of diff data, like
+ # diffstat or any other auxiliary data, and anything trailing at the end
+ # XXX: This currently doesn't work for git binary patches
+ #
+ diff = diff.replace('\r', '')
+ diff = diff.strip() + '\n'
+
+ # For keeping a buffer of lines preceding @@ ... @@
+ buflines = list()
+
+ phasher = hashlib.sha256()
+
+ # Used for counting where we are in the patch
+ pp = 0
+ for line in diff.split('\n'):
+ hunk_match = HUNK_RE.match(line)
+ if hunk_match:
+ # logger.debug('Crunching %s', line)
+ mlines, plines = hunk_match.groups()
+ pp = int(plines)
+ addlines = list()
+ for bline in reversed(buflines):
+ # Go backward and add lines until we get to the start
+ # or encounter a blank line
+ if len(bline.strip()) == 0:
+ break
+ addlines.append(bline)
+ if addlines:
+ phasher.update(('\n'.join(reversed(addlines)) + '\n').encode('utf-8'))
+ buflines = list()
+ # Feed this line to the hasher
+ phasher.update((line + '\n').encode('utf-8'))
+ continue
+ if pp > 0:
+ # Inside the patch
+ phasher.update((line + '\n').encode('utf-8'))
+ if line[0] != '-':
+ pp -= 1
+ continue
+ # Not anything we recognize, so stick into buflines
+ buflines.append(line)
+
+ return phasher.hexdigest()
+
+ def load_hashes(self):
+ msg_out = mkstemp()
+ patch_out = mkstemp()
+ cmdargs = ['mailinfo', '--encoding=UTF-8', msg_out[1], patch_out[1]]
+ ecode, info = git_run_command(None, cmdargs, self.msg.as_bytes())
+ if ecode > 0:
+ logger.debug('ERROR: Could not get mailinfo')
+ return
+ ihasher = hashlib.sha256()
+
+ for line in info.split('\n'):
+ # We don't use the "Date:" field because it is likely to be
+ # mangled between when git-format-patch generates it and
+ # when it is sent out by git-send-email (or other tools).
+ if re.search(r'^(Author|Email|Subject):', line):
+ ihasher.update((line + '\n').encode('utf-8'))
+ i = ihasher.hexdigest()
+
+ with open(msg_out[1], 'r') as mfh:
+ msg = mfh.read()
+ mhasher = hashlib.sha256()
+ mhasher.update(msg.encode('utf-8'))
+ m = mhasher.hexdigest()
+ os.unlink(msg_out[1])
+
+ p = None
+ with open(patch_out[1], 'r') as pfh:
+ patch = pfh.read()
+ if len(patch.strip()):
+ p = LoreMessage.get_patch_hash(patch)
+ os.unlink(patch_out[1])
+
+ if i and m and p:
+ self.attestation = LoreAttestation(i, m, p)
+
+ def fix_trailers(self, trailer_order=None):
+ bodylines = self.body.split('\n')
+ # Get existing trailers
+ # 1. Find the first ---
+ # 2. Go backwards and grab everything matching ^[\w-]+:\s.*$ until a blank line
+ fixlines = list()
+ trailersdone = False
+ for line in bodylines:
+ if trailersdone:
+ fixlines.append(line)
+ continue
+
+ if line.strip() == '---':
+ # Start going backwards in fixlines
+ btrailers = list()
+ for rline in reversed(fixlines):
+ if not len(rline.strip()):
+ break
+ matches = re.search(r'^([\w-]+):\s+(.*)', rline)
+ if not matches:
+ break
+ fixlines.pop()
+ btrailers.append(matches.groups())
+
+ # Now we add mix-in trailers
+ btrailers.reverse()
+ trailers = btrailers + self.followup_trailers
+ added = list()
+ if trailer_order is None:
+ trailer_order = DEFAULT_TRAILER_ORDER
+ for trailermatch in trailer_order:
+ for trailer in trailers:
+ if trailer in added:
+ continue
+ if fnmatch.fnmatch(trailer[0].lower(), trailermatch.strip()):
+ fixlines.append('%s: %s' % trailer)
+ if trailer not in btrailers:
+ logger.info(' Added: %s: %s' % trailer)
+ else:
+ logger.debug(' Kept: %s: %s' % trailer)
+ added.append(trailer)
+ trailersdone = True
+ fixlines.append(line)
+ self.body = '\n'.join(fixlines)
+
+ def get_am_message(self, add_trailers=True, trailer_order=None):
+ if add_trailers:
+ self.fix_trailers(trailer_order=trailer_order)
+ am_body = self.body
+ am_msg = email.message.EmailMessage()
+ am_msg.set_payload(am_body.encode('utf-8'))
+ # Clean up headers
+ for hdrname, hdrval in self.msg.items():
+ lhdrname = hdrname.lower()
+ wanthdr = False
+ for hdrmatch in WANTHDRS:
+ if fnmatch.fnmatch(lhdrname, hdrmatch):
+ wanthdr = True
+ break
+ if wanthdr:
+ new_hdrval = LoreMessage.clean_header(hdrval)
+ # noinspection PyBroadException
+ try:
+ am_msg.add_header(hdrname, new_hdrval)
+ except:
+ # A broad except to handle any potential weird header conditions
+ pass
+ am_msg.set_charset('utf-8')
+ return am_msg
+
+ def _load_attestation(self, lore_lookup=True):
+ self.load_hashes()
+ if self.attestation:
+ self.attestation.validate(lore_lookup=lore_lookup)
+
+ def get_attestation(self, lore_lookup=True, exact_from_match=True):
+ self._load_attestation(lore_lookup=lore_lookup)
+ if not self.attestation or not self.attestation.passing:
+ return None
+
+ for attdoc in self.attestation.attdocs:
+ if not exact_from_match:
+ # We return the first hit
+ return attdoc
+ # Does this doc have an exact match?
+ uid = attdoc.attestor.get_matching_uid(self.fromemail)
+ if uid[1] == self.fromemail:
+ return attdoc
+ # stick an error in the first available attdoc saying
+ # that exact from match failed
+ self.attestation.attdocs[0].errors.add('Exact UID match failed for %s' % self.fromemail)
+
+ return None
+
+
+class LoreSubject:
+ def __init__(self, subject):
+ # Subject-based info
+ self.full_subject = None
+ self.subject = None
+ self.reply = False
+ self.resend = False
+ self.patch = False
+ self.rfc = False
+ self.revision = 1
+ self.counter = 1
+ self.expected = 1
+ self.revision_inferred = True
+ self.counters_inferred = True
+ self.prefixes = list()
+
+ subject = re.sub(r'\s+', ' ', LoreMessage.clean_header(subject)).strip()
+ # Remove any leading [] that don't have "patch", "resend" or "rfc" in them
+ while True:
+ oldsubj = subject
+ subject = re.sub(r'^\s*\[[^\]]*\]\s*(\[[^\]]*(:?patch|resend|rfc).*)', '\\1', subject, flags=re.IGNORECASE)
+ if oldsubj == subject:
+ break
+
+ # Remove any brackets inside brackets
+ while True:
+ oldsubj = subject
+ subject = re.sub(r'^\s*\[([^\]]*)\[([^\]]*)\]', '[\\1\\2]', subject)
+ subject = re.sub(r'^\s*\[([^\]]*)\]([^\]]*)\]', '[\\1\\2]', subject)
+ if oldsubj == subject:
+ break
+
+ self.full_subject = subject
+ # Is it a reply?
+ if re.search(r'^(Re|Aw|Fwd):', subject, re.I) or re.search(r'^\w{2,3}:\s*\[', subject):
+ self.reply = True
+ subject = re.sub(r'^\w+:\s*\[', '[', subject)
+
+ # Find all [foo] in the title
+ while subject.find('[') == 0:
+ matches = re.search(r'^\[([^\]]*)\]', subject)
+ for chunk in matches.groups()[0].split():
+ # Remove any trailing commas or semicolons
+ chunk = chunk.strip(',;')
+ if re.search(r'^\d{1,3}/\d{1,3}$', chunk):
+ counters = chunk.split('/')
+ self.counter = int(counters[0])
+ self.expected = int(counters[1])
+ self.counters_inferred = False
+ elif re.search(r'^v\d+$', chunk, re.IGNORECASE):
+ self.revision = int(chunk[1:])
+ self.revision_inferred = False
+ elif chunk.lower().find('rfc') == 0:
+ self.rfc = True
+ elif chunk.lower().find('resend') == 0:
+ self.resend = True
+ elif chunk.lower().find('patch') == 0:
+ self.patch = True
+ self.prefixes.append(chunk)
+ subject = re.sub(r'^\s*\[[^\]]*\]\s*', '', subject)
+ self.subject = subject
+
+ def __repr__(self):
+ out = list()
+ out.append(' full_subject: %s' % self.full_subject)
+ out.append(' subject: %s' % self.subject)
+ out.append(' reply: %s' % self.reply)
+ out.append(' resend: %s' % self.resend)
+ out.append(' patch: %s' % self.patch)
+ out.append(' rfc: %s' % self.rfc)
+ out.append(' revision: %s' % self.revision)
+ out.append(' revision_inferred: %s' % self.revision_inferred)
+ out.append(' counter: %s' % self.counter)
+ out.append(' expected: %s' % self.expected)
+ out.append(' counters_inferred: %s' % self.counters_inferred)
+ out.append(' prefixes: %s' % ', '.join(self.prefixes))
+
+ return '\n'.join(out)
+
+
+class LoreAttestor:
+ def __init__(self, keyid):
+ self.keyid = keyid
+ self.uids = list()
+
+ self.load_subkey_uids()
+
+ def load_subkey_uids(self):
+ global SUBKEY_DATA
+ if self.keyid not in SUBKEY_DATA:
+ gpgargs = ['--with-colons', '--list-keys', self.keyid]
+ ecode, keyinfo = gpg_run_command(gpgargs)
+ if ecode > 0:
+ logger.critical('ERROR: Unable to get UIDs list matching key %s', self.keyid)
+ return
+
+ uids = list()
+ for line in keyinfo.split('\n'):
+ if line[:4] != 'uid:':
+ continue
+ chunks = line.split(':')
+ if chunks[1] in ('r',):
+ # Revoked UID, ignore
+ continue
+ uids.append(chunks[9])
+ SUBKEY_DATA[self.keyid] = email.utils.getaddresses(uids)
+
+ self.uids = SUBKEY_DATA[self.keyid]
+
+ def get_primary_uid(self):
+ return self.uids[0]
+
+ def get_matching_uid(self, fromaddr):
+ for uid in self.uids:
+ if fromaddr == uid[1]:
+ return uid
+
+ logger.debug('No exact match, returning primary UID')
+ return self.uids[0]
+
+ def get_trailer(self, fromaddr):
+ if fromaddr:
+ uid = self.get_matching_uid(fromaddr)
+ else:
+ uid = self.uids[0]
+
+ return 'Attestation-by: %s <%s> (pgp: %s)' % (uid[0], uid[1], self.keyid)
+
+ def __repr__(self):
+ out = list()
+ out.append(' keyid: %s' % self.keyid)
+ for uid in self.uids:
+ out.append(' uid: %s <%s>' % uid)
+ return '\n'.join(out)
+
+
+class LoreAttestationDocument:
+ def __init__(self, source, sigdata):
+ self.source = source
+ self.good = False
+ self.valid = False
+ self.trusted = False
+ self.passing = False
+ self.attestor = None
+ self.hashes = set()
+ self.errors = set()
+
+ gpgargs = ['--verify', '--status-fd=1']
+ config = get_main_config()
+ if config['attestation-trust-model'] == 'tofu':
+ gpgargs += ['--trust-model', 'tofu', '--tofu-default-policy', 'good']
+
+ logger.debug('Validating document obtained from %s', self.source)
+ ecode, output = gpg_run_command(gpgargs, stdin=sigdata.encode('utf-8'))
+ if ecode == 0:
+ # We're looking for both GOODSIG and VALIDSIG
+ gs_matches = re.search(r'^\[GNUPG:\] GOODSIG ([0-9A-F]+)\s+.*$', output, re.M)
+ if gs_matches:
+ logger.debug(' GOODSIG')
+ self.good = True
+ keyid = gs_matches.groups()[0]
+ self.attestor = LoreAttestor(keyid)
+ puid = '%s <%s>' % self.attestor.get_primary_uid()
+ if re.search(r'^\[GNUPG:\] VALIDSIG', output, re.M):
+ logger.debug(' VALIDSIG')
+ self.valid = True
+ # Do we have a TRUST_(FULLY|ULTIMATE)?
+ matches = re.search(r'^\[GNUPG:\] TRUST_(FULLY|ULTIMATE)', output, re.M)
+ if matches:
+ logger.debug(' TRUST_%s', matches.groups()[0])
+ self.trusted = True
+ else:
+ self.errors.add('Insufficient trust on key: %s (%s)' % (keyid, puid))
+ else:
+ self.errors.add('Signature not valid from key: %s (%s)' % (keyid, puid))
+ else:
+ # Are we missing a key?
+ matches = re.search(r'^\[GNUPG:\] NO_PUBKEY ([0-9A-F]+)$', output, re.M)
+ if matches:
+ self.errors.add('Missing public key: %s' % matches.groups()[0])
+ else:
+ logger.debug('NOGOOD: Signature on %s failed to verify', self.source)
+ return
+
+ if self.good and self.valid and self.trusted:
+ self.passing = True
+
+ hg = [None, None, None]
+ for line in sigdata.split('\n'):
+ # It's a yaml document, but we don't parse it as yaml for safety reasons
+ line = line.rstrip()
+ if re.search(r'^([0-9a-f-]{26}:|-----BEGIN.*)$', line):
+ if None not in hg:
+ self.hashes.add(tuple(hg))
+ hg = [None, None, None]
+ continue
+ matches = re.search(r'^\s+([imp]):\s*([0-9a-f]{64})$', line)
+ if matches:
+ t, v = matches.groups()
+ if t == 'i':
+ hg[0] = v
+ elif t == 'm':
+ hg[1] = v
+ elif t == 'p':
+ hg[2] = v
+
+ def __repr__(self):
+ out = list()
+ out.append(' source: %s' % self.source)
+ out.append(' good: %s' % self.good)
+ out.append(' valid: %s' % self.valid)
+ out.append(' trusted: %s' % self.trusted)
+ if self.attestor is not None:
+ out.append(' attestor: %s' % self.attestor.keyid)
+
+ out.append(' --- validation errors ---')
+ for error in self.errors:
+ out.append(' | %s' % error)
+ out.append(' --- hashes ---')
+ for hg in self.hashes:
+ out.append(' | %s-%s-%s' % (hg[0][:8], hg[1][:8], hg[2][:8]))
+ return '\n'.join(out)
+
+ @staticmethod
+ def get_from_lore(attid):
+ # XXX: Querying this via the Atom feed is a temporary kludge until we have
+ # proper search API on lore.kernel.org
+ config = get_main_config()
+ queryurl = '%s?%s' % (config['attestation-query-url'],
+ urllib.parse.urlencode({'q': attid, 'x': 'A', 'o': '-1'}))
+ logger.debug('Query URL: %s', queryurl)
+ session = get_requests_session()
+ resp = session.get(queryurl)
+ content = resp.content.decode('utf-8')
+ matches = re.findall(
+ r'link\s+href="([^"]+)".*?(-----BEGIN PGP SIGNED MESSAGE-----.*?-----END PGP SIGNATURE-----)',
+ content, flags=re.DOTALL
+ )
+
+ attdocs = list()
+ if matches:
+ for link, sigdata in matches:
+ attdocs.append(LoreAttestationDocument(link, sigdata))
+
+ return attdocs
+
+ @staticmethod
+ def load_from_file(afile):
+ global ATTESTATIONS
+ with open(afile, 'r') as fh:
+ sigdata = fh.read()
+ ATTESTATIONS.append(LoreAttestationDocument(afile, sigdata))
+
+ @staticmethod
+ def load_from_string(source, content):
+ global ATTESTATIONS
+ ATTESTATIONS.append(LoreAttestationDocument(source, content))
+
+
+class LoreAttestation:
+ def __init__(self, i, m, p):
+ self.attid = '%s-%s-%s' % (i[:8], m[:8], p[:8])
+ self.i = i
+ self.m = m
+ self.p = p
+ self.passing = False
+ self.attdocs = list()
+
+ def validate(self, lore_lookup=True):
+ global ATTESTATIONS
+
+ hg = (self.i, self.m, self.p)
+ for attdoc in ATTESTATIONS:
+ if hg in attdoc.hashes and attdoc.passing:
+ self.passing = True
+ self.attdocs.append(attdoc)
+
+ if len(self.attdocs) or not lore_lookup:
+ return
+
+ attdocs = LoreAttestationDocument.get_from_lore(self.attid)
+ ATTESTATIONS += attdocs
+ for attdoc in attdocs:
+ if hg in attdoc.hashes and attdoc.passing:
+ self.passing = True
+ self.attdocs.append(attdoc)
+
+ def __repr__(self):
+ out = list()
+ out.append(' attid: %s' % self.attid)
+ out.append(' i: %s' % self.i)
+ out.append(' m: %s' % self.m)
+ out.append(' p: %s' % self.p)
+ out.append(' --- attdocs ---')
+ for attdoc in self.attdocs:
+ out.append(str(attdoc))
+ return '\n'.join(out)
+
+
+def _run_command(cmdargs, stdin=None, logstderr=False):
+ logger.debug('Running %s' % ' '.join(cmdargs))
+
+ sp = subprocess.Popen(cmdargs,
+ stdout=subprocess.PIPE,
+ stdin=subprocess.PIPE,
+ stderr=subprocess.PIPE)
+
+ (output, error) = sp.communicate(input=stdin)
+
+ output = output.decode('utf-8', errors='replace')
+
+ if logstderr and len(error.strip()):
+ logger.debug('Stderr: %s', error.decode('utf-8', errors='replace'))
+
+ return sp.returncode, output
+
+
+def gpg_run_command(args, stdin=None, logstderr=False):
+ config = get_main_config()
+ cmdargs = [config['gpgbin'], '--batch', '--no-auto-key-retrieve', '--no-auto-check-trustdb']
+ if config['attestation-gnupghome'] is not None:
+ cmdargs += ['--homedir', config['attestation-gnupghome']]
+ cmdargs += args
+
+ return _run_command(cmdargs, stdin=stdin, logstderr=logstderr)
+
+
+def git_run_command(gitdir, args, stdin=None, logstderr=False):
+ cmdargs = ['git', '--no-pager']
+ if gitdir:
+ cmdargs += ['--git-dir', gitdir]
+ cmdargs += args
+
+ return _run_command(cmdargs, stdin=stdin, logstderr=logstderr)
+
+
+def git_get_command_lines(gitdir, args):
+ ecode, out = git_run_command(gitdir, args)
+ lines = list()
+ if out:
+ for line in out.split('\n'):
+ if line == '':
+ continue
+ lines.append(line)
+
+ return lines
+
+
+def get_config_from_git(regexp, defaults=None):
+ args = ['config', '-z', '--get-regexp', regexp]
+ ecode, out = git_run_command(None, args)
+ gitconfig = defaults
+ if not gitconfig:
+ gitconfig = dict()
+ if not out:
+ return gitconfig
+
+ for line in out.split('\x00'):
+ if not line:
+ continue
+ key, value = line.split('\n', 1)
+ try:
+ chunks = key.split('.')
+ cfgkey = chunks[-1]
+ gitconfig[cfgkey.lower()] = value
+ except ValueError:
+ logger.debug('Ignoring git config entry %s', line)
+
+ return gitconfig
+
+
+def get_main_config():
+ global MAIN_CONFIG
+ if MAIN_CONFIG is None:
+ config = get_config_from_git(r'b4\..*', defaults=DEFAULT_CONFIG)
+ # Legacy name was get-lore-mbox, so load those as well
+ config = get_config_from_git(r'get-lore-mbox\..*', defaults=config)
+ config['trailer-order'] = config['trailer-order'].split(',')
+ if config['gpgbin'] is None:
+ gpgcfg = get_config_from_git(r'gpg\..*', {'program': 'gpg'})
+ config['gpgbin'] = gpgcfg['program']
+ MAIN_CONFIG = config
+ return MAIN_CONFIG
+
+
+def get_user_config():
+ global USER_CONFIG
+ if USER_CONFIG is None:
+ USER_CONFIG = get_config_from_git(r'user\..*')
+ return USER_CONFIG
+
+
+def get_requests_session():
+ global REQSESSION
+ if REQSESSION is None:
+ REQSESSION = requests.session()
+ REQSESSION.headers.update({'User-Agent': 'b4/%s' % VERSION})
+ return REQSESSION
+
+
+def save_strict_thread(in_mbx, out_mbx, msgid):
+ want = {msgid}
+ got = set()
+ seen = set()
+ while True:
+ for msg in in_mbx:
+ c_msgid = LoreMessage.get_clean_msgid(msg)
+ seen.add(c_msgid)
+ if c_msgid in got:
+ continue
+
+ refs = list()
+ for ref in msg.get('References', msg.get('In-Reply-To', '')).split():
+ ref = ref.strip().strip('<>')
+ if ref in got or ref in want:
+ want.add(c_msgid)
+ elif len(ref):
+ refs.append(ref)
+
+ if c_msgid in want:
+ out_mbx.add(msg)
+ got.add(c_msgid)
+ want.update(refs)
+ want.discard(c_msgid)
+ logger.debug('Kept in thread: %s', c_msgid)
+
+ # Remove any entries not in "seen" (missing messages)
+ for c_msgid in set(want):
+ if c_msgid not in seen:
+ want.remove(c_msgid)
+ if not len(want):
+ break
+
+ if not len(out_mbx):
+ return None
+
+ if len(in_mbx) > len(out_mbx):
+ logger.info('Reduced thread to strict matches only (%s->%s)', len(in_mbx), len(out_mbx))
diff --git a/b4/attest.py b/b4/attest.py
new file mode 100644
index 0000000..16c2213
--- /dev/null
+++ b/b4/attest.py
@@ -0,0 +1,179 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (C) 2020 by the Linux Foundation
+#
+
+import sys
+import os
+import re
+import email
+import email.utils
+import email.message
+import smtplib
+import mailbox
+
+import b4
+
+logger = b4.logger
+
+
+def create_attestation(cmdargs):
+ attlines = list()
+ subject = 'Patch attestation'
+ for patchfile in cmdargs.patchfile:
+ with open(patchfile, 'rb') as fh:
+ content = fh.read()
+ if content.find(b'From') != 0:
+ logger.info('SKIP | %s', os.path.basename(patchfile))
+ continue
+ msg = email.message_from_bytes(content)
+ lmsg = b4.LoreMessage(msg)
+ lmsg.load_hashes()
+ att = lmsg.attestation
+ if att is None:
+ logger.info('SKIP | %s', os.path.basename(patchfile))
+ # See if it's a cover letter
+ if lmsg.counters_inferred or lmsg.counter > 0:
+ # No
+ continue
+ newprefs = list()
+ for prefix in lmsg.lsubject.prefixes:
+ if prefix.lower() == 'patch':
+ newprefs.append('PSIGN')
+ elif prefix == '%s/%s' % (lmsg.counter, lmsg.expected):
+ newprefs.append('X/%s' % lmsg.expected)
+ else:
+ newprefs.append(prefix)
+ subject = '[%s] %s' % (' '.join(newprefs), lmsg.subject)
+ continue
+ logger.info('HASH | %s', os.path.basename(patchfile))
+ attlines.append('%s:' % att.attid)
+ attlines.append(' i: %s' % att.i)
+ attlines.append(' m: %s' % att.m)
+ attlines.append(' p: %s' % att.p)
+
+ payload = '\n'.join(attlines)
+
+ usercfg = b4.get_user_config()
+ gpgargs = list()
+ if 'signingkey' in usercfg:
+ gpgargs += ['-u', usercfg['signingkey']]
+ gpgargs += ['--clearsign',
+ '--comment', 'att-fmt-ver: %s' % b4.ATTESTATION_FORMAT_VER,
+ '--comment', 'att-hash: sha256',
+ ]
+
+ ecode, signed = b4.gpg_run_command(gpgargs, stdin=payload.encode('utf-8'))
+ if ecode > 0:
+ config = b4.get_main_config()
+ logger.critical('ERROR: Unable to sign using %s', config['gpgbin'])
+ sys.exit(1)
+
+ att_msg = email.message.EmailMessage()
+ att_msg.set_payload(signed.encode('utf-8'))
+ sender = cmdargs.sender
+ if '>' not in sender:
+ sender = '<%s>' % sender
+ att_msg['From'] = sender
+ att_msg['To'] = '<signatures@kernel.org>'
+ att_msg['Message-Id'] = email.utils.make_msgid(domain='kernel.org')
+ att_msg['Subject'] = subject
+
+ logger.info('---')
+ if not cmdargs.nomail:
+ # Try to deliver it via mail.kernel.org
+ try:
+ mailserver = smtplib.SMTP('mail.kernel.org', 587)
+ # identify ourselves to smtp gmail client
+ mailserver.ehlo()
+ # secure our email with tls encryption
+ mailserver.starttls()
+ # re-identify ourselves as an encrypted connection
+ mailserver.ehlo()
+ logger.info('Delivering via mail.kernel.org')
+ mailserver.sendmail('devnull@kernel.org', 'signatures@kernel.org', att_msg.as_string())
+ mailserver.quit()
+ sys.exit(0)
+ except Exception as ex:
+ logger.info('Could not deliver: %s', ex)
+
+ # Future iterations will also be able to submit this to a RESTful URL
+ # at git.kernel.org, in order not to depend on avaialbility of SMTP gateways
+ with open(cmdargs.output, 'wb') as fh:
+ fh.write(att_msg.as_bytes())
+
+ logger.info('Wrote %s', cmdargs.output)
+ logger.info('You can send it using:')
+ logger.info(' sendmail -oi signatures@kernel.org < %s', cmdargs.output)
+ logger.info(' mutt -H %s', cmdargs.output)
+
+
+def verify_attestation(cmdargs):
+ config = b4.get_main_config()
+ if cmdargs.tofu:
+ config['attestation-trust-model'] = 'tofu'
+
+ exact_from_match = True
+ if cmdargs.ignorefrom:
+ exact_from_match = False
+
+ mbx = mailbox.mbox(cmdargs.mbox[0])
+ if cmdargs.attfile:
+ b4.LoreAttestationDocument.load_from_file(cmdargs.attfile)
+ eligible = list()
+ for msg in mbx:
+ lmsg = b4.LoreMessage(msg)
+ if lmsg.has_diff:
+ eligible.append(lmsg)
+ continue
+ # See if body has "att-fmt-ver
+ if re.search(r'^Comment: att-fmt-ver:', lmsg.body, re.I | re.M):
+ logger.debug('Found attestation message')
+ b4.LoreAttestationDocument.load_from_string(lmsg.msgid, lmsg.body)
+
+ logger.debug('SKIP | %s', msg['Subject'])
+
+ if not len(eligible):
+ logger.error('No patches found in %s', cmdargs.mbox[0])
+ sys.exit(1)
+
+ logger.info('---')
+ attpass = 'PASS'
+ attfail = 'FAIL'
+ attrailers = set()
+ ecode = 1
+
+ for lmsg in eligible:
+ attdoc = lmsg.get_attestation(lore_lookup=True, exact_from_match=exact_from_match)
+ if not attdoc:
+ logger.critical('%s | %s', attfail, lmsg.full_subject)
+ if not cmdargs.nofast:
+ logger.critical('Aborting due to failure.')
+ ecode = 1
+ break
+ else:
+ ecode = 128
+ continue
+ if ecode != 128:
+ ecode = 0
+ logger.critical('%s | %s', attpass, lmsg.full_subject)
+ attrailers.add(attdoc.attestor.get_trailer(lmsg.fromemail))
+
+ logger.critical('---')
+ if ecode > 0:
+ logger.critical('Attestation verification failed.')
+ errors = set()
+ for attdoc in b4.ATTESTATIONS:
+ errors.update(attdoc.errors)
+ if len(errors):
+ logger.critical('---')
+ logger.critical('The validation process reported the following errors:')
+ for error in errors:
+ logger.critical(' %s', error)
+ else:
+ logger.critical('All patches passed attestation:')
+ for attrailer in attrailers:
+ logger.critical(' %s', attrailer)
+
+ sys.exit(ecode)
diff --git a/b4/command.py b/b4/command.py
new file mode 100644
index 0000000..457115e
--- /dev/null
+++ b/b4/command.py
@@ -0,0 +1,130 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (C) 2020 by the Linux Foundation
+#
+__author__ = 'Konstantin Ryabitsev <konstantin@linuxfoundation.org>'
+
+import argparse
+import logging
+import b4
+
+logger = b4.logger
+
+
+def cmd_mbox_common_opts(sp):
+ sp.add_argument('msgid', nargs='?',
+ help='Message ID to process, or pipe a raw message')
+ sp.add_argument('-o', '--outdir', default='.',
+ help='Output into this directory')
+ sp.add_argument('-p', '--use-project', dest='useproject', default=None,
+ help='Use a specific project instead of guessing (linux-mm, linux-hardening, etc)')
+ sp.add_argument('-c', '--check-newer-revisions', dest='checknewer', action='store_true', default=False,
+ help='Check if newer patch revisions exist')
+ sp.add_argument('-n', '--mbox-name', dest='wantname', default=None,
+ help='Filename to name the mbox file')
+ sp.add_argument('-m', '--use-local-mbox', dest='localmbox', default=None,
+ help='Instead of grabbing a thread from lore, process this mbox file')
+
+
+def cmd_mbox(cmdargs):
+ import b4.mbox
+ b4.mbox.main(cmdargs)
+
+
+def cmd_am(cmdargs):
+ import b4.mbox
+ b4.mbox.main(cmdargs)
+
+
+def cmd_attest(cmdargs):
+ import b4.attest
+ b4.attest.create_attestation(cmdargs)
+
+
+def cmd_verify(cmdargs):
+ import b4.attest
+ b4.attest.verify_attestation(cmdargs)
+
+
+def cmd():
+ parser = argparse.ArgumentParser(
+ formatter_class=argparse.ArgumentDefaultsHelpFormatter
+ )
+ parser.add_argument('-d', '--debug', action='store_true', default=False,
+ help='Add more debugging info to the output')
+ parser.add_argument('-q', '--quiet', action='store_true', default=False,
+ help='Output critical information only')
+
+ subparsers = parser.add_subparsers(help='sub-command help', dest='subcmd')
+
+ # b4 mbox
+ sp_mbox = subparsers.add_parser('mbox', help='Download a thread as an mbox file')
+ cmd_mbox_common_opts(sp_mbox)
+ sp_mbox.set_defaults(func=cmd_mbox)
+
+ # b4 am
+ sp_am = subparsers.add_parser('am', help='Create an mbox file that is ready to git-am')
+ cmd_mbox_common_opts(sp_am)
+ sp_am.add_argument('-v', '--use-version', dest='wantver', type=int, default=None,
+ 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('-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,
+ help='Add your own signed-off-by to every patch')
+ sp_am.add_argument('-l', '--add-link', dest='addlink', action='store_true', default=False,
+ help='Add a lore.kernel.org/r/ link to every patch')
+ sp_am.add_argument('-Q', '--quilt-ready', dest='quiltready', action='store_true', default=False,
+ help='Save mbox patches in a quilt-ready folder')
+ sp_am.set_defaults(func=cmd_am)
+
+ # b4 attest
+ sp_att = subparsers.add_parser('attest', help='Submit cryptographic attestation for patches')
+ # GDPR-proofing: by default, we add as little PII-sensitive info as possible
+ sp_att.add_argument('-f', '--from', dest='sender', default='devnull@kernel.org',
+ help='Use a custom From field')
+ sp_att.add_argument('-o', '--output', default='xxxx-attestation-letter.patch',
+ help='Save attestation message in this file')
+ sp_att.add_argument('-n', '--no-mail', dest='nomail', action='store_true', default=False,
+ help='Do not submit attestation, just save the message ready to send')
+ sp_att.add_argument('patchfile', nargs='+',
+ help='Patches to attest')
+ sp_att.set_defaults(func=cmd_attest)
+
+ # b4 verify
+ sp_ver = subparsers.add_parser('attverify', help='Verify cryptographic attestation of patches in an mbox')
+ sp_ver.add_argument('-i', '--attestation-file', dest='attfile',
+ help='Use this file for attestation data instead of querying lore.kernel.org')
+ sp_ver.add_argument('-t', '--tofu', action='store_true', default=False,
+ help='Force TOFU trust model (otherwise uses your global GnuPG setting)')
+ sp_ver.add_argument('-X', '--no-fast-exit', dest='nofast', action='store_true', default=False,
+ help='Do not exit after first failure')
+ sp_ver.add_argument('-F', '--ignore-from-mismatch', dest='ignorefrom', action='store_true',
+ default=False, help='Ignore mismatches between From: and PGP uid data')
+ sp_ver.add_argument('mbox', nargs=1, help='Mbox containing patches to attest')
+ sp_ver.set_defaults(func=cmd_verify)
+
+ cmdargs = parser.parse_args()
+
+ logger.setLevel(logging.DEBUG)
+
+ ch = logging.StreamHandler()
+ formatter = logging.Formatter('%(message)s')
+ ch.setFormatter(formatter)
+
+ if cmdargs.quiet:
+ ch.setLevel(logging.CRITICAL)
+ elif cmdargs.debug:
+ ch.setLevel(logging.DEBUG)
+ else:
+ ch.setLevel(logging.INFO)
+
+ logger.addHandler(ch)
+
+ cmdargs.func(cmdargs)
+
+
+if __name__ == '__main__':
+ cmd()
diff --git a/b4/mbox.py b/b4/mbox.py
new file mode 100644
index 0000000..3c06bd2
--- /dev/null
+++ b/b4/mbox.py
@@ -0,0 +1,397 @@
+#!/usr/bin/env python3
+# -*- coding: utf-8 -*-
+# SPDX-License-Identifier: GPL-2.0-or-later
+# Copyright (C) 2020 by the Linux Foundation
+#
+__author__ = 'Konstantin Ryabitsev <konstantin@linuxfoundation.org>'
+
+import os
+import sys
+import mailbox
+import email
+import email.message
+import email.utils
+import re
+import time
+
+import urllib.parse
+import xml.etree.ElementTree
+import gzip
+
+import b4
+
+from tempfile import mkstemp
+
+logger = b4.logger
+
+
+def get_msgid_from_stdin():
+ if not sys.stdin.isatty():
+ message = email.message_from_string(sys.stdin.read())
+ return message.get('Message-ID', None)
+ logger.error('Error: pipe a message or pass msgid as parameter')
+ sys.exit(1)
+
+
+def get_pi_thread_by_url(t_mbx_url, savefile):
+ session = b4.get_requests_session()
+ resp = session.get(t_mbx_url)
+ if resp.status_code != 200:
+ logger.critical('Server returned an error: %s', resp.status_code)
+ return None
+ t_mbox = gzip.decompress(resp.content)
+ resp.close()
+ if not len(t_mbox):
+ logger.critical('No messages found for that query')
+ return None
+ with open(savefile, 'wb') as fh:
+ logger.debug('Saving %s', savefile)
+ fh.write(t_mbox)
+ return savefile
+
+
+def get_pi_thread_by_msgid(msgid, config, cmdargs):
+ wantname = cmdargs.wantname
+ outdir = cmdargs.outdir
+ # Grab the head from lore, to see where we are redirected
+ midmask = config['midmask'] % msgid
+ logger.info('Looking up %s', midmask)
+ session = b4.get_requests_session()
+ resp = session.head(midmask)
+ if resp.status_code < 300 or resp.status_code > 400:
+ logger.critical('That message-id is not known.')
+ return None
+ canonical = resp.headers['Location'].rstrip('/')
+ resp.close()
+ t_mbx_url = '%s/t.mbox.gz' % canonical
+ if wantname:
+ savefile = os.path.join(outdir, wantname)
+ else:
+ # Save it into msgid.mbox
+ savefile = '%s.t.mbx' % msgid
+ savefile = os.path.join(outdir, savefile)
+
+ loc = urllib.parse.urlparse(t_mbx_url)
+ if cmdargs.useproject:
+ logger.debug('Modifying query to use %s', cmdargs.useproject)
+ t_mbx_url = '%s://%s/%s/%s/t.mbox.gz' % (
+ loc.scheme, loc.netloc, cmdargs.useproject, msgid)
+ logger.debug('Will query: %s', t_mbx_url)
+ logger.critical('Grabbing thread from %s', loc.netloc)
+ in_mbxf = get_pi_thread_by_url(t_mbx_url, '%s-loose' % savefile)
+ if not in_mbxf:
+ return None
+ in_mbx = mailbox.mbox(in_mbxf)
+ out_mbx = mailbox.mbox(savefile)
+ b4.save_strict_thread(in_mbx, out_mbx, msgid)
+ in_mbx.close()
+ out_mbx.close()
+ os.unlink(in_mbxf)
+ return savefile
+
+
+def mbox_to_am(mboxfile, config, cmdargs):
+ outdir = cmdargs.outdir
+ wantver = cmdargs.wantver
+ wantname = cmdargs.wantname
+ covertrailers = cmdargs.covertrailers
+ mbx = mailbox.mbox(mboxfile)
+ count = len(mbx)
+ logger.info('Analyzing %s messages in the thread', count)
+ lmbx = b4.LoreMailbox()
+ # Go through the mbox once to populate base series
+ for key, msg in mbx.items():
+ lmbx.add_message(msg)
+
+ lser = lmbx.get_series(revision=wantver)
+ if lser is None and wantver is None:
+ logger.critical('No patches found.')
+ return
+ if lser is None:
+ logger.critical('Unable to find revision %s', wantver)
+ return
+ if len(lmbx.series) > 1 and not wantver:
+ logger.info('Will use the latest revision: v%s', lser.revision)
+ logger.info('You can pick other revisions using the -vN flag')
+
+ if wantname:
+ slug = wantname
+ if wantname.find('.') > -1:
+ slug = '.'.join(wantname.split('.')[:-1])
+ else:
+ slug = lser.get_slug()
+
+ am_filename = os.path.join(outdir, '%s.mbx' % slug)
+ am_cover = os.path.join(outdir, '%s.cover' % slug)
+
+ if os.path.exists(am_filename):
+ os.unlink(am_filename)
+
+ logger.info('---')
+ logger.critical('Writing %s', am_filename)
+ mbx = mailbox.mbox(am_filename)
+ am_mbx = lser.save_am_mbox(mbx, cmdargs.noaddtrailers, covertrailers,
+ trailer_order=config['trailer-order'],
+ addmysob=cmdargs.addmysob, addlink=cmdargs.addlink,
+ linkmask=config['linkmask'])
+ logger.info('---')
+
+ logger.critical('Total patches: %s', len(am_mbx))
+ if lser.has_cover and lser.patches[0].followup_trailers and not covertrailers:
+ # Warn that some trailers were sent to the cover letter
+ logger.critical('---')
+ logger.critical('NOTE: Some trailers were sent to the cover letter:')
+ 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')
+
+ logger.critical('---')
+ if not lser.complete:
+ logger.critical('WARNING: Thread incomplete!')
+
+ if lser.has_cover:
+ lser.save_cover(am_cover)
+
+ top_msgid = None
+ first_body = None
+ for lmsg in lser.patches:
+ if lmsg is not None:
+ first_body = lmsg.body
+ top_msgid = lmsg.msgid
+ break
+ if top_msgid is None:
+ logger.critical('Could not find any patches in the series.')
+ return
+
+ linkurl = config['linkmask'] % top_msgid
+ if cmdargs.quiltready:
+ q_dirname = os.path.join(outdir, '%s.patches' % slug)
+ am_mbox_to_quilt(am_mbx, q_dirname)
+ logger.critical('Quilt: %s', q_dirname)
+
+ logger.critical(' Link: %s', linkurl)
+
+ base_commit = None
+ matches = re.search(r'base-commit: .*?([0-9a-f]+)', first_body, re.MULTILINE)
+ if matches:
+ base_commit = matches.groups()[0]
+ else:
+ # Try a more relaxed search
+ matches = re.search(r'based on .*?([0-9a-f]{40})', first_body, re.MULTILINE)
+ if matches:
+ base_commit = matches.groups()[0]
+
+ if base_commit:
+ logger.critical(' Base: %s', base_commit)
+ logger.critical(' git checkout -b %s %s', slug, base_commit)
+ logger.critical(' git am %s', am_filename)
+ else:
+ logger.critical(' Base: not found, sorry')
+ logger.critical(' git checkout -b %s master', slug)
+ logger.critical(' git am %s', am_filename)
+
+ am_mbx.close()
+
+ return am_filename
+
+
+def am_mbox_to_quilt(am_mbx, q_dirname):
+ if os.path.exists(q_dirname):
+ logger.critical('ERROR: Directory %s exists, not saving quilt patches', q_dirname)
+ return
+ os.mkdir(q_dirname, 0o755)
+ patch_filenames = list()
+ for key, msg in am_mbx.items():
+ # Run each message through git mailinfo
+ msg_out = mkstemp(suffix=None, prefix=None, dir=q_dirname)
+ patch_out = mkstemp(suffix=None, prefix=None, dir=q_dirname)
+ cmdargs = ['mailinfo', '--encoding=UTF-8', msg_out[1], patch_out[1]]
+ ecode, info = b4.git_run_command(None, cmdargs, msg.as_bytes(policy=b4.emlpolicy))
+ if not len(info.strip()):
+ logger.critical('ERROR: Could not get mailinfo from patch %s', msg['Subject'])
+ continue
+ patchinfo = dict()
+ for line in info.split('\n'):
+ line = line.strip()
+ if not line:
+ continue
+ chunks = line.split(':', 1)
+ patchinfo[chunks[0]] = chunks[1]
+
+ slug = re.sub(r'\W+', '_', patchinfo['Subject']).strip('_').lower()
+ patch_filename = '%04d_%s.patch' % (key+1, slug)
+ patch_filenames.append(patch_filename)
+ quilt_out = os.path.join(q_dirname, patch_filename)
+ with open(quilt_out, 'wb') as fh:
+ line = 'From: %s <%s>\n' % (patchinfo['Author'].strip(), patchinfo['Email'].strip())
+ fh.write(line.encode('utf-8'))
+ line = 'Subject: %s\n' % patchinfo['Subject'].strip()
+ fh.write(line.encode('utf-8'))
+ line = 'Date: %s\n' % patchinfo['Date'].strip()
+ fh.write(line.encode('utf-8'))
+ fh.write('\n'.encode('utf-8'))
+ with open(msg_out[1], 'r') as mfh:
+ fh.write(mfh.read().encode('utf-8'))
+ with open(patch_out[1], 'r') as pfh:
+ fh.write(pfh.read().encode('utf-8'))
+ logger.debug(' Wrote: %s', patch_filename)
+ os.unlink(msg_out[1])
+ os.unlink(patch_out[1])
+ # Write the series file
+ with open(os.path.join(q_dirname, 'series'), 'w') as sfh:
+ for patch_filename in patch_filenames:
+ sfh.write('%s\n' % patch_filename)
+
+
+def get_newest_series(mboxfile):
+ # Open the mbox and find the latest series mentioned in it
+ mbx = mailbox.mbox(mboxfile)
+ base_msg = None
+ latest_revision = None
+ seen_msgids = list()
+ seen_covers = list()
+ for key, msg in mbx.items():
+ msgid = b4.LoreMessage.get_clean_msgid(msg)
+ seen_msgids.append(msgid)
+ lsub = b4.LoreSubject(msg['Subject'])
+ # Ignore replies or counters above 1
+ if lsub.reply or lsub.counter > 1:
+ continue
+ if latest_revision is None or lsub.revision > latest_revision:
+ # New revision
+ latest_revision = lsub.revision
+ if lsub.counter == 0:
+ # And a cover letter, nice. This is the easy case
+ base_msg = msg
+ seen_covers.append(latest_revision)
+ continue
+ if lsub.counter == 1:
+ if latest_revision not in seen_covers:
+ # A patch/series without a cover letter
+ base_msg = msg
+
+ # Get subject info from base_msg again
+ lsub = b4.LoreSubject(base_msg['Subject'])
+ if not len(lsub.prefixes):
+ logger.debug('Not checking for new revisions: no prefixes on the cover letter.')
+ mbx.close()
+ return
+ base_msgid = b4.LoreMessage.get_clean_msgid(base_msg)
+ fromeml = email.utils.getaddresses(base_msg.get_all('from', []))[0][1]
+ msgdate = email.utils.parsedate_tz(str(base_msg['Date']))
+ startdate = time.strftime('%Y%m%d', msgdate[:9])
+ listarc = base_msg.get_all('List-Archive')[-1].strip('<>')
+ q = 's:"%s" AND f:"%s" AND d:%s..' % (lsub.subject.replace('"', ''), fromeml, startdate)
+ queryurl = '%s?%s' % (listarc, urllib.parse.urlencode({'q': q, 'x': 'A', 'o': '-1'}))
+ logger.critical('Checking for newer revisions on %s', listarc)
+ logger.debug('Query URL: %s', queryurl)
+ session = b4.get_requests_session()
+ resp = session.get(queryurl)
+ # try to parse it
+ try:
+ tree = xml.etree.ElementTree.fromstring(resp.content)
+ except xml.etree.ElementTree.ParseError as ex:
+ logger.debug('Unable to parse results, ignoring', ex)
+ resp.close()
+ mbx.close()
+ return
+ resp.close()
+ ns = {'atom': 'http://www.w3.org/2005/Atom'}
+ entries = tree.findall('atom:entry', ns)
+
+ for entry in entries:
+ title = entry.find('atom:title', ns).text
+ lsub = b4.LoreSubject(title)
+ if lsub.reply or lsub.counter > 1:
+ logger.debug('Ignoring result (not interesting): %s', title)
+ continue
+ link = entry.find('atom:link', ns).get('href')
+ if lsub.revision < latest_revision:
+ logger.debug('Ignoring result (not new revision): %s', title)
+ continue
+ if link.find('/%s/' % base_msgid) > 0:
+ logger.debug('Ignoring result (same thread as ours):%s', title)
+ continue
+ if lsub.revision == 1 and lsub.revision == latest_revision:
+ # Someone sent a separate message with an identical title but no new vX in the subject line
+ # It's *probably* a new revision.
+ logger.debug('Likely a new revision: %s', title)
+ elif lsub.revision > latest_revision:
+ logger.debug('Definitely a new revision [v%s]: %s', lsub.revision, title)
+ else:
+ logger.debug('No idea what this is: %s', title)
+ continue
+ t_mbx_url = '%st.mbox.gz' % link
+ savefile = mkstemp('b4-get')[1]
+ nt_mboxfile = get_pi_thread_by_url(t_mbx_url, savefile)
+ nt_mbx = mailbox.mbox(nt_mboxfile)
+ # Append all of these to the existing mailbox
+ new_adds = 0
+ for nt_msg in nt_mbx:
+ nt_msgid = b4.LoreMessage.get_clean_msgid(nt_msg)
+ if nt_msgid in seen_msgids:
+ logger.debug('Duplicate message, skipping')
+ continue
+ nt_subject = re.sub(r'\s+', ' ', nt_msg['Subject'])
+ logger.debug('Adding: %s', nt_subject)
+ new_adds += 1
+ mbx.add(nt_msg)
+ seen_msgids.append(nt_msgid)
+ nt_mbx.close()
+ if new_adds:
+ logger.info('Added %s messages from thread: %s', new_adds, title)
+ logger.debug('Removing temporary %s', nt_mboxfile)
+ os.unlink(nt_mboxfile)
+
+ # We close the mbox, since we'll be reopening it later
+ mbx.close()
+
+
+def main(cmdargs):
+ config = b4.get_main_config()
+
+ if not cmdargs.localmbox:
+ if not cmdargs.msgid:
+ logger.debug('Getting Message-ID from stdin')
+ msgid = get_msgid_from_stdin()
+ if msgid is None:
+ logger.error('Unable to find a valid message-id in stdin.')
+ sys.exit(1)
+ else:
+ msgid = cmdargs.msgid
+
+ msgid = msgid.strip('<>')
+ # Handle the case when someone pastes a full URL to the message
+ matches = re.search(r'^https?://[^/]+/([^/]+)/([^/]+@[^/]+)', msgid, re.IGNORECASE)
+ if matches:
+ chunks = matches.groups()
+ msgid = chunks[1]
+ # Infer the project name from the URL, if possible
+ if chunks[0] != 'r':
+ cmdargs.useproject = chunks[0]
+
+ mboxfile = get_pi_thread_by_msgid(msgid, config, cmdargs)
+ if mboxfile is None:
+ return
+
+ # Move it into -thread
+ threadmbox = '%s-thread' % mboxfile
+ os.rename(mboxfile, threadmbox)
+ else:
+ if os.path.exists(cmdargs.localmbox):
+ threadmbox = cmdargs.localmbox
+ else:
+ logger.critical('Mailbox %s does not exist', cmdargs.localmbox)
+ sys.exit(1)
+
+ if threadmbox and cmdargs.checknewer:
+ get_newest_series(threadmbox)
+
+ if cmdargs.subcmd == 'am':
+ mbox_to_am(threadmbox, config, cmdargs)
+ if not cmdargs.localmbox:
+ os.unlink(threadmbox)
+ else:
+ mbx = mailbox.mbox(threadmbox)
+ logger.critical('Saved %s', threadmbox)
+ logger.critical('%s messages in the thread', len(mbx))
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..f229360
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+requests
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..de9fabf
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,34 @@
+#!/usr/bin/env python3
+
+import os
+from distutils.core import setup
+
+# Utility function to read the README file.
+# Used for the long_description. It's nice, because now 1) we have a top level
+# README file and 2) it's easier to type in the README file than to put a raw
+# string in below ...
+
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
+
+
+VERSION = '0.3.0'
+NAME = 'b4'
+
+setup(
+ version=VERSION,
+ url='https://git.kernel.org/pub/scm/devel/b4/b4.git',
+ name=NAME,
+ description='A tool to work with public-inbox and patch archives',
+ author='Konstantin Ryabitsev',
+ author_email='mricon@kernel.org',
+ packages=['b4'],
+ license='GPLv2+',
+ #long_description=read('README.rst'),
+ entry_points={
+ 'console_scripts': [
+ 'b4=b4.command:cmd'
+ ],
+ },
+)