1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573
|
#!/usr/bin/env python3
# vim:shiftwidth=4:tabstop=4:expandtab:textwidth=80:softtabstop=4:ai:
#
# Copyright (c) 2010-present Phil Dibowitz <phil@ipom.com>
"""Determine why signatures from/to a key are not cross-signatures."""
import os
import re
import subprocess
import sys
from optparse import OptionParser
from libpius import mailer as pmailer
from libpius import signer as psigner
from libpius.util import PiusUtil, MyOption
from libpius.constants import DEFAULT_GPG_PATH, UID_RE, GPG_MIN_OPTS
from libpius.exceptions import MailSendError
from libpius.state import SignState
__author__ = "Phil Dibowitz <phil@ipom.com>"
class PiusReporter:
# states a key can be in
kSIGNED_AND_UPLOADED = "SIGNED_AND_NOT_UPLOADED"
kSIGNED_BUT_NOT_UPLOADED = "SIGNED_BUT_NOT_UPLOADED"
kNOT_SIGNED = "NOT_SIGNED"
kWILL_NOT_SIGN = "WILL_NOT_SIGN"
kREPORT_DATA = {
"need_upload": {
"do_email": True,
"title": "The following people need to upload your signature:",
"subject": "Reminder: Please upload signature of your PGP key",
"template": """Dear %(name)s,
You were at the %(party)s PGP Keysigning Party and I have signed your key
(%(keyid)s) and with mine (%(signer)s) and sent it encrypted to you.
However, as far as I can tell you haven't uploaded 1 or more of my signatures.
This is a gentle reminder to please import the signatures and then upload your
key so that we can ensure a strong web of trust. Thanks!
For more information see this site:
http://www.phildev.net/pgp/
Generated by PIUS Report BETA (http://www.phildev.net/pius/).
""",
},
"need_signature": {
"do_email": True,
"title": "The following people need to sign your key:",
"subject": "Reminder: Please sign PGP keys",
"template": """Dear %(name)s,
You were at the %(party)s PGP Keysigning Party but I have not received a
signature from your key (%(keyid)s) on my key (%(signer)s).
This is a gentle reminder to please sign keys from the party and send them out.
Thanks!
For more information see this site:
http://www.phildev.net/pgp/
Generated by PIUS Report BETA (http://www.phildev.net/pius/).
""",
},
"_need_both": {
"subject": (
"Reminder: Please sign PGP keys, and upload received"
" signatures of your PGP key"
),
"template": """Dear %(name)s,
You were at the %(party)s PGP Keysigning Party and I have signed your key
%(keyid)s and with mine (%(signer)s) and sent it encrypted to you.
However, I have neither received a signature from you on my key nor have you
(as far as I can tell) uploaded my signature of your key to a keyserver.
This is a gentle reminder to please sign keys from the party and send them out,
and import and upload signatures others have sent to you.
For more information see this site:
http://www.phildev.net/pgp/
Generated by PIUS Report BETA (http://www.phildev.net/pius/).
""",
},
"must_sign": {
"do_email": True,
"title": "You have not signed the following keys:",
},
}
def __init__(self, gpg, signer_id, keyring, party, force_ask, pius_state):
self.signer = signer_id
self.keyring = None
self.pius_state = pius_state
self.party = party
self.signed_us = []
self.sigs = {}
self.gpg = gpg
self.force_ask = force_ask
if keyring:
print("Loading keyring...")
self.keyring = keyring
# we can go ahead and load the key list off the keyring,
# but we cannot load sigs until the user tells us to incase
# they want to refresh them first.
signer = psigner.PiusSigner(
None, # signer
None, # force_signer
self.keyring,
self.gpg,
None, # tmpdir
None, # outdir
None, # encrypt_outfiles
None, # mail
None, # mailer
None, # verbose
True, # sort_keyring
None, # policy_url
None, # mail_host
)
self.keys = signer.get_all_keyids()
signer = None
self.need_upload = []
self.must_sign = []
self.need_signature = []
def load_keyring(self):
self.sigs = self.get_local_sigs(self.keys)
def generate(self):
for key in self.keys:
PiusUtil.debug("Processing %s" % key)
ret = self.we_signed_key(key)
if ret == PiusReporter.kSIGNED_BUT_NOT_UPLOADED:
PiusUtil.debug(" -- they need to upload")
self.need_upload.append(key)
elif ret == PiusReporter.kNOT_SIGNED:
PiusUtil.debug(" -- we need to sign")
self.must_sign.append(key)
if self.need_sig(key):
PiusUtil.debug(" -- they need to sign")
self.need_signature.append(key)
def report(self, mail, mailer):
reports = {}
for rtype in self.kREPORT_DATA.keys():
if rtype.startswith("_"):
continue
reports[rtype] = self.get_uid_info(getattr(self, rtype))
if len(reports[rtype]) == 0:
continue
print(self.kREPORT_DATA[rtype]["title"])
self.print_uids(reports[rtype])
print()
if mail:
ans = input(
"Do you want to email the people who you are waiting on to remind "
"them? (y/N) "
)
if not ans.lower() in ["y", "yes"]:
print("OK, skipping sending emails.")
return
# a list of people who we email about both problems.
both = []
for rtype in reports.keys():
report = reports[rtype]
report_info = self.kREPORT_DATA[rtype]
if len(report) == 0 or not report_info["do_email"]:
continue
for keyid in report.keys():
if keyid in both:
continue
if (
keyid in reports["need_signature"]
and keyid in reports["need_upload"]
):
both.append(keyid)
template = self.kREPORT_DATA["_need_both"]["template"]
subject = self.kREPORT_DATA["_need_both"]["subject"]
else:
template = report_info["template"]
subject = report_info["subject"]
uids = report[keyid]
body = template % {
"keyid": keyid,
"name": uids[0]["name"],
"email": uids[0]["email"],
"signer": self.signer,
"party": self.party,
"from": mail,
}
PiusUtil.debug(
"reminding %s (%s)" % (uids[0]["email"], subject)
)
sys.stdout.write("Mailing %s... " % uids[0]["email"])
mailer.send_mail(uids[0]["email"], subject, body)
print("done")
def get_uid_info(self, uids):
data = {}
for uid in uids:
data[uid] = []
gpg = os.popen(
"%s --fixed-list-mode --with-colons --fingerprint %s"
% (self.gpg, uid)
)
for line in gpg:
if line.startswith("uid"):
match = UID_RE.search(line.split(":")[9])
if match:
datum = {
"name": match.group(1),
"email": match.group(2),
}
data[uid].append(datum)
gpg.close()
return data
def print_uids(self, keys):
"""Print UIDs for each key in keys."""
for keyid in keys.keys():
uids = keys[keyid]
print(" ", keyid)
for uid in uids:
print(" - %s <%s>" % (uid["name"], uid["email"]))
return
def get_local_sigs(self, keys):
"""Get the list of signatures for every key in keys"""
cmd = (
[self.gpg]
+ GPG_MIN_OPTS
+ ["--fixed-list-mode", "--with-colons", "--list-sigs"]
+ keys
)
sigs = {}
PiusUtil.logcmd(cmd)
gpg = subprocess.Popen(
cmd, close_fds=True, stdout=subprocess.PIPE, text=True
)
current_key = None
for line in gpg.stdout:
line = line.strip()
if line.startswith("pub:"):
current_key = line.split(":")[4]
continue
if not line.startswith("sig:"):
continue
keyid = line.split(":")[4]
if not current_key in sigs:
sigs[current_key] = []
sigs[current_key].append(keyid)
return sigs
def ask_user(self, key):
if self.keyring:
cmd = (
[self.gpg]
+ GPG_BASE_OPTS
+ ["--keyring", self.keyring, "--fingerprint", key]
)
PiusUtil.logcmd(cmd)
gpg = subprocess.Popen(
cmd, stdout=subprocess.PIPE, close_fds=True, text=True
)
output = gpg.stdout.read()
output = output.strip()
retval = gpg.wait()
if retval != 0:
print("KeyID not found, bailing out!")
sys.exit(1)
print("There is no record of you signing this key...")
print(output)
print(" (1) I have signed it")
print(" (2) I don't want to / will not sign it")
print(" (3) Oops, report that as something I should sign")
ans = None
while not ans in ["1", "2", "3"]:
ans = input("Please choose 1, 2, or 3 > ")
if ans == "1":
return SignState.kSIGNED
if ans == "2":
return SignState.kWILL_NOT_SIGN
if ans == "3":
return SignState.kNOT_SIGNED
def we_signed_key(self, key):
# If the local primary keychain includes our signature on their key
# we signed it and they uploaded it...
if key in self.sigs and self.signer in self.sigs[key]:
return PiusReporter.kSIGNED_AND_UPLOADED
# If that's not the case, but we recorded signing it, they never uploaded it
if self.pius_state.signed(key):
return PiusReporter.kSIGNED_BUT_NOT_UPLOADED
if self.pius_state.will_not_sign(key):
return PiusReporter.kWILL_NOT_SIGN
return PiusReporter.kNOT_SIGNED
def need_sig(self, key):
if len(self.signed_us) == 0:
self.signed_us = self.get_local_sigs([self.signer])[self.signer]
if key in self.signed_us or not self.pius_state.expect_sig(key):
return False
return True
def ask_reciprication(self):
print(
" (1) Assume they will not sign my key either (i.e."
" one of us left the party early\n and could not verify"
" each other)"
)
print(" (2) Remind them to sign my key anyway (unlikely)")
ans = None
while not ans in ["1", "2"]:
ans = input("Please choose 1 or 2 > ")
if ans == "1":
return SignState.kIGNORE
else:
return SignState.kNO_IGNORE
def check_missing_sign_data(self):
unsigned_keys = []
no_sig_received = []
for key in self.keys:
# if we don't already know about it on our statefile, then check
# to see if we need to ask about it (i.e. we haven't already
# signed/gotten signed)
if key not in self.pius_state or self.force_ask:
# and if our keyring doesn't show we've signed it...
if key in self.sigs and self.signer not in self.sigs[key]:
unsigned_keys.append(key)
# likewise, if our keyring doesn't show they've signed us...
if key not in self.signed_us:
no_sig_received.append(key)
if len(unsigned_keys) > 0:
print(
"Not all keys on this keyring were signed by you. Would you"
" like me to:"
)
print(
" (1) Assume any keys not signed on this keyring are by choice."
)
print(" (2) Ask about any keys I don't know about.")
print(" (3) Report them as keys you need to sign.")
ans = None
while not ans in ["1", "2", "3"]:
ans = input("Please choose 1, 2, or 3 > ")
if ans == "1":
for key in unsigned_keys:
self.pius_state.update_outbound(
key, SignState.kWILL_NOT_SIGN
)
return
if ans == "2":
for key in unsigned_keys:
ret = self.ask_user(key)
self.pius_state.update_outbound(key, ret)
if ret == SignState.kWILL_NOT_SIGN:
if key in no_sig_received:
print(
"You stated you will not sign this key. Since this key"
" has also not signed your key,\nshould we..."
)
ret = self.ask_reciprication()
self.pius_state.update_inbound(key, ret)
# in case we one day want to ask about any leftover keys,
# see below
no_sig_received.remove(key)
if ans == "3":
return
# Hmmm, should we prompt "do you want to be asked about all the keys
# that haven't signed you yet or assume they all should sign you" ?
# This seems almost never useful... if we don't expect someone to sign
# us we probably also don't expect to sign them.
#
# I think the better answer is just providing --update-key-state
# and --force-ask-about-keys
def refresh_keys(gpg, keys):
cmd = [gpg] + GPG_MIN_OPTS + ["--refresh-keys"] + keys
PiusPiusUtil.logcmd(cmd)
gpg = subprocess.Popen(cmd, stdout=subprocess.PIPE, close_fds=True)
gpg.wait()
def update_key_state(key):
# This is janky :(
state = SignState()
reporter = PiusReporter(None, None, None, None, None)
ret = reporter.ask_user(key)
state.update_outbound(key, ret)
ret = reporter.ask_reciprication()
state.update_inbound(key, ret)
state.save()
def main():
"""Main."""
parser = OptionParser(option_class=MyOption)
parser.set_defaults(gpg_path=DEFAULT_GPG_PATH)
parser.add_option(
"-b",
"--gpg-path",
dest="gpg_path",
metavar="PATH",
nargs=1, # type="not_another_opt",
help="Path to gpg binary. [default: %default]",
)
parser.add_option(
"-d", "--debug", action="store_true", dest="debug", help="Debug"
)
parser.add_option(
"-s", "--signer", dest="keyid", help="The key you sign with."
)
parser.add_option("-r", "--keyring", dest="keyring", help="Party Keyring")
parser.add_option(
"-m",
"--mail",
dest="mail",
metavar="EMAIL",
nargs=1,
type="email",
help="Email the encrypted, signed keys to the"
" respective email addresses. EMAIL is the address"
" to send from. See also -H and -P.",
)
parser.add_option(
"-t",
"--tmp-dir",
dest="tmp_dir",
nargs=1,
type="not_another_opt",
help="Directory to put temporary stuff in. [default: %default]",
)
parser.add_option(
"-p",
"--party",
dest="party",
metavar="NAME",
nargs=1,
help="The name of the party. This will be printed in the emails sent "
"out. Only useful with -m.",
)
parser.add_option(
"--no-refresh",
dest="refresh",
action="store_false",
default=True,
help="Do not refresh keys.",
)
parser.add_option(
"--update-key-state",
dest="update_keystate",
metavar="KEY",
help="Update the state information pius-report has for KEY. This option"
" is mutually exclusive with all other options.",
)
parser.add_option(
"--force-ask-about-keys",
dest="force_ask",
default=False,
action="store_true",
help="Ask about unsigned keys on the keyring, even if we have asked"
" before",
)
pmailer.PiusMailer.add_options(parser)
all_opts = []
all_opts = PiusUtil.parse_dotfile(parser)
all_opts.extend(sys.argv[1:])
options, _ = parser.parse_args(all_opts)
if options.debug:
PiusUtil.DEBUG_ON = True
if options.update_keystate:
update_key_state(options.update_keystate)
sys.exit()
if not options.keyid:
print("Missing signer option")
sys.exit(1)
if len(options.keyid) == 8:
print("You must using long key IDs, for security")
sys.exit(1)
if not options.keyring:
print("Missing keyring option")
sys.exit(1)
if not options.party:
print("Missing party options")
sys.exit(1)
print("Loading PIUS state...")
signed_keys = SignState()
report = PiusReporter(
options.gpg_path,
options.keyid,
options.keyring,
options.party,
options.force_ask,
signed_keys,
)
if options.refresh:
print("Refreshing keys...")
refresh_keys(options.gpg_path, list(set(report.keys + [options.keyid])))
report.load_keyring()
# OK, for any keys we don't have some info on, let's ask
report.check_missing_sign_data()
# Crunch the numbers...
report.generate()
if options.mail:
mailer = pmailer.PiusMailer(
options.mail,
options.display_name,
options.mail_host,
options.mail_port,
options.mail_user,
options.mail_tls,
options.mail_no_pgp_mime,
options.mail_override,
options.mail_text,
options.tmp_dir,
)
# and emit the report
if options.mail:
report.report(options.mail, mailer)
if signed_keys.modified:
ans = input(
"Would you like to save the info about keys you've signed? (y/N) "
)
if ans.lower() in ("y", "yes"):
signed_keys.save()
else:
print("Discarding modified state...")
if __name__ == "__main__":
main()
|