Removed EPWMD_KEY. It's no longer used on the server because empty
[libpwmd.git] / libpwmd.h
blob204264aa62ffb99a3dd8d5596f9f4c8736473ea1
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2007 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 LIBPWMD_H
20 #define LIBPWMD_H
22 #define LIBPWMD_VERSION 0x404
24 #include <assuan.h>
25 #include <gpg-error.h>
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
32 * A handle is a pointer to a pwm_t that is returned with pwmd_connect().
34 struct pwm_s;
35 typedef struct pwm_s pwm_t;
38 * Used with pwmd_open_nb() and pwmd_save_nb(). Both are non-blocking
39 * functions for pin retrieval with pinentry. The pwmd_open_nb_finalize() and
40 * pwmd_save_nb_finalize() functions use this type after a successful read()
41 * from the returned file descriptor of those functions.
43 * Although version 1.4 and later of pwmd has it's own support for pinentry,
44 * commands that uses pinentry will block and as a result block the client. So
45 * these non-blocking functions may be used to retrieve the key before sending
46 * the command that requires a key.
48 typedef struct {
49 char filename[FILENAME_MAX];
50 int fd; /* Closed after the finalize function. */
51 gpg_error_t error; /* Returned from the NB function. */
52 } pwmd_nb_status_t;
55 * A custom callback password retrieval function which is set with
56 * pwmd_setopt().
58 typedef char *(*pwmd_password_fn)(pwm_t *pwm, void *data);
61 * A callback to be set with pwmd_setopt() that processes Assuan protocol
62 * status messages. The 'line' is the status message prefixed with the
63 * keyword.
65 typedef int (*pwmd_status_fn)(void *data, const char *line);
68 * A callback function that is passed to pwmd_inquire(). 'data' is user data
69 * that was passed to pwmd_inquire(). 'keyword' is the same as the 'cmd'
70 * argument to pwmd_inquire().
72 * 'rc' is the return code from assuan_send_data() and is initially 0 on the
73 * first call to the set callback. This gives the client a chance to cleanup
74 * if assuan_send_data() fails and should probably return the same error code,
75 * if set, after doing so.
77 * 'result' should be set to the data to be sent which is of 'len' bytes. The
78 * data is not modified.
80 * The function should return GPG_ERR_EOF when no more data needs to be sent,
81 * 0 if there is more data pending or an error code which will terminate the
82 * INQUIRE.
84 typedef gpg_error_t (*pwmd_inquire_fn)(void *data, const char *keyword,
85 gpg_error_t rc, char **result, size_t *len);
87 typedef enum {
89 * PWMD_OPTION_PASSWORD_FUNC
91 * Function to retrieve a password. This function should return an
92 * string which is the password or NULL on error.
94 PWMD_OPTION_PASSWORD_FUNC,
97 * PWMD_OPTION_PASSWORD_DATA
99 * Data passed to the password function.
101 PWMD_OPTION_PASSWORD_DATA,
104 * PWMD_OPTION_PINENTRY
106 * The following argument should be of type int and set to 1 to enable the
107 * use of pinentry(1) to retrieve passwords. Setting to 0 will disable
108 * using pinentry and the password must be set with PWMD_OPTION_PASSWORD
109 * or gotten from PWMD_OPTION_PASSWORD_FUNC.
111 PWMD_OPTION_PINENTRY,
114 * PWMD_OPTION_PINENTRY_TRIES
116 * The number of password tries before giving up. If the pinentry "Cancel"
117 * button is selected, pinentry will abort. Must be > 0. The default is 3.
119 PWMD_OPTION_PINENTRY_TRIES,
122 * PWMD_OPTION_PINENTRY_PATH
124 * The full pathname to the pinentry program. If not specified,
125 * /usr/bin/pinentry will be used.
127 PWMD_OPTION_PINENTRY_PATH,
130 * PWMD_OPTION_PINENTRY_TTY
132 * pinentry --ttyname.
134 PWMD_OPTION_PINENTRY_TTY,
137 * PWMD_OPTION_PINENTRY_DISPLAY
139 * pinentry --display
141 PWMD_OPTION_PINENTRY_DISPLAY,
144 * PWMD_OPTION_PINENTRY_TERM
146 * pinentry --ttytype
148 PWMD_OPTION_PINENTRY_TERM,
151 * PWMD_OPTION_PASSWORD
153 * The following argument should be of type char* which specifies the
154 * password to use when the PWMD_OPEN or PWMD_SAVE commands are issued and
155 * PWMD_OPTION_PINENTRY is 0. The password will be kept in memory until
156 * pwmd_close() is called so setting this option isn't needed each time
157 * pwmd_open() or pwmd_save() is called regardless of pwmd cache settings.
159 PWMD_OPTION_PASSWORD,
162 * PWMD_OPTION_PINENTRY_TITLE
163 * PWMD_OPTION_PINENTRY_PROMPT
164 * PWMD_OPTION_PINENTRY_DESC
166 * The following argument is of type char* which specifies either the
167 * title, prompt or description in the pinentry program when
168 * PWMD_OPTION_PINENTRY is set. Note that any CR, LF or % must be percent
169 * escape (the hexidecimal value of the character).
171 PWMD_OPTION_PINENTRY_TITLE,
172 PWMD_OPTION_PINENTRY_PROMPT,
173 PWMD_OPTION_PINENTRY_DESC,
176 * PWMD_OPTION_STATUS_FUNC
178 * A function to be called when a status line is sent from pwmd. This
179 * function should return 0 on success or a gpg-error error code. This
180 * function won't be used when getting a password with pinentry.
182 PWMD_OPTION_STATUS_FUNC,
185 * PWMD_OPTION_STATUS_DATA
187 * Data passed to the status function.
189 PWMD_OPTION_STATUS_DATA,
190 } pwmd_option_t;
193 * Initialize the library. This sets up various things and must be called
194 * before the other functions.
196 gpg_error_t pwmd_init(void);
199 * Connects to the socket specified by 'socket_path'. If socket_path is NULL,
200 * then a default of ~/.pwmd/socket will be used. Returns a new handle for use
201 * with the other functions or NULL if there was an error in which case
202 * 'error' is set to an error code which may be described by pwmd_strerror().
204 pwm_t *pwmd_connect(const char *socket_path, gpg_error_t *error) __attribute__ ((warn_unused_result));
207 * Sets a libpwmd option 'opt'. The next argument should be of the data type
208 * required for the option. Returns 0 on success or an error code.
210 gpg_error_t pwmd_setopt(pwm_t *pwm, pwmd_option_t opt, ...) __attribute__ ((warn_unused_result));
213 * Opens a file 'filename' (the OPEN command). The filename is not a full path
214 * but only filename which is looked for in the pwmd configured data
215 * directory. How the password is gotten depends on options set with
216 * pwmd_setopt() and whether the file is cached on the server. Returns 0 on
217 * success or an error code.
219 gpg_error_t pwmd_open(pwm_t *pwm, const char *filename) __attribute__ ((warn_unused_result));
222 * This is like pwmd_open() but won't block the process when pinentry is used
223 * to retrieve the password. It returns -2 when the file is cached (ISCACHED)
224 * on the server or if the file doesn't exist on the file system (a new file).
225 * Otherwise it returns a file descriptor that select() can use. When ready
226 * for a read, read() should read a pwmd_nb_status_t. If there is a system
227 * error (pipe() or fork()), then -1 is returned and 'error' is set to an
228 * error code that pwmd_strerror() can describe. See pwmd_open_nb_finalize().
230 * The 'timeout' parameter specifies the number of seconds until the pinentry
231 * terminates. Setting to 0 (the default) will disable timeouts. Note that the
232 * child process will reset the SIGALRM handler (if any) to it's own handler
233 * and that the actual OPEN command isn't calculated as part of the elapsed
234 * time.
236 * Be sure to set PWMD_OPTION_PINENTRY.
238 int pwmd_open_nb(pwm_t *pwm, gpg_error_t *error, const char *filename, int timeout) __attribute__ ((warn_unused_result));
241 * When a file descriptor has been returned from pwmd_open_nb() and after a
242 * successful read(), you should call pwmd_open_nb_finalize() to update the
243 * 'pwm' handle. If there was a pinentry or protocol error
244 * pwmd_open_nb_finalize() will return an error code or 0 on success. Note
245 * that pwmd_open_nb_finalize() will close the file descriptor returned from
246 * pwmd_open_nb().
248 gpg_error_t pwmd_open_nb_finalize(pwm_t *pwm, pwmd_nb_status_t *status) __attribute__ ((warn_unused_result));
251 * Sends the SAVE command to the associated handle 'pwm'. If a password is
252 * required, how it is gotten depends on options set with pwmd_setopt().
253 * Returns 0 on success or an error code.
255 gpg_error_t pwmd_save(pwm_t *pwm) __attribute__ ((warn_unused_result));
258 * This is like pwmd_save() but won't block the process when pinentry is used
259 * to retrieve the password. It returns -2 when the file is cached (ISCACHED)
260 * on the server or if the file doesn't exist on the file system (a new file).
261 * Otherwise it returns a file descriptor that select() can use. When ready
262 * for a read, read() should read a pwmd_nb_status_t. If there is a system
263 * error (pipe() or fork()), then -1 is returned and 'error' is set to an
264 * error code that pwmd_strerror() can describe. See pwmd_save_nb_finalize().
266 * Note that there is no timeout setting. If a password is required, pinentry
267 * won't timeout.
269 * Be sure to set PWMD_OPTION_PINENTRY.
271 int pwmd_save_nb(pwm_t *pwm, gpg_error_t *error) __attribute__ ((warn_unused_result));
274 * When a file descriptor has been returned from pwmd_save_nb() and after a
275 * successful read(), you should call pwmd_save_nb_finalize() to update the
276 * 'pwm' handle. If there was a pinentry or protocol error
277 * pwmd_save_nb_finalize() will return an error code or 0 on success. Note
278 * that pwmd_save_nb_finalize() will close the file descriptor returned from
279 * pwmd_save_nb().
281 gpg_error_t pwmd_save_nb_finalize(pwm_t *pwm, pwmd_nb_status_t *status) __attribute__ ((warn_unused_result));
284 * Terminates a pinentry process. If your not using pwmd_open_nb() and want to
285 * timeout the associated pinentry process, then call this function after your
286 * timer has expired. Returns 0 on success or an error code.
288 gpg_error_t pwmd_terminate_pinentry(pwm_t *pwm) __attribute__ ((warn_unused_result));
291 * Sends a protocol command 'cmd' to the daemon using handle 'pwm'. If the
292 * command fails an error code is returned which may be described by passing
293 * the error to pwmd_strerror(). If successful the function returns 0 and the
294 * 'result' is the character data of the command or NULL if there was none.
296 * For commands which use an INQUIRE (i.e., "STORE"), use pwmd_inquire() and
297 * not pwmd_command().
299 * A note about the BYE command: Client's should not send this command
300 * directly with pwmd_command(). They should use pwmd_close() instead because
301 * libassuan will close the file descriptors with the associated context. This
302 * is fine except when pwmd_close() is called. pwmd_close() calls
303 * assuan_disconnect() which then sends the BYE command to the closed file
304 * descriptor resulting in a segfault.
306 gpg_error_t pwmd_command(pwm_t *pwm, char **result, const char *cmd, ...) __attribute__ ((warn_unused_result));
309 * Commands which use an INQUIRE to send data should use this function and not
310 * pwmd_command(). 'cmd' is the command to send and is also the 'keyword'
311 * argument to the callback function 'func'. 'data' is user data passed to the
312 * callback function. Returnes 0 on success or and error code which may have
313 * been returned from the callback function.
315 gpg_error_t pwmd_inquire(pwm_t *pwm, const char *cmd, pwmd_inquire_fn func,
316 void *data) __attribute__ ((warn_unused_result));
319 * Free's the memory used by the result of pwmd_command() if any. It is
320 * important to use this function because libpwmd keeps track of all memory
321 * de/allocations.
323 void pwmd_free_result(void *);
326 * Closes the connection to the socket and frees the resources of the handle.
327 * Returns no value.
329 void pwmd_close(pwm_t *pwm);
332 * Protocol error codes.
334 #define EPWMD_BADKEY GPG_ERR_INV_PASSPHRASE
335 #define EPWMD_COMMAND_SYNTAX GPG_ERR_SYNTAX
336 #define EPWMD_ELEMENT_NOT_FOUND GPG_ERR_NOT_FOUND
337 #define EPWMD_ACCOUNT_EXISTS GPG_ERR_AMBIGUOUS_NAME
338 #define EPWMD_CACHE_NOT_FOUND GPG_ERR_NOT_FOUND
339 #define EPWMD_ATTR_SYNTAX GPG_ERR_SYNTAX
340 #define EPWMD_ATTR_NOT_FOUND GPG_ERR_NOT_FOUND
341 #define EPWMD_INVALID_FILENAME GPG_ERR_INV_NAME
342 #define EPWMD_EMPTY_ELEMENT GPG_ERR_NO_VALUE
343 #define EPWMD_INVALID_ELEMENT GPG_ERR_INV_VALUE
344 #define EPWMD_ERROR GPG_ERR_USER_1
345 #define EPWMD_MAX_SLOTS GPG_ERR_USER_2
346 #define EPWMD_LOOP GPG_ERR_USER_3
347 #define EPWMD_NO_FILE GPG_ERR_USER_4
348 #define EPWMD_LIBXML_ERROR GPG_ERR_USER_5
349 #define EPWMD_FILE_MODIFIED GPG_ERR_USER_6
350 #define EPWMD_MAX GPG_ERR_USER_7
353 * Return a string describing a pwmd protocol error code.
355 const char *pwmd_strerror(gpg_error_t error);
357 #ifdef __cplusplus
359 #endif
361 #endif