1997-11-18 15:06:00 +01:00
|
|
|
/* miscutil.c - miscellaneous utilities
|
2002-06-29 15:46:34 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1997-11-18 15:06:00 +01:00
|
|
|
* 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>
|
1999-07-07 13:28:26 +02:00
|
|
|
#include <stdlib.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include <stdio.h>
|
1997-12-20 18:23:29 +01:00
|
|
|
#include <string.h>
|
1997-11-18 15:06:00 +01:00
|
|
|
#include <time.h>
|
1997-12-01 11:33:23 +01:00
|
|
|
#include <ctype.h>
|
1999-04-28 13:06:52 +02:00
|
|
|
#ifdef HAVE_LANGINFO_H
|
|
|
|
#include <langinfo.h>
|
|
|
|
#endif
|
1997-11-18 15:06:00 +01:00
|
|
|
#include "types.h"
|
|
|
|
#include "util.h"
|
1998-08-11 19:29:34 +02:00
|
|
|
#include "i18n.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1999-07-07 13:28:26 +02:00
|
|
|
/****************
|
|
|
|
* I know that the OpenPGP protocol has a Y2106 problem ;-)
|
|
|
|
*/
|
1997-11-18 15:06:00 +01:00
|
|
|
u32
|
|
|
|
make_timestamp()
|
|
|
|
{
|
|
|
|
return time(NULL);
|
|
|
|
}
|
|
|
|
|
1999-07-07 13:28:26 +02:00
|
|
|
/****************
|
|
|
|
* Scan a date string and return a timestamp.
|
|
|
|
* The only supported format is "yyyy-mm-dd"
|
|
|
|
* Returns 0 for an invalid date.
|
|
|
|
*/
|
|
|
|
u32
|
|
|
|
scan_isodatestr( const char *string )
|
|
|
|
{
|
|
|
|
int year, month, day;
|
|
|
|
struct tm tmbuf;
|
|
|
|
time_t stamp;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if( strlen(string) != 10 || string[4] != '-' || string[7] != '-' )
|
|
|
|
return 0;
|
|
|
|
for( i=0; i < 4; i++ )
|
|
|
|
if( !isdigit(string[i]) )
|
|
|
|
return 0;
|
|
|
|
if( !isdigit(string[5]) || !isdigit(string[6]) )
|
|
|
|
return 0;
|
|
|
|
if( !isdigit(string[8]) || !isdigit(string[9]) )
|
|
|
|
return 0;
|
|
|
|
year = atoi(string);
|
|
|
|
month = atoi(string+5);
|
|
|
|
day = atoi(string+8);
|
|
|
|
/* some basic checks */
|
|
|
|
if( year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 )
|
|
|
|
return 0;
|
|
|
|
memset( &tmbuf, 0, sizeof tmbuf );
|
|
|
|
tmbuf.tm_mday = day;
|
|
|
|
tmbuf.tm_mon = month-1;
|
|
|
|
tmbuf.tm_year = year - 1900;
|
|
|
|
tmbuf.tm_isdst = -1;
|
|
|
|
stamp = mktime( &tmbuf );
|
|
|
|
if( stamp == (time_t)-1 )
|
|
|
|
return 0;
|
|
|
|
return stamp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-04-02 12:30:03 +02:00
|
|
|
u32
|
|
|
|
add_days_to_timestamp( u32 stamp, u16 days )
|
|
|
|
{
|
|
|
|
return stamp + days*86400L;
|
|
|
|
}
|
|
|
|
|
1998-11-20 18:42:18 +01:00
|
|
|
|
|
|
|
/****************
|
|
|
|
* Return a string with a time value in the form: x Y, n D, n H
|
|
|
|
*/
|
|
|
|
|
|
|
|
const char *
|
|
|
|
strtimevalue( u32 value )
|
|
|
|
{
|
|
|
|
static char buffer[30];
|
|
|
|
unsigned int years, days, hours, minutes;
|
|
|
|
|
|
|
|
value /= 60;
|
|
|
|
minutes = value % 60;
|
|
|
|
value /= 60;
|
|
|
|
hours = value % 24;
|
|
|
|
value /= 24;
|
|
|
|
days = value % 365;
|
|
|
|
value /= 365;
|
|
|
|
years = value;
|
|
|
|
|
|
|
|
sprintf(buffer,"%uy%ud%uh%um", years, days, hours, minutes );
|
|
|
|
if( years )
|
|
|
|
return buffer;
|
|
|
|
if( days )
|
|
|
|
return strchr( buffer, 'y' ) + 1;
|
|
|
|
return strchr( buffer, 'd' ) + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-09-15 21:56:30 +02:00
|
|
|
/****************
|
|
|
|
* Note: this function returns GMT
|
|
|
|
*/
|
1998-04-02 12:30:03 +02:00
|
|
|
const char *
|
|
|
|
strtimestamp( u32 stamp )
|
|
|
|
{
|
|
|
|
static char buffer[11+5];
|
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = stamp;
|
2002-06-29 15:46:34 +02:00
|
|
|
|
|
|
|
if (atime < 0) {
|
|
|
|
strcpy (buffer, "????" "-??" "-??");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tp = gmtime( &atime );
|
|
|
|
sprintf(buffer,"%04d-%02d-%02d",
|
|
|
|
1900+tp->tm_year, tp->tm_mon+1, tp->tm_mday );
|
|
|
|
}
|
1998-04-02 12:30:03 +02:00
|
|
|
return buffer;
|
|
|
|
}
|
1997-11-18 15:06:00 +01:00
|
|
|
|
1998-09-15 21:56:30 +02:00
|
|
|
/****************
|
|
|
|
* Note: this function returns local time
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
asctimestamp( u32 stamp )
|
|
|
|
{
|
1998-09-18 17:24:53 +02:00
|
|
|
static char buffer[50];
|
1999-04-28 13:06:52 +02:00
|
|
|
#if defined (HAVE_STRFTIME) && defined (HAVE_NL_LANGINFO)
|
|
|
|
static char fmt[50];
|
|
|
|
#endif
|
1998-09-15 21:56:30 +02:00
|
|
|
struct tm *tp;
|
|
|
|
time_t atime = stamp;
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
if (atime < 0) {
|
|
|
|
strcpy (buffer, "????" "-??" "-??");
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
1998-09-15 21:56:30 +02:00
|
|
|
tp = localtime( &atime );
|
|
|
|
#ifdef HAVE_STRFTIME
|
1999-04-28 13:06:52 +02:00
|
|
|
#if defined(HAVE_NL_LANGINFO)
|
2000-07-14 19:34:53 +02:00
|
|
|
mem2str( fmt, nl_langinfo(D_T_FMT), DIM(fmt)-3 );
|
1999-04-28 13:06:52 +02:00
|
|
|
if( strstr( fmt, "%Z" ) == NULL )
|
|
|
|
strcat( fmt, " %Z");
|
|
|
|
strftime( buffer, DIM(buffer)-1, fmt, tp );
|
|
|
|
#else
|
|
|
|
/* fixme: we should check whether the locale appends a " %Z"
|
|
|
|
* These locales from glibc don't put the " %Z":
|
|
|
|
* fi_FI hr_HR ja_JP lt_LT lv_LV POSIX ru_RU ru_SU sv_FI sv_SE zh_CN
|
|
|
|
*/
|
|
|
|
strftime( buffer, DIM(buffer)-1, "%c %Z", tp );
|
|
|
|
#endif
|
1998-09-15 21:56:30 +02:00
|
|
|
buffer[DIM(buffer)-1] = 0;
|
1998-09-18 17:24:53 +02:00
|
|
|
#else
|
|
|
|
mem2str( buffer, asctime(tp), DIM(buffer) );
|
1998-09-15 21:56:30 +02:00
|
|
|
#endif
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
1997-12-01 11:33:23 +01:00
|
|
|
/****************
|
|
|
|
* Print a string to FP, but filter all control characters out.
|
|
|
|
*/
|
|
|
|
void
|
1999-05-25 19:56:15 +02:00
|
|
|
print_string( FILE *fp, const byte *p, size_t n, int delim )
|
1997-12-01 11:33:23 +01:00
|
|
|
{
|
|
|
|
for( ; n; n--, p++ )
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *p < 0x20 || (*p >= 0x7f && *p < 0xa0) || *p == delim ||
|
|
|
|
(delim && *p=='\\')) {
|
1997-12-01 11:33:23 +01:00
|
|
|
putc('\\', fp);
|
|
|
|
if( *p == '\n' )
|
|
|
|
putc('n', fp);
|
1998-03-09 22:44:06 +01:00
|
|
|
else if( *p == '\r' )
|
|
|
|
putc('r', fp);
|
|
|
|
else if( *p == '\f' )
|
|
|
|
putc('f', fp);
|
|
|
|
else if( *p == '\v' )
|
|
|
|
putc('v', fp);
|
|
|
|
else if( *p == '\b' )
|
|
|
|
putc('b', fp);
|
1997-12-01 11:33:23 +01:00
|
|
|
else if( !*p )
|
|
|
|
putc('0', fp);
|
|
|
|
else
|
1997-12-16 20:15:09 +01:00
|
|
|
fprintf(fp, "x%02x", *p );
|
1997-12-01 11:33:23 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
putc(*p, fp);
|
|
|
|
}
|
|
|
|
|
1999-08-31 17:30:12 +02:00
|
|
|
/****************
|
|
|
|
* Print an UTF8 string to FP and filter all control characters out.
|
|
|
|
*/
|
|
|
|
void
|
2002-06-29 15:46:34 +02:00
|
|
|
print_utf8_string2 ( FILE *fp, const byte *p, size_t n, int delim )
|
1999-08-31 17:30:12 +02:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
/* we can handle plain ascii simpler, so check for it first */
|
|
|
|
for(i=0; i < n; i++ ) {
|
|
|
|
if( p[i] & 0x80 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if( i < n ) {
|
2002-06-29 15:46:34 +02:00
|
|
|
buf = utf8_to_native ( p, n, delim );
|
|
|
|
/*(utf8 conversion already does the control character quoting)*/
|
1999-08-31 17:30:12 +02:00
|
|
|
fputs( buf, fp );
|
2002-06-29 15:46:34 +02:00
|
|
|
m_free( buf );
|
1999-08-31 17:30:12 +02:00
|
|
|
}
|
|
|
|
else
|
2002-06-29 15:46:34 +02:00
|
|
|
print_string( fp, p, n, delim );
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
print_utf8_string( FILE *fp, const byte *p, size_t n )
|
|
|
|
{
|
|
|
|
print_utf8_string2 (fp, p, n, 0);
|
1999-08-31 17:30:12 +02:00
|
|
|
}
|
|
|
|
|
1999-07-01 12:53:35 +02:00
|
|
|
/****************
|
|
|
|
* This function returns a string which is suitable for printing
|
2002-06-29 15:46:34 +02:00
|
|
|
* Caller must release it with m_free()
|
1999-07-01 12:53:35 +02:00
|
|
|
*/
|
|
|
|
char *
|
|
|
|
make_printable_string( const byte *p, size_t n, int delim )
|
|
|
|
{
|
|
|
|
size_t save_n, buflen;
|
|
|
|
const byte *save_p;
|
|
|
|
char *buffer, *d;
|
|
|
|
|
|
|
|
/* first count length */
|
|
|
|
for(save_n = n, save_p = p, buflen=1 ; n; n--, p++ ) {
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *p < 0x20 || (*p >= 0x7f && *p < 0xa0) || *p == delim ||
|
|
|
|
(delim && *p=='\\')) {
|
1999-07-01 12:53:35 +02:00
|
|
|
if( *p=='\n' || *p=='\r' || *p=='\f'
|
|
|
|
|| *p=='\v' || *p=='\b' || !*p )
|
|
|
|
buflen += 2;
|
|
|
|
else
|
1999-08-31 17:30:12 +02:00
|
|
|
buflen += 4;
|
1999-07-01 12:53:35 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
buflen++;
|
|
|
|
}
|
|
|
|
p = save_p;
|
|
|
|
n = save_n;
|
|
|
|
/* and now make the string */
|
2002-06-29 15:46:34 +02:00
|
|
|
d = buffer = m_alloc( buflen );
|
1999-07-01 12:53:35 +02:00
|
|
|
for( ; n; n--, p++ ) {
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *p < 0x20 || (*p >= 0x7f && *p < 0xa0) || *p == delim ||
|
|
|
|
(delim && *p=='\\')) {
|
1999-07-01 12:53:35 +02:00
|
|
|
*d++ = '\\';
|
|
|
|
if( *p == '\n' )
|
|
|
|
*d++ = 'n';
|
|
|
|
else if( *p == '\r' )
|
|
|
|
*d++ = 'r';
|
|
|
|
else if( *p == '\f' )
|
|
|
|
*d++ = 'f';
|
|
|
|
else if( *p == '\v' )
|
|
|
|
*d++ = 'v';
|
|
|
|
else if( *p == '\b' )
|
|
|
|
*d++ = 'b';
|
|
|
|
else if( !*p )
|
|
|
|
*d++ = '0';
|
|
|
|
else {
|
|
|
|
sprintf(d, "x%02x", *p );
|
|
|
|
d += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*d++ = *p;
|
|
|
|
}
|
|
|
|
*d = 0;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
1997-12-20 18:23:29 +01:00
|
|
|
int
|
2002-06-29 15:46:34 +02:00
|
|
|
answer_is_yes_no_default( const char *s, int def_answer )
|
1997-12-20 18:23:29 +01:00
|
|
|
{
|
2002-06-29 15:46:34 +02:00
|
|
|
const char *long_yes = _("yes");
|
|
|
|
const char *short_yes = _("yY");
|
|
|
|
const char *long_no = _("no");
|
|
|
|
const char *short_no = _("nN");
|
1998-08-11 19:29:34 +02:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
/* Note: we have to use the local dependent strcasecmp here */
|
|
|
|
if( !strcasecmp(s, long_yes ) )
|
1997-12-20 18:23:29 +01:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( short_yes, *s ) && !s[1] )
|
1997-12-20 18:23:29 +01:00
|
|
|
return 1;
|
1999-08-30 20:48:57 +02:00
|
|
|
/* test for no strings to catch ambiguities for the next test */
|
2002-06-29 15:46:34 +02:00
|
|
|
if( !strcasecmp(s, long_no ) )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 0;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( short_no, *s ) && !s[1] )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 0;
|
|
|
|
/* test for the english version (for those who are used to type yes) */
|
2002-06-29 15:46:34 +02:00
|
|
|
if( !ascii_strcasecmp(s, "yes" ) )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( "yY", *s ) && !s[1] )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
return def_answer;
|
1997-12-20 18:23:29 +01:00
|
|
|
}
|
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
int
|
|
|
|
answer_is_yes( const char *s )
|
|
|
|
{
|
|
|
|
return answer_is_yes_no_default(s,0);
|
|
|
|
}
|
1998-07-29 21:35:05 +02:00
|
|
|
|
1999-05-27 09:45:46 +02:00
|
|
|
/****************
|
|
|
|
* Return 1 for yes, -1 for quit, or 0 for no
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
answer_is_yes_no_quit( const char *s )
|
|
|
|
{
|
2002-06-29 15:46:34 +02:00
|
|
|
const char *long_yes = _("yes");
|
|
|
|
const char *long_no = _("no");
|
|
|
|
const char *long_quit = _("quit");
|
|
|
|
const char *short_yes = _("yY");
|
|
|
|
const char *short_no = _("nN");
|
|
|
|
const char *short_quit = _("qQ");
|
1999-05-27 09:45:46 +02:00
|
|
|
|
2002-06-29 15:46:34 +02:00
|
|
|
/* Note: We have to use the locale dependent strcasecmp */
|
|
|
|
if( !strcasecmp(s, long_no ) )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 0;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( !strcasecmp(s, long_yes ) )
|
2000-09-18 16:35:34 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( !strcasecmp(s, long_quit ) )
|
1999-05-27 09:45:46 +02:00
|
|
|
return -1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( short_no, *s ) && !s[1] )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 0;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( short_yes, *s ) && !s[1] )
|
2000-09-18 16:35:34 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( short_quit, *s ) && !s[1] )
|
1999-05-27 09:45:46 +02:00
|
|
|
return -1;
|
2002-06-29 15:46:34 +02:00
|
|
|
/* but not here */
|
|
|
|
if( !ascii_strcasecmp(s, "yes" ) )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( !ascii_strcasecmp(s, "quit" ) )
|
1999-08-30 20:48:57 +02:00
|
|
|
return -1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( "yY", *s ) && !s[1] )
|
1999-08-30 20:48:57 +02:00
|
|
|
return 1;
|
2002-06-29 15:46:34 +02:00
|
|
|
if( *s && strchr( "qQ", *s ) && !s[1] )
|
1999-08-30 20:48:57 +02:00
|
|
|
return -1;
|
1999-05-27 09:45:46 +02:00
|
|
|
return 0;
|
|
|
|
}
|