2005-08-09 13:19:24 +00:00
|
|
|
/* assuan.c - Definitions for the Assuan IPC library
|
|
|
|
* Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
|
2001-11-20 05:27:46 +00:00
|
|
|
*
|
2003-02-01 18:53:06 +00:00
|
|
|
* This file is part of Assuan.
|
2001-11-20 05:27:46 +00:00
|
|
|
*
|
2003-02-01 18:53:06 +00:00
|
|
|
* Assuan is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
2001-11-20 05:27:46 +00:00
|
|
|
*
|
2003-02-01 18:53:06 +00:00
|
|
|
* Assuan is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-11-20 05:27:46 +00:00
|
|
|
*
|
2003-02-01 18:53:06 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
2001-11-20 05:27:46 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ASSUAN_H
|
|
|
|
#define ASSUAN_H
|
|
|
|
|
2001-11-22 03:08:07 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/types.h>
|
2003-08-18 19:17:08 +00:00
|
|
|
#include <unistd.h>
|
2001-11-22 03:08:07 +00:00
|
|
|
|
2003-08-20 20:20:46 +00:00
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* To use this file with libraries the following macros are often
|
|
|
|
useful:
|
|
|
|
|
|
|
|
#define _ASSUAN_EXT_SYM_PREFIX _foo_
|
|
|
|
|
|
|
|
This prefixes all external symbols with "_foo_".
|
|
|
|
|
|
|
|
#define _ASSUAN_NO_PTH
|
|
|
|
|
|
|
|
This avoids inclusion of special GNU Pth hacks.
|
|
|
|
|
|
|
|
#define _ASSUAN_NO_FIXED_SIGNALS
|
|
|
|
|
|
|
|
This disables changing of certain signal handler; i.e. SIGPIPE.
|
|
|
|
|
|
|
|
#define _ASSUAN_USE_DOUBLE_FORK
|
|
|
|
|
|
|
|
Use a double fork approach when connecting to a server through a pipe.
|
|
|
|
*/
|
|
|
|
/**** Begin GPGME specific modifications. ******/
|
2003-08-20 20:20:46 +00:00
|
|
|
#define _ASSUAN_EXT_SYM_PREFIX _gpgme_
|
2005-08-09 13:19:24 +00:00
|
|
|
#define _ASSUAN_NO_PTH
|
|
|
|
#define _ASSUAN_NO_FIXED_SIGNALS
|
|
|
|
#define _ASSUAN_USE_DOUBLE_FORK
|
2003-08-20 20:20:46 +00:00
|
|
|
|
|
|
|
#ifdef _ASSUAN_IN_GPGME_BUILD_ASSUAN
|
|
|
|
int _gpgme_io_read (int fd, void *buffer, size_t count);
|
|
|
|
int _gpgme_io_write (int fd, const void *buffer, size_t count);
|
|
|
|
ssize_t _gpgme_ath_waitpid (pid_t pid, int *status, int options);
|
2005-08-09 13:19:24 +00:00
|
|
|
#ifdef HAVE_W32_SYSTEM
|
|
|
|
int _gpgme_ath_accept (int s, void *addr, int *length_ptr);
|
|
|
|
#else /*!HAVE_W32_SYSTEM*/
|
2005-08-19 16:34:42 +00:00
|
|
|
struct sockaddr;
|
|
|
|
struct msghdr;
|
2005-08-09 13:19:24 +00:00
|
|
|
ssize_t _gpgme_ath_select (int nfd, fd_set *rset, fd_set *wset, fd_set *eset,
|
|
|
|
struct timeval *timeout);
|
2003-08-20 20:20:46 +00:00
|
|
|
int _gpgme_ath_accept (int s, struct sockaddr *addr, socklen_t *length_ptr);
|
|
|
|
int _gpgme_ath_connect (int s, struct sockaddr *addr, socklen_t length);
|
|
|
|
int _gpgme_ath_sendmsg (int s, const struct msghdr *msg, int flags);
|
|
|
|
int _gpgme_ath_recvmsg (int s, struct msghdr *msg, int flags);
|
2005-08-09 13:19:24 +00:00
|
|
|
#endif /*!HAVE_W32_SYSTEM*/
|
2003-08-20 20:20:46 +00:00
|
|
|
|
|
|
|
#define read _gpgme_io_read
|
|
|
|
#define write _gpgme_io_write
|
|
|
|
#define waitpid _gpgme_ath_waitpid
|
|
|
|
#define select _gpgme_ath_select
|
|
|
|
#define accept _gpgme_ath_accept
|
|
|
|
#define connect _gpgme_ath_connect
|
|
|
|
#define sendmsg _gpgme_ath_sendmsg
|
|
|
|
#define recvmsg _gpgme_ath_recvmsg
|
2005-08-09 13:19:24 +00:00
|
|
|
#endif /*_ASSUAN_IN_GPGME_BUILD_ASSUAN*/
|
|
|
|
/**** End GPGME specific modifications. ******/
|
|
|
|
|
2003-08-20 20:20:46 +00:00
|
|
|
|
|
|
|
#ifdef _ASSUAN_EXT_SYM_PREFIX
|
|
|
|
#define _ASSUAN_PREFIX1(x,y) x ## y
|
|
|
|
#define _ASSUAN_PREFIX2(x,y) _ASSUAN_PREFIX1(x,y)
|
|
|
|
#define _ASSUAN_PREFIX(x) _ASSUAN_PREFIX2(_ASSUAN_EXT_SYM_PREFIX,x)
|
|
|
|
#define assuan_ _ASSUAN_PREFIX(assuan_)
|
|
|
|
#define assuan_register_command _ASSUAN_PREFIX(assuan_register_command)
|
|
|
|
#define assuan_register_bye_notify _ASSUAN_PREFIX(assuan_register_bye_notify)
|
|
|
|
#define assuan_register_reset_notify \
|
|
|
|
_ASSUAN_PREFIX(assuan_register_reset_notify)
|
|
|
|
#define assuan_register_cancel_notify \
|
|
|
|
_ASSUAN_PREFIX(assuan_register_cancel_notify)
|
|
|
|
#define assuan_register_input_notify \
|
|
|
|
_ASSUAN_PREFIX(assuan_register_input_notify)
|
|
|
|
#define assuan_register_output_notify \
|
|
|
|
_ASSUAN_PREFIX(assuan_register_output_notify)
|
|
|
|
#define assuan_register_option_handler \
|
|
|
|
_ASSUAN_PREFIX(assuan_register_option_handler)
|
|
|
|
#define assuan_process _ASSUAN_PREFIX(assuan_process)
|
|
|
|
#define assuan_process_next _ASSUAN_PREFIX(assuan_process_next)
|
|
|
|
#define assuan_get_active_fds _ASSUAN_PREFIX(assuan_get_active_fds)
|
|
|
|
#define assuan_get_data_fp _ASSUAN_PREFIX(assuan_get_data_fp)
|
|
|
|
#define assuan_set_okay_line _ASSUAN_PREFIX(assuan_set_okay_line)
|
|
|
|
#define assuan_write_status _ASSUAN_PREFIX(assuan_write_status)
|
|
|
|
#define assuan_command_parse_fd _ASSUAN_PREFIX(assuan_command_parse_fd)
|
|
|
|
#define assuan_set_hello_line _ASSUAN_PREFIX(assuan_set_hello_line)
|
|
|
|
#define assuan_accept _ASSUAN_PREFIX(assuan_accept)
|
|
|
|
#define assuan_get_input_fd _ASSUAN_PREFIX(assuan_get_input_fd)
|
|
|
|
#define assuan_get_output_fd _ASSUAN_PREFIX(assuan_get_output_fd)
|
|
|
|
#define assuan_close_input_fd _ASSUAN_PREFIX(assuan_close_input_fd)
|
|
|
|
#define assuan_close_output_fd _ASSUAN_PREFIX(assuan_close_output_fd)
|
|
|
|
#define assuan_init_pipe_server _ASSUAN_PREFIX(assuan_init_pipe_server)
|
|
|
|
#define assuan_deinit_server _ASSUAN_PREFIX(assuan_deinit_server)
|
|
|
|
#define assuan_init_socket_server _ASSUAN_PREFIX(assuan_init_socket_server)
|
|
|
|
#define assuan_init_connected_socket_server \
|
|
|
|
_ASSUAN_PREFIX(assuan_init_connected_socket_server)
|
|
|
|
#define assuan_pipe_connect _ASSUAN_PREFIX(assuan_pipe_connect)
|
|
|
|
#define assuan_socket_connect _ASSUAN_PREFIX(assuan_socket_connect)
|
|
|
|
#define assuan_domain_connect _ASSUAN_PREFIX(assuan_domain_connect)
|
|
|
|
#define assuan_init_domain_server _ASSUAN_PREFIX(assuan_init_domain_server)
|
|
|
|
#define assuan_disconnect _ASSUAN_PREFIX(assuan_disconnect)
|
|
|
|
#define assuan_get_pid _ASSUAN_PREFIX(assuan_get_pid)
|
|
|
|
#define assuan_transact _ASSUAN_PREFIX(assuan_transact)
|
|
|
|
#define assuan_inquire _ASSUAN_PREFIX(assuan_inquire)
|
|
|
|
#define assuan_read_line _ASSUAN_PREFIX(assuan_read_line)
|
|
|
|
#define assuan_pending_line _ASSUAN_PREFIX(assuan_pending_line)
|
|
|
|
#define assuan_write_line _ASSUAN_PREFIX(assuan_write_line)
|
|
|
|
#define assuan_send_data _ASSUAN_PREFIX(assuan_send_data)
|
|
|
|
#define assuan_sendfd _ASSUAN_PREFIX(assuan_sendfd)
|
|
|
|
#define assuan_receivefd _ASSUAN_PREFIX(assuan_receivefd)
|
|
|
|
#define assuan_set_malloc_hooks _ASSUAN_PREFIX(assuan_set_malloc_hooks)
|
|
|
|
#define assuan_set_log_stream _ASSUAN_PREFIX(assuan_set_log_stream)
|
|
|
|
#define assuan_set_error _ASSUAN_PREFIX(assuan_set_error)
|
|
|
|
#define assuan_set_pointer _ASSUAN_PREFIX(assuan_set_pointer)
|
|
|
|
#define assuan_get_pointer _ASSUAN_PREFIX(assuan_get_pointer)
|
|
|
|
#define assuan_begin_confidential _ASSUAN_PREFIX(assuan_begin_confidential)
|
|
|
|
#define assuan_end_confidential _ASSUAN_PREFIX(assuan_end_confidential)
|
|
|
|
#define assuan_strerror _ASSUAN_PREFIX(assuan_strerror)
|
|
|
|
#define assuan_set_assuan_log_stream \
|
|
|
|
_ASSUAN_PREFIX(assuan_set_assuan_log_stream)
|
|
|
|
#define assuan_get_assuan_log_stream \
|
|
|
|
_ASSUAN_PREFIX(assuan_get_assuan_log_stream)
|
|
|
|
#define assuan_get_assuan_log_prefix \
|
|
|
|
_ASSUAN_PREFIX(assuan_get_assuan_log_prefix)
|
2005-08-09 13:19:24 +00:00
|
|
|
#define assuan_set_flag _ASSUAN_PREFIX(assuan_set_flag)
|
|
|
|
#define assuan_get_flag _ASSUAN_PREFIX(assuan_get_flag)
|
2003-08-20 20:20:46 +00:00
|
|
|
|
|
|
|
/* And now the internal functions, argh... */
|
|
|
|
#define _assuan_read_line _ASSUAN_PREFIX(_assuan_read_line)
|
|
|
|
#define _assuan_cookie_write_data _ASSUAN_PREFIX(_assuan_cookie_write_data)
|
|
|
|
#define _assuan_cookie_write_flush _ASSUAN_PREFIX(_assuan_cookie_write_flush)
|
|
|
|
#define _assuan_read_from_server _ASSUAN_PREFIX(_assuan_read_from_server)
|
|
|
|
#define _assuan_domain_init _ASSUAN_PREFIX(_assuan_domain_init)
|
|
|
|
#define _assuan_register_std_commands \
|
|
|
|
_ASSUAN_PREFIX(_assuan_register_std_commands)
|
|
|
|
#define _assuan_simple_read _ASSUAN_PREFIX(_assuan_simple_read)
|
|
|
|
#define _assuan_simple_write _ASSUAN_PREFIX(_assuan_simple_write)
|
|
|
|
#define _assuan_simple_read _ASSUAN_PREFIX(_assuan_simple_read)
|
|
|
|
#define _assuan_simple_write _ASSUAN_PREFIX(_assuan_simple_write)
|
|
|
|
#define _assuan_new_context _ASSUAN_PREFIX(_assuan_new_context)
|
|
|
|
#define _assuan_release_context _ASSUAN_PREFIX(_assuan_release_context)
|
|
|
|
#define _assuan_malloc _ASSUAN_PREFIX(_assuan_malloc)
|
|
|
|
#define _assuan_realloc _ASSUAN_PREFIX(_assuan_realloc)
|
|
|
|
#define _assuan_calloc _ASSUAN_PREFIX(_assuan_calloc)
|
|
|
|
#define _assuan_free _ASSUAN_PREFIX(_assuan_free)
|
|
|
|
#define _assuan_log_print_buffer _ASSUAN_PREFIX(_assuan_log_print_buffer)
|
|
|
|
#define _assuan_log_sanitized_string \
|
|
|
|
_ASSUAN_PREFIX(_assuan_log_sanitized_string)
|
2005-08-09 13:19:24 +00:00
|
|
|
#define _assuan_log_printf _ASSUAN_PREFIX(_assuan_log_printf)
|
|
|
|
#define _assuan_set_default_log_stream \
|
|
|
|
_ASSUAN_PREFIX(_assuan_set_default_log_stream)
|
|
|
|
#define _assuan_w32_strerror _ASSUAN_PREFIX(_assuan_w32_strerror)
|
|
|
|
#define _assuan_write_line _ASSUAN_PREFIX(_assuan_write_line)
|
|
|
|
#define _assuan_close _ASSUAN_PREFIX(_assuan_close)
|
|
|
|
#define _assuan_sock_new _ASSUAN_PREFIX(_assuan_sock_new)
|
|
|
|
#define _assuan_sock_bind _ASSUAN_PREFIX(_assuan_sock_bind)
|
|
|
|
#define _assuan_sock_connect _ASSUAN_PREFIX(_assuan_sock_connect)
|
|
|
|
|
|
|
|
#endif /*_ASSUAN_EXT_SYM_PREFIX*/
|
2003-08-20 20:20:46 +00:00
|
|
|
|
|
|
|
|
2001-11-20 05:27:46 +00:00
|
|
|
#ifdef __cplusplus
|
2003-08-18 19:17:08 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2005-08-09 13:19:24 +00:00
|
|
|
#if 0
|
|
|
|
}
|
2001-11-20 05:27:46 +00:00
|
|
|
#endif
|
2005-08-09 13:19:24 +00:00
|
|
|
#endif
|
|
|
|
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2003-08-18 19:17:08 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2001-11-20 05:27:46 +00:00
|
|
|
ASSUAN_No_Error = 0,
|
|
|
|
ASSUAN_General_Error = 1,
|
|
|
|
ASSUAN_Out_Of_Core = 2,
|
|
|
|
ASSUAN_Invalid_Value = 3,
|
2003-08-18 19:17:08 +00:00
|
|
|
ASSUAN_Timeout = 4,
|
2001-11-20 05:27:46 +00:00
|
|
|
ASSUAN_Read_Error = 5,
|
|
|
|
ASSUAN_Write_Error = 6,
|
2001-12-13 15:04:36 +00:00
|
|
|
ASSUAN_Problem_Starting_Server = 7,
|
|
|
|
ASSUAN_Not_A_Server = 8,
|
|
|
|
ASSUAN_Not_A_Client = 9,
|
|
|
|
ASSUAN_Nested_Commands = 10,
|
|
|
|
ASSUAN_Invalid_Response = 11,
|
|
|
|
ASSUAN_No_Data_Callback = 12,
|
|
|
|
ASSUAN_No_Inquire_Callback = 13,
|
|
|
|
ASSUAN_Connect_Failed = 14,
|
2002-01-22 16:29:12 +00:00
|
|
|
ASSUAN_Accept_Failed = 15,
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* Error codes above 99 are meant as status codes */
|
2001-11-20 05:27:46 +00:00
|
|
|
ASSUAN_Not_Implemented = 100,
|
|
|
|
ASSUAN_Server_Fault = 101,
|
|
|
|
ASSUAN_Invalid_Command = 102,
|
|
|
|
ASSUAN_Unknown_Command = 103,
|
|
|
|
ASSUAN_Syntax_Error = 104,
|
|
|
|
ASSUAN_Parameter_Error = 105,
|
|
|
|
ASSUAN_Parameter_Conflict = 106,
|
|
|
|
ASSUAN_Line_Too_Long = 107,
|
|
|
|
ASSUAN_Line_Not_Terminated = 108,
|
|
|
|
ASSUAN_No_Input = 109,
|
|
|
|
ASSUAN_No_Output = 110,
|
2001-11-24 21:22:18 +00:00
|
|
|
ASSUAN_Canceled = 111,
|
2001-12-13 15:04:36 +00:00
|
|
|
ASSUAN_Unsupported_Algorithm = 112,
|
|
|
|
ASSUAN_Server_Resource_Problem = 113,
|
|
|
|
ASSUAN_Server_IO_Error = 114,
|
|
|
|
ASSUAN_Server_Bug = 115,
|
|
|
|
ASSUAN_No_Data_Available = 116,
|
|
|
|
ASSUAN_Invalid_Data = 117,
|
|
|
|
ASSUAN_Unexpected_Command = 118,
|
|
|
|
ASSUAN_Too_Much_Data = 119,
|
2002-01-22 16:29:12 +00:00
|
|
|
ASSUAN_Inquire_Unknown = 120,
|
|
|
|
ASSUAN_Inquire_Error = 121,
|
|
|
|
ASSUAN_Invalid_Option = 122,
|
2002-04-24 01:55:58 +00:00
|
|
|
ASSUAN_Invalid_Index = 123,
|
|
|
|
ASSUAN_Unexpected_Status = 124,
|
|
|
|
ASSUAN_Unexpected_Data = 125,
|
|
|
|
ASSUAN_Invalid_Status = 126,
|
2005-08-09 13:19:24 +00:00
|
|
|
ASSUAN_Locale_Problem = 127,
|
2002-04-24 01:55:58 +00:00
|
|
|
ASSUAN_Not_Confirmed = 128,
|
2001-12-13 15:04:36 +00:00
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* Warning: Don't use the rror codes, below they are deprecated. */
|
2001-12-13 15:04:36 +00:00
|
|
|
ASSUAN_Bad_Certificate = 201,
|
2003-02-01 18:53:06 +00:00
|
|
|
ASSUAN_Bad_Certificate_Chain = 202,
|
2001-12-13 15:04:36 +00:00
|
|
|
ASSUAN_Missing_Certificate = 203,
|
|
|
|
ASSUAN_Bad_Signature = 204,
|
|
|
|
ASSUAN_No_Agent = 205,
|
|
|
|
ASSUAN_Agent_Error = 206,
|
|
|
|
ASSUAN_No_Public_Key = 207,
|
|
|
|
ASSUAN_No_Secret_Key = 208,
|
|
|
|
ASSUAN_Invalid_Name = 209,
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
ASSUAN_Cert_Revoked = 301,
|
|
|
|
ASSUAN_No_CRL_For_Cert = 302,
|
2001-12-13 15:04:36 +00:00
|
|
|
ASSUAN_CRL_Too_Old = 303,
|
2002-01-22 16:29:12 +00:00
|
|
|
ASSUAN_Not_Trusted = 304,
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2002-04-24 01:55:58 +00:00
|
|
|
ASSUAN_Card_Error = 401,
|
|
|
|
ASSUAN_Invalid_Card = 402,
|
|
|
|
ASSUAN_No_PKCS15_App = 403,
|
|
|
|
ASSUAN_Card_Not_Present = 404,
|
2005-08-09 13:19:24 +00:00
|
|
|
ASSUAN_Invalid_Id = 405,
|
|
|
|
|
|
|
|
/* Error codes in the range 1000 to 9999 may be used by applications
|
|
|
|
at their own discretion. */
|
|
|
|
ASSUAN_USER_ERROR_FIRST = 1000,
|
|
|
|
ASSUAN_USER_ERROR_LAST = 9999
|
|
|
|
|
|
|
|
} assuan_error_t;
|
2002-04-24 01:55:58 +00:00
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
typedef assuan_error_t AssuanError; /* Deprecated. */
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
/* This is a list of pre-registered ASSUAN commands */
|
2005-08-09 13:19:24 +00:00
|
|
|
/* NOTE, these command IDs are now deprectated and solely exists for
|
|
|
|
compatibility reasons. */
|
2003-08-18 19:17:08 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2001-11-20 05:27:46 +00:00
|
|
|
ASSUAN_CMD_NOP = 0,
|
|
|
|
ASSUAN_CMD_CANCEL, /* cancel the current request */
|
|
|
|
ASSUAN_CMD_BYE,
|
|
|
|
ASSUAN_CMD_AUTH,
|
|
|
|
ASSUAN_CMD_RESET,
|
2002-01-22 16:29:12 +00:00
|
|
|
ASSUAN_CMD_OPTION,
|
2001-11-20 05:27:46 +00:00
|
|
|
ASSUAN_CMD_DATA,
|
|
|
|
ASSUAN_CMD_END,
|
|
|
|
ASSUAN_CMD_INPUT,
|
|
|
|
ASSUAN_CMD_OUTPUT,
|
|
|
|
|
|
|
|
ASSUAN_CMD_USER = 256 /* Other commands should be used with this offset*/
|
|
|
|
} AssuanCommand;
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
|
|
|
|
/* Definitions of flags for assuan_set_flag(). */
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
/* When using a pipe server, by default Assuan will wait for the
|
|
|
|
forked process to die in assuan_disconnect. In certain cases
|
|
|
|
this is not desirable. By setting this flag, the waitpid will
|
|
|
|
be skipped and the caller is responsible to cleanup a forked
|
|
|
|
process. */
|
|
|
|
ASSUAN_NO_WAITPID = 1
|
|
|
|
}
|
|
|
|
assuan_flag_t;
|
|
|
|
|
2001-12-13 23:12:37 +00:00
|
|
|
#define ASSUAN_LINELENGTH 1002 /* 1000 + [CR,]LF */
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
struct assuan_context_s;
|
2005-08-09 13:19:24 +00:00
|
|
|
typedef struct assuan_context_s *assuan_context_t;
|
2001-11-20 05:27:46 +00:00
|
|
|
typedef struct assuan_context_s *ASSUAN_CONTEXT;
|
|
|
|
|
|
|
|
/*-- assuan-handler.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
int assuan_register_command (assuan_context_t ctx,
|
2003-08-18 19:17:08 +00:00
|
|
|
const char *cmd_string,
|
2005-08-09 13:19:24 +00:00
|
|
|
int (*handler)(assuan_context_t, char *));
|
|
|
|
int assuan_register_bye_notify (assuan_context_t ctx,
|
|
|
|
void (*fnc)(assuan_context_t));
|
|
|
|
int assuan_register_reset_notify (assuan_context_t ctx,
|
|
|
|
void (*fnc)(assuan_context_t));
|
|
|
|
int assuan_register_cancel_notify (assuan_context_t ctx,
|
|
|
|
void (*fnc)(assuan_context_t));
|
|
|
|
int assuan_register_input_notify (assuan_context_t ctx,
|
|
|
|
void (*fnc)(assuan_context_t, const char *));
|
|
|
|
int assuan_register_output_notify (assuan_context_t ctx,
|
|
|
|
void (*fnc)(assuan_context_t, const char *));
|
|
|
|
|
|
|
|
int assuan_register_option_handler (assuan_context_t ctx,
|
|
|
|
int (*fnc)(assuan_context_t,
|
2002-01-22 16:29:12 +00:00
|
|
|
const char*, const char*));
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
int assuan_process (assuan_context_t ctx);
|
|
|
|
int assuan_process_next (assuan_context_t ctx);
|
|
|
|
int assuan_get_active_fds (assuan_context_t ctx, int what,
|
2001-12-13 15:04:36 +00:00
|
|
|
int *fdarray, int fdarraysize);
|
|
|
|
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
FILE *assuan_get_data_fp (assuan_context_t ctx);
|
|
|
|
assuan_error_t assuan_set_okay_line (assuan_context_t ctx, const char *line);
|
|
|
|
assuan_error_t assuan_write_status (assuan_context_t ctx,
|
|
|
|
const char *keyword, const char *text);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2003-08-18 19:17:08 +00:00
|
|
|
/* Negotiate a file descriptor. If LINE contains "FD=N", returns N
|
|
|
|
assuming a local file descriptor. If LINE contains "FD" reads a
|
|
|
|
file descriptor via CTX and stores it in *RDF (the CTX must be
|
|
|
|
capable of passing file descriptors). */
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_command_parse_fd (assuan_context_t ctx, char *line,
|
2003-08-18 19:17:08 +00:00
|
|
|
int *rfd);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
/*-- assuan-listen.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_set_hello_line (assuan_context_t ctx, const char *line);
|
|
|
|
assuan_error_t assuan_accept (assuan_context_t ctx);
|
|
|
|
int assuan_get_input_fd (assuan_context_t ctx);
|
|
|
|
int assuan_get_output_fd (assuan_context_t ctx);
|
|
|
|
assuan_error_t assuan_close_input_fd (assuan_context_t ctx);
|
|
|
|
assuan_error_t assuan_close_output_fd (assuan_context_t ctx);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- assuan-pipe-server.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
int assuan_init_pipe_server (assuan_context_t *r_ctx, int filedes[2]);
|
|
|
|
void assuan_deinit_server (assuan_context_t ctx);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2002-01-22 16:29:12 +00:00
|
|
|
/*-- assuan-socket-server.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
int assuan_init_socket_server (assuan_context_t *r_ctx, int listen_fd);
|
|
|
|
int assuan_init_connected_socket_server (assuan_context_t *r_ctx, int fd);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2002-01-22 16:29:12 +00:00
|
|
|
|
|
|
|
/*-- assuan-pipe-connect.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_pipe_connect (assuan_context_t *ctx, const char *name,
|
2005-10-01 20:17:03 +00:00
|
|
|
const char *const argv[],
|
|
|
|
int *fd_child_list);
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_pipe_connect2 (assuan_context_t *ctx, const char *name,
|
2005-10-01 20:17:03 +00:00
|
|
|
const char *const argv[],
|
|
|
|
int *fd_child_list,
|
2005-08-09 13:19:24 +00:00
|
|
|
void (*atfork) (void*, int),
|
|
|
|
void *atforkvalue);
|
2002-01-22 16:29:12 +00:00
|
|
|
/*-- assuan-socket-connect.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_socket_connect (assuan_context_t *ctx, const char *name,
|
|
|
|
pid_t server_pid);
|
2002-01-22 16:29:12 +00:00
|
|
|
|
2003-08-18 19:17:08 +00:00
|
|
|
/*-- assuan-domain-connect.c --*/
|
|
|
|
|
|
|
|
/* Connect to a Unix domain socket server. RENDEZVOUSFD is
|
|
|
|
bidirectional file descriptor (normally returned via socketpair)
|
|
|
|
which the client can use to rendezvous with the server. SERVER s
|
|
|
|
the server's pid. */
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_domain_connect (assuan_context_t *r_ctx,
|
2003-08-18 19:17:08 +00:00
|
|
|
int rendezvousfd,
|
|
|
|
pid_t server);
|
|
|
|
|
|
|
|
/*-- assuan-domain-server.c --*/
|
|
|
|
|
|
|
|
/* RENDEZVOUSFD is a bidirectional file descriptor (normally returned
|
|
|
|
via socketpair) that the domain server can use to rendezvous with
|
|
|
|
the client. CLIENT is the client's pid. */
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_init_domain_server (assuan_context_t *r_ctx,
|
2003-08-18 19:17:08 +00:00
|
|
|
int rendezvousfd,
|
|
|
|
pid_t client);
|
|
|
|
|
|
|
|
|
2002-01-22 16:29:12 +00:00
|
|
|
/*-- assuan-connect.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
void assuan_disconnect (assuan_context_t ctx);
|
|
|
|
pid_t assuan_get_pid (assuan_context_t ctx);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2001-12-13 15:04:36 +00:00
|
|
|
/*-- assuan-client.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t
|
|
|
|
assuan_transact (assuan_context_t ctx,
|
2001-12-13 15:04:36 +00:00
|
|
|
const char *command,
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t (*data_cb)(void *, const void *, size_t),
|
2001-12-13 15:04:36 +00:00
|
|
|
void *data_cb_arg,
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t (*inquire_cb)(void*, const char *),
|
2002-04-24 01:55:58 +00:00
|
|
|
void *inquire_cb_arg,
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t (*status_cb)(void*, const char *),
|
2002-04-24 01:55:58 +00:00
|
|
|
void *status_cb_arg);
|
2001-12-13 15:04:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- assuan-inquire.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_inquire (assuan_context_t ctx, const char *keyword,
|
|
|
|
unsigned char **r_buffer, size_t *r_length,
|
|
|
|
size_t maxlen);
|
2001-12-13 15:04:36 +00:00
|
|
|
|
|
|
|
/*-- assuan-buffer.c --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_read_line (assuan_context_t ctx,
|
2001-12-13 15:04:36 +00:00
|
|
|
char **line, size_t *linelen);
|
2005-08-09 13:19:24 +00:00
|
|
|
int assuan_pending_line (assuan_context_t ctx);
|
|
|
|
assuan_error_t assuan_write_line (assuan_context_t ctx, const char *line );
|
|
|
|
assuan_error_t assuan_send_data (assuan_context_t ctx,
|
2001-12-13 15:04:36 +00:00
|
|
|
const void *buffer, size_t length);
|
|
|
|
|
2003-08-18 19:17:08 +00:00
|
|
|
/* The file descriptor must be pending before assuan_receivefd is
|
|
|
|
call. This means that assuan_sendfd should be called *before* the
|
|
|
|
trigger is sent (normally via assuan_send_data ("I sent you a
|
|
|
|
descriptor")). */
|
2005-08-09 13:19:24 +00:00
|
|
|
assuan_error_t assuan_sendfd (assuan_context_t ctx, int fd);
|
|
|
|
assuan_error_t assuan_receivefd (assuan_context_t ctx, int *fd);
|
2001-12-13 15:04:36 +00:00
|
|
|
|
2001-11-20 05:27:46 +00:00
|
|
|
/*-- assuan-util.c --*/
|
|
|
|
void assuan_set_malloc_hooks ( void *(*new_alloc_func)(size_t n),
|
|
|
|
void *(*new_realloc_func)(void *p, size_t n),
|
|
|
|
void (*new_free_func)(void*) );
|
2005-08-09 13:19:24 +00:00
|
|
|
void assuan_set_log_stream (assuan_context_t ctx, FILE *fp);
|
|
|
|
int assuan_set_error (assuan_context_t ctx, int err, const char *text);
|
|
|
|
void assuan_set_pointer (assuan_context_t ctx, void *pointer);
|
|
|
|
void *assuan_get_pointer (assuan_context_t ctx);
|
|
|
|
|
|
|
|
void assuan_begin_confidential (assuan_context_t ctx);
|
|
|
|
void assuan_end_confidential (assuan_context_t ctx);
|
|
|
|
|
|
|
|
/* For context CTX, set the flag FLAG to VALUE. Values for flags
|
|
|
|
are usually 1 or 0 but certain flags might allow for other values;
|
|
|
|
see the description of the type assuan_flag_t for details. */
|
|
|
|
void assuan_set_flag (assuan_context_t ctx, assuan_flag_t flag, int value);
|
|
|
|
|
|
|
|
/* Return the VALUE of FLAG in context CTX. */
|
|
|
|
int assuan_get_flag (assuan_context_t ctx, assuan_flag_t flag);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-- assuan-errors.c (built) --*/
|
2005-08-09 13:19:24 +00:00
|
|
|
const char *assuan_strerror (assuan_error_t err);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
2003-08-18 19:17:08 +00:00
|
|
|
/*-- assuan-logging.c --*/
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* Set the stream to which assuan should log message not associated
|
|
|
|
with a context. By default, this is stderr. The default value
|
|
|
|
will be changed when the first log stream is associated with a
|
|
|
|
context. Note, that this function is not thread-safe and should
|
|
|
|
in general be used right at startup. */
|
2003-08-18 19:17:08 +00:00
|
|
|
extern void assuan_set_assuan_log_stream (FILE *fp);
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* Return the stream which is currently being using for global logging. */
|
2003-08-18 19:17:08 +00:00
|
|
|
extern FILE *assuan_get_assuan_log_stream (void);
|
|
|
|
|
2005-08-09 13:19:24 +00:00
|
|
|
/* Set the prefix to be used at the start of a line emitted by assuan
|
|
|
|
on the log stream. The default is the empty string. Note, that
|
|
|
|
this function is not thread-safe and should in general be used
|
|
|
|
right at startup. */
|
|
|
|
void assuan_set_assuan_log_prefix (const char *text);
|
|
|
|
|
|
|
|
/* Return a prefix to be used at the start of a line emitted by assuan
|
|
|
|
on the log stream. The default implementation returns the empty
|
|
|
|
string, i.e. "" */
|
|
|
|
const char *assuan_get_assuan_log_prefix (void);
|
2001-11-20 05:27:46 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2003-08-18 19:17:08 +00:00
|
|
|
#endif /* ASSUAN_H */
|