2 This file is part of GNUnet.
3 Copyright (C) 2016 GNUnet e.V.
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
18 SPDX-License-Identifier: AGPL3.0-or-later
22 * @file util/service_new.c
23 * @brief functions related to starting services (redesign)
24 * @author Christian Grothoff
25 * @author Florian Dold
28 #include "gnunet_util_lib.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_resolver_service.h"
40 #define LOG(kind,...) GNUNET_log_from (kind, "util-service", __VA_ARGS__)
42 #define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util-service", syscall)
44 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util-service", syscall, filename)
48 * Information the service tracks per listen operation.
50 struct ServiceListenContext
56 struct ServiceListenContext *next;
61 struct ServiceListenContext *prev;
64 * Service this listen context belongs to.
66 struct GNUNET_SERVICE_Handle *sh;
69 * Socket we are listening on.
71 struct GNUNET_NETWORK_Handle *listen_socket;
74 * Task scheduled to do the listening.
76 struct GNUNET_SCHEDULER_Task *listen_task;
82 * Reasons why we might be suspended.
87 * We are running normally.
89 SUSPEND_STATE_NONE = 0,
92 * Application requested it.
94 SUSPEND_STATE_APP = 1,
97 * OS ran out of file descriptors.
99 SUSPEND_STATE_EMFILE = 2,
102 * Both reasons, APP and EMFILE apply.
104 SUSPEND_STATE_APP_AND_EMFILE = 3,
107 * Suspension because service was permanently shutdown.
109 SUSPEND_STATE_SHUTDOWN = 4
114 * Handle to a service.
116 struct GNUNET_SERVICE_Handle
121 const struct GNUNET_CONFIGURATION_Handle *cfg;
124 * Name of our service.
126 const char *service_name;
129 * Main service-specific task to run.
131 GNUNET_SERVICE_InitCallback service_init_cb;
134 * Function to call when clients connect.
136 GNUNET_SERVICE_ConnectHandler connect_cb;
139 * Function to call when clients disconnect / are disconnected.
141 GNUNET_SERVICE_DisconnectHandler disconnect_cb;
144 * Closure for @e service_init_cb, @e connect_cb, @e disconnect_cb.
149 * DLL of listen sockets used to accept new connections.
151 struct ServiceListenContext *slc_head;
154 * DLL of listen sockets used to accept new connections.
156 struct ServiceListenContext *slc_tail;
159 * Our clients, kept in a DLL.
161 struct GNUNET_SERVICE_Client *clients_head;
164 * Our clients, kept in a DLL.
166 struct GNUNET_SERVICE_Client *clients_tail;
169 * Message handlers to use for all clients.
171 struct GNUNET_MQ_MessageHandler *handlers;
174 * Closure for @e task.
179 * IPv4 addresses that are not allowed to connect.
181 struct GNUNET_STRINGS_IPv4NetworkPolicy *v4_denied;
184 * IPv6 addresses that are not allowed to connect.
186 struct GNUNET_STRINGS_IPv6NetworkPolicy *v6_denied;
189 * IPv4 addresses that are allowed to connect (if not
190 * set, all are allowed).
192 struct GNUNET_STRINGS_IPv4NetworkPolicy *v4_allowed;
195 * IPv6 addresses that are allowed to connect (if not
196 * set, all are allowed).
198 struct GNUNET_STRINGS_IPv6NetworkPolicy *v6_allowed;
201 * Do we require a matching UID for UNIX domain socket connections?
202 * #GNUNET_NO means that the UID does not have to match (however,
203 * @e match_gid may still impose other access control checks).
208 * Do we require a matching GID for UNIX domain socket connections?
209 * Ignored if @e match_uid is #GNUNET_YES. Note that this is about
210 * checking that the client's UID is in our group OR that the
211 * client's GID is our GID. If both "match_gid" and @e match_uid are
212 * #GNUNET_NO, all users on the local system have access.
217 * Are we suspended, and if so, why?
219 enum SuspendReason suspend_state;
224 enum GNUNET_SERVICE_Options options;
227 * If we are daemonizing, this FD is set to the
228 * pipe to the parent. Send '.' if we started
229 * ok, '!' if not. -1 if we are not daemonizing.
231 int ready_confirm_fd;
234 * Overall success/failure of the service start.
239 * If #GNUNET_YES, consider unknown message types an error where the
240 * client is disconnected.
247 * Handle to a client that is connected to a service.
249 struct GNUNET_SERVICE_Client
255 struct GNUNET_SERVICE_Client *next;
260 struct GNUNET_SERVICE_Client *prev;
263 * Service that this client belongs to.
265 struct GNUNET_SERVICE_Handle *sh;
268 * Socket of this client.
270 struct GNUNET_NETWORK_Handle *sock;
273 * Message queue for the client.
275 struct GNUNET_MQ_Handle *mq;
278 * Tokenizer we use for processing incoming data.
280 struct GNUNET_MessageStreamTokenizer *mst;
283 * Task that warns about missing calls to
284 * #GNUNET_SERVICE_client_continue().
286 struct GNUNET_SCHEDULER_Task *warn_task;
289 * Task run to finish dropping the client after the stack has
292 struct GNUNET_SCHEDULER_Task *drop_task;
295 * Task that receives data from the client to
296 * pass it to the handlers.
298 struct GNUNET_SCHEDULER_Task *recv_task;
301 * Task that transmit data to the client.
303 struct GNUNET_SCHEDULER_Task *send_task;
306 * Pointer to the message to be transmitted by @e send_task.
308 const struct GNUNET_MessageHeader *msg;
311 * User context value, value returned from
312 * the connect callback.
317 * Time when we last gave a message from this client
318 * to the application.
320 struct GNUNET_TIME_Absolute warn_start;
323 * Current position in @e msg at which we are transmitting.
328 * Persist the file handle for this client no matter what happens,
329 * force the OS to close once the process actually dies. Should only
330 * be used in special cases!
335 * Is this client a 'monitor' client that should not be counted
336 * when deciding on destroying the server during soft shutdown?
337 * (see also #GNUNET_SERVICE_start)
342 * Are we waiting for the application to call #GNUNET_SERVICE_client_continue()?
347 * Type of last message processed (for warn_no_receive_done).
354 * Check if any of the clients we have left are unrelated to
357 * @param sh service to check clients for
358 * @return #GNUNET_YES if we have non-monitoring clients left
361 have_non_monitor_clients (struct GNUNET_SERVICE_Handle *sh)
363 for (struct GNUNET_SERVICE_Client *client = sh->clients_head;
365 client = client->next)
367 if (client->is_monitor)
376 * Suspend accepting connections from the listen socket temporarily.
377 * Resume activity using #do_resume.
379 * @param sh service to stop accepting connections.
380 * @param sr reason for suspending accepting connections
383 do_suspend (struct GNUNET_SERVICE_Handle *sh,
384 enum SuspendReason sr)
386 struct ServiceListenContext *slc;
388 GNUNET_assert (0 == (sh->suspend_state & sr));
389 sh->suspend_state |= sr;
390 for (slc = sh->slc_head; NULL != slc; slc = slc->next)
392 if (NULL != slc->listen_task)
394 GNUNET_SCHEDULER_cancel (slc->listen_task);
395 slc->listen_task = NULL;
402 * Shutdown task triggered when a service should be terminated.
403 * This considers active clients and the service options to see
404 * how this specific service is to be terminated, and depending
405 * on this proceeds with the shutdown logic.
407 * @param cls our `struct GNUNET_SERVICE_Handle`
410 service_shutdown (void *cls)
412 struct GNUNET_SERVICE_Handle *sh = cls;
416 case GNUNET_SERVICE_OPTION_NONE:
417 GNUNET_SERVICE_shutdown (sh);
419 case GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN:
420 /* This task should never be run if we are using
421 the manual shutdown. */
424 case GNUNET_SERVICE_OPTION_SOFT_SHUTDOWN:
425 if (0 == (sh->suspend_state & SUSPEND_STATE_SHUTDOWN))
427 SUSPEND_STATE_SHUTDOWN);
428 if (GNUNET_NO == have_non_monitor_clients (sh))
429 GNUNET_SERVICE_shutdown (sh);
436 * Check if the given IP address is in the list of IP addresses.
438 * @param list a list of networks
439 * @param add the IP to check (in network byte order)
440 * @return #GNUNET_NO if the IP is not in the list, #GNUNET_YES if it it is
443 check_ipv4_listed (const struct GNUNET_STRINGS_IPv4NetworkPolicy *list,
444 const struct in_addr *add)
451 while ( (0 != list[i].network.s_addr) ||
452 (0 != list[i].netmask.s_addr) )
454 if ((add->s_addr & list[i].netmask.s_addr) ==
455 (list[i].network.s_addr & list[i].netmask.s_addr))
464 * Check if the given IP address is in the list of IP addresses.
466 * @param list a list of networks
467 * @param ip the IP to check (in network byte order)
468 * @return #GNUNET_NO if the IP is not in the list, #GNUNET_YES if it it is
471 check_ipv6_listed (const struct GNUNET_STRINGS_IPv6NetworkPolicy *list,
472 const struct in6_addr *ip)
476 struct in6_addr zero;
482 sizeof (struct in6_addr));
485 while (0 != memcmp (&zero,
487 sizeof (struct in6_addr)))
489 for (j = 0; j < sizeof (struct in6_addr) / sizeof (int); j++)
490 if (((((int *) ip)[j] & ((int *) &list[i].netmask)[j])) !=
491 (((int *) &list[i].network)[j] & ((int *) &list[i].netmask)[j]))
503 * Task run when we are ready to transmit data to the
506 * @param cls the `struct GNUNET_SERVICE_Client *` to send to
511 struct GNUNET_SERVICE_Client *client = cls;
516 LOG (GNUNET_ERROR_TYPE_DEBUG,
517 "service: sending message with type %u\n",
518 ntohs(client->msg->type));
521 client->send_task = NULL;
522 buf = (const char *) client->msg;
523 left = ntohs (client->msg->size) - client->msg_pos;
524 ret = GNUNET_NETWORK_socket_send (client->sock,
525 &buf[client->msg_pos],
527 GNUNET_assert (ret <= (ssize_t) left);
530 LOG (GNUNET_ERROR_TYPE_DEBUG,
532 GNUNET_MQ_inject_error (client->mq,
533 GNUNET_MQ_ERROR_WRITE);
538 if ( (EAGAIN == errno) ||
547 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
549 LOG (GNUNET_ERROR_TYPE_DEBUG,
550 "socket send returned with error code %i",
552 GNUNET_MQ_inject_error (client->mq,
553 GNUNET_MQ_ERROR_WRITE);
557 if (0 == client->msg_pos)
559 GNUNET_MQ_impl_send_in_flight (client->mq);
561 client->msg_pos += ret;
562 if (left > (size_t) ret)
564 GNUNET_assert (NULL == client->drop_task);
566 = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
572 GNUNET_MQ_impl_send_continue (client->mq);
577 * Signature of functions implementing the sending functionality of a
580 * @param mq the message queue
581 * @param msg the message to send
582 * @param impl_state our `struct GNUNET_SERVICE_Client *`
585 service_mq_send (struct GNUNET_MQ_Handle *mq,
586 const struct GNUNET_MessageHeader *msg,
589 struct GNUNET_SERVICE_Client *client = impl_state;
592 if (NULL != client->drop_task)
593 return; /* we're going down right now, do not try to send */
594 GNUNET_assert (NULL == client->send_task);
595 LOG (GNUNET_ERROR_TYPE_DEBUG,
596 "Sending message of type %u and size %u to client\n",
602 = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
610 * Implementation function that cancels the currently sent message.
612 * @param mq message queue
613 * @param impl_state state specific to the implementation
616 service_mq_cancel (struct GNUNET_MQ_Handle *mq,
619 struct GNUNET_SERVICE_Client *client = impl_state;
622 GNUNET_assert (0 == client->msg_pos);
624 GNUNET_SCHEDULER_cancel (client->send_task);
625 client->send_task = NULL;
630 * Generic error handler, called with the appropriate
631 * error code and the same closure specified at the creation of
633 * Not every message queue implementation supports an error handler.
635 * @param cls closure with our `struct GNUNET_SERVICE_Client`
636 * @param error error code
639 service_mq_error_handler (void *cls,
640 enum GNUNET_MQ_Error error)
642 struct GNUNET_SERVICE_Client *client = cls;
643 struct GNUNET_SERVICE_Handle *sh = client->sh;
645 if ( (GNUNET_MQ_ERROR_NO_MATCH == error) &&
646 (GNUNET_NO == sh->require_found) )
648 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
649 "No handler for message of type %u found\n",
650 (unsigned int) client->warn_type);
651 GNUNET_SERVICE_client_continue (client);
652 return; /* ignore error */
654 GNUNET_SERVICE_client_drop (client);
659 * Task run to warn about missing calls to #GNUNET_SERVICE_client_continue().
661 * @param cls our `struct GNUNET_SERVICE_Client *` to process more requests from
664 warn_no_client_continue (void *cls)
666 struct GNUNET_SERVICE_Client *client = cls;
668 GNUNET_break (0 != client->warn_type); /* type should never be 0 here, as we don't use 0 */
670 = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
671 &warn_no_client_continue,
673 LOG (GNUNET_ERROR_TYPE_WARNING,
674 _("Processing code for message of type %u did not call `GNUNET_SERVICE_client_continue' after %s\n"),
675 (unsigned int) client->warn_type,
676 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (client->warn_start),
682 * Functions with this signature are called whenever a
683 * complete message is received by the tokenizer for a client.
685 * Do not call #GNUNET_MST_destroy() from within
686 * the scope of this callback.
688 * @param cls closure with the `struct GNUNET_SERVICE_Client *`
689 * @param message the actual message
690 * @return #GNUNET_OK on success, #GNUNET_SYSERR if the client was dropped
693 service_client_mst_cb (void *cls,
694 const struct GNUNET_MessageHeader *message)
696 struct GNUNET_SERVICE_Client *client = cls;
698 LOG (GNUNET_ERROR_TYPE_DEBUG,
699 "Received message of type %u and size %u from client\n",
700 ntohs (message->type),
701 ntohs (message->size));
702 GNUNET_assert (GNUNET_NO == client->needs_continue);
703 client->needs_continue = GNUNET_YES;
704 client->warn_type = ntohs (message->type);
705 client->warn_start = GNUNET_TIME_absolute_get ();
706 GNUNET_assert (NULL == client->warn_task);
708 = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
709 &warn_no_client_continue,
711 GNUNET_MQ_inject_message (client->mq,
713 if (NULL != client->drop_task)
714 return GNUNET_SYSERR;
720 * A client sent us data. Receive and process it. If we are done,
721 * reschedule this task.
723 * @param cls the `struct GNUNET_SERVICE_Client` that sent us data.
726 service_client_recv (void *cls)
728 struct GNUNET_SERVICE_Client *client = cls;
731 client->recv_task = NULL;
732 ret = GNUNET_MST_read (client->mst,
736 if (GNUNET_SYSERR == ret)
738 /* client closed connection (or IO error) */
739 if (NULL == client->drop_task)
741 GNUNET_assert (GNUNET_NO == client->needs_continue);
742 GNUNET_SERVICE_client_drop (client);
746 if (GNUNET_NO == ret)
747 return; /* more messages in buffer, wait for application
748 to be done processing */
749 GNUNET_assert (GNUNET_OK == ret);
750 if (GNUNET_YES == client->needs_continue)
752 if (NULL != client->recv_task)
754 /* MST needs more data, re-schedule read job */
756 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
758 &service_client_recv,
764 * We have successfully accepted a connection from a client. Now
765 * setup the client (with the scheduler) and tell the application.
767 * @param sh service that accepted the client
768 * @param sock socket associated with the client
771 start_client (struct GNUNET_SERVICE_Handle *sh,
772 struct GNUNET_NETWORK_Handle *csock)
774 struct GNUNET_SERVICE_Client *client;
776 client = GNUNET_new (struct GNUNET_SERVICE_Client);
777 GNUNET_CONTAINER_DLL_insert (sh->clients_head,
781 client->sock = csock;
782 client->mq = GNUNET_MQ_queue_for_callbacks (&service_mq_send,
787 &service_mq_error_handler,
789 client->mst = GNUNET_MST_create (&service_client_mst_cb,
791 if (NULL != sh->connect_cb)
792 client->user_context = sh->connect_cb (sh->cb_cls,
795 GNUNET_MQ_set_handlers_closure (client->mq,
796 client->user_context);
798 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
800 &service_client_recv,
806 * We have a client. Accept the incoming socket(s) (and reschedule
809 * @param cls the `struct ServiceListenContext` of the ready listen socket
812 accept_client (void *cls)
814 struct ServiceListenContext *slc = cls;
815 struct GNUNET_SERVICE_Handle *sh = slc->sh;
817 slc->listen_task = NULL;
820 struct GNUNET_NETWORK_Handle *sock;
821 const struct sockaddr_in *v4;
822 const struct sockaddr_in6 *v6;
823 struct sockaddr_storage sa;
827 addrlen = sizeof (sa);
828 sock = GNUNET_NETWORK_socket_accept (slc->listen_socket,
829 (struct sockaddr *) &sa,
835 SUSPEND_STATE_EMFILE);
836 else if (EAGAIN != errno)
837 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
841 switch (sa.ss_family)
844 GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
845 v4 = (const struct sockaddr_in *) &sa;
846 ok = ( ( (NULL == sh->v4_allowed) ||
847 (check_ipv4_listed (sh->v4_allowed,
849 ( (NULL == sh->v4_denied) ||
850 (! check_ipv4_listed (sh->v4_denied,
854 GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
855 v6 = (const struct sockaddr_in6 *) &sa;
856 ok = ( ( (NULL == sh->v6_allowed) ||
857 (check_ipv6_listed (sh->v6_allowed,
859 ( (NULL == sh->v6_denied) ||
860 (! check_ipv6_listed (sh->v6_denied,
861 &v6->sin6_addr)) ) );
865 ok = GNUNET_OK; /* controlled using file-system ACL now */
869 LOG (GNUNET_ERROR_TYPE_WARNING,
870 _("Unknown address family %d\n"),
876 LOG (GNUNET_ERROR_TYPE_DEBUG,
877 "Service rejected incoming connection from %s due to policy.\n",
878 GNUNET_a2s ((const struct sockaddr *) &sa,
880 GNUNET_break (GNUNET_OK ==
881 GNUNET_NETWORK_socket_close (sock));
884 LOG (GNUNET_ERROR_TYPE_DEBUG,
885 "Service accepted incoming connection from %s.\n",
886 GNUNET_a2s ((const struct sockaddr *) &sa,
888 start_client (slc->sh,
891 if (0 != sh->suspend_state)
894 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
902 * Resume accepting connections from the listen socket.
904 * @param sh service to resume accepting connections.
905 * @param sr reason that is no longer causing the suspension,
906 * or #SUSPEND_STATE_NONE on first startup
909 do_resume (struct GNUNET_SERVICE_Handle *sh,
910 enum SuspendReason sr)
912 struct ServiceListenContext *slc;
914 GNUNET_assert ( (SUSPEND_STATE_NONE == sr) ||
915 (0 != (sh->suspend_state & sr)) );
916 sh->suspend_state -= sr;
917 if (SUSPEND_STATE_NONE != sh->suspend_state)
919 for (slc = sh->slc_head; NULL != slc; slc = slc->next)
921 GNUNET_assert (NULL == slc->listen_task);
923 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
932 * First task run by any service. Initializes our shutdown task,
933 * starts the listening operation on our listen sockets and launches
934 * the custom logic of the application service.
936 * @param cls our `struct GNUNET_SERVICE_Handle`
939 service_main (void *cls)
941 struct GNUNET_SERVICE_Handle *sh = cls;
943 if (GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN != sh->options)
944 GNUNET_SCHEDULER_add_shutdown (&service_shutdown,
949 if (-1 != sh->ready_confirm_fd)
951 GNUNET_break (1 == WRITE (sh->ready_confirm_fd, ".", 1));
952 GNUNET_break (0 == CLOSE (sh->ready_confirm_fd));
953 sh->ready_confirm_fd = -1;
956 if (NULL != sh->service_init_cb)
957 sh->service_init_cb (sh->cb_cls,
964 * Parse an IPv4 access control list.
966 * @param ret location where to write the ACL (set)
967 * @param sh service context to use to get the configuration
968 * @param option name of the ACL option to parse
969 * @return #GNUNET_SYSERR on parse error, #GNUNET_OK on success (including
973 process_acl4 (struct GNUNET_STRINGS_IPv4NetworkPolicy **ret,
974 struct GNUNET_SERVICE_Handle *sh,
979 if (! GNUNET_CONFIGURATION_have_value (sh->cfg,
986 GNUNET_break (GNUNET_OK ==
987 GNUNET_CONFIGURATION_get_value_string (sh->cfg,
991 if (NULL == (*ret = GNUNET_STRINGS_parse_ipv4_policy (opt)))
993 LOG (GNUNET_ERROR_TYPE_WARNING,
994 _("Could not parse IPv4 network specification `%s' for `%s:%s'\n"),
999 return GNUNET_SYSERR;
1007 * Parse an IPv6 access control list.
1009 * @param ret location where to write the ACL (set)
1010 * @param sh service context to use to get the configuration
1011 * @param option name of the ACL option to parse
1012 * @return #GNUNET_SYSERR on parse error, #GNUNET_OK on success (including
1013 * no ACL configured)
1016 process_acl6 (struct GNUNET_STRINGS_IPv6NetworkPolicy **ret,
1017 struct GNUNET_SERVICE_Handle *sh,
1022 if (! GNUNET_CONFIGURATION_have_value (sh->cfg,
1029 GNUNET_break (GNUNET_OK ==
1030 GNUNET_CONFIGURATION_get_value_string (sh->cfg,
1034 if (NULL == (*ret = GNUNET_STRINGS_parse_ipv6_policy (opt)))
1036 LOG (GNUNET_ERROR_TYPE_WARNING,
1037 _("Could not parse IPv6 network specification `%s' for `%s:%s'\n"),
1042 return GNUNET_SYSERR;
1050 * Add the given UNIX domain path as an address to the
1051 * list (as the first entry).
1053 * @param saddrs array to update
1054 * @param saddrlens where to store the address length
1055 * @param unixpath path to add
1056 * @param abstract #GNUNET_YES to add an abstract UNIX domain socket. This
1057 * parameter is ignore on systems other than LINUX
1060 add_unixpath (struct sockaddr **saddrs,
1061 socklen_t *saddrlens,
1062 const char *unixpath,
1066 struct sockaddr_un *un;
1068 un = GNUNET_new (struct sockaddr_un);
1069 un->sun_family = AF_UNIX;
1070 strncpy (un->sun_path,
1072 sizeof (un->sun_path) - 1);
1074 if (GNUNET_YES == abstract)
1075 un->sun_path[0] = '\0';
1077 #if HAVE_SOCKADDR_UN_SUN_LEN
1078 un->sun_len = (u_char) sizeof (struct sockaddr_un);
1080 *saddrs = (struct sockaddr *) un;
1081 *saddrlens = sizeof (struct sockaddr_un);
1083 /* this function should never be called
1084 * unless AF_UNIX is defined! */
1091 * Get the list of addresses that a server for the given service
1094 * @param service_name name of the service
1095 * @param cfg configuration (which specifies the addresses)
1096 * @param addrs set (call by reference) to an array of pointers to the
1097 * addresses the server should bind to and listen on; the
1098 * array will be NULL-terminated (on success)
1099 * @param addr_lens set (call by reference) to an array of the lengths
1100 * of the respective `struct sockaddr` struct in the @a addrs
1101 * array (on success)
1102 * @return number of addresses found on success,
1103 * #GNUNET_SYSERR if the configuration
1104 * did not specify reasonable finding information or
1105 * if it specified a hostname that could not be resolved;
1106 * #GNUNET_NO if the number of addresses configured is
1107 * zero (in this case, `*addrs` and `*addr_lens` will be
1111 get_server_addresses (const char *service_name,
1112 const struct GNUNET_CONFIGURATION_Handle *cfg,
1113 struct sockaddr ***addrs,
1114 socklen_t **addr_lens)
1117 struct GNUNET_NETWORK_Handle *desc;
1118 unsigned long long port;
1120 struct addrinfo hints;
1121 struct addrinfo *res;
1122 struct addrinfo *pos;
1123 struct addrinfo *next;
1128 struct sockaddr **saddrs;
1129 socklen_t *saddrlens;
1135 if (GNUNET_CONFIGURATION_have_value (cfg,
1139 if (GNUNET_SYSERR ==
1141 GNUNET_CONFIGURATION_get_value_yesno (cfg,
1144 return GNUNET_SYSERR;
1147 disablev6 = GNUNET_NO;
1151 /* probe IPv6 support */
1152 desc = GNUNET_NETWORK_socket_create (PF_INET6,
1157 if ( (ENOBUFS == errno) ||
1158 (ENOMEM == errno) ||
1159 (ENFILE == errno) ||
1162 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1164 return GNUNET_SYSERR;
1166 LOG (GNUNET_ERROR_TYPE_INFO,
1167 _("Disabling IPv6 support for service `%s', failed to create IPv6 socket: %s\n"),
1170 disablev6 = GNUNET_YES;
1174 GNUNET_break (GNUNET_OK ==
1175 GNUNET_NETWORK_socket_close (desc));
1181 if (GNUNET_CONFIGURATION_have_value (cfg,
1186 GNUNET_CONFIGURATION_get_value_number (cfg,
1191 LOG (GNUNET_ERROR_TYPE_ERROR,
1192 _("Require valid port number for service `%s' in configuration!\n"),
1197 LOG (GNUNET_ERROR_TYPE_ERROR,
1198 _("Require valid port number for service `%s' in configuration!\n"),
1200 return GNUNET_SYSERR;
1204 if (GNUNET_CONFIGURATION_have_value (cfg,
1208 GNUNET_break (GNUNET_OK ==
1209 GNUNET_CONFIGURATION_get_value_string (cfg,
1218 abstract = GNUNET_NO;
1221 GNUNET_CONFIGURATION_have_value (cfg,
1225 GNUNET_CONFIGURATION_get_value_filename (cfg,
1229 (0 < strlen (unixpath)))
1231 /* probe UNIX support */
1232 struct sockaddr_un s_un;
1234 if (strlen (unixpath) >= sizeof (s_un.sun_path))
1236 LOG (GNUNET_ERROR_TYPE_WARNING,
1237 _("UNIXPATH `%s' too long, maximum length is %llu\n"),
1239 (unsigned long long) sizeof (s_un.sun_path));
1240 unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
1241 LOG (GNUNET_ERROR_TYPE_INFO,
1242 _("Using `%s' instead\n"),
1246 abstract = GNUNET_CONFIGURATION_get_value_yesno (cfg,
1248 "USE_ABSTRACT_SOCKETS");
1249 if (GNUNET_SYSERR == abstract)
1250 abstract = GNUNET_NO;
1252 if ( (GNUNET_YES != abstract) &&
1254 GNUNET_DISK_directory_create_for_file (unixpath)) )
1255 GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
1259 if (NULL != unixpath)
1261 desc = GNUNET_NETWORK_socket_create (AF_UNIX,
1266 if ((ENOBUFS == errno) ||
1267 (ENOMEM == errno) ||
1268 (ENFILE == errno) ||
1271 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1273 GNUNET_free_non_null (hostname);
1274 GNUNET_free (unixpath);
1275 return GNUNET_SYSERR;
1277 LOG (GNUNET_ERROR_TYPE_INFO,
1278 _("Disabling UNIX domain socket support for service `%s', failed to create UNIX domain socket: %s\n"),
1281 GNUNET_free (unixpath);
1286 GNUNET_break (GNUNET_OK ==
1287 GNUNET_NETWORK_socket_close (desc));
1293 if ((0 == port) && (NULL == unixpath))
1295 LOG (GNUNET_ERROR_TYPE_ERROR,
1296 _("Have neither PORT nor UNIXPATH for service `%s', but one is required\n"),
1298 GNUNET_free_non_null (hostname);
1299 return GNUNET_SYSERR;
1303 saddrs = GNUNET_new_array (2,
1305 saddrlens = GNUNET_new_array (2,
1307 add_unixpath (saddrs,
1311 GNUNET_free_non_null (unixpath);
1312 GNUNET_free_non_null (hostname);
1314 *addr_lens = saddrlens;
1318 if (NULL != hostname)
1320 LOG (GNUNET_ERROR_TYPE_DEBUG,
1321 "Resolving `%s' since that is where `%s' will bind to.\n",
1326 sizeof (struct addrinfo));
1328 hints.ai_family = AF_INET;
1329 hints.ai_protocol = IPPROTO_TCP;
1330 if ((0 != (ret = getaddrinfo (hostname,
1336 LOG (GNUNET_ERROR_TYPE_ERROR,
1337 _("Failed to resolve `%s': %s\n"),
1339 gai_strerror (ret));
1340 GNUNET_free (hostname);
1341 GNUNET_free_non_null (unixpath);
1342 return GNUNET_SYSERR;
1346 while (NULL != (pos = next))
1348 next = pos->ai_next;
1350 (pos->ai_family == AF_INET6) )
1356 LOG (GNUNET_ERROR_TYPE_ERROR,
1357 _("Failed to find %saddress for `%s'.\n"),
1358 disablev6 ? "IPv4 " : "",
1361 GNUNET_free (hostname);
1362 GNUNET_free_non_null (unixpath);
1363 return GNUNET_SYSERR;
1366 if (NULL != unixpath)
1368 saddrs = GNUNET_new_array (resi + 1,
1370 saddrlens = GNUNET_new_array (resi + 1,
1373 if (NULL != unixpath)
1375 add_unixpath (saddrs,
1382 while (NULL != (pos = next))
1384 next = pos->ai_next;
1386 (AF_INET6 == pos->ai_family) )
1388 if ( (IPPROTO_TCP != pos->ai_protocol) &&
1389 (0 != pos->ai_protocol) )
1390 continue; /* not TCP */
1391 if ( (SOCK_STREAM != pos->ai_socktype) &&
1392 (0 != pos->ai_socktype) )
1393 continue; /* huh? */
1394 LOG (GNUNET_ERROR_TYPE_DEBUG,
1395 "Service `%s' will bind to `%s'\n",
1397 GNUNET_a2s (pos->ai_addr,
1399 if (AF_INET == pos->ai_family)
1401 GNUNET_assert (sizeof (struct sockaddr_in) == pos->ai_addrlen);
1402 saddrlens[i] = pos->ai_addrlen;
1403 saddrs[i] = GNUNET_malloc (saddrlens[i]);
1404 GNUNET_memcpy (saddrs[i],
1407 ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1411 GNUNET_assert (AF_INET6 == pos->ai_family);
1412 GNUNET_assert (sizeof (struct sockaddr_in6) == pos->ai_addrlen);
1413 saddrlens[i] = pos->ai_addrlen;
1414 saddrs[i] = GNUNET_malloc (saddrlens[i]);
1415 GNUNET_memcpy (saddrs[i],
1418 ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1422 GNUNET_free (hostname);
1428 /* will bind against everything, just set port */
1433 if (NULL != unixpath)
1436 saddrs = GNUNET_new_array (resi + 1,
1438 saddrlens = GNUNET_new_array (resi + 1,
1440 if (NULL != unixpath)
1442 add_unixpath (saddrs,
1448 saddrlens[i] = sizeof (struct sockaddr_in);
1449 saddrs[i] = GNUNET_malloc (saddrlens[i]);
1450 #if HAVE_SOCKADDR_IN_SIN_LEN
1451 ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
1453 ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1454 ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1460 if (NULL != unixpath)
1462 saddrs = GNUNET_new_array (resi + 1,
1464 saddrlens = GNUNET_new_array (resi + 1,
1467 if (NULL != unixpath)
1469 add_unixpath (saddrs,
1475 saddrlens[i] = sizeof (struct sockaddr_in6);
1476 saddrs[i] = GNUNET_malloc (saddrlens[i]);
1477 #if HAVE_SOCKADDR_IN_SIN_LEN
1478 ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
1480 ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
1481 ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1483 saddrlens[i] = sizeof (struct sockaddr_in);
1484 saddrs[i] = GNUNET_malloc (saddrlens[i]);
1485 #if HAVE_SOCKADDR_IN_SIN_LEN
1486 ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
1488 ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1489 ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1492 GNUNET_free_non_null (unixpath);
1494 *addr_lens = saddrlens;
1501 * Read listen sockets from the parent process (ARM).
1503 * @param sh service context to initialize
1504 * @return NULL-terminated array of sockets on success,
1505 * NULL if not ok (must bind yourself)
1507 static struct GNUNET_NETWORK_Handle **
1508 receive_sockets_from_parent (struct GNUNET_SERVICE_Handle *sh)
1510 static struct GNUNET_NETWORK_Handle **lsocks;
1511 const char *env_buf;
1517 env_buf = getenv ("GNUNET_OS_READ_LSOCKS");
1518 if ( (NULL == env_buf) ||
1519 (strlen (env_buf) <= 0) )
1521 /* Using W32 API directly here, because this pipe will
1522 * never be used outside of this function, and it's just too much of a bother
1523 * to create a GNUnet API that boxes a HANDLE (the way it is done with socks)
1525 lsocks_pipe = (HANDLE) strtoul (env_buf,
1528 if ( (0 == lsocks_pipe) ||
1529 (INVALID_HANDLE_VALUE == lsocks_pipe))
1538 ret = ReadFile (lsocks_pipe,
1544 (sizeof (count) != rd) ||
1547 lsocks = GNUNET_new_array (count + 1,
1548 struct GNUNET_NETWORK_Handle *);
1551 for (i = 0; i < count; i++)
1553 WSAPROTOCOL_INFOA pi;
1557 ret = ReadFile (lsocks_pipe,
1563 (sizeof (size) != rd) ||
1564 (sizeof (pi) != size) )
1566 ret = ReadFile (lsocks_pipe,
1572 (sizeof (pi) != rd))
1574 s = WSASocketA (pi.iAddressFamily,
1579 WSA_FLAG_OVERLAPPED);
1580 lsocks[i] = GNUNET_NETWORK_socket_box_native (s);
1581 if (NULL == lsocks[i])
1583 else if (i == count - 1)
1588 lsocks[count] = NULL;
1592 CloseHandle (lsocks_pipe);
1596 LOG (GNUNET_ERROR_TYPE_ERROR,
1597 _("Could not access a pre-bound socket, will try to bind myself\n"));
1598 for (i = 0; (i < count) && (NULL != lsocks[i]); i++)
1599 GNUNET_break (GNUNET_OK ==
1600 GNUNET_NETWORK_socket_close (lsocks[i]));
1601 GNUNET_free (lsocks);
1610 * Create and initialize a listen socket for the server.
1612 * @param server_addr address to listen on
1613 * @param socklen length of @a server_addr
1614 * @return NULL on error, otherwise the listen socket
1616 static struct GNUNET_NETWORK_Handle *
1617 open_listen_socket (const struct sockaddr *server_addr,
1620 struct GNUNET_NETWORK_Handle *sock;
1624 switch (server_addr->sa_family)
1627 port = ntohs (((const struct sockaddr_in *) server_addr)->sin_port);
1630 port = ntohs (((const struct sockaddr_in6 *) server_addr)->sin6_port);
1640 sock = GNUNET_NETWORK_socket_create (server_addr->sa_family,
1645 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1650 /* bind the socket */
1651 if (GNUNET_OK != GNUNET_NETWORK_socket_bind (sock,
1656 if (EADDRINUSE != errno)
1658 /* we don't log 'EADDRINUSE' here since an IPv4 bind may
1659 * fail if we already took the port on IPv6; if both IPv4 and
1660 * IPv6 binds fail, then our caller will log using the
1661 * errno preserved in 'eno' */
1662 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1665 LOG (GNUNET_ERROR_TYPE_ERROR,
1666 _("`%s' failed for port %d (%s).\n"),
1669 (AF_INET == server_addr->sa_family) ? "IPv4" : "IPv6");
1675 LOG (GNUNET_ERROR_TYPE_WARNING,
1676 _("`%s' failed for port %d (%s): address already in use\n"),
1678 (AF_INET == server_addr->sa_family) ? "IPv4" : "IPv6");
1679 else if (AF_UNIX == server_addr->sa_family)
1681 LOG (GNUNET_ERROR_TYPE_WARNING,
1682 _("`%s' failed for `%s': address already in use\n"),
1684 GNUNET_a2s (server_addr, socklen));
1687 GNUNET_break (GNUNET_OK ==
1688 GNUNET_NETWORK_socket_close (sock));
1692 if (GNUNET_OK != GNUNET_NETWORK_socket_listen (sock,
1695 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1697 GNUNET_break (GNUNET_OK ==
1698 GNUNET_NETWORK_socket_close (sock));
1703 LOG (GNUNET_ERROR_TYPE_DEBUG,
1704 "Server starts to listen on port %u.\n",
1711 * Setup service handle
1713 * Configuration may specify:
1714 * - PORT (where to bind to for TCP)
1715 * - UNIXPATH (where to bind to for UNIX domain sockets)
1716 * - DISABLEV6 (disable support for IPv6, otherwise we use dual-stack)
1717 * - BINDTO (hostname or IP address to bind to, otherwise we take everything)
1718 * - ACCEPT_FROM (only allow connections from specified IPv4 subnets)
1719 * - ACCEPT_FROM6 (only allow connections from specified IPv6 subnets)
1720 * - REJECT_FROM (disallow allow connections from specified IPv4 subnets)
1721 * - REJECT_FROM6 (disallow allow connections from specified IPv6 subnets)
1723 * @param sh service context to initialize
1724 * @return #GNUNET_OK if configuration succeeded
1727 setup_service (struct GNUNET_SERVICE_Handle *sh)
1730 struct GNUNET_NETWORK_Handle **lsocks;
1738 if (GNUNET_CONFIGURATION_have_value
1743 if (GNUNET_SYSERR ==
1745 GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1749 LOG (GNUNET_ERROR_TYPE_ERROR,
1750 _("Specified value for `%s' of service `%s' is invalid\n"),
1753 return GNUNET_SYSERR;
1757 tolerant = GNUNET_NO;
1762 if ( (NULL != (nfds = getenv ("LISTEN_FDS"))) &&
1768 (cnt < FD_SETSIZE) &&
1769 (cnt + 4 < FD_SETSIZE) )
1771 lsocks = GNUNET_new_array (cnt + 1,
1772 struct GNUNET_NETWORK_Handle *);
1775 flags = fcntl (3 + cnt,
1778 (0 != (flags & FD_CLOEXEC)) ||
1780 (lsocks[cnt] = GNUNET_NETWORK_socket_box_native (3 + cnt))))
1782 LOG (GNUNET_ERROR_TYPE_ERROR,
1783 _("Could not access pre-bound socket %u, will try to bind myself\n"),
1784 (unsigned int) 3 + cnt);
1786 while (NULL != lsocks[cnt])
1787 GNUNET_break (GNUNET_OK ==
1788 GNUNET_NETWORK_socket_close (lsocks[cnt++]));
1789 GNUNET_free (lsocks);
1794 unsetenv ("LISTEN_FDS");
1797 if (NULL != getenv ("GNUNET_OS_READ_LSOCKS"))
1799 lsocks = receive_sockets_from_parent (sh);
1800 putenv ("GNUNET_OS_READ_LSOCKS=");
1806 /* listen only on inherited sockets if we have any */
1807 struct GNUNET_NETWORK_Handle **ls;
1809 for (ls = lsocks; NULL != *ls; ls++)
1811 struct ServiceListenContext *slc;
1813 slc = GNUNET_new (struct ServiceListenContext);
1815 slc->listen_socket = *ls;
1816 GNUNET_CONTAINER_DLL_insert (sh->slc_head,
1820 GNUNET_free (lsocks);
1824 struct sockaddr **addrs;
1825 socklen_t *addrlens;
1828 num = get_server_addresses (sh->service_name,
1832 if (GNUNET_SYSERR == num)
1833 return GNUNET_SYSERR;
1835 for (int i = 0; i < num; i++)
1837 struct ServiceListenContext *slc;
1839 slc = GNUNET_new (struct ServiceListenContext);
1841 slc->listen_socket = open_listen_socket (addrs[i],
1843 GNUNET_free (addrs[i]);
1844 if (NULL == slc->listen_socket)
1846 GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
1851 GNUNET_CONTAINER_DLL_insert (sh->slc_head,
1855 GNUNET_free_non_null (addrlens);
1856 GNUNET_free_non_null (addrs);
1858 (NULL == sh->slc_head) )
1860 /* All attempts to bind failed, hard failure */
1861 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1862 _("Could not bind to any of the ports I was supposed to, refusing to run!\n"));
1863 return GNUNET_SYSERR;
1867 sh->require_found = tolerant ? GNUNET_NO : GNUNET_YES;
1869 = GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1873 = GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1876 process_acl4 (&sh->v4_denied,
1879 process_acl4 (&sh->v4_allowed,
1882 process_acl6 (&sh->v6_denied,
1885 process_acl6 (&sh->v6_allowed,
1893 * Get the name of the user that'll be used
1894 * to provide the service.
1896 * @param sh service context
1897 * @return value of the 'USERNAME' option
1900 get_user_name (struct GNUNET_SERVICE_Handle *sh)
1905 GNUNET_CONFIGURATION_get_value_filename (sh->cfg,
1917 * @param sh service context
1918 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1921 set_user_id (struct GNUNET_SERVICE_Handle *sh)
1925 if (NULL == (user = get_user_name (sh)))
1926 return GNUNET_OK; /* keep */
1931 pws = getpwnam (user);
1934 LOG (GNUNET_ERROR_TYPE_ERROR,
1935 _("Cannot obtain information about user `%s': %s\n"),
1937 errno == 0 ? _("No such user") : STRERROR (errno));
1939 return GNUNET_SYSERR;
1941 if ( (0 != setgid (pws->pw_gid)) ||
1942 (0 != setegid (pws->pw_gid)) ||
1944 (0 != initgroups (user,
1947 (0 != setuid (pws->pw_uid)) ||
1948 (0 != seteuid (pws->pw_uid)))
1950 if ((0 != setregid (pws->pw_gid,
1952 (0 != setreuid (pws->pw_uid,
1955 LOG (GNUNET_ERROR_TYPE_ERROR,
1956 _("Cannot change user/group to `%s': %s\n"),
1960 return GNUNET_SYSERR;
1970 * Get the name of the file where we will
1971 * write the PID of the service.
1973 * @param sh service context
1974 * @return name of the file for the process ID
1977 get_pid_file_name (struct GNUNET_SERVICE_Handle *sh)
1982 GNUNET_CONFIGURATION_get_value_filename (sh->cfg,
1992 * Delete the PID file that was created by our parent.
1994 * @param sh service context
1997 pid_file_delete (struct GNUNET_SERVICE_Handle *sh)
1999 char *pif = get_pid_file_name (sh);
2002 return; /* no PID file */
2003 if (0 != UNLINK (pif))
2004 LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING,
2012 * Detach from terminal.
2014 * @param sh service context
2015 * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
2018 detach_terminal (struct GNUNET_SERVICE_Handle *sh)
2025 if (0 != PIPE (filedes))
2027 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
2029 return GNUNET_SYSERR;
2034 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
2036 return GNUNET_SYSERR;
2043 GNUNET_break (0 == CLOSE (filedes[1]));
2045 if (1 != READ (filedes[0],
2048 LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING,
2056 LOG (GNUNET_ERROR_TYPE_INFO,
2057 _("Service process failed to initialize\n"));
2060 LOG (GNUNET_ERROR_TYPE_INFO,
2061 _("Service process could not initialize server function\n"));
2064 LOG (GNUNET_ERROR_TYPE_INFO,
2065 _("Service process failed to report status\n"));
2068 exit (1); /* child reported error */
2070 GNUNET_break (0 == CLOSE (0));
2071 GNUNET_break (0 == CLOSE (1));
2072 GNUNET_break (0 == CLOSE (filedes[0]));
2073 nullfd = OPEN ("/dev/null",
2076 return GNUNET_SYSERR;
2077 /* set stdin/stdout to /dev/null */
2078 if ( (dup2 (nullfd, 0) < 0) ||
2079 (dup2 (nullfd, 1) < 0) )
2081 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
2083 (void) CLOSE (nullfd);
2084 return GNUNET_SYSERR;
2086 (void) CLOSE (nullfd);
2087 /* Detach from controlling terminal */
2090 LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
2092 sh->ready_confirm_fd = filedes[1];
2094 /* FIXME: we probably need to do something else
2095 * elsewhere in order to fork the process itself... */
2103 * Tear down the service, closing the listen sockets and
2106 * @param sh handle to the service to tear down.
2109 teardown_service (struct GNUNET_SERVICE_Handle *sh)
2111 struct ServiceListenContext *slc;
2113 GNUNET_free_non_null (sh->v4_denied);
2114 GNUNET_free_non_null (sh->v6_denied);
2115 GNUNET_free_non_null (sh->v4_allowed);
2116 GNUNET_free_non_null (sh->v6_allowed);
2117 while (NULL != (slc = sh->slc_head))
2119 GNUNET_CONTAINER_DLL_remove (sh->slc_head,
2122 if (NULL != slc->listen_task)
2123 GNUNET_SCHEDULER_cancel (slc->listen_task);
2124 GNUNET_break (GNUNET_OK ==
2125 GNUNET_NETWORK_socket_close (slc->listen_socket));
2132 * Function to return link to AGPL source upon request.
2134 * @param cls closure with the identification of the client
2135 * @param msg AGPL request
2138 return_agpl (void *cls,
2139 const struct GNUNET_MessageHeader *msg)
2141 struct GNUNET_SERVICE_Client *client = cls;
2142 struct GNUNET_MQ_Handle *mq;
2143 struct GNUNET_MQ_Envelope *env;
2144 struct GNUNET_MessageHeader *res;
2148 slen = strlen (GNUNET_AGPL_URL) + 1;
2149 env = GNUNET_MQ_msg_extra (res,
2150 GNUNET_MESSAGE_TYPE_RESPONSE_AGPL,
2155 mq = GNUNET_SERVICE_client_get_mq (client);
2158 GNUNET_SERVICE_client_continue (client);
2163 * Low-level function to start a service if the scheduler
2164 * is already running. Should only be used directly in
2167 * The function will launch the service with the name @a service_name
2168 * using the @a service_options to configure its shutdown
2169 * behavior. When clients connect or disconnect, the respective
2170 * @a connect_cb or @a disconnect_cb functions will be called. For
2171 * messages received from the clients, the respective @a handlers will
2172 * be invoked; for the closure of the handlers we use the return value
2173 * from the @a connect_cb invocation of the respective client.
2175 * Each handler MUST call #GNUNET_SERVICE_client_continue() after each
2176 * message to receive further messages from this client. If
2177 * #GNUNET_SERVICE_client_continue() is not called within a short
2178 * time, a warning will be logged. If delays are expected, services
2179 * should call #GNUNET_SERVICE_client_disable_continue_warning() to
2180 * disable the warning.
2182 * Clients sending invalid messages (based on @a handlers) will be
2183 * dropped. Additionally, clients can be dropped at any time using
2184 * #GNUNET_SERVICE_client_drop().
2186 * The service must be stopped using #GNUNET_SERVICE_stop().
2188 * @param service_name name of the service to run
2189 * @param cfg configuration to use
2190 * @param connect_cb function to call whenever a client connects
2191 * @param disconnect_cb function to call whenever a client disconnects
2192 * @param cls closure argument for @a connect_cb and @a disconnect_cb
2193 * @param handlers NULL-terminated array of message handlers for the service,
2194 * the closure will be set to the value returned by
2195 * the @a connect_cb for the respective connection
2196 * @return NULL on error
2198 struct GNUNET_SERVICE_Handle *
2199 GNUNET_SERVICE_start (const char *service_name,
2200 const struct GNUNET_CONFIGURATION_Handle *cfg,
2201 GNUNET_SERVICE_ConnectHandler connect_cb,
2202 GNUNET_SERVICE_DisconnectHandler disconnect_cb,
2204 const struct GNUNET_MQ_MessageHandler *handlers)
2206 struct GNUNET_SERVICE_Handle *sh;
2208 sh = GNUNET_new (struct GNUNET_SERVICE_Handle);
2209 sh->service_name = service_name;
2211 sh->connect_cb = connect_cb;
2212 sh->disconnect_cb = disconnect_cb;
2214 sh->handlers = GNUNET_MQ_copy_handlers2 (handlers,
2217 if (GNUNET_OK != setup_service (sh))
2219 GNUNET_free_non_null (sh->handlers);
2224 SUSPEND_STATE_NONE);
2230 * Stops a service that was started with #GNUNET_SERVICE_start().
2232 * @param srv service to stop
2235 GNUNET_SERVICE_stop (struct GNUNET_SERVICE_Handle *srv)
2237 struct GNUNET_SERVICE_Client *client;
2239 GNUNET_SERVICE_suspend (srv);
2240 while (NULL != (client = srv->clients_head))
2241 GNUNET_SERVICE_client_drop (client);
2242 teardown_service (srv);
2243 GNUNET_free_non_null (srv->handlers);
2249 * Creates the "main" function for a GNUnet service. You
2250 * should almost always use the #GNUNET_SERVICE_MAIN macro
2251 * instead of calling this function directly (except
2252 * for ARM, which should call this function directly).
2254 * The function will launch the service with the name @a service_name
2255 * using the @a service_options to configure its shutdown
2256 * behavior. Once the service is ready, the @a init_cb will be called
2257 * for service-specific initialization. @a init_cb will be given the
2258 * service handler which can be used to control the service's
2259 * availability. When clients connect or disconnect, the respective
2260 * @a connect_cb or @a disconnect_cb functions will be called. For
2261 * messages received from the clients, the respective @a handlers will
2262 * be invoked; for the closure of the handlers we use the return value
2263 * from the @a connect_cb invocation of the respective client.
2265 * Each handler MUST call #GNUNET_SERVICE_client_continue() after each
2266 * message to receive further messages from this client. If
2267 * #GNUNET_SERVICE_client_continue() is not called within a short
2268 * time, a warning will be logged. If delays are expected, services
2269 * should call #GNUNET_SERVICE_client_disable_continue_warning() to
2270 * disable the warning.
2272 * Clients sending invalid messages (based on @a handlers) will be
2273 * dropped. Additionally, clients can be dropped at any time using
2274 * #GNUNET_SERVICE_client_drop().
2276 * @param argc number of command-line arguments in @a argv
2277 * @param argv array of command-line arguments
2278 * @param service_name name of the service to run
2279 * @param options options controlling shutdown of the service
2280 * @param service_init_cb function to call once the service is ready
2281 * @param connect_cb function to call whenever a client connects
2282 * @param disconnect_cb function to call whenever a client disconnects
2283 * @param cls closure argument for @a service_init_cb, @a connect_cb and @a disconnect_cb
2284 * @param handlers NULL-terminated array of message handlers for the service,
2285 * the closure will be set to the value returned by
2286 * the @a connect_cb for the respective connection
2287 * @return 0 on success, non-zero on error
2290 GNUNET_SERVICE_run_ (int argc,
2292 const char *service_name,
2293 enum GNUNET_SERVICE_Options options,
2294 GNUNET_SERVICE_InitCallback service_init_cb,
2295 GNUNET_SERVICE_ConnectHandler connect_cb,
2296 GNUNET_SERVICE_DisconnectHandler disconnect_cb,
2298 const struct GNUNET_MQ_MessageHandler *handlers)
2300 struct GNUNET_SERVICE_Handle sh;
2302 char *opt_cfg_filename;
2307 unsigned long long skew_offset;
2308 unsigned long long skew_variance;
2309 long long clock_offset;
2310 struct GNUNET_CONFIGURATION_Handle *cfg;
2314 struct GNUNET_GETOPT_CommandLineOption service_options[] = {
2315 GNUNET_GETOPT_option_cfgfile (&opt_cfg_filename),
2316 GNUNET_GETOPT_option_flag ('d',
2318 gettext_noop ("do daemonize (detach from terminal)"),
2320 GNUNET_GETOPT_option_help (NULL),
2321 GNUNET_GETOPT_option_loglevel (&loglev),
2322 GNUNET_GETOPT_option_logfile (&logfile),
2323 GNUNET_GETOPT_option_version (PACKAGE_VERSION " " VCS_VERSION),
2324 GNUNET_GETOPT_OPTION_END
2331 xdg = getenv ("XDG_CONFIG_HOME");
2333 GNUNET_asprintf (&cfg_filename,
2337 GNUNET_OS_project_data_get ()->config_file);
2339 cfg_filename = GNUNET_strdup (GNUNET_OS_project_data_get ()->user_config_file);
2340 sh.ready_confirm_fd = -1;
2341 sh.options = options;
2342 sh.cfg = cfg = GNUNET_CONFIGURATION_create ();
2343 sh.service_init_cb = service_init_cb;
2344 sh.connect_cb = connect_cb;
2345 sh.disconnect_cb = disconnect_cb;
2347 sh.handlers = GNUNET_MQ_copy_handlers (handlers);
2348 sh.service_name = service_name;
2350 /* setup subsystems */
2353 opt_cfg_filename = NULL;
2355 ret = GNUNET_GETOPT_run (service_name,
2359 if (GNUNET_SYSERR == ret)
2361 if (GNUNET_NO == ret)
2366 if (GNUNET_OK != GNUNET_log_setup (service_name,
2373 if (NULL != opt_cfg_filename)
2376 GNUNET_DISK_file_test (opt_cfg_filename)) ||
2378 GNUNET_CONFIGURATION_load (cfg,
2379 opt_cfg_filename)) )
2381 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2382 _("Malformed configuration file `%s', exit ...\n"),
2390 GNUNET_DISK_file_test (cfg_filename))
2392 if (GNUNET_SYSERR ==
2393 GNUNET_CONFIGURATION_load (cfg,
2396 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2397 _("Malformed configuration file `%s', exit ...\n"),
2404 if (GNUNET_SYSERR ==
2405 GNUNET_CONFIGURATION_load (cfg,
2408 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2409 _("Malformed configuration, exit ...\n"));
2414 if (GNUNET_OK != setup_service (&sh))
2416 if ( (1 == do_daemonize) &&
2417 (GNUNET_OK != detach_terminal (&sh)) )
2422 if (GNUNET_OK != set_user_id (&sh))
2424 LOG (GNUNET_ERROR_TYPE_DEBUG,
2425 "Service `%s' runs with configuration from `%s'\n",
2427 (NULL != opt_cfg_filename) ? opt_cfg_filename : cfg_filename);
2429 GNUNET_CONFIGURATION_get_value_number (sh.cfg,
2434 GNUNET_CONFIGURATION_get_value_number (sh.cfg,
2439 clock_offset = skew_offset - skew_variance;
2440 GNUNET_TIME_set_offset (clock_offset);
2441 LOG (GNUNET_ERROR_TYPE_DEBUG,
2442 "Skewing clock by %dll ms\n",
2445 GNUNET_RESOLVER_connect (sh.cfg);
2447 /* actually run service */
2449 GNUNET_SCHEDULER_run (&service_main,
2452 if (1 == do_daemonize)
2453 pid_file_delete (&sh);
2456 if (-1 != sh.ready_confirm_fd)
2458 if (1 != WRITE (sh.ready_confirm_fd,
2461 LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING,
2463 GNUNET_break (0 == CLOSE (sh.ready_confirm_fd));
2470 GNUNET_CONFIGURATION_have_value (sh.cfg,
2474 GNUNET_CONFIGURATION_get_value_string (sh.cfg,
2482 GAUGER (service_name,
2486 GNUNET_free (counter);
2490 teardown_service (&sh);
2491 GNUNET_free_non_null (sh.handlers);
2492 GNUNET_SPEEDUP_stop_ ();
2493 GNUNET_CONFIGURATION_destroy (cfg);
2494 GNUNET_free_non_null (logfile);
2495 GNUNET_free_non_null (loglev);
2496 GNUNET_free (cfg_filename);
2497 GNUNET_free_non_null (opt_cfg_filename);
2499 return err ? GNUNET_SYSERR : sh.ret;
2504 * Suspend accepting connections from the listen socket temporarily.
2505 * Resume activity using #GNUNET_SERVICE_resume.
2507 * @param sh service to stop accepting connections.
2510 GNUNET_SERVICE_suspend (struct GNUNET_SERVICE_Handle *sh)
2518 * Resume accepting connections from the listen socket.
2520 * @param sh service to resume accepting connections.
2523 GNUNET_SERVICE_resume (struct GNUNET_SERVICE_Handle *sh)
2531 * Task run to resume receiving data from the client after
2532 * the client called #GNUNET_SERVICE_client_continue().
2534 * @param cls our `struct GNUNET_SERVICE_Client`
2537 resume_client_receive (void *cls)
2539 struct GNUNET_SERVICE_Client *c = cls;
2542 c->recv_task = NULL;
2543 /* first, check if there is still something in the buffer */
2544 ret = GNUNET_MST_next (c->mst,
2546 if (GNUNET_SYSERR == ret)
2548 if (NULL == c->drop_task)
2549 GNUNET_SERVICE_client_drop (c);
2552 if (GNUNET_NO == ret)
2553 return; /* done processing, wait for more later */
2554 GNUNET_assert (GNUNET_OK == ret);
2555 if (GNUNET_YES == c->needs_continue)
2556 return; /* #GNUNET_MST_next() did give a message to the client */
2557 /* need to receive more data from the network first */
2558 if (NULL != c->recv_task)
2561 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2563 &service_client_recv,
2569 * Continue receiving further messages from the given client.
2570 * Must be called after each message received.
2572 * @param c the client to continue receiving from
2575 GNUNET_SERVICE_client_continue (struct GNUNET_SERVICE_Client *c)
2577 GNUNET_assert (NULL == c->drop_task);
2578 GNUNET_assert (GNUNET_YES == c->needs_continue);
2579 GNUNET_assert (NULL == c->recv_task);
2580 c->needs_continue = GNUNET_NO;
2581 if (NULL != c->warn_task)
2583 GNUNET_SCHEDULER_cancel (c->warn_task);
2584 c->warn_task = NULL;
2587 = GNUNET_SCHEDULER_add_now (&resume_client_receive,
2593 * Disable the warning the server issues if a message is not
2594 * acknowledged in a timely fashion. Use this call if a client is
2595 * intentionally delayed for a while. Only applies to the current
2598 * @param c client for which to disable the warning
2601 GNUNET_SERVICE_client_disable_continue_warning (struct GNUNET_SERVICE_Client *c)
2603 GNUNET_break (NULL != c->warn_task);
2604 if (NULL != c->warn_task)
2606 GNUNET_SCHEDULER_cancel (c->warn_task);
2607 c->warn_task = NULL;
2613 * Asynchronously finish dropping the client.
2615 * @param cls the `struct GNUNET_SERVICE_Client`.
2618 finish_client_drop (void *cls)
2620 struct GNUNET_SERVICE_Client *c = cls;
2621 struct GNUNET_SERVICE_Handle *sh = c->sh;
2623 c->drop_task = NULL;
2624 GNUNET_assert (NULL == c->send_task);
2625 GNUNET_assert (NULL == c->recv_task);
2626 GNUNET_assert (NULL == c->warn_task);
2627 GNUNET_MST_destroy (c->mst);
2628 GNUNET_MQ_destroy (c->mq);
2629 if (GNUNET_NO == c->persist)
2631 GNUNET_break (GNUNET_OK ==
2632 GNUNET_NETWORK_socket_close (c->sock));
2633 if ( (0 != (SUSPEND_STATE_EMFILE & sh->suspend_state)) &&
2634 (0 == (SUSPEND_STATE_SHUTDOWN & sh->suspend_state)) )
2636 SUSPEND_STATE_EMFILE);
2640 GNUNET_NETWORK_socket_free_memory_only_ (c->sock);
2643 if ( (0 != (SUSPEND_STATE_SHUTDOWN & sh->suspend_state)) &&
2644 (GNUNET_NO == have_non_monitor_clients (sh)) )
2645 GNUNET_SERVICE_shutdown (sh);
2650 * Ask the server to disconnect from the given client. This is the
2651 * same as returning #GNUNET_SYSERR within the check procedure when
2652 * handling a message, wexcept that it allows dropping of a client even
2653 * when not handling a message from that client. The `disconnect_cb`
2654 * will be called on @a c even if the application closes the connection
2655 * using this function.
2657 * @param c client to disconnect now
2660 GNUNET_SERVICE_client_drop (struct GNUNET_SERVICE_Client *c)
2662 struct GNUNET_SERVICE_Handle *sh = c->sh;
2664 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2665 "Client dropped: %p (MQ: %p)\n",
2670 void *backtrace_array[MAX_TRACE_DEPTH];
2671 int num_backtrace_strings = backtrace (backtrace_array, MAX_TRACE_DEPTH);
2672 char **backtrace_strings =
2673 backtrace_symbols (backtrace_array,
2674 t->num_backtrace_strings);
2675 for (unsigned int i = 0; i < num_backtrace_strings; i++)
2676 LOG (GNUNET_ERROR_TYPE_DEBUG,
2677 "client drop trace %u: %s\n",
2679 backtrace_strings[i]);
2682 if (NULL != c->drop_task)
2684 /* asked to drop twice! */
2688 GNUNET_CONTAINER_DLL_remove (sh->clients_head,
2691 if (NULL != sh->disconnect_cb)
2692 sh->disconnect_cb (sh->cb_cls,
2695 if (NULL != c->warn_task)
2697 GNUNET_SCHEDULER_cancel (c->warn_task);
2698 c->warn_task = NULL;
2700 if (NULL != c->recv_task)
2702 GNUNET_SCHEDULER_cancel (c->recv_task);
2703 c->recv_task = NULL;
2705 if (NULL != c->send_task)
2707 GNUNET_SCHEDULER_cancel (c->send_task);
2708 c->send_task = NULL;
2710 c->drop_task = GNUNET_SCHEDULER_add_now (&finish_client_drop,
2716 * Explicitly stops the service.
2718 * @param sh server to shutdown
2721 GNUNET_SERVICE_shutdown (struct GNUNET_SERVICE_Handle *sh)
2723 struct GNUNET_SERVICE_Client *client;
2725 if (0 == (sh->suspend_state & SUSPEND_STATE_SHUTDOWN))
2727 SUSPEND_STATE_SHUTDOWN);
2728 while (NULL != (client = sh->clients_head))
2729 GNUNET_SERVICE_client_drop (client);
2734 * Set the 'monitor' flag on this client. Clients which have been
2735 * marked as 'monitors' won't prevent the server from shutting down
2736 * once #GNUNET_SERVICE_stop_listening() has been invoked. The idea is
2737 * that for "normal" clients we likely want to allow them to process
2738 * their requests; however, monitor-clients are likely to 'never'
2739 * disconnect during shutdown and thus will not be considered when
2740 * determining if the server should continue to exist after
2741 * shutdown has been triggered.
2743 * @param c client to mark as a monitor
2746 GNUNET_SERVICE_client_mark_monitor (struct GNUNET_SERVICE_Client *c)
2748 c->is_monitor = GNUNET_YES;
2749 if ( (0 != (SUSPEND_STATE_SHUTDOWN & c->sh->suspend_state) &&
2750 (GNUNET_NO == have_non_monitor_clients (c->sh)) ) )
2751 GNUNET_SERVICE_shutdown (c->sh);
2756 * Set the persist option on this client. Indicates that the
2757 * underlying socket or fd should never really be closed. Used for
2758 * indicating process death.
2760 * @param c client to persist the socket (never to be closed)
2763 GNUNET_SERVICE_client_persist (struct GNUNET_SERVICE_Client *c)
2765 c->persist = GNUNET_YES;
2770 * Obtain the message queue of @a c. Convenience function.
2772 * @param c the client to continue receiving from
2773 * @return the message queue of @a c
2775 struct GNUNET_MQ_Handle *
2776 GNUNET_SERVICE_client_get_mq (struct GNUNET_SERVICE_Client *c)
2782 /* end of service_new.c */