mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
525 lines
14 KiB
C
525 lines
14 KiB
C
/* status.c
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
|
*
|
|
* 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 2 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
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#ifdef USE_SHM_COPROCESSING
|
|
#ifdef USE_CAPABILITIES
|
|
#include <sys/capability.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_IPC_H
|
|
#include <sys/ipc.h>
|
|
#endif
|
|
#ifdef HAVE_SYS_SHM_H
|
|
#include <sys/shm.h>
|
|
#endif
|
|
#if defined(HAVE_MLOCK)
|
|
#include <sys/mman.h>
|
|
#endif
|
|
#endif
|
|
|
|
#include <gcrypt.h>
|
|
#include "util.h"
|
|
#include "status.h"
|
|
#include "ttyio.h"
|
|
#include "options.h"
|
|
#include "main.h"
|
|
#include "i18n.h"
|
|
|
|
static int fd = -1;
|
|
#ifdef USE_SHM_COPROCESSING
|
|
static int shm_id = -1;
|
|
static volatile char *shm_area;
|
|
static size_t shm_size;
|
|
static int shm_is_locked;
|
|
#endif /*USE_SHM_COPROCESSING*/
|
|
|
|
|
|
static void
|
|
progress_cb ( void *ctx, int c )
|
|
{
|
|
char buf[50];
|
|
|
|
if ( c == '\n' )
|
|
sprintf ( buf, "%.20s X 100 100", (char*)ctx );
|
|
else
|
|
sprintf ( buf, "%.20s %c 0 0", (char*)ctx, c );
|
|
write_status_text ( STATUS_PROGRESS, buf );
|
|
}
|
|
|
|
|
|
void
|
|
set_status_fd ( int newfd )
|
|
{
|
|
fd = newfd;
|
|
if ( fd != -1 ) {
|
|
#warning fixme - progress functions
|
|
/* Has to be fixed in libgcrypt */
|
|
#if 0
|
|
register_primegen_progress ( progress_cb, "primegen" );
|
|
register_pk_dsa_progress ( progress_cb, "pk_dsa" );
|
|
register_pk_elg_progress ( progress_cb, "pk_elg" );
|
|
#endif
|
|
}
|
|
}
|
|
|
|
int
|
|
is_status_enabled()
|
|
{
|
|
return fd != -1;
|
|
}
|
|
|
|
void
|
|
write_status ( int no )
|
|
{
|
|
write_status_text( no, NULL );
|
|
}
|
|
|
|
void
|
|
write_status_text ( int no, const char *text)
|
|
{
|
|
const char *s;
|
|
|
|
if( fd == -1 )
|
|
return; /* not enabled */
|
|
|
|
switch( no ) {
|
|
case STATUS_ENTER : s = "ENTER\n"; break;
|
|
case STATUS_LEAVE : s = "LEAVE\n"; break;
|
|
case STATUS_ABORT : s = "ABORT\n"; break;
|
|
case STATUS_GOODSIG: s = "GOODSIG\n"; break;
|
|
case STATUS_SIGEXPIRED: s = "SIGEXPIRED\n"; break;
|
|
case STATUS_KEYREVOKED: s = "KEYREVOKED\n"; break;
|
|
case STATUS_BADSIG : s = "BADSIG\n"; break;
|
|
case STATUS_ERRSIG : s = "ERRSIG\n"; break;
|
|
case STATUS_BADARMOR : s = "BADARMOR\n"; break;
|
|
case STATUS_RSA_OR_IDEA : s= "RSA_OR_IDEA\n"; break;
|
|
case STATUS_TRUST_UNDEFINED: s = "TRUST_UNDEFINED\n"; break;
|
|
case STATUS_TRUST_NEVER : s = "TRUST_NEVER\n"; break;
|
|
case STATUS_TRUST_MARGINAL : s = "TRUST_MARGINAL\n"; break;
|
|
case STATUS_TRUST_FULLY : s = "TRUST_FULLY\n"; break;
|
|
case STATUS_TRUST_ULTIMATE : s = "TRUST_ULTIMATE\n"; break;
|
|
case STATUS_GET_BOOL : s = "GET_BOOL\n"; break;
|
|
case STATUS_GET_LINE : s = "GET_LINE\n"; break;
|
|
case STATUS_GET_HIDDEN : s = "GET_HIDDEN\n"; break;
|
|
case STATUS_GOT_IT : s = "GOT_IT\n"; break;
|
|
case STATUS_SHM_INFO : s = "SHM_INFO\n"; break;
|
|
case STATUS_SHM_GET : s = "SHM_GET\n"; break;
|
|
case STATUS_SHM_GET_BOOL : s = "SHM_GET_BOOL\n"; break;
|
|
case STATUS_SHM_GET_HIDDEN : s = "SHM_GET_HIDDEN\n"; break;
|
|
case STATUS_NEED_PASSPHRASE: s = "NEED_PASSPHRASE\n"; break;
|
|
case STATUS_VALIDSIG : s = "VALIDSIG\n"; break;
|
|
case STATUS_SIG_ID : s = "SIG_ID\n"; break;
|
|
case STATUS_ENC_TO : s = "ENC_TO\n"; break;
|
|
case STATUS_NODATA : s = "NODATA\n"; break;
|
|
case STATUS_BAD_PASSPHRASE : s = "BAD_PASSPHRASE\n"; break;
|
|
case STATUS_NO_PUBKEY : s = "NO_PUBKEY\n"; break;
|
|
case STATUS_NO_SECKEY : s = "NO_SECKEY\n"; break;
|
|
case STATUS_NEED_PASSPHRASE_SYM: s = "NEED_PASSPHRASE_SYM\n"; break;
|
|
case STATUS_DECRYPTION_FAILED: s = "DECRYPTION_FAILED\n"; break;
|
|
case STATUS_DECRYPTION_OKAY: s = "DECRYPTION_OKAY\n"; break;
|
|
case STATUS_MISSING_PASSPHRASE: s = "MISSING_PASSPHRASE\n"; break;
|
|
case STATUS_GOOD_PASSPHRASE : s = "GOOD_PASSPHRASE\n"; break;
|
|
case STATUS_GOODMDC : s = "GOODMDC\n"; break;
|
|
case STATUS_BADMDC : s = "BADMDC\n"; break;
|
|
case STATUS_ERRMDC : s = "ERRMDC\n"; break;
|
|
case STATUS_IMPORTED : s = "IMPORTED\n"; break;
|
|
case STATUS_IMPORT_RES : s = "IMPORT_RES\n"; break;
|
|
case STATUS_FILE_START : s = "FILE_START\n"; break;
|
|
case STATUS_FILE_DONE : s = "FILE_DONE\n"; break;
|
|
case STATUS_FILE_ERROR : s = "FILE_ERROR\n"; break;
|
|
case STATUS_BEGIN_DECRYPTION:s = "BEGIN_DECRYPTION\n"; break;
|
|
case STATUS_END_DECRYPTION : s = "END_DECRYPTION\n"; break;
|
|
case STATUS_BEGIN_ENCRYPTION:s = "BEGIN_ENCRYPTION\n"; break;
|
|
case STATUS_END_ENCRYPTION : s = "END_ENCRYPTION\n"; break;
|
|
case STATUS_DELETE_PROBLEM : s = "DELETE_PROBLEM\n"; break;
|
|
case STATUS_PROGRESS : s = "PROGRESS\n"; break;
|
|
case STATUS_SIG_CREATED : s = "SIG_CREATED\n"; break;
|
|
default: s = "?\n"; break;
|
|
}
|
|
|
|
write( fd, "[GNUPG:] ", 9 );
|
|
if( text ) {
|
|
write( fd, s, strlen(s)-1 );
|
|
write( fd, " ", 1 );
|
|
write( fd, text, strlen(text) );
|
|
write( fd, "\n", 1 );
|
|
}
|
|
else
|
|
write( fd, s, strlen(s) );
|
|
}
|
|
|
|
|
|
#ifdef USE_SHM_COPROCESSING
|
|
|
|
#ifndef IPC_RMID_DEFERRED_RELEASE
|
|
static void
|
|
remove_shmid( void )
|
|
{
|
|
if( shm_id != -1 ) {
|
|
shmctl ( shm_id, IPC_RMID, 0);
|
|
shm_id = -1;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
void
|
|
init_shm_coprocessing ( ulong requested_shm_size, int lock_mem )
|
|
{
|
|
char buf[100];
|
|
struct shmid_ds shmds;
|
|
|
|
#ifndef IPC_RMID_DEFERRED_RELEASE
|
|
atexit( remove_shmid );
|
|
#endif
|
|
requested_shm_size = (requested_shm_size + 4095) & ~4095;
|
|
if ( requested_shm_size > 2 * 4096 )
|
|
log_fatal("too much shared memory requested; only 8k are allowed\n");
|
|
shm_size = 4096 /* one page for us */ + requested_shm_size;
|
|
|
|
shm_id = shmget( IPC_PRIVATE, shm_size, IPC_CREAT | 0700 );
|
|
if ( shm_id == -1 )
|
|
log_fatal("can't get %uk of shared memory: %s\n",
|
|
(unsigned)shm_size/1024, strerror(errno));
|
|
|
|
#if !defined(IPC_HAVE_SHM_LOCK) \
|
|
&& defined(HAVE_MLOCK) && !defined(HAVE_BROKEN_MLOCK)
|
|
/* part of the old code which uses mlock */
|
|
shm_area = shmat( shm_id, 0, 0 );
|
|
if ( shm_area == (char*)-1 )
|
|
log_fatal("can't attach %uk shared memory: %s\n",
|
|
(unsigned)shm_size/1024, strerror(errno));
|
|
log_debug("mapped %uk shared memory at %p, id=%d\n",
|
|
(unsigned)shm_size/1024, shm_area, shm_id );
|
|
if( lock_mem ) {
|
|
#ifdef USE_CAPABILITIES
|
|
cap_set_proc( cap_from_text("cap_ipc_lock+ep") );
|
|
#endif
|
|
/* (need the cast for Solaris with Sun's workshop compilers) */
|
|
if ( mlock ( (char*)shm_area, shm_size) )
|
|
log_info("locking shared memory %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
else
|
|
shm_is_locked = 1;
|
|
#ifdef USE_CAPABILITIES
|
|
cap_set_proc( cap_from_text("cap_ipc_lock+p") );
|
|
#endif
|
|
}
|
|
|
|
#ifdef IPC_RMID_DEFERRED_RELEASE
|
|
if( shmctl( shm_id, IPC_RMID, 0) )
|
|
log_fatal("shmctl IPC_RMDID of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
#endif
|
|
|
|
if( shmctl( shm_id, IPC_STAT, &shmds ) )
|
|
log_fatal("shmctl IPC_STAT of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
if( shmds.shm_perm.uid != getuid() ) {
|
|
shmds.shm_perm.uid = getuid();
|
|
if( shmctl( shm_id, IPC_SET, &shmds ) )
|
|
log_fatal("shmctl IPC_SET of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
}
|
|
|
|
#else /* this is the new code which handles the changes in the SHM semantics
|
|
* introduced with Linux 2.4. The changes is that we now change the
|
|
* permissions and then attach to the memory.
|
|
*/
|
|
|
|
if( lock_mem ) {
|
|
#ifdef USE_CAPABILITIES
|
|
cap_set_proc( cap_from_text("cap_ipc_lock+ep") );
|
|
#endif
|
|
#ifdef IPC_HAVE_SHM_LOCK
|
|
if ( shmctl (shm_id, SHM_LOCK, 0) )
|
|
log_info("locking shared memory %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
else
|
|
shm_is_locked = 1;
|
|
#else
|
|
log_info("Locking shared memory %d failed: No way to do it\n", shm_id );
|
|
#endif
|
|
#ifdef USE_CAPABILITIES
|
|
cap_set_proc( cap_from_text("cap_ipc_lock+p") );
|
|
#endif
|
|
}
|
|
|
|
if( shmctl( shm_id, IPC_STAT, &shmds ) )
|
|
log_fatal("shmctl IPC_STAT of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
if( shmds.shm_perm.uid != getuid() ) {
|
|
shmds.shm_perm.uid = getuid();
|
|
if( shmctl( shm_id, IPC_SET, &shmds ) )
|
|
log_fatal("shmctl IPC_SET of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
}
|
|
|
|
shm_area = shmat( shm_id, 0, 0 );
|
|
if ( shm_area == (char*)-1 )
|
|
log_fatal("can't attach %uk shared memory: %s\n",
|
|
(unsigned)shm_size/1024, strerror(errno));
|
|
log_debug("mapped %uk shared memory at %p, id=%d\n",
|
|
(unsigned)shm_size/1024, shm_area, shm_id );
|
|
|
|
#ifdef IPC_RMID_DEFERRED_RELEASE
|
|
if( shmctl( shm_id, IPC_RMID, 0) )
|
|
log_fatal("shmctl IPC_RMDID of %d failed: %s\n",
|
|
shm_id, strerror(errno));
|
|
#endif
|
|
|
|
#endif
|
|
/* write info; Protocol version, id, size, locked size */
|
|
sprintf( buf, "pv=1 pid=%d shmid=%d sz=%u lz=%u", (int)getpid(),
|
|
shm_id, (unsigned)shm_size, shm_is_locked? (unsigned)shm_size:0 );
|
|
write_status_text( STATUS_SHM_INFO, buf );
|
|
}
|
|
|
|
/****************
|
|
* Request a string from client
|
|
* If bool, returns static string on true (do not free) or NULL for false
|
|
*/
|
|
static char *
|
|
do_shm_get( const char *keyword, int hidden, int bool )
|
|
{
|
|
size_t n;
|
|
byte *p;
|
|
char *string;
|
|
|
|
if( !shm_area )
|
|
BUG();
|
|
|
|
shm_area[0] = 0; /* msb of length of control block */
|
|
shm_area[1] = 32; /* and lsb */
|
|
shm_area[2] = 1; /* indicate that we are waiting on a reply */
|
|
shm_area[3] = 0; /* clear data available flag */
|
|
|
|
write_status_text( bool? STATUS_SHM_GET_BOOL :
|
|
hidden? STATUS_SHM_GET_HIDDEN : STATUS_SHM_GET, keyword );
|
|
|
|
do {
|
|
pause_on_sigusr(1);
|
|
if( shm_area[0] || shm_area[1] != 32 || shm_area[2] != 1 )
|
|
log_fatal("client modified shm control block - abort\n");
|
|
} while( !shm_area[3] );
|
|
shm_area[2] = 0; /* reset request flag */
|
|
p = (byte*)shm_area+32;
|
|
n = p[0] << 8 | p[1];
|
|
p += 2;
|
|
if( n+32+2+1 > 4095 )
|
|
log_fatal("client returns too large data (%u bytes)\n", (unsigned)n );
|
|
|
|
if( bool )
|
|
return p[0]? "" : NULL;
|
|
|
|
string = hidden? gcry_xmalloc_secure( n+1 ) : gcry_xmalloc( n+1 );
|
|
memcpy(string, p, n );
|
|
string[n] = 0; /* make sure it is a string */
|
|
if( hidden ) /* invalidate the memory */
|
|
memset( p, 0, n );
|
|
|
|
return string;
|
|
}
|
|
|
|
#endif /* USE_SHM_COPROCESSING */
|
|
|
|
|
|
/****************
|
|
* Request a string from the client over the command-fd
|
|
* If bool, returns static string on true (do not free) or NULL for false
|
|
*/
|
|
static char *
|
|
do_get_from_fd( const char *keyword, int hidden, int bool )
|
|
{
|
|
int i, len;
|
|
char *string;
|
|
|
|
write_status_text( bool? STATUS_GET_BOOL :
|
|
hidden? STATUS_GET_HIDDEN : STATUS_GET_LINE, keyword );
|
|
|
|
for( string = NULL, i = len = 200; ; i++ ) {
|
|
if( i >= len-1 ) {
|
|
char *save = string;
|
|
len += 100;
|
|
string = hidden? gcry_xmalloc_secure ( len ) : gcry_malloc ( len );
|
|
if( save )
|
|
memcpy(string, save, i );
|
|
else
|
|
i=0;
|
|
}
|
|
/* Hmmm: why not use our read_line function here */
|
|
if( read( opt.command_fd, string+i, 1) != 1 || string[i] == '\n' )
|
|
break;
|
|
}
|
|
string[i] = 0;
|
|
|
|
write_status( STATUS_GOT_IT );
|
|
|
|
if( bool ) /* Fixme: is this correct??? */
|
|
return string[0] == 'Y' ? "" : NULL;
|
|
|
|
return string;
|
|
}
|
|
|
|
|
|
|
|
int
|
|
cpr_enabled()
|
|
{
|
|
if( opt.command_fd != -1 )
|
|
return 1;
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return 1;
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
char *
|
|
cpr_get( const char *keyword, const char *prompt )
|
|
{
|
|
char *p;
|
|
|
|
if( opt.command_fd != -1 )
|
|
return do_get_from_fd ( keyword, 0, 0 );
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return do_shm_get( keyword, 0, 0 );
|
|
#endif
|
|
for(;;) {
|
|
p = tty_get( prompt );
|
|
if( *p=='?' && !p[1] && !(keyword && !*keyword)) {
|
|
gcry_free(p);
|
|
display_online_help( keyword );
|
|
}
|
|
else
|
|
return p;
|
|
}
|
|
}
|
|
|
|
char *
|
|
cpr_get_utf8( const char *keyword, const char *prompt )
|
|
{
|
|
char *p;
|
|
p = cpr_get( keyword, prompt );
|
|
if( p ) {
|
|
char *utf8 = native_to_utf8( p );
|
|
gcry_free( p );
|
|
p = utf8;
|
|
}
|
|
return p;
|
|
}
|
|
|
|
char *
|
|
cpr_get_hidden( const char *keyword, const char *prompt )
|
|
{
|
|
char *p;
|
|
|
|
if( opt.command_fd != -1 )
|
|
return do_get_from_fd ( keyword, 1, 0 );
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return do_shm_get( keyword, 1, 0 );
|
|
#endif
|
|
for(;;) {
|
|
p = tty_get_hidden( prompt );
|
|
if( *p == '?' && !p[1] ) {
|
|
gcry_free(p);
|
|
display_online_help( keyword );
|
|
}
|
|
else
|
|
return p;
|
|
}
|
|
}
|
|
|
|
void
|
|
cpr_kill_prompt(void)
|
|
{
|
|
if( opt.command_fd != -1 )
|
|
return;
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return;
|
|
#endif
|
|
tty_kill_prompt();
|
|
return;
|
|
}
|
|
|
|
int
|
|
cpr_get_answer_is_yes( const char *keyword, const char *prompt )
|
|
{
|
|
int yes;
|
|
char *p;
|
|
|
|
if( opt.command_fd != -1 )
|
|
return !!do_get_from_fd ( keyword, 0, 1 );
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return !!do_shm_get( keyword, 0, 1 );
|
|
#endif
|
|
for(;;) {
|
|
p = tty_get( prompt );
|
|
trim_spaces(p); /* it is okay to do this here */
|
|
if( *p == '?' && !p[1] ) {
|
|
gcry_free(p);
|
|
display_online_help( keyword );
|
|
}
|
|
else {
|
|
tty_kill_prompt();
|
|
yes = answer_is_yes(p);
|
|
gcry_free(p);
|
|
return yes;
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
cpr_get_answer_yes_no_quit( const char *keyword, const char *prompt )
|
|
{
|
|
int yes;
|
|
char *p;
|
|
|
|
if( opt.command_fd != -1 )
|
|
return !!do_get_from_fd ( keyword, 0, 1 );
|
|
#ifdef USE_SHM_COPROCESSING
|
|
if( opt.shm_coprocess )
|
|
return !!do_shm_get( keyword, 0, 1 );
|
|
#endif
|
|
for(;;) {
|
|
p = tty_get( prompt );
|
|
trim_spaces(p); /* it is okay to do this here */
|
|
if( *p == '?' && !p[1] ) {
|
|
gcry_free(p);
|
|
display_online_help( keyword );
|
|
}
|
|
else {
|
|
tty_kill_prompt();
|
|
yes = answer_is_yes_no_quit(p);
|
|
gcry_free(p);
|
|
return yes;
|
|
}
|
|
}
|
|
}
|
|
|