Update the log settings (path, enabled, etc) on each file reload.
[pwmd.git] / src / common.h
blob2ddaad7e4d153a59c87ee67e16fe1a2006323077
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2008 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef COMMON_H
20 #define COMMON_H
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <pth.h>
26 #define _ASSUAN_ONLY_GPG_ERRORS 1
27 #include <assuan.h>
29 #include "gettext.h"
30 #define N_(msgid) gettext(msgid)
32 enum {
33 STATE_CONNECTED,
34 STATE_OPEN
37 typedef enum {
38 INQUIRE_INIT,
39 INQUIRE_BUSY,
40 INQUIRE_DONE
41 } inquire_status_t;
43 #ifdef WITH_PINENTRY
44 typedef enum {
45 PINENTRY_NONE,
46 PINENTRY_INIT,
47 PINENTRY_RUNNING
48 } pinentry_status_t;
50 typedef struct {
51 gint fd;
52 gchar key[ASSUAN_LINELENGTH];
53 gpg_error_t error;
54 } pinentry_key_s;
56 enum {
57 PINENTRY_OPEN,
58 PINENTRY_SAVE
61 typedef gpg_error_t (*pinentry_finalize_cb)(assuan_context_t, guchar *, gboolean);
63 struct pinentry_s {
64 gint which;
65 gchar *filename;
66 assuan_context_t ctx;
67 pinentry_finalize_cb cb;
68 pid_t pid;
69 gint fd;
70 pinentry_status_t status;
71 gchar *title;
72 gchar *desc;
73 gchar *prompt;
74 gchar *ttyname;
75 gchar *ttytype;
76 gchar *display;
77 gchar *path;
78 gint timeout;
80 #endif
82 typedef struct {
83 gint iter;
84 guchar iv[16]; /* FIXME: is this portable? */
85 } file_header_t;
87 struct client_thread_s {
88 pth_t tid;
89 gint fd;
90 pth_event_t ev;
91 pth_t keepalive_tid;
92 struct client_s *cl;
95 struct client_s {
96 assuan_context_t ctx;
97 #ifdef WITH_PINENTRY
98 struct pinentry_s *pinentry;
99 #endif
100 gint fd;
101 gpointer doc; /* xmlDocPtr */
102 gpointer xml;
103 gint len;
104 gint state;
105 gcry_cipher_hd_t gh;
106 gchar *filename;
107 guchar md5file[16];
108 gboolean new;
109 gboolean freed;
110 time_t mtime;
111 gboolean has_lock;
112 inquire_status_t inquire_status;
113 struct client_thread_s *thd;
116 gsize gcrykeysize, gcryblocksize;
117 GKeyFile *keyfileh;
118 gboolean log_syslog;
119 gint zlib_bufsize;
121 void log_write(const gchar *fmt, ...);
122 gpg_error_t send_error(assuan_context_t ctx, gpg_error_t pwmd_errno);
123 gpg_error_t send_syserror(assuan_context_t ctx, int e);
124 gint open_file(const gchar *filename, struct stat *st);
125 gpg_error_t do_xml_encrypt(struct client_s *client, gcry_cipher_hd_t gh,
126 const gchar *filename, gpointer data, size_t insize, guchar *shakey,
127 gint iter);
128 gint get_key_file_integer(const gchar *section, const gchar *what);
129 gboolean get_key_file_boolean(const gchar *section, const gchar *what);
130 gchar *get_key_file_string(const gchar *section, const gchar *what);
131 gchar *expand_homedir(gchar *str);
132 void free_client(struct client_s *client);
134 #endif