2016-01-22 11:47:58 +01:00
|
|
|
|
/* Fake pinentry program for the OpenPGP test suite.
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2016 g10 code GmbH
|
|
|
|
|
*
|
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
|
*
|
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2016-11-05 12:02:19 +01:00
|
|
|
|
* along with this program; if not, see <https://www.gnu.org/licenses/>.
|
2016-01-22 11:47:58 +01:00
|
|
|
|
*/
|
|
|
|
|
|
2016-10-25 17:07:08 +02:00
|
|
|
|
#include <errno.h>
|
2016-01-22 11:47:58 +01:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <string.h>
|
2016-04-19 14:21:10 +02:00
|
|
|
|
#include <stdarg.h>
|
2016-10-25 17:07:08 +02:00
|
|
|
|
#include <unistd.h>
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
static FILE *log_stream;
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
|
|
|
|
|
static int
|
2016-04-19 14:21:10 +02:00
|
|
|
|
reply (const char *fmt, ...)
|
|
|
|
|
{
|
|
|
|
|
int result;
|
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
|
|
if (log_stream)
|
|
|
|
|
{
|
|
|
|
|
fprintf (log_stream, "> ");
|
|
|
|
|
va_start (ap, fmt);
|
|
|
|
|
vfprintf (log_stream, fmt, ap);
|
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
va_start (ap, fmt);
|
|
|
|
|
result = vprintf (fmt, ap);
|
|
|
|
|
va_end (ap);
|
|
|
|
|
|
2016-10-20 16:50:11 +02:00
|
|
|
|
fflush (stdout);
|
2016-04-19 14:21:10 +02:00
|
|
|
|
return result;
|
|
|
|
|
}
|
2016-04-19 15:44:23 +02:00
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
|
2016-04-19 15:44:23 +02:00
|
|
|
|
/* Return the first line from FNAME, removing it from the file. */
|
2016-10-26 08:34:18 +02:00
|
|
|
|
static char *
|
2016-04-19 15:44:23 +02:00
|
|
|
|
get_passphrase (const char *fname)
|
|
|
|
|
{
|
|
|
|
|
char *passphrase = NULL;
|
|
|
|
|
size_t fname_len;
|
|
|
|
|
char *fname_new;
|
|
|
|
|
FILE *source, *sink;
|
|
|
|
|
char linebuf[80];
|
|
|
|
|
|
|
|
|
|
fname_len = strlen (fname);
|
|
|
|
|
fname_new = malloc (fname_len + 5);
|
|
|
|
|
if (fname_new == NULL)
|
|
|
|
|
{
|
|
|
|
|
perror ("malloc");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
snprintf (fname_new, fname_len + 5, "%s.new", fname);
|
|
|
|
|
|
|
|
|
|
source = fopen (fname, "r");
|
|
|
|
|
if (! source)
|
|
|
|
|
{
|
|
|
|
|
perror (fname);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sink = fopen (fname_new, "w");
|
|
|
|
|
if (! sink)
|
|
|
|
|
{
|
|
|
|
|
perror (fname_new);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (fgets (linebuf, sizeof linebuf, source))
|
|
|
|
|
{
|
|
|
|
|
linebuf[sizeof linebuf - 1] = 0;
|
|
|
|
|
if (passphrase == NULL)
|
|
|
|
|
{
|
|
|
|
|
passphrase = strdup (linebuf);
|
|
|
|
|
if (passphrase == NULL)
|
|
|
|
|
{
|
|
|
|
|
perror ("strdup");
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
fputs (linebuf, sink);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ferror (source))
|
|
|
|
|
{
|
|
|
|
|
perror (fname);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (ferror (sink))
|
|
|
|
|
{
|
|
|
|
|
perror (fname_new);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fclose (source);
|
|
|
|
|
fclose (sink);
|
2016-10-26 08:34:18 +02:00
|
|
|
|
if (remove (fname))
|
2016-10-25 17:07:08 +02:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Failed to remove %s: %s",
|
|
|
|
|
fname, strerror (errno));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (rename (fname_new, fname))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Failed to rename %s to %s: %s",
|
|
|
|
|
fname, fname_new, strerror (errno));
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
2017-04-17 02:44:37 +02:00
|
|
|
|
|
|
|
|
|
free (fname_new);
|
2016-04-19 15:44:23 +02:00
|
|
|
|
return passphrase;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
#define whitespacep(p) (*(p) == ' ' || *(p) == '\t' \
|
|
|
|
|
|| *(p) == '\r' || *(p) == '\n')
|
2016-10-25 17:07:08 +02:00
|
|
|
|
|
|
|
|
|
/* rstrip line. */
|
2016-10-26 08:34:18 +02:00
|
|
|
|
static void
|
2016-10-25 17:07:08 +02:00
|
|
|
|
rstrip (char *buffer)
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
2016-10-26 08:34:18 +02:00
|
|
|
|
if (!*buffer)
|
|
|
|
|
return; /* This is to avoid p = buffer - 1 */
|
2016-10-25 17:07:08 +02:00
|
|
|
|
for (p = buffer + strlen (buffer) - 1; p >= buffer; p--)
|
|
|
|
|
{
|
2016-10-26 08:34:18 +02:00
|
|
|
|
if (! whitespacep (p))
|
2016-10-25 17:07:08 +02:00
|
|
|
|
break;
|
|
|
|
|
*p = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
|
|
|
|
/* Skip over options in LINE.
|
|
|
|
|
|
|
|
|
|
Blanks after the options are also removed. Options are indicated
|
|
|
|
|
by two leading dashes followed by a string consisting of non-space
|
|
|
|
|
characters. The special option "--" indicates an explicit end of
|
|
|
|
|
options; all what follows will not be considered an option. The
|
|
|
|
|
first no-option string also indicates the end of option parsing. */
|
|
|
|
|
char *
|
|
|
|
|
skip_options (const char *line)
|
|
|
|
|
{
|
2016-10-26 08:34:18 +02:00
|
|
|
|
while (whitespacep (line))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
line++;
|
|
|
|
|
while (*line == '-' && line[1] == '-')
|
|
|
|
|
{
|
2016-10-26 08:34:18 +02:00
|
|
|
|
while (*line && !whitespacep (line))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
line++;
|
2016-10-26 08:34:18 +02:00
|
|
|
|
while (whitespacep (line))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
line++;
|
|
|
|
|
}
|
|
|
|
|
return (char*) line;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return a pointer to the argument of the option with NAME. If such
|
|
|
|
|
an option is not given, NULL is returned. */
|
|
|
|
|
char *
|
|
|
|
|
option_value (const char *line, const char *name)
|
|
|
|
|
{
|
|
|
|
|
char *s;
|
|
|
|
|
int n = strlen (name);
|
|
|
|
|
|
|
|
|
|
s = strstr (line, name);
|
|
|
|
|
if (s && s >= skip_options (line))
|
|
|
|
|
return NULL;
|
2016-10-26 08:34:18 +02:00
|
|
|
|
if (s && (s == line || whitespacep (s-1))
|
|
|
|
|
&& s[n] && (whitespacep (s+n) || s[n] == '='))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
{
|
|
|
|
|
s += n + 1;
|
|
|
|
|
s += strspn (s, " ");
|
2016-10-26 08:34:18 +02:00
|
|
|
|
if (*s && !whitespacep(s))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2016-01-22 11:47:58 +01:00
|
|
|
|
|
2022-12-02 08:55:49 +01:00
|
|
|
|
static int
|
|
|
|
|
parse_pinentry_user_data (const char *args,
|
|
|
|
|
char **r_passphrase)
|
2016-01-22 11:47:58 +01:00
|
|
|
|
{
|
2016-04-19 14:21:10 +02:00
|
|
|
|
char *logfile;
|
2016-04-19 15:44:23 +02:00
|
|
|
|
char *passphrasefile;
|
|
|
|
|
char *passphrase;
|
2016-04-14 09:08:50 +02:00
|
|
|
|
|
2022-12-02 08:55:49 +01:00
|
|
|
|
*r_passphrase = NULL;
|
2016-04-14 09:08:50 +02:00
|
|
|
|
|
2022-12-02 08:55:49 +01:00
|
|
|
|
if (log_stream)
|
|
|
|
|
fclose (log_stream);
|
|
|
|
|
log_stream = NULL;
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
|
|
|
|
logfile = option_value (args, "--logfile");
|
|
|
|
|
if (logfile)
|
2016-04-14 09:08:50 +02:00
|
|
|
|
{
|
2016-04-19 14:21:10 +02:00
|
|
|
|
char *p = logfile, more;
|
2016-10-26 08:34:18 +02:00
|
|
|
|
while (*p && ! whitespacep (p))
|
2016-04-19 14:21:10 +02:00
|
|
|
|
p++;
|
|
|
|
|
more = !! *p;
|
|
|
|
|
*p = 0;
|
|
|
|
|
args = more ? p+1 : p;
|
|
|
|
|
|
|
|
|
|
log_stream = fopen (logfile, "a");
|
|
|
|
|
if (! log_stream)
|
|
|
|
|
{
|
|
|
|
|
perror (logfile);
|
2022-12-02 08:55:49 +01:00
|
|
|
|
return -1;
|
2016-04-19 14:21:10 +02:00
|
|
|
|
}
|
2016-04-14 09:08:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 15:44:23 +02:00
|
|
|
|
passphrasefile = option_value (args, "--passphrasefile");
|
|
|
|
|
if (passphrasefile)
|
|
|
|
|
{
|
|
|
|
|
char *p = passphrasefile, more;
|
2016-10-26 08:34:18 +02:00
|
|
|
|
while (*p && ! whitespacep (p))
|
2016-04-19 15:44:23 +02:00
|
|
|
|
p++;
|
|
|
|
|
more = !! *p;
|
|
|
|
|
*p = 0;
|
|
|
|
|
args = more ? p+1 : p;
|
|
|
|
|
|
|
|
|
|
passphrase = get_passphrase (passphrasefile);
|
|
|
|
|
if (! passphrase)
|
|
|
|
|
{
|
|
|
|
|
reply ("# Passphrasefile '%s' is empty. Terminating.\n",
|
|
|
|
|
passphrasefile);
|
2022-12-02 08:55:49 +01:00
|
|
|
|
return -1;
|
2016-04-19 15:44:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-25 17:07:08 +02:00
|
|
|
|
rstrip (passphrase);
|
2016-04-19 15:44:23 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2022-12-02 08:55:49 +01:00
|
|
|
|
passphrase = strdup (skip_options (args));
|
|
|
|
|
|
|
|
|
|
*r_passphrase = passphrase;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
2022-12-02 08:55:49 +01:00
|
|
|
|
int
|
|
|
|
|
main (int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
char *passphrase = NULL;
|
|
|
|
|
|
|
|
|
|
/* We get our options via PINENTRY_USER_DATA. */
|
|
|
|
|
(void) argc, (void) argv;
|
|
|
|
|
|
|
|
|
|
setvbuf (stdin, NULL, _IOLBF, BUFSIZ);
|
|
|
|
|
setvbuf (stdout, NULL, _IOLBF, BUFSIZ);
|
|
|
|
|
|
|
|
|
|
reply ("# fake-pinentry(%u) started.\n", (unsigned int)getpid ());
|
2016-04-19 14:21:10 +02:00
|
|
|
|
reply ("OK - what's up?\n");
|
2016-01-22 11:47:58 +01:00
|
|
|
|
|
|
|
|
|
while (! feof (stdin))
|
|
|
|
|
{
|
2016-10-26 08:34:18 +02:00
|
|
|
|
char buffer[1024];
|
2016-01-22 11:47:58 +01:00
|
|
|
|
|
|
|
|
|
if (fgets (buffer, sizeof buffer, stdin) == NULL)
|
|
|
|
|
break;
|
|
|
|
|
|
2016-04-19 14:21:10 +02:00
|
|
|
|
if (log_stream)
|
|
|
|
|
fprintf (log_stream, "< %s", buffer);
|
|
|
|
|
|
2016-10-25 17:07:08 +02:00
|
|
|
|
rstrip (buffer);
|
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
#define OPT_USER_DATA "OPTION pinentry-user-data="
|
|
|
|
|
|
2016-01-22 11:47:58 +01:00
|
|
|
|
if (strncmp (buffer, "GETPIN", 6) == 0)
|
2022-12-02 08:55:49 +01:00
|
|
|
|
{
|
|
|
|
|
if (passphrase)
|
|
|
|
|
reply ("D %s\n", passphrase);
|
|
|
|
|
else
|
|
|
|
|
reply ("D deafult\n");
|
|
|
|
|
}
|
2016-01-22 11:47:58 +01:00
|
|
|
|
else if (strncmp (buffer, "BYE", 3) == 0)
|
|
|
|
|
{
|
2016-04-19 14:21:10 +02:00
|
|
|
|
reply ("OK\n");
|
2016-01-22 11:47:58 +01:00
|
|
|
|
break;
|
|
|
|
|
}
|
2016-10-25 17:07:08 +02:00
|
|
|
|
else if (strncmp (buffer, OPT_USER_DATA, strlen (OPT_USER_DATA)) == 0)
|
|
|
|
|
{
|
2022-12-02 08:55:49 +01:00
|
|
|
|
if (parse_pinentry_user_data (buffer + strlen (OPT_USER_DATA),
|
|
|
|
|
&passphrase) < 0)
|
|
|
|
|
{
|
|
|
|
|
/* Failure. */
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2016-10-25 17:07:08 +02:00
|
|
|
|
}
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
|
|
|
|
reply ("OK\n");
|
2016-01-22 11:47:58 +01:00
|
|
|
|
}
|
2016-04-19 14:21:10 +02:00
|
|
|
|
|
2016-10-26 08:34:18 +02:00
|
|
|
|
#undef OPT_USER_DATA
|
|
|
|
|
|
2016-04-19 14:21:10 +02:00
|
|
|
|
reply ("# Connection terminated.\n");
|
|
|
|
|
if (log_stream)
|
|
|
|
|
fclose (log_stream);
|
|
|
|
|
|
2022-12-02 08:55:49 +01:00
|
|
|
|
if (passphrase)
|
|
|
|
|
free (passphrase);
|
2016-01-22 11:47:58 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|