mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* protect-tool.c: New option --canonical.
(show_file): Implement it. * keyformat.txt: Define the created-at attribute for keys. * ccid-driver.c: Replaced macro DEBUG_T1 by a new debug level. (parse_ccid_descriptor): Mark SCR335 firmware version 5.18 good. (ccid_transceive): Arghhh. The seqno is another bit in the R-block than in the I block, this was wrong at one place. * scdaemon.c: New options --debug-ccid-driver and --debug-disable-ticker. * app-openpgp.c (do_genkey, do_writekey): Factored code to check for existing key out into .. (does_key_exist): .. New function. * gpg-connect-agent.c (add_definq, show_definq, clear_definq) (handle_inquire): New. (read_and_print_response): Handle INQUIRE command. (main): Implement control commands.
This commit is contained in:
parent
4237a9cc7f
commit
41862f5f13
17 changed files with 961 additions and 116 deletions
|
@ -1,3 +1,10 @@
|
|||
2005-05-20 Werner Koch <wk@g10code.com>
|
||||
|
||||
* gpg-connect-agent.c (add_definq, show_definq, clear_definq)
|
||||
(handle_inquire): New.
|
||||
(read_and_print_response): Handle INQUIRE command.
|
||||
(main): Implement control commands.
|
||||
|
||||
2005-04-21 Werner Koch <wk@g10code.com>
|
||||
|
||||
* symcryptrun.c (main): Optionally allow the input file as command
|
||||
|
@ -368,7 +375,7 @@
|
|||
* watchgnupg.c: New.
|
||||
|
||||
|
||||
Copyright 2003, 2004 Free Software Foundation, Inc.
|
||||
Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
|
||||
This file is free software; as a special exception the author gives
|
||||
unlimited permission to copy and/or distribute it, with or without
|
||||
|
|
|
@ -76,6 +76,23 @@ struct
|
|||
} opt;
|
||||
|
||||
|
||||
|
||||
/* Definitions for /definq commands and a global linked list with all
|
||||
the definitions. */
|
||||
struct definq_s
|
||||
{
|
||||
struct definq_s *next;
|
||||
char *name; /* Name of inquiry or NULL for any name. */
|
||||
int is_prog; /* True if this is a program to run. */
|
||||
char file[1]; /* Name of file or program. */
|
||||
};
|
||||
typedef struct definq_s *definq_t;
|
||||
|
||||
static definq_t definq_list;
|
||||
static definq_t *definq_list_tail = &definq_list;
|
||||
|
||||
|
||||
|
||||
/*-- local prototypes --*/
|
||||
static int read_and_print_response (assuan_context_t ctx);
|
||||
static assuan_context_t start_agent (void);
|
||||
|
@ -129,6 +146,68 @@ i18n_init(void)
|
|||
#endif
|
||||
}
|
||||
|
||||
/* Store an inquire response pattern. Note, that this function may
|
||||
change the content of LINE. We assume that leading white spaces
|
||||
are already removed. */
|
||||
static void
|
||||
add_definq (char *line, int is_prog)
|
||||
{
|
||||
definq_t d;
|
||||
char *name, *p;
|
||||
|
||||
/* Get name. */
|
||||
name = line;
|
||||
for (p=name; *p && !spacep (p); p++)
|
||||
;
|
||||
if (*p)
|
||||
*p++ = 0;
|
||||
while (spacep (p))
|
||||
p++;
|
||||
|
||||
d = xmalloc (sizeof *d + strlen (p) );
|
||||
strcpy (d->file, p);
|
||||
d->is_prog = is_prog;
|
||||
if ( !strcmp (name, "*"))
|
||||
d->name = NULL;
|
||||
else
|
||||
d->name = xstrdup (name);
|
||||
|
||||
d->next = NULL;
|
||||
*definq_list_tail = d;
|
||||
definq_list_tail = &d->next;
|
||||
}
|
||||
|
||||
|
||||
/* Show all inquiry defintions. */
|
||||
static void
|
||||
show_definq (void)
|
||||
{
|
||||
definq_t d;
|
||||
|
||||
for (d=definq_list; d; d = d->next)
|
||||
if (d->name)
|
||||
printf ("%-20s %c %s\n", d->name, d->is_prog? 'p':'f', d->file);
|
||||
for (d=definq_list; d; d = d->next)
|
||||
if (!d->name)
|
||||
printf ("%-20s %c %s\n", "*", d->is_prog? 'p':'f', d->file);
|
||||
}
|
||||
|
||||
|
||||
/* Clear all inquiry definitions. */
|
||||
static void
|
||||
clear_definq (void)
|
||||
{
|
||||
while (definq_list)
|
||||
{
|
||||
definq_t tmp = definq_list->next;
|
||||
xfree (definq_list->name);
|
||||
xfree (definq_list);
|
||||
definq_list = tmp;
|
||||
}
|
||||
definq_list_tail = &definq_list;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* gpg-connect-agent's entry point. */
|
||||
int
|
||||
|
@ -138,7 +217,7 @@ main (int argc, char **argv)
|
|||
const char *fname;
|
||||
int no_more_options = 0;
|
||||
assuan_context_t ctx;
|
||||
char *line;
|
||||
char *line, *p;
|
||||
size_t linesize;
|
||||
int rc;
|
||||
|
||||
|
@ -213,6 +292,57 @@ main (int argc, char **argv)
|
|||
log_info (_("line shortened due to embedded Nul character\n"));
|
||||
if (line[n-1] == '\n')
|
||||
line[n-1] = 0;
|
||||
if (*line == '/')
|
||||
{
|
||||
/* Handle control commands. */
|
||||
char *cmd = line+1;
|
||||
|
||||
for (p=cmd; *p && !spacep (p); p++)
|
||||
;
|
||||
if (*p)
|
||||
*p++ = 0;
|
||||
while (spacep (p))
|
||||
p++;
|
||||
if (!strcmp (cmd, "definqfile"))
|
||||
{
|
||||
add_definq (p, 0);
|
||||
}
|
||||
else if (!strcmp (cmd, "definqprog"))
|
||||
{
|
||||
add_definq (p, 1);
|
||||
}
|
||||
else if (!strcmp (cmd, "showdef"))
|
||||
{
|
||||
show_definq ();
|
||||
}
|
||||
else if (!strcmp (cmd, "cleardef"))
|
||||
{
|
||||
clear_definq ();
|
||||
}
|
||||
else if (!strcmp (cmd, "echo"))
|
||||
{
|
||||
puts (p);
|
||||
}
|
||||
else if (!strcmp (cmd, "help"))
|
||||
{
|
||||
puts ("Available commands:\n"
|
||||
"/echo ARGS Echo ARGS.\n"
|
||||
"/definqfile NAME FILE\n"
|
||||
" Use content of FILE for inquiries with NAME.\n"
|
||||
" NAME may be \"*\" to match any inquiry.\n"
|
||||
"/definqprog NAME PGM\n"
|
||||
" Run PGM for inquiries matching NAME and pass the\n"
|
||||
" entire line to it as arguments.\n"
|
||||
"/showdef Print all definitions.\n"
|
||||
"/cleardef Delete all definitions.\n"
|
||||
"/help Print this help.");
|
||||
}
|
||||
else
|
||||
log_error (_("unknown command `%s'\n"), cmd );
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
rc = assuan_write_line (ctx, line);
|
||||
if (rc)
|
||||
{
|
||||
|
@ -234,6 +364,94 @@ main (int argc, char **argv)
|
|||
}
|
||||
|
||||
|
||||
/* Handle an Inquire from the server. Return False if it could not be
|
||||
handled; in this case the caller shll complete the operation. LINE
|
||||
is the complete line as received from the server. This function
|
||||
may change the content of LINE. */
|
||||
static int
|
||||
handle_inquire (assuan_context_t ctx, char *line)
|
||||
{
|
||||
const char *name;
|
||||
definq_t d;
|
||||
FILE *fp;
|
||||
char buffer[1024];
|
||||
int rc, n;
|
||||
|
||||
/* Skip the command and trailing spaces. */
|
||||
for (; *line && !spacep (line); line++)
|
||||
;
|
||||
while (spacep (line))
|
||||
line++;
|
||||
/* Get the name. */
|
||||
name = line;
|
||||
for (; *line && !spacep (line); line++)
|
||||
;
|
||||
if (*line)
|
||||
*line++ = 0;
|
||||
|
||||
/* Now match it against our list. he second loop is todetect the
|
||||
match all entry. **/
|
||||
for (d=definq_list; d; d = d->next)
|
||||
if (d->name && !strcmp (d->name, name))
|
||||
break;
|
||||
if (!d)
|
||||
for (d=definq_list; d; d = d->next)
|
||||
if (!d->name)
|
||||
break;
|
||||
if (!d)
|
||||
{
|
||||
if (opt.verbose)
|
||||
log_info ("no handler for inquiry `%s' found\n", name);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (d->is_prog)
|
||||
{
|
||||
fp = popen (d->file, "r");
|
||||
if (!fp)
|
||||
log_error ("error executing `%s': %s\n", d->file, strerror (errno));
|
||||
else if (opt.verbose)
|
||||
log_error ("handling inquiry `%s' by running `%s'\n", name, d->file);
|
||||
}
|
||||
else
|
||||
{
|
||||
fp = fopen (d->file, "rb");
|
||||
if (!fp)
|
||||
log_error ("error opening `%s': %s\n", d->file, strerror (errno));
|
||||
else if (opt.verbose)
|
||||
log_error ("handling inquiry `%s' by returning content of `%s'\n",
|
||||
name, d->file);
|
||||
}
|
||||
if (!fp)
|
||||
return 0;
|
||||
|
||||
while ( (n = fread (buffer, 1, sizeof buffer, fp)) )
|
||||
{
|
||||
rc = assuan_send_data (ctx, buffer, n);
|
||||
if (rc)
|
||||
{
|
||||
log_error ("sending data back failed: %s\n", assuan_strerror (rc) );
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (ferror (fp))
|
||||
log_error ("error reading from `%s': %s\n", d->file, strerror (errno));
|
||||
|
||||
rc = assuan_send_data (ctx, NULL, 0);
|
||||
if (rc)
|
||||
log_error ("sending data back failed: %s\n", assuan_strerror (rc) );
|
||||
|
||||
if (d->is_prog)
|
||||
{
|
||||
if (pclose (fp))
|
||||
log_error ("error running `%s': %s\n", d->file, strerror (errno));
|
||||
}
|
||||
else
|
||||
fclose (fp);
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
/* Read all response lines from server and print them. Returns 0 on
|
||||
success or an assuan error code. */
|
||||
static int
|
||||
|
@ -325,7 +543,8 @@ read_and_print_response (assuan_context_t ctx)
|
|||
{
|
||||
fwrite (line, linelen, 1, stdout);
|
||||
putchar ('\n');
|
||||
return 0;
|
||||
if (!handle_inquire (ctx, line))
|
||||
assuan_write_line (ctx, "CANCEL");
|
||||
}
|
||||
else if (linelen >= 3
|
||||
&& line[0] == 'E' && line[1] == 'N' && line[2] == 'D'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue