Try to bind to the local socket before doing a cache push on startup.
[pwmd.git] / src / common.h
blob5a3fa855a1337c5fdfdb7468ad7922f4a5f9b521
1 /*
2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
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>
30 #include <libxml/xmlerror.h>
32 #ifdef ENABLE_NLS
33 #ifdef HAVE_LOCALE_H
34 #include <locale.h>
35 #endif
36 #endif
38 #ifdef HAVE_LIMITS_H
39 #include <limits.h>
40 #ifndef LINE_MAX
41 #ifdef _POSIX2_LINE_MAX
42 #define LINE_MAX _POSIX2_LINE_MAX
43 #else
44 #define LINE_MAX 2048
45 #endif
46 #endif
47 #endif
49 #ifndef _
50 #include "gettext.h"
51 #define _(msgid) gettext(msgid)
52 #endif
54 #ifdef WITH_GNUTLS
55 #include "tls.h"
56 #endif
57 #include "status.h"
58 #include "agent.h"
60 struct client_thread_s
62 pthread_t tid;
63 int fd;
64 pthread_mutex_t status_mutex;
65 struct status_msg_s *msg_queue;
66 int status_msg_pipe[2];
67 struct client_s *cl;
68 int atfork;
69 #ifdef WITH_GNUTLS
70 int timeout;
71 int buffer_timeout;
72 int last_buffer_size;
73 int remote;
74 struct tls_s *tls;
75 #endif
78 struct client_s
80 assuan_context_t ctx;
81 void *doc; /* xmlDocPtr */
82 xmlErrorPtr xml_error;
83 char *filename;
84 unsigned char md5file[16];
85 struct client_thread_s *thd;
86 struct crypto_s *crypto;
87 uint32_t opts;
88 uint32_t flags;
89 char *import_root;
90 long lock_timeout; /* In tenths of a second. */
91 gpg_error_t last_rc;
92 char *last_error; /* ELOOP element path. */
93 unsigned char *crc; /* Of the data file. */
94 struct pinentry_option_s pinentry_opts;
97 pthread_key_t thread_name_key;
98 pthread_mutex_t cn_mutex;
99 struct slist_s *cn_thread_list;
100 char **debug_level;
102 int assuan_log_cb (assuan_context_t ctx, void *data, unsigned cat,
103 const char *msg);
104 void log_write (const char *fmt, ...);
105 gpg_error_t send_error (assuan_context_t ctx, gpg_error_t e);
106 gpg_error_t do_validate_peer (assuan_context_t ctx, const char *section,
107 assuan_peercred_t * peer);
109 #endif