2 This file is part of GNUnet.
3 Copyright (C) 2012 GNUnet e.V.
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 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 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 Boston, MA 02110-1301, USA.
22 * @file util/gnunet-uri.c
23 * @brief tool to dispatch URIs to the appropriate GNUnet helper process
24 * @author Christian Grothoff
27 #include "gnunet_util_lib.h"
32 static long unsigned int exit_code = 1;
35 * Helper process we started.
37 static struct GNUNET_OS_Process *p;
40 * Pipe used to communicate shutdown via signal.
42 static struct GNUNET_DISK_PipeHandle *sigpipe;
46 * Task triggered whenever we receive a SIGCHLD (child
47 * process died) or when user presses CTRL-C.
49 * @param cls closure, NULL
52 maint_child_death (void *cls)
54 enum GNUNET_OS_ProcessStatusType type;
57 GNUNET_OS_process_status (p, &type, &exit_code)) ||
58 (type != GNUNET_OS_PROCESS_EXITED) )
59 GNUNET_break (0 == GNUNET_OS_process_kill (p, GNUNET_TERM_SIG));
60 GNUNET_OS_process_destroy (p);
65 * Main function that will be run by the scheduler.
68 * @param args remaining command-line arguments
69 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
70 * @param cfg configuration
73 run (void *cls, char *const *args, const char *cfgfile,
74 const struct GNUNET_CONFIGURATION_Handle *cfg)
80 struct GNUNET_SCHEDULER_Task * rt;
82 if (NULL == (uri = args[0]))
85 _("No URI specified on command line\n"));
88 if (0 != strncasecmp ("gnunet://", uri, strlen ("gnunet://")))
91 _("Invalid URI: does not start with `%s'\n"),
95 uri += strlen ("gnunet://");
96 if (NULL == (slash = strchr (uri, '/')))
98 fprintf (stderr, _("Invalid URI: fails to specify subsystem\n"));
101 subsystem = GNUNET_strndup (uri, slash - uri);
103 GNUNET_CONFIGURATION_get_value_string (cfg,
108 fprintf (stderr, _("No handler known for subsystem `%s'\n"), subsystem);
109 GNUNET_free (subsystem);
112 GNUNET_free (subsystem);
113 rt = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
114 GNUNET_DISK_pipe_handle (sigpipe,
115 GNUNET_DISK_PIPE_END_READ),
116 &maint_child_death, NULL);
117 p = GNUNET_OS_start_process (GNUNET_NO, 0,
123 GNUNET_free (program);
125 GNUNET_SCHEDULER_cancel (rt);
130 * Signal handler called for SIGCHLD. Triggers the
131 * respective handler by writing to the trigger pipe.
134 sighandler_child_death ()
137 int old_errno = errno; /* back-up errno */
140 GNUNET_DISK_file_write (GNUNET_DISK_pipe_handle
141 (sigpipe, GNUNET_DISK_PIPE_END_WRITE),
143 errno = old_errno; /* restore errno */
148 * The main function to handle gnunet://-URIs.
150 * @param argc number of arguments from the command line
151 * @param argv command line arguments
152 * @return 0 ok, 1 on error
155 main (int argc, char *const *argv)
157 static const struct GNUNET_GETOPT_CommandLineOption options[] = {
158 GNUNET_GETOPT_OPTION_END
160 struct GNUNET_SIGNAL_Context *shc_chld;
163 if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
165 sigpipe = GNUNET_DISK_pipe (GNUNET_NO, GNUNET_NO, GNUNET_NO, GNUNET_NO);
166 GNUNET_assert (sigpipe != NULL);
168 GNUNET_SIGNAL_handler_install (GNUNET_SIGCHLD, &sighandler_child_death);
169 ret = GNUNET_PROGRAM_run (argc, argv, "gnunet-uri URI",
170 gettext_noop ("Perform default-actions for GNUnet URIs"),
171 options, &run, NULL);
172 GNUNET_SIGNAL_handler_uninstall (shc_chld);
174 GNUNET_DISK_pipe_close (sigpipe);
176 GNUNET_free ((void *) argv);
177 return ((GNUNET_OK == ret) && (0 == exit_code)) ? 0 : 1;
180 /* end of gnunet-uri.c */