1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2006-2009 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 02110-1301 USA
28 #define N_ARRAY(a) (sizeof(a)/sizeof(a[0]))
63 LIBSSH2_SESSION
*session
;
64 LIBSSH2_CHANNEL
*channel
;
80 pwmd_tcp_conn_t
*tcp_conn
;
81 pwmd_ip_version_t prot
;
86 char *result
; // not related to anything the client can see.
88 pid_t pid
; // for pinentry timeouts when used with ..async2().
89 assuan_context_t pctx
;
90 int nb_fd
; // for pwmd_open/save_async2().
98 char *pinentry_display
;
106 int pinentry_timeout
;
107 pwmd_passphrase_cb_t passfunc
;
109 pwmd_status_cb_t status_func
;
111 pwmd_inquire_cb_t inquire_func
;
124 char password
[ASSUAN_LINELENGTH
+1];
127 static gpg_error_t
assuan_command(pwm_t
*pwm
, assuan_context_t ctx
,
128 char **result
, const char *cmd
);
129 static gpg_error_t
do_open_command(pwm_t
*pwm
, const char *filename
, char *password
);
130 static gpg_error_t
do_save_command(pwm_t
*pwm
, char *password
);
131 static gpg_error_t
send_pinentry_options(pwm_t
*pwm
);
135 static int gelapsed
, gtimeout
;
136 static gpg_error_t gerror
;
137 static gpg_error_t
pinentry_command(pwm_t
*pwm
, char **result
, const char *cmd
);