1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-16 00:29:50 +02:00
gnupg/include/util.h

339 lines
12 KiB
C
Raw Permalink Normal View History

1997-11-18 15:06:00 +01:00
/* util.h
* Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
* 2006 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
1998-06-16 17:13:28 +02:00
* This file is part of GNUPG.
1997-11-18 15:06:00 +01:00
*
1998-06-16 17:13:28 +02: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
2007-10-23 12:48:09 +02:00
* the Free Software Foundation; either version 3 of the License, or
1997-11-18 15:06:00 +01:00
* (at your option) any later version.
*
1998-06-16 17:13:28 +02: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
2007-10-23 12:48:09 +02:00
* along with this program; if not, see <http://www.gnu.org/licenses/>.
1997-11-18 15:06:00 +01:00
*/
2002-06-29 15:31:13 +02:00
#ifndef G10_UTIL_H
#define G10_UTIL_H
1997-11-18 15:06:00 +01:00
#include <stdarg.h>
#include "types.h"
1997-11-18 15:06:00 +01:00
#include "errors.h"
2002-06-29 15:31:13 +02:00
#include "types.h"
#include "mpi.h"
#include "compat.h"
/* GCC attributes. */
#if __GNUC__ >= 4
# define GNUPG_GCC_A_SENTINEL(a) __attribute__ ((sentinel(a)))
#else
# define GNUPG_GCC_A_SENTINEL(a)
#endif
2002-06-29 15:31:13 +02:00
typedef struct {
int *argc; /* pointer to argc (value subject to change) */
char ***argv; /* pointer to argv (value subject to change) */
unsigned flags; /* Global flags (DO NOT CHANGE) */
int err; /* print error about last option */
/* 1 = warning, 2 = abort */
int r_opt; /* return option */
int r_type; /* type of return value (0 = no argument found)*/
union {
int ret_int;
long ret_long;
ulong ret_ulong;
char *ret_str;
} r; /* Return values */
struct {
int idx;
int inarg;
int stopped;
const char *last;
void *aliases;
const void *cur_alias;
void *iio_list;
2002-06-29 15:31:13 +02:00
} internal; /* DO NOT CHANGE */
} ARGPARSE_ARGS;
typedef struct {
int short_opt;
const char *long_opt;
unsigned flags;
const char *description; /* optional option description */
} ARGPARSE_OPTS;
1997-11-18 15:06:00 +01:00
/*-- logger.c --*/
void log_set_logfile( const char *name, int fd );
FILE *log_stream(void);
2002-06-29 15:31:13 +02:00
void g10_log_print_prefix(const char *text);
1998-02-13 21:58:50 +01:00
void log_set_name( const char *name );
const char *log_get_name(void);
1998-01-02 21:40:10 +01:00
void log_set_pid( int pid );
int log_get_errorcount( int clear );
2002-06-29 15:31:13 +02:00
void log_inc_errorcount(void);
int log_set_strict(int val);
2002-06-29 15:31:13 +02:00
void g10_log_hexdump( const char *text, const char *buf, size_t len );
1997-11-18 15:06:00 +01:00
2002-06-29 15:31:13 +02:00
#if defined (__riscos__) \
|| (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 ))
void g10_log_bug( const char *fmt, ... )
1998-01-16 22:15:24 +01:00
__attribute__ ((noreturn, format (printf,1,2)));
2002-06-29 15:31:13 +02:00
void g10_log_bug0( const char *, int, const char * ) __attribute__ ((noreturn));
void g10_log_fatal( const char *fmt, ... )
1998-01-16 22:15:24 +01:00
__attribute__ ((noreturn, format (printf,1,2)));
2002-06-29 15:31:13 +02:00
void g10_log_error( const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
void g10_log_info( const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
void g10_log_warning( const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
2002-06-29 15:31:13 +02:00
void g10_log_debug( const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
#ifndef __riscos__
#define BUG() g10_log_bug0( __FILE__ , __LINE__, __FUNCTION__ )
2002-06-29 15:31:13 +02:00
#else
#define BUG() g10_log_bug0( __FILE__ , __LINE__, __func__ )
2002-06-29 15:31:13 +02:00
#endif
1998-01-16 22:15:24 +01:00
#else
2002-06-29 15:31:13 +02:00
void g10_log_bug( const char *fmt, ... );
void g10_log_bug0( const char *, int );
void g10_log_fatal( const char *fmt, ... );
void g10_log_error( const char *fmt, ... );
void g10_log_info( const char *fmt, ... );
void g10_log_warning( const char *fmt, ... );
2002-06-29 15:31:13 +02:00
void g10_log_debug( const char *fmt, ... );
#define BUG() g10_log_bug0( __FILE__ , __LINE__ )
1998-01-16 22:15:24 +01:00
#endif
2002-06-29 15:31:13 +02:00
#define log_hexdump g10_log_hexdump
#define log_bug g10_log_bug
#define log_bug0 g10_log_bug0
#define log_fatal g10_log_fatal
#define log_error g10_log_error
#define log_info g10_log_info
#define log_warning g10_log_warning
2002-06-29 15:31:13 +02:00
#define log_debug g10_log_debug
1998-06-16 17:13:28 +02:00
1998-01-16 22:15:24 +01:00
1997-11-18 15:06:00 +01:00
/*-- errors.c --*/
2002-06-29 15:31:13 +02:00
const char * g10_errstr( int no );
1997-11-18 15:06:00 +01:00
2002-06-29 15:31:13 +02:00
/*-- argparse.c --*/
int arg_parse( ARGPARSE_ARGS *arg, ARGPARSE_OPTS *opts);
int optfile_parse( FILE *fp, const char *filename, unsigned *lineno,
ARGPARSE_ARGS *arg, ARGPARSE_OPTS *opts);
void usage( int level );
const char *default_strusage( int level );
1997-11-18 15:06:00 +01:00
2002-06-29 15:31:13 +02:00
/*-- (main program) --*/
const char *strusage( int level );
/*-- dotlock.c --*/
#include "../include/dotlock.h"
2002-06-29 15:31:13 +02:00
1997-11-18 15:06:00 +01:00
/*-- fileutil.c --*/
2002-10-29 15:37:12 +01:00
char * make_basename(const char *filepath, const char *inputpath);
1998-10-25 20:00:01 +01:00
char * make_dirname(const char *filepath);
1997-12-12 13:03:58 +01:00
char *make_filename( const char *first_part, ... );
1998-06-11 09:16:50 +02:00
int compare_filenames( const char *a, const char *b );
int same_file_p (const char *name1, const char *name2);
1998-03-09 22:44:06 +01:00
const char *print_fname_stdin( const char *s );
const char *print_fname_stdout( const char *s );
2004-02-21 23:13:39 +01:00
int is_file_compressed(const char *s, int *r_status);
1997-11-18 15:06:00 +01:00
/*-- miscutil.c --*/
u32 make_timestamp(void);
u32 scan_isodatestr( const char *string );
u32 isotime2seconds (const char *string);
1998-11-20 18:42:18 +01:00
const char *strtimevalue( u32 stamp );
1998-09-15 21:56:30 +02:00
const char *strtimestamp( u32 stamp ); /* GMT */
const char *isotimestamp( u32 stamp ); /* GMT with hh:mm:ss */
1998-09-15 21:56:30 +02:00
const char *asctimestamp( u32 stamp ); /* localized */
void print_string( FILE *fp, const byte *p, size_t n, int delim );
void print_string2( FILE *fp, const byte *p, size_t n, int delim, int delim2 );
void print_utf8_string( FILE *fp, const byte *p, size_t n );
2002-06-29 15:31:13 +02:00
void print_utf8_string2( FILE *fp, const byte *p, size_t n, int delim);
char *make_printable_string( const byte *p, size_t n, int delim );
2002-06-29 15:31:13 +02:00
int answer_is_yes_no_default( const char *s, int def_answer );
1997-12-20 18:23:29 +01:00
int answer_is_yes( const char *s );
int answer_is_yes_no_quit( const char *s );
int answer_is_okay_cancel (const char *s, int def_answer);
int match_multistr(const char *multistr,const char *match);
1997-11-18 15:06:00 +01:00
/*-- strgutil.c --*/
void free_strlist( STRLIST sl );
#define FREE_STRLIST(a) do { free_strlist((a)); (a) = NULL ; } while(0)
1998-07-06 12:23:57 +02:00
STRLIST add_to_strlist( STRLIST *list, const char *string );
STRLIST add_to_strlist2( STRLIST *list, const char *string, int is_utf8 );
1998-07-06 12:23:57 +02:00
STRLIST append_to_strlist( STRLIST *list, const char *string );
STRLIST append_to_strlist2( STRLIST *list, const char *string, int is_utf8 );
1998-02-12 00:22:09 +01:00
STRLIST strlist_prev( STRLIST head, STRLIST node );
STRLIST strlist_last( STRLIST node );
2002-06-29 15:31:13 +02:00
char *pop_strlist( STRLIST *list );
const char *memistr( const char *buf, size_t buflen, const char *sub );
const char *ascii_memistr( const char *buf, size_t buflen, const char *sub );
char *mem2str( char *, const void *, size_t);
char *trim_spaces( char *string );
unsigned int trim_trailing_chars( byte *line, unsigned int len,
const char *trimchars);
unsigned int trim_trailing_ws( byte *line, unsigned len );
unsigned int check_trailing_chars( const byte *line, unsigned int len,
const char *trimchars );
unsigned int check_trailing_ws( const byte *line, unsigned int len );
1998-01-07 21:47:46 +01:00
int string_count_chr( const char *string, int c );
int has_invalid_email_chars (const char *s);
int is_valid_mailbox (const char *name);
int set_native_charset( const char *newset );
const char* get_native_charset(void);
1998-11-03 20:38:58 +01:00
char *native_to_utf8( const char *string );
2002-06-29 15:31:13 +02:00
char *utf8_to_native( const char *string, size_t length, int delim);
char *string_to_utf8 (const char *string);
1998-01-07 21:47:46 +01:00
2002-06-29 15:31:13 +02:00
int ascii_isupper (int c);
int ascii_islower (int c);
2002-09-10 10:39:02 +02:00
int ascii_memcasecmp( const char *a, const char *b, size_t n);
char *ascii_strlwr (char *s);
2002-06-29 15:31:13 +02:00
#ifndef HAVE_STPCPY
char *stpcpy(char *a,const char *b);
#endif
#ifndef HAVE_STRLWR
char *strlwr(char *a);
#endif
#ifndef HAVE_STRCASECMP
int strcasecmp( const char *, const char *b);
#endif
#ifndef HAVE_STRNCASECMP
int strncasecmp (const char *, const char *b, size_t n);
#endif
#ifndef HAVE_STRTOUL
#define strtoul(a,b,c) ((unsigned long)strtol((a),(b),(c)))
2002-06-29 15:31:13 +02:00
#endif
#ifndef HAVE_MEMMOVE
#define memmove(d, s, n) bcopy((s), (d), (n))
2002-06-29 15:31:13 +02:00
#endif
/*-- membuf.c --*/
/* The definition of the structure is private, we only need it here,
so it can be allocated on the stack. */
struct private_membuf_s {
size_t len;
size_t size;
char *buf;
int out_of_core;
};
typedef struct private_membuf_s membuf_t;
void init_membuf (membuf_t *mb, int initiallen);
void put_membuf (membuf_t *mb, const void *buf, size_t len);
void put_membuf_str (membuf_t *mb, const char *buf);
void *get_membuf (membuf_t *mb, size_t *len);
#if defined (_WIN32)
2002-06-29 15:31:13 +02:00
/*-- w32reg.c --*/
char *read_w32_registry_string( const char *root,
const char *dir, const char *name );
int write_w32_registry_string(const char *root, const char *dir,
const char *name, const char *value);
#endif /*_WIN32*/
/*-- strgutil.c --*/
char *xasprintf (const char *fmt, ...);
char *xtryasprintf (const char *fmt, ...);
2009-09-03 17:27:30 +02:00
char *xtryvasprintf (const char *fmt, va_list arg_ptr);
char *strconcat (const char *s1, ...) GNUPG_GCC_A_SENTINEL(0);
2005-07-28 20:59:36 +02:00
/*-- pka.c --*/
char *get_pka_info (const char *address, void *fprbuf, size_t fprbuflen);
2005-07-28 20:59:36 +02:00
2005-12-23 19:15:24 +01:00
/*-- cert.c --*/
int get_cert (const char *name, int want_ipgp, size_t max_size, IOBUF *iobuf,
unsigned char **fpr,size_t *fpr_len,char **url);
1997-11-18 15:06:00 +01:00
/*-- convert.c --*/
int hex2bin (const char *string, void *buffer, size_t length);
int hexcolon2bin (const char *string, void *buffer, size_t length);
char *bin2hex (const void *buffer, size_t length, char *stringbuf);
char *bin2hexcolon (const void *buffer, size_t length, char *stringbuf);
const char *hex2str (const char *hexstring,
char *buffer, size_t bufsize, size_t *buflen);
char *hex2str_alloc (const char *hexstring, size_t *r_count);
1998-09-14 17:49:56 +02:00
/**** other missing stuff ****/
#ifndef HAVE_ATEXIT /* For SunOS */
#define atexit(a) (on_exit((a),0))
1998-09-14 17:49:56 +02:00
#endif
#ifndef HAVE_RAISE
#define raise(a) kill(getpid(), (a))
1998-09-14 17:49:56 +02:00
#endif
2004-10-15 11:39:31 +02:00
/*-- Replacement functions from funcname.c --*/
1997-11-18 15:06:00 +01:00
/******** some macros ************/
2002-06-29 15:31:13 +02:00
#ifndef STR
#define STR(v) #v
2002-06-29 15:31:13 +02:00
#endif
#define STR2(v) STR(v)
1997-11-18 15:06:00 +01:00
#define DIM(v) (sizeof(v)/sizeof((v)[0]))
#define DIMof(type,member) DIM(((type *)0)->member)
#define wipememory2(_ptr,_set,_len) do { volatile char *_vptr=(volatile char *)(_ptr); size_t _vlen=(_len); while(_vlen) { *_vptr=(_set); _vptr++; _vlen--; } } while(0)
#define wipememory(_ptr,_len) wipememory2(_ptr,0,_len)
2002-10-31 16:35:24 +01:00
/*-- macros to replace ctype ones and avoid locale problems --*/
#define spacep(p) (*(p) == ' ' || *(p) == '\t')
#define digitp(p) (*(p) >= '0' && *(p) <= '9')
#define hexdigitp(a) (digitp (a) \
|| (*(a) >= 'A' && *(a) <= 'F') \
|| (*(a) >= 'a' && *(a) <= 'f'))
/* the atoi macros assume that the buffer has only valid digits */
#define atoi_1(p) (*(p) - '0' )
#define atoi_2(p) ((atoi_1(p) * 10) + atoi_1((p)+1))
#define atoi_4(p) ((atoi_2(p) * 100) + atoi_2((p)+2))
#define xtoi_1(p) (*(p) <= '9'? (*(p)- '0'): \
*(p) <= 'F'? (*(p)-'A'+10):(*(p)-'a'+10))
#define xtoi_2(p) ((xtoi_1(p) * 16) + xtoi_1((p)+1))
2002-06-29 15:31:13 +02:00
/******* RISC OS stuff ***********/
#ifdef __riscos__
2002-10-31 17:58:47 +01:00
int riscos_load_module(const char *name, const char * const path[], int fatal);
2002-10-28 14:26:44 +01:00
int riscos_get_filetype_from_string(const char *string, int len);
int riscos_get_filetype(const char *filename);
void riscos_set_filetype_by_number(const char *filename, int type);
2002-10-31 17:58:47 +01:00
void riscos_set_filetype_by_mimetype(const char *filename, const char *mimetype);
2002-06-29 15:31:13 +02:00
pid_t riscos_getpid(void);
int riscos_kill(pid_t pid, int sig);
int riscos_access(const char *path, int amode);
2002-08-06 08:54:55 +02:00
int riscos_getchar(void);
2002-10-29 15:37:12 +01:00
char *riscos_make_basename(const char *filepath, const char *inputpath);
2002-10-31 17:58:47 +01:00
int riscos_check_regexp(const char *exp, const char *string, int debug);
int riscos_fdopenfile(const char *filename, const int allow_write);
void riscos_close_fds(void);
int riscos_renamefile(const char *old, const char *new);
char *riscos_gstrans(const char *old);
void riscos_not_implemented(const char *feature);
2002-06-29 15:31:13 +02:00
#ifdef DEBUG
2002-10-31 17:58:47 +01:00
void riscos_dump_fdlist(void);
void riscos_list_openfiles(void);
2002-06-29 15:31:13 +02:00
#endif
#ifndef __RISCOS__C__
#define getpid riscos_getpid
#define kill(a,b) riscos_kill((a),(b))
#define access(a,b) riscos_access((a),(b))
2002-06-29 15:31:13 +02:00
#endif /* !__RISCOS__C__ */
#endif /* __riscos__ */
#endif /*G10_UTIL_H*/