quilt-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Quilt-dev] [RFC][PATCH v2][QUILT] Add gpg signing to quilt mail


From: Steven Rostedt
Subject: [Quilt-dev] [RFC][PATCH v2][QUILT] Add gpg signing to quilt mail
Date: Tue, 04 Oct 2011 13:46:34 -0400

quilt mail: Add way to sign mail with GPG

After the attack of kernel.org, several kernel developers are getting
paranoid about who is really who. A lot of focus is on signing emails
that verify who people really are using GPG signatures.

Unfortunately, there's no way to sign quilt email as it goes out. This
patch fixes that.

Added the quilt mail option --pass to allow the user to enter a
passphrase and sign their email patches.

Thanks to Peter Zijlstra for recommending --use-agent to solve the
issues of both the passphrase in unlocked memory, and typing something
wrong.

These changes were done in /usr/share/quilt.

Signed-off-by: Steven Rostedt <address@hidden>

diff --git a/mail b/mail
index c3c8297..ec04964 100755
--- a/mail
+++ b/mail
@@ -63,6 +63,9 @@ first, and a last patch name of \`-' denotes the last patch 
in the series.
 
 --reply-to message
        Add the appropriate headers to reply to the specified message.
+
+--pass
+       Sign email with GPG signatures.
 " "/usr/share/doc/quilt/README.MAIL"
                exit 0
        else
@@ -115,6 +118,15 @@ references_header() {
        [ -n "$references" ] && echo "References: $references"
 }
 
+sign_mail()
+{
+       if [ -z "$opt_pass" ]; then
+               cat
+       else
+               $QUILT_DIR/scripts/gpgmail.pl --agent
+       fi
+}
+       
 process_mail()
 {
        local tmpfile=$(gen_tempfile)
@@ -132,12 +144,12 @@ process_mail()
                        ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@"
                $QUILT_DIR/scripts/edmail --charset $opt_charset \
                                 --remove-header Bcc "$@" < $tmpfile \
-               | ${QUILT_SENDMAIL:-sendmail} \
+               | sign_mail | ${QUILT_SENDMAIL:-sendmail} \
                        ${QUILT_SENDMAIL_ARGS--f "$opt_sender"} "$@"
        else
                local from_date=$(LC_ALL=C date "+%a %b %e %H:%M:%S %Y")
                echo "From $opt_sender_address $from_date"
-               sed -e 's/^From />From /' $tmpfile
+               sed -e 's/^From />From /' $tmpfile | sign_mail
                echo
        fi
        rm -f $tmpfile
@@ -154,7 +166,7 @@ join_lines() {
 }
 
 options=`getopt -o m:h --long from:,to:,cc:,bcc:,subject: \
-                      --long send,mbox:,charset:,sender: \
+                      --long send,pass,mbox:,charset:,sender: \
                       --long prefix:,reply-to:,signature: -- "$@"`
 
 if [ $? -ne 0 ]
@@ -212,6 +224,9 @@ do
        --reply-to)
                opt_reply_to=$2
                shift 2 ;;
+       --pass)
+               opt_pass=1
+               shift ;;
        --signature)
                if [ "$2" = - ]
                then
diff --git a/scripts/gpgmail.pl b/scripts/gpgmail.pl
new file mode 100755
index 0000000..c4484bb
--- /dev/null
+++ b/scripts/gpgmail.pl
@@ -0,0 +1,124 @@
+#!/usr/bin/perl
+
+use strict;
+
+use MIME::QuotedPrint;
+
+my $pass = "";
+
+while ($#ARGV >= 0) {
+    my $opt = $ARGV[0];
+
+    last if ($opt =~ /^--$/ || $opt !~ /^-/);
+
+    if ($opt eq "--passwd") {
+       shift @ARGV;
+       $pass = shift @ARGV;
+    } elsif ($opt eq "--agent") {
+       shift @ARGV;
+       $pass = " --use-agent ";
+    } else {
+       die "undefined option $opt";
+    }
+}
+
+shift @ARGV if ($#ARGV >= 0 && $ARGV eq "--");
+
+if ($#ARGV >= 0) {
+    open(IN, $ARGV[0]) or die "can't read $ARGV[0]";
+} else {
+    *IN = *STDIN;
+}
+
+*OUT = *STDOUT;
+
+my $content;
+my $quot;
+my $quoted = 0;
+
+while (<IN>) {
+    if (/^Content-Type/) {
+       s/$/\r/;
+       $content = $_;
+
+    } elsif (/^Content-Transfer-Encoding/) {
+       s/$/\r/;
+       $quot = $_;
+       $quoted = 1;
+
+    } elsif (/^$/) {
+       last;
+    } else {
+       print OUT;
+    }
+}
+
+my $scissor = sprintf "%s", crypt( sprintf("%d", rand * 1000), sprintf("%d", 
rand * 100));
+
+print OUT "Content-Type: multipart/signed; micalg=\"pgp-sha1\"; 
protocol=\"application/pgp-signature\"; boundary=\"$scissor\"";
+
+print OUT "\n\n";
+
+my $convert = 0;
+
+if (!defined($content)) {
+    $content = "Content-Type: text/plain; charset=\"UTF-8\"\r\n";
+    $quot = "Content-Transfer-Encoding: quoted-printable\r\n";
+    $convert = 1;
+    $quoted = 1;
+}
+
+print OUT "--$scissor\n";
+
+my @lines;
+
+$lines[$#lines + 1] = $content;
+if ($quoted) {
+    $lines[$#lines + 1] = $quot;
+}
+$lines[$#lines + 1] = "\r\n";
+
+my @rest;
+
+my @rest = <IN>;
+
+if ($convert) {
+    foreach my $line (@rest) {
+       $line = encode_qp($line,"\r\n");
+    }
+}
+
address@hidden = (@lines, @rest);
+
+close IN;
+
+my $tmpfile = "/tmp/gpgmail.$$";
+
+open(TMP, ">", $tmpfile) or die "Can't create a temporary file";
+
+print TMP @lines;
+
+close TMP;
+
+# put the lines back to unix
+foreach my $line (@lines) {
+    $line =~ s/\r//g;
+}
+
+print OUT @lines;
+
+print OUT "\n";
+print OUT "--$scissor\n";
+
+my $pgp = `gpg --simple-sk-checksum -a --detach-sign $pass --output - < 
$tmpfile`;
+
+unlink $tmpfile;
+
+print OUT "Content-Type: application/pgp-signature; name=\"signature.asc\"\n";
+print OUT "Content-Description: This is a digitally signed message part\n";
+print OUT "\n";
+
+print OUT $pgp;
+
+print OUT "\n";
+print OUT "--$scissor--\n";





reply via email to

[Prev in Thread] Current Thread [Next in Thread]