typo fixes.
[gnupg.git] / common / util.h
blob66569e27e672f4e38fd5bbd460de43ea6c02bcc4
1 /* util.h - Utility functions for GnuPG
2 * Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #ifndef GNUPG_COMMON_UTIL_H
21 #define GNUPG_COMMON_UTIL_H
23 #include <gcrypt.h> /* We need this for the memory function protos. */
24 #include <time.h> /* We need time_t. */
25 #include <errno.h> /* We need errno. */
26 #include <gpg-error.h> /* We need gpg_error_t. */
28 /* Hash function used with libksba. */
29 #define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write)
31 /* Get all the stuff from jnlib. */
32 #include "../jnlib/logging.h"
33 #include "../jnlib/argparse.h"
34 #include "../jnlib/stringhelp.h"
35 #include "../jnlib/mischelp.h"
36 #include "../jnlib/strlist.h"
37 #include "../jnlib/dotlock.h"
38 #include "../jnlib/utf8conv.h"
39 #include "../jnlib/dynload.h"
41 #include "init.h"
43 /* Redefine asprintf by our estream version which uses our own memory
44 allocator.. */
45 #include "estream-printf.h"
46 #define asprintf estream_asprintf
47 #define vasprintf estream_vasprintf
49 /* Due to a bug in mingw32's snprintf related to the 'l' modifier we
50 better use our snprintf. */
51 #ifdef HAVE_W32_SYSTEM
52 #define snprintf estream_snprintf
53 #endif
56 /* GCC attributes. */
57 #if __GNUC__ >= 4
58 # define GNUPG_GCC_A_SENTINEL(a) __attribute__ ((sentinel(a)))
59 #else
60 # define GNUPG_GCC_A_SENTINEL(a)
61 #endif
64 /* We need this type even if we are not using libreadline and or we
65 did not include libreadline in the current file. */
66 #ifndef GNUPG_LIBREADLINE_H_INCLUDED
67 typedef char **rl_completion_func_t (const char *, int, int);
68 #endif /*!GNUPG_LIBREADLINE_H_INCLUDED*/
71 /* Handy malloc macros - please use only them. */
72 #define xtrymalloc(a) gcry_malloc ((a))
73 #define xtrymalloc_secure(a) gcry_malloc_secure ((a))
74 #define xtrycalloc(a,b) gcry_calloc ((a),(b))
75 #define xtrycalloc_secure(a,b) gcry_calloc_secure ((a),(b))
76 #define xtryrealloc(a,b) gcry_realloc ((a),(b))
77 #define xtrystrdup(a) gcry_strdup ((a))
78 #define xfree(a) gcry_free ((a))
80 #define xmalloc(a) gcry_xmalloc ((a))
81 #define xmalloc_secure(a) gcry_xmalloc_secure ((a))
82 #define xcalloc(a,b) gcry_xcalloc ((a),(b))
83 #define xcalloc_secure(a,b) gcry_xcalloc_secure ((a),(b))
84 #define xrealloc(a,b) gcry_xrealloc ((a),(b))
85 #define xstrdup(a) gcry_xstrdup ((a))
87 /* For compatibility with gpg 1.4 we also define these: */
88 #define xmalloc_clear(a) gcry_xcalloc (1, (a))
89 #define xmalloc_secure_clear(a) gcry_xcalloc_secure (1, (a))
91 /* Convenience function to return a gpg-error code for memory
92 allocation failures. This function makes sure that an error will
93 be returned even if accidently ERRNO is not set. */
94 static inline gpg_error_t
95 out_of_core (void)
97 return gpg_error_from_syserror ();
100 /* A type to hold the ISO time. Note that this this is the same as
101 the the KSBA type ksba_isotime_t. */
102 typedef char gnupg_isotime_t[16];
105 /*-- gettime.c --*/
106 time_t gnupg_get_time (void);
107 void gnupg_get_isotime (gnupg_isotime_t timebuf);
108 void gnupg_set_time (time_t newtime, int freeze);
109 int gnupg_faked_time_p (void);
110 u32 make_timestamp (void);
111 u32 scan_isodatestr (const char *string);
112 time_t isotime2epoch (const char *string);
113 void epoch2isotime (gnupg_isotime_t timebuf, time_t atime);
114 u32 add_days_to_timestamp (u32 stamp, u16 days);
115 const char *strtimevalue (u32 stamp);
116 const char *strtimestamp (u32 stamp); /* GMT */
117 const char *isotimestamp (u32 stamp); /* GMT */
118 const char *asctimestamp (u32 stamp); /* localized */
119 gpg_error_t add_seconds_to_isotime (gnupg_isotime_t atime, int nseconds);
120 gpg_error_t add_days_to_isotime (gnupg_isotime_t atime, int ndays);
121 gpg_error_t check_isotime (const gnupg_isotime_t atime);
123 /* Copy one ISO date to another, this is inline so that we can do a
124 minimal sanity check. A null date (empty string) is allowed. */
125 static inline void
126 gnupg_copy_time (gnupg_isotime_t d, const gnupg_isotime_t s)
128 if (*s)
130 if ((strlen (s) != 15 || s[8] != 'T'))
131 BUG();
132 memcpy (d, s, 15);
133 d[15] = 0;
135 else
136 *d = 0;
140 /*-- signal.c --*/
141 void gnupg_init_signals (int mode, void (*fast_cleanup)(void));
142 void gnupg_pause_on_sigusr (int which);
143 void gnupg_block_all_signals (void);
144 void gnupg_unblock_all_signals (void);
146 /*-- yesno.c --*/
147 int answer_is_yes (const char *s);
148 int answer_is_yes_no_default (const char *s, int def_answer);
149 int answer_is_yes_no_quit (const char *s);
150 int answer_is_okay_cancel (const char *s, int def_answer);
152 /*-- xreadline.c --*/
153 ssize_t read_line (FILE *fp,
154 char **addr_of_buffer, size_t *length_of_buffer,
155 size_t *max_length);
158 /*-- b64enc.c and b64dec.c --*/
159 struct b64state
161 unsigned int flags;
162 int idx;
163 int quad_count;
164 FILE *fp;
165 char *title;
166 unsigned char radbuf[4];
167 u32 crc;
168 int stop_seen:1;
169 int invalid_encoding:1;
172 gpg_error_t b64enc_start (struct b64state *state, FILE *fp, const char *title);
173 gpg_error_t b64enc_write (struct b64state *state,
174 const void *buffer, size_t nbytes);
175 gpg_error_t b64enc_finish (struct b64state *state);
177 gpg_error_t b64dec_start (struct b64state *state, const char *title);
178 gpg_error_t b64dec_proc (struct b64state *state, void *buffer, size_t length,
179 size_t *r_nbytes);
180 gpg_error_t b64dec_finish (struct b64state *state);
185 /*-- sexputil.c */
186 gpg_error_t keygrip_from_canon_sexp (const unsigned char *key, size_t keylen,
187 unsigned char *grip);
188 int cmp_simple_canon_sexp (const unsigned char *a, const unsigned char *b);
189 unsigned char *make_simple_sexp_from_hexstr (const char *line,
190 size_t *nscanned);
191 int hash_algo_from_sigval (const unsigned char *sigval);
193 /*-- convert.c --*/
194 int hex2bin (const char *string, void *buffer, size_t length);
195 int hexcolon2bin (const char *string, void *buffer, size_t length);
196 char *bin2hex (const void *buffer, size_t length, char *stringbuf);
197 char *bin2hexcolon (const void *buffer, size_t length, char *stringbuf);
198 const char *hex2str (const char *hexstring,
199 char *buffer, size_t bufsize, size_t *buflen);
200 char *hex2str_alloc (const char *hexstring, size_t *r_count);
202 /*-- percent.c --*/
203 char *percent_plus_escape (const char *string);
206 /*-- homedir.c --*/
207 const char *standard_homedir (void);
208 const char *default_homedir (void);
209 const char *gnupg_sysconfdir (void);
210 const char *gnupg_bindir (void);
211 const char *gnupg_libexecdir (void);
212 const char *gnupg_libdir (void);
213 const char *gnupg_datadir (void);
214 const char *gnupg_localedir (void);
215 const char *dirmngr_socket_name (void);
217 /* All module names. We also include gpg and gpgsm for the sake for
218 gpgconf. */
219 #define GNUPG_MODULE_NAME_AGENT 1
220 #define GNUPG_MODULE_NAME_PINENTRY 2
221 #define GNUPG_MODULE_NAME_SCDAEMON 3
222 #define GNUPG_MODULE_NAME_DIRMNGR 4
223 #define GNUPG_MODULE_NAME_PROTECT_TOOL 5
224 #define GNUPG_MODULE_NAME_CHECK_PATTERN 6
225 #define GNUPG_MODULE_NAME_GPGSM 7
226 #define GNUPG_MODULE_NAME_GPG 8
227 #define GNUPG_MODULE_NAME_CONNECT_AGENT 9
228 #define GNUPG_MODULE_NAME_GPGCONF 10
229 const char *gnupg_module_name (int which);
233 /*-- gpgrlhelp.c --*/
234 void gnupg_rl_initialize (void);
236 /*-- helpfile.c --*/
237 char *gnupg_get_help_string (const char *key, int only_current_locale);
239 /*-- localename.c --*/
240 const char *gnupg_messages_locale_name (void);
242 /*-- miscellaneous.c --*/
244 /* This function is called at startup to tell libgcrypt to use our own
245 logging subsystem. */
246 void setup_libgcrypt_logging (void);
248 /* Same as estream_asprintf but die on memory failure. */
249 char *xasprintf (const char *fmt, ...) JNLIB_GCC_A_PRINTF(1,2);
250 /* This is now an alias to estream_asprintf. */
251 char *xtryasprintf (const char *fmt, ...) JNLIB_GCC_A_PRINTF(1,2);
253 const char *print_fname_stdout (const char *s);
254 const char *print_fname_stdin (const char *s);
255 void print_string (FILE *fp, const byte *p, size_t n, int delim);
256 void print_utf8_string2 ( FILE *fp, const byte *p, size_t n, int delim);
257 void print_utf8_string (FILE *fp, const byte *p, size_t n);
258 void print_hexstring (FILE *fp, const void *buffer, size_t length,
259 int reserved);
260 char *make_printable_string (const void *p, size_t n, int delim);
262 int is_file_compressed (const char *s, int *ret_rc);
264 int match_multistr (const char *multistr,const char *match);
267 /*-- Simple replacement functions. */
268 #ifndef HAVE_TTYNAME
269 /* Systems without ttyname (W32) will merely return NULL. */
270 static inline char *
271 ttyname (int fd)
273 (void)fd;
274 return NULL;
276 #endif /* !HAVE_TTYNAME */
279 /*-- Macros to replace ctype ones to avoid locale problems. --*/
280 #define spacep(p) (*(p) == ' ' || *(p) == '\t')
281 #define digitp(p) (*(p) >= '0' && *(p) <= '9')
282 #define hexdigitp(a) (digitp (a) \
283 || (*(a) >= 'A' && *(a) <= 'F') \
284 || (*(a) >= 'a' && *(a) <= 'f'))
285 /* Note this isn't identical to a C locale isspace() without \f and
286 \v, but works for the purposes used here. */
287 #define ascii_isspace(a) ((a)==' ' || (a)=='\n' || (a)=='\r' || (a)=='\t')
289 /* The atoi macros assume that the buffer has only valid digits. */
290 #define atoi_1(p) (*(p) - '0' )
291 #define atoi_2(p) ((atoi_1(p) * 10) + atoi_1((p)+1))
292 #define atoi_4(p) ((atoi_2(p) * 100) + atoi_2((p)+2))
293 #define xtoi_1(p) (*(p) <= '9'? (*(p)- '0'): \
294 *(p) <= 'F'? (*(p)-'A'+10):(*(p)-'a'+10))
295 #define xtoi_2(p) ((xtoi_1(p) * 16) + xtoi_1((p)+1))
296 #define xtoi_4(p) ((xtoi_2(p) * 256) + xtoi_2((p)+2))
299 /*-- Forward declaration of the commonly used server control structure. */
300 /* (We need it here as it is used by some callback prototypes.) */
301 struct server_control_s;
302 typedef struct server_control_s *ctrl_t;
305 #endif /*GNUPG_COMMON_UTIL_H*/