Added the LOCK and UNLOCK commands. LOCK will lock the file mutex and
[pwmd.git] / src / common.h
blob767db259abef0ad1b49230d3683436a35a4230f6
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;
79 gboolean has_lock;
80 gint enable;
82 #endif
84 typedef struct {
85 gint iter;
86 guchar iv[16]; /* FIXME: is this portable? */
87 } file_header_t;
89 struct client_thread_s {
90 pth_t tid;
91 gint fd;
92 pth_event_t ev;
93 pth_t keepalive_tid;
94 struct client_s *cl;
97 struct client_s {
98 assuan_context_t ctx;
99 #ifdef WITH_PINENTRY
100 struct pinentry_s *pinentry;
101 #endif
102 gint fd;
103 gpointer doc; /* xmlDocPtr */
104 gpointer xml_error;
105 gpointer xml;
106 gint len;
107 gint state;
108 gcry_cipher_hd_t gh;
109 gchar *filename;
110 guchar md5file[16];
111 gboolean new;
112 gboolean freed;
113 time_t mtime;
114 gboolean has_lock;
115 gboolean is_lock_cmd;
116 inquire_status_t inquire_status;
117 struct client_thread_s *thd;
120 gsize gcrykeysize, gcryblocksize;
121 GKeyFile *keyfileh;
122 gboolean log_syslog;
123 gint zlib_bufsize;
125 void log_write(const gchar *fmt, ...);
126 gpg_error_t send_error(assuan_context_t ctx, gpg_error_t pwmd_errno);
127 gpg_error_t send_syserror(assuan_context_t ctx, int e);
128 gint open_file(const gchar *filename, struct stat *st);
129 gpg_error_t do_xml_encrypt(struct client_s *client, gcry_cipher_hd_t gh,
130 const gchar *filename, gpointer data, size_t insize, guchar *shakey,
131 gint iter);
132 gint get_key_file_integer(const gchar *section, const gchar *what);
133 gboolean get_key_file_boolean(const gchar *section, const gchar *what);
134 gchar *get_key_file_string(const gchar *section, const gchar *what);
135 gchar *expand_homedir(gchar *str);
136 void free_client(struct client_s *client);
138 #endif