Let --no-agent work when compiled without gpg-agent support.
[pwmd.git] / src / common.h
blob27e46150ee1c7dedda2b13c79bb3153c6e7bad9f
1 /*
2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 Ben Kibbey <bjk@luxsci.net>
5 This file is part of pwmd.
7 Pwmd is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 2 of the License, or
10 (at your option) any later version.
12 Pwmd is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Pwmd. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef COMMON_H
21 #define COMMON_H
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <pthread.h>
26 #include "pwmd-error.h"
27 #include <gcrypt.h>
28 #include <assuan.h>
29 #include <stdint.h>
31 #ifdef ENABLE_NLS
32 #ifdef HAVE_LOCALE_H
33 #include <locale.h>
34 #endif
35 #endif
37 #ifdef HAVE_LIMITS_H
38 #include <limits.h>
39 #ifndef LINE_MAX
40 #ifdef _POSIX2_LINE_MAX
41 #define LINE_MAX _POSIX2_LINE_MAX
42 #else
43 #define LINE_MAX 2048
44 #endif
45 #endif
46 #endif
48 #ifndef _
49 #include "gettext.h"
50 #define _(msgid) gettext(msgid)
51 #endif
53 #ifdef WITH_GNUTLS
54 #include "tls.h"
55 #endif
56 #include "status.h"
57 #include "agent.h"
59 struct client_thread_s
61 pthread_t tid;
62 int fd;
63 pthread_mutex_t status_mutex;
64 struct status_msg_s *msg_queue;
65 int status_msg_pipe[2];
66 struct client_s *cl;
67 int atfork;
68 #ifdef WITH_GNUTLS
69 int remote;
70 struct tls_s *tls;
71 #endif
74 struct client_s
76 assuan_context_t ctx;
77 void *doc; /* xmlDocPtr */
78 void *xml_error;
79 char *filename;
80 unsigned char md5file[16];
81 struct client_thread_s *thd;
82 struct crypto_s *crypto;
83 uint32_t opts;
84 uint32_t flags;
85 long lock_timeout; /* In tenths of a second. */
86 gpg_error_t last_rc;
87 char *last_error; /* ELOOP element path. */
88 unsigned char *crc; /* Of the data file. */
89 struct pinentry_option_s pinentry_opts;
92 pthread_key_t thread_name_key;
93 pthread_mutex_t cn_mutex;
94 struct slist_s *cn_thread_list;
95 char **debug_level;
97 int assuan_log_cb (assuan_context_t ctx, void *data, unsigned cat,
98 const char *msg);
99 void log_write (const char *fmt, ...);
100 gpg_error_t send_error (assuan_context_t ctx, gpg_error_t e);
102 #endif