GNUnet 0.22.2
Client library

Generic client-side communication with services. More...

Collaboration diagram for Client library:

Functions

enum GNUNET_GenericReturnValue GNUNET_CLIENT_test (const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name)
 Test if the port or UNIXPATH of the given service_name is in use and thus (most likely) the respective service is up. More...
 
struct GNUNET_MQ_HandleGNUNET_CLIENT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls)
 Create a message queue to connect to a GNUnet service. More...
 

Detailed Description

Generic client-side communication with services.

See also
Documentation

Function Documentation

◆ GNUNET_CLIENT_test()

enum GNUNET_GenericReturnValue GNUNET_CLIENT_test ( const struct GNUNET_CONFIGURATION_Handle cfg,
const char *  service_name 
)

Test if the port or UNIXPATH of the given service_name is in use and thus (most likely) the respective service is up.

Parameters
cfgour configuration
service_namename of the service to connect to
Returns
GNUNET_YES if the service is (likely) up (or running remotely), GNUNET_NO if the service is (definitively) down, GNUNET_SYSERR if the configuration does not give us the necessary information about the service, or if we could not check (e.g. socket() failed)
Parameters
cfgour configuration
service_namename of the service to connect to
Returns
GNUNET_YES if the service is (likely) up, GNUNET_NO if the service is (definitively) down, GNUNET_SYSERR if the configuration does not give us the necessary information about the service, or if we could not check (e.g. socket() failed)

Definition at line 903 of file client.c.

905{
906 char *hostname = NULL;
907 unsigned long long port;
908 int ret;
909
910#if AF_UNIX
911 {
912 char *unixpath = NULL;
913
914 if (GNUNET_OK ==
917 "UNIXPATH",
918 &unixpath))
919 {
920 if (0 == strlen (unixpath))
921 {
922 GNUNET_free (unixpath);
923 return GNUNET_SYSERR; /* empty string not OK */
924 }
925 if (0 == access (unixpath,
926 F_OK))
927 {
928 GNUNET_free (unixpath);
929 return GNUNET_OK; /* file exists, we assume service is running */
930 }
931 GNUNET_free (unixpath);
932 }
933 else if (GNUNET_OK ==
936 "UNIXPATH"))
937 {
938 /* UNIXPATH specified but not a valid path! */
941 "UNIXPATH",
942 _ ("not a valid filename"));
943 return GNUNET_SYSERR;
944 }
945 }
946#endif
947
948 if ( (GNUNET_OK !=
951 "PORT",
952 &port)) ||
953 (port > 65535) ||
954 (0 == port) )
955 {
958 "PORT");
959 return GNUNET_SYSERR;
960 }
961 if (GNUNET_OK ==
964 "HOSTNAME",
965 &hostname))
966 {
967 /* We always assume remotes are up */
968 ret = GNUNET_YES;
969 }
970 else
971 {
972 /* We look for evidence the service is up */
973 ret = GNUNET_NO;
974 }
975 if ( (NULL == hostname) ||
976 (0 == strcasecmp (hostname,
977 "localhost")) ||
978 (0 == strcasecmp (hostname,
979 "ip6-localnet")) )
980 {
981 /* service runs on loopback */
982 struct sockaddr_in v4;
983 struct sockaddr_in6 v6;
984 int sock;
985
986 memset (&v4, 0, sizeof (v4));
987 memset (&v6, 0, sizeof (v6));
988 v4.sin_family = AF_INET;
989 v4.sin_port = htons ((uint16_t) port);
990#if HAVE_SOCKADDR_IN_SUN_LEN
991 v4.sin_len = (u_char) sizeof(struct sockaddr_in);
992#endif
993 GNUNET_assert (1 == inet_pton (AF_INET,
994 "127.0.0.1",
995 &v4.sin_addr));
996 ret = GNUNET_NO;
997 sock = socket (AF_INET,
998 SOCK_STREAM,
999 0);
1000 if (-1 != sock)
1001 {
1002 if (0 != bind (sock,
1003 (struct sockaddr *) &v4,
1004 sizeof (v4)))
1005 {
1006 /* bind failed, so someone is listening! */
1007 ret = GNUNET_YES;
1008 }
1009 (void) close (sock);
1010 }
1011 else
1012 {
1014 "socket");
1015 if (GNUNET_NO == ret)
1017 }
1018 v6.sin6_family = AF_INET6;
1019 v6.sin6_port = htons ((uint16_t) port);
1020#if HAVE_SOCKADDR_IN_SUN_LEN
1021 v6.sin6_len = (u_char) sizeof(struct sockaddr_in6);
1022#endif
1023 inet_pton (AF_INET6,
1024 "::1",
1025 &v6.sin6_addr);
1026 sock = socket (AF_INET6,
1027 SOCK_STREAM,
1028 0);
1029 if (-1 != sock)
1030 {
1031 if (0 != bind (sock,
1032 (struct sockaddr *) &v6,
1033 sizeof (v6)))
1034 {
1035 /* bind failed, so someone is listening! */
1036 ret = GNUNET_YES;
1037 }
1038 (void) close (sock);
1039 }
1040 else
1041 {
1043 "socket");
1044 /* not changing 'ret' intentionally here, as
1045 v4 succeeding and v6 failing just means we
1046 should use v4 */
1047 }
1048 }
1049 else
1050 {
1051 /* service running remotely */
1052 ret = GNUNET_OK;
1053 }
1054 GNUNET_free (hostname);
1055 return ret;
1056}
static int ret
Final status code.
Definition: gnunet-arm.c:93
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:108
static uint16_t port
Port number.
Definition: gnunet-bcd.c:146
static char * service_name
Option -s: service name (hash to get service descriptor)
Definition: gnunet-vpn.c:50
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_filename(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be the name of a file or directory.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_number(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, unsigned long long *number)
Get a configuration value that should be a number.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_string(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be a string.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_have_value(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option)
Test if we have a value for a particular option.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
void GNUNET_log_config_invalid(enum GNUNET_ErrorType kind, const char *section, const char *option, const char *required)
Log error message about invalid configuration option value.
void GNUNET_log_config_missing(enum GNUNET_ErrorType kind, const char *section, const char *option)
Log error message about missing configuration option.
#define GNUNET_log_strerror(level, cmd)
Log an error message at log-level 'level' that indicates a failure of the command 'cmd' with the mess...
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
#define GNUNET_free(ptr)
Wrapper around free.
#define _(String)
GNU gettext support macro.
Definition: platform.h:178

References _, cfg, GNUNET_assert, GNUNET_CONFIGURATION_get_value_filename(), GNUNET_CONFIGURATION_get_value_number(), GNUNET_CONFIGURATION_get_value_string(), GNUNET_CONFIGURATION_have_value(), GNUNET_ERROR_TYPE_ERROR, GNUNET_ERROR_TYPE_WARNING, GNUNET_free, GNUNET_log_config_invalid(), GNUNET_log_config_missing(), GNUNET_log_strerror, GNUNET_NO, GNUNET_OK, GNUNET_SYSERR, GNUNET_YES, ClientState::hostname, port, ret, and service_name.

Referenced by action_loop(), and run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GNUNET_CLIENT_connect()

struct GNUNET_MQ_Handle * GNUNET_CLIENT_connect ( const struct GNUNET_CONFIGURATION_Handle cfg,
const char *  service_name,
const struct GNUNET_MQ_MessageHandler handlers,
GNUNET_MQ_ErrorHandler  error_handler,
void *  error_handler_cls 
)

Create a message queue to connect to a GNUnet service.

If handlers are specified, receive messages from the connection.

Parameters
cfgour configuration
service_namename of the service to connect to
handlershandlers for receiving messages, can be NULL
error_handlererror handler
error_handler_clsclosure for the error_handler
Returns
the message queue, NULL on error

Definition at line 1060 of file client.c.

1065{
1066 struct ClientState *cstate;
1067
1068 if (GNUNET_OK !=
1070 cfg))
1071 return NULL;
1072 cstate = GNUNET_new (struct ClientState);
1074 cstate->cfg = cfg;
1076 cstate);
1078 cstate);
1079 if (GNUNET_YES ==
1082 "PORT"))
1083 {
1084 if (! ((GNUNET_OK !=
1087 "PORT",
1088 &cstate->port)) ||
1089 (cstate->port > 65535) ||
1090 (GNUNET_SYSERR ==
1093 "HOSTNAME",
1094 &cstate->hostname))) &&
1095 (0 == strlen (cstate->hostname)))
1096 {
1097 GNUNET_free (cstate->hostname);
1098 cstate->hostname = NULL;
1100 _ ("Need a non-empty hostname for service `%s'.\n"),
1101 service_name);
1102 }
1103 }
1107 cstate,
1108 handlers,
1110 error_handler_cls);
1111 return cstate->mq;
1112}
struct GNUNET_MQ_MessageHandlers handlers[]
Definition: 003.c:1
static void error_handler(void *cls, enum GNUNET_MQ_Error error)
Function called on connection trouble.
static void connection_client_cancel_impl(struct GNUNET_MQ_Handle *mq, void *impl_state)
Cancel the currently sent message.
Definition: client.c:873
static void connection_client_send_impl(struct GNUNET_MQ_Handle *mq, const struct GNUNET_MessageHeader *msg, void *impl_state)
Implements the transmission functionality of a message queue.
Definition: client.c:841
static void start_connect(void *cls)
Try to connect to the service.
Definition: client.c:787
static enum GNUNET_GenericReturnValue recv_message(void *cls, const struct GNUNET_MessageHeader *msg)
We have received a full message, pass to the MQ dispatcher.
Definition: client.c:335
static void connection_client_destroy_impl(struct GNUNET_MQ_Handle *mq, void *impl_state)
Implement the destruction of a message queue.
Definition: client.c:386
static int test_service_configuration(const char *service_name, const struct GNUNET_CONFIGURATION_Handle *cfg)
Test whether the configuration has proper values for connection (UNIXPATH || (PORT && HOSTNAME)).
Definition: client.c:726
#define LOG(kind,...)
Definition: client.c:37
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
struct GNUNET_MQ_Handle * GNUNET_MQ_queue_for_callbacks(GNUNET_MQ_SendImpl send, GNUNET_MQ_DestroyImpl destroy, GNUNET_MQ_CancelImpl cancel, void *impl_state, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *cls)
Create a message queue for the specified handlers.
Definition: mq.c:482
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition: scheduler.c:1304
struct GNUNET_MessageStreamTokenizer * GNUNET_MST_create(GNUNET_MessageTokenizerCallback cb, void *cb_cls)
Create a message stream tokenizer.
Definition: mst.c:86
State we keep per client.
struct GNUNET_MQ_Handle * mq
MQ to talk to client.
const struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: client.c:116
struct GNUNET_MessageStreamTokenizer * mst
Tokenizer for inbound messages.
Definition: client.c:163
struct GNUNET_SCHEDULER_Task * retry_task
Task for trying to connect to the service.
Definition: client.c:148
char * hostname
Hostname, if any.
Definition: client.c:138
unsigned long long port
TCP port (0 for disabled).
Definition: client.c:184
char * service_name
Name of the service we interact with.
Definition: client.c:133

References _, cfg, ClientState::cfg, connection_client_cancel_impl(), connection_client_destroy_impl(), connection_client_send_impl(), error_handler(), GNUNET_CONFIGURATION_get_value_number(), GNUNET_CONFIGURATION_get_value_string(), GNUNET_CONFIGURATION_have_value(), GNUNET_ERROR_TYPE_WARNING, GNUNET_free, GNUNET_MQ_queue_for_callbacks(), GNUNET_MST_create(), GNUNET_new, GNUNET_OK, GNUNET_SCHEDULER_add_now(), GNUNET_strdup, GNUNET_SYSERR, GNUNET_YES, handlers, ClientState::hostname, LOG, ClientState::mq, ClientState::mst, ClientState::port, recv_message(), ClientState::retry_task, service_name, ClientState::service_name, start_connect(), and test_service_configuration().

Referenced by addr_cb(), announce_reconnect(), connect_task(), create_internal(), create_loc_uri(), do_connect(), do_reconnect(), GNUNET_CONSENSUS_create(), GNUNET_CONVERSATION_call_start(), GNUNET_DATASTORE_disconnect(), GNUNET_FS_get_indexed_files(), GNUNET_IDENTITY_ego_lookup(), GNUNET_IDENTITY_ego_lookup_by_suffix(), GNUNET_NAT_AUTO_autoconfig_start(), GNUNET_REVOCATION_query(), GNUNET_REVOCATION_revoke(), GNUNET_SCALARPRODUCT_accept_computation(), GNUNET_SCALARPRODUCT_start_computation(), GNUNET_SECRETSHARING_create_session(), GNUNET_SECRETSHARING_decrypt(), GNUNET_SETI_create(), GNUNET_SETU_create(), hash_for_index_cb(), listen_connect(), reconnect(), reconnect_arm(), reconnect_arm_monitor(), reconnect_phone(), reconnect_task(), search_reconnect(), test_nat_punched(), try_connect(), try_reconnect(), and unindex_finish().

Here is the call graph for this function:
Here is the caller graph for this function: