GNUnet 0.27.0
 
Loading...
Searching...
No Matches
gnunet-uri.c File Reference

tool to dispatch URIs to the appropriate GNUnet helper process More...

#include "platform.h"
#include "gnunet_util_lib.h"
Include dependency graph for gnunet-uri.c:

Go to the source code of this file.

Functions

static void maint_child_death (void *cls)
 Task triggered whenever we receive a SIGCHLD (child process died) or when user presses CTRL-C.
 
static void run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
 Main function that will be run by the scheduler.
 
static void sighandler_child_death ()
 Signal handler called for SIGCHLD.
 
int main (int argc, char *const *argv)
 The main function to handle gnunet://-URIs.
 

Variables

static long unsigned int exit_code = 0
 Handler exit code.
 
static struct GNUNET_Processp
 Helper process we started.
 
static struct GNUNET_DISK_PipeHandlesigpipe
 Pipe used to communicate shutdown via signal.
 

Detailed Description

tool to dispatch URIs to the appropriate GNUnet helper process

Author
Christian Grothoff

Definition in file gnunet-uri.c.

Function Documentation

◆ maint_child_death()

static void maint_child_death ( void *  cls)
static

Task triggered whenever we receive a SIGCHLD (child process died) or when user presses CTRL-C.

Parameters
clsclosure, NULL

Definition at line 53 of file gnunet-uri.c.

54{
56
57 (void) cls;
58 if ((GNUNET_OK !=
60 false,
61 &type,
62 &exit_code)) ||
68}
static uint32_t type
Type string converted to DNS type value.
static long unsigned int exit_code
Handler exit code.
Definition gnunet-uri.c:33
static struct GNUNET_Process * p
Helper process we started.
Definition gnunet-uri.c:38
@ GNUNET_OK
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
enum GNUNET_GenericReturnValue GNUNET_process_wait(struct GNUNET_Process *proc, bool blocking, enum GNUNET_OS_ProcessStatusType *type, unsigned long *code)
Wait for a process to terminate.
void GNUNET_process_destroy(struct GNUNET_Process *proc)
Cleans up process structure contents (OS-dependent) and deallocates it.
Definition os_process.c:363
GNUNET_OS_ProcessStatusType
Process status types.
enum GNUNET_GenericReturnValue GNUNET_process_kill(struct GNUNET_Process *proc, int sig)
Sends a signal to the process.
Definition os_process.c:307
@ GNUNET_OS_PROCESS_EXITED
The process exited with a return code.
#define GNUNET_TERM_SIG
The termination signal.
Definition platform.h:235

References exit_code, GNUNET_break, GNUNET_OK, GNUNET_OS_PROCESS_EXITED, GNUNET_process_destroy(), GNUNET_process_kill(), GNUNET_process_wait(), GNUNET_TERM_SIG, p, and type.

Referenced by run().

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

◆ run()

static void run ( void *  cls,
char *const *  args,
const char *  cfgfile,
const struct GNUNET_CONFIGURATION_Handle cfg 
)
static

Main function that will be run by the scheduler.

Parameters
clsclosure
argsremaining command-line arguments
cfgfilename of the configuration file used (for saving, can be NULL!)
cfgconfiguration

Definition at line 80 of file gnunet-uri.c.

84{
85 const char *uri;
86 const char *slash;
87 char *program;
88 struct GNUNET_SCHEDULER_Task *rt;
89
90 (void) cls;
91 (void) cfgfile;
92 if (NULL == (uri = args[0]))
93 {
94 fprintf (stderr,
95 _ ("No URI specified on command line\n"));
96 return;
97 }
98 if (0 != strncasecmp ("gnunet://",
99 uri,
100 strlen ("gnunet://")))
101 {
102 fprintf (stderr,
103 _ ("Invalid URI: does not start with `%s'\n"),
104 "gnunet://");
105 return;
106 }
107 uri += strlen ("gnunet://");
108 if (NULL == (slash = strchr (uri, '/')))
109 {
110 fprintf (stderr,
111 _ ("Invalid URI: fails to specify subsystem\n"));
112 return;
113 }
114
115 {
116 char *subsystem;
117
119 slash - uri);
120 if (GNUNET_OK !=
122 "uri",
123 subsystem,
124 &program))
125 {
126 fprintf (stderr,
127 _ ("No handler known for subsystem `%s'\n"),
128 subsystem);
130 return;
131 }
133 }
138 NULL);
140 if (GNUNET_OK !=
142 program,
143 program,
144 args[0],
145 NULL))
146 {
148 p = NULL;
150 }
151 GNUNET_free (program);
152}
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition gnunet-arm.c:108
static struct GNUNET_FS_Uri * uri
Value of URI provided on command-line (when not publishing a file but just creating UBlocks to refer ...
static char * subsystem
Set to subsystem that we're going to get stats for (or NULL for all).
static void maint_child_death(void *cls)
Task triggered whenever we receive a SIGCHLD (child process died) or when user presses CTRL-C.
Definition gnunet-uri.c:53
static struct GNUNET_DISK_PipeHandle * sigpipe
Pipe used to communicate shutdown via signal.
Definition gnunet-uri.c:43
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.
const struct GNUNET_DISK_FileHandle * GNUNET_DISK_pipe_handle(const struct GNUNET_DISK_PipeHandle *p, enum GNUNET_DISK_PipeEnd n)
Get the handle to a particular pipe end.
Definition disk.c:1703
@ GNUNET_DISK_PIPE_END_READ
The reading-end of a pipe.
#define GNUNET_strndup(a, length)
Wrapper around GNUNET_xstrndup_.
#define GNUNET_free(ptr)
Wrapper around free.
enum GNUNET_GenericReturnValue GNUNET_process_run_command_va(struct GNUNET_Process *p, const char *filename,...)
Set the command and start a process.
Definition os_process.c:903
struct GNUNET_Process * GNUNET_process_create(enum GNUNET_OS_InheritStdioFlags std_inheritance)
Create a process handle.
Definition os_process.c:462
@ GNUNET_OS_INHERIT_STD_NONE
No standard streams should be inherited.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_read_file(struct GNUNET_TIME_Relative delay, const struct GNUNET_DISK_FileHandle *rfd, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay or when the specified file descriptor is ready f...
Definition scheduler.c:1667
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition scheduler.c:986
#define GNUNET_TIME_UNIT_FOREVER_REL
Constant used to specify "forever".
#define _(String)
GNU gettext support macro.
Definition platform.h:179
Entry in list of pending tasks.
Definition scheduler.c:141

References _, cfg, GNUNET_CONFIGURATION_get_value_string(), GNUNET_DISK_PIPE_END_READ, GNUNET_DISK_pipe_handle(), GNUNET_free, GNUNET_OK, GNUNET_OS_INHERIT_STD_NONE, GNUNET_process_create(), GNUNET_process_destroy(), GNUNET_process_run_command_va(), GNUNET_SCHEDULER_add_read_file(), GNUNET_SCHEDULER_cancel(), GNUNET_strndup, GNUNET_TIME_UNIT_FOREVER_REL, maint_child_death(), p, sigpipe, subsystem, and uri.

Referenced by main().

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

◆ sighandler_child_death()

static void sighandler_child_death ( void  )
static

Signal handler called for SIGCHLD.

Triggers the respective handler by writing to the trigger pipe.

Definition at line 160 of file gnunet-uri.c.

161{
162 static char c;
163 int old_errno = errno; /* back-up errno */
164
166 1 ==
170 &c,
171 sizeof(c)));
172 errno = old_errno; /* restore errno */
173}
ssize_t GNUNET_DISK_file_write(const struct GNUNET_DISK_FileHandle *h, const void *buffer, size_t n)
Write a buffer to a file.
Definition disk.c:745
@ GNUNET_DISK_PIPE_END_WRITE
The writing-end of a pipe.

References GNUNET_break, GNUNET_DISK_file_write(), GNUNET_DISK_PIPE_END_WRITE, GNUNET_DISK_pipe_handle(), and sigpipe.

Referenced by main().

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

◆ main()

int main ( int  argc,
char *const *  argv 
)

The main function to handle gnunet://-URIs.

Parameters
argcnumber of arguments from the command line
argvcommand line arguments
Returns
0 ok, 1 on error

Definition at line 184 of file gnunet-uri.c.

186{
187 static const struct GNUNET_GETOPT_CommandLineOption options[] = {
189 };
191 int ret;
192
194 GNUNET_assert (sigpipe != NULL);
195 shc_chld =
199 argc,
200 argv,
201 "gnunet-uri URI",
203 "Perform default-actions for GNUnet URIs"),
204 options,
205 &run,
206 NULL);
208 shc_chld = NULL;
210 sigpipe = NULL;
211 return ((GNUNET_OK == ret) && (0 == exit_code)) ? 0 : 1;
212}
struct GNUNET_GETOPT_CommandLineOption options[]
Definition 002.c:5
static struct GNUNET_SIGNAL_Context * shc_chld
#define gettext_noop(String)
Definition gettext.h:74
static int ret
Final status code.
Definition gnunet-arm.c:93
static void sighandler_child_death()
Signal handler called for SIGCHLD.
Definition gnunet-uri.c:160
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Main function that will be run by the scheduler.
Definition gnunet-uri.c:80
struct GNUNET_DISK_PipeHandle * GNUNET_DISK_pipe(enum GNUNET_DISK_PipeFlags pf)
Creates an interprocess channel.
Definition disk.c:1524
enum GNUNET_GenericReturnValue GNUNET_DISK_pipe_close(struct GNUNET_DISK_PipeHandle *p)
Closes an interprocess channel.
Definition disk.c:1671
@ GNUNET_DISK_PF_NONE
No special options, use non-blocking read/write operations.
#define GNUNET_GETOPT_OPTION_END
Marker for the end of the list of options.
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
enum GNUNET_GenericReturnValue GNUNET_PROGRAM_run(const struct GNUNET_OS_ProjectData *pd, int argc, char *const *argv, const char *binaryName, const char *binaryHelp, const struct GNUNET_GETOPT_CommandLineOption *options, GNUNET_PROGRAM_Main task, void *task_cls)
Run a standard GNUnet command startup sequence (initialize loggers and configuration,...
Definition program.c:407
struct GNUNET_SIGNAL_Context * GNUNET_SIGNAL_handler_install(int signal, GNUNET_SIGNAL_Handler handler)
Install a signal handler that will be run if the given signal is received.
Definition signal.c:52
void GNUNET_SIGNAL_handler_uninstall(struct GNUNET_SIGNAL_Context *ctx)
Uninstall a previously installed signal handler.
Definition signal.c:78
#define GNUNET_SIGCHLD
Definition platform.h:42
Definition of a command line option.

References exit_code, gettext_noop, GNUNET_assert, GNUNET_DISK_PF_NONE, GNUNET_DISK_pipe(), GNUNET_DISK_pipe_close(), GNUNET_GETOPT_OPTION_END, GNUNET_OK, GNUNET_OS_project_data_gnunet(), GNUNET_PROGRAM_run(), GNUNET_SIGCHLD, GNUNET_SIGNAL_handler_install(), GNUNET_SIGNAL_handler_uninstall(), options, ret, run(), shc_chld, sighandler_child_death(), and sigpipe.

Here is the call graph for this function:

Variable Documentation

◆ exit_code

long unsigned int exit_code = 0
static

Handler exit code.

Definition at line 33 of file gnunet-uri.c.

Referenced by main(), and maint_child_death().

◆ p

struct GNUNET_Process* p
static

Helper process we started.

Definition at line 38 of file gnunet-uri.c.

Referenced by adjust(), block_proc(), block_reader(), buffer_clear(), buffer_clear(), build_dns_query(), check_address(), check_priority(), compute_scalar_product(), compute_service_response(), context_state_callback(), create_loc_uri(), CustomPeerMap_put(), CustomPeerMap_remove_peer(), display_bar(), display_request(), dns_result_parser(), do_stop_task(), download_stop_task(), dump_buffer(), encode_cont(), find_timed_out(), for_all_records(), format_help(), GCT_consider_path(), get_all_peers_iterator(), get_all_tunnels_iterator(), get_keywords_from_tokens(), get_longest_prefix(), get_path_from_GNUNET_PREFIX(), get_path_from_PATH(), get_pipeline(), GN_getopt_internal(), gns_resolve_name(), gns_string_to_value(), GNUNET_CADET_close_port(), GNUNET_CADET_open_port(), GNUNET_CONFIGURATION_create(), GNUNET_CONTAINER_multihashmap32_remove(), GNUNET_CONTAINER_multihashmap32_remove_all(), GNUNET_CONTAINER_multihashmap_remove(), GNUNET_CONTAINER_multihashmap_remove_all(), GNUNET_CONTAINER_multipeermap_remove(), GNUNET_CONTAINER_multipeermap_remove_all(), GNUNET_CONTAINER_multishortmap_remove(), GNUNET_CONTAINER_multishortmap_remove_all(), GNUNET_CONTAINER_multiuuidmap_remove(), GNUNET_CONTAINER_multiuuidmap_remove_all(), GNUNET_CRYPTO_ecc_ecdh(), GNUNET_CRYPTO_ecc_pmul_mpi(), GNUNET_CRYPTO_ecdh_ecdsa(), GNUNET_CRYPTO_ecdh_eddsa(), GNUNET_CRYPTO_ecdsa_ecdh(), GNUNET_CRYPTO_eddsa_ecdh(), GNUNET_CRYPTO_mpi_print_unsigned(), GNUNET_CRYPTO_paillier_create(), GNUNET_CRYPTO_zero_keys(), GNUNET_DISK_pipe_close(), GNUNET_DISK_pipe_close_end(), GNUNET_DISK_pipe_detach_end(), GNUNET_DISK_pipe_from_fd(), GNUNET_DISK_pipe_handle(), GNUNET_DNSPARSER_free_packet(), GNUNET_DNSPARSER_pack(), GNUNET_DNSPARSER_parse(), GNUNET_e2s(), GNUNET_e2s2(), GNUNET_FS_meta_data_insert(), GNUNET_FS_publish_main_(), GNUNET_FS_publish_make_status_(), GNUNET_HELLO_builder_from_parser(), GNUNET_HELLO_parser_from_block_(), GNUNET_HELLO_parser_from_msg(), GNUNET_HELLO_parser_from_url(), GNUNET_OS_check_helper_binary(), GNUNET_p2s(), GNUNET_p2s2(), GNUNET_process_create(), GNUNET_process_run_command(), GNUNET_process_run_command_ap(), GNUNET_process_run_command_argv(), GNUNET_process_run_command_va(), GNUNET_SCHEDULER_cancel(), GNUNET_SCHEDULER_get_load(), GNUNET_SECRETSHARING_share_read(), GNUNET_SECRETSHARING_share_write(), GNUNET_TRANSPORT_TESTING_connect_check(), GNUNET_TRANSPORT_TESTING_done(), GNUNET_TRANSPORT_TESTING_restart_peer(), GNUNET_TRANSPORT_TESTING_start_peer(), GNUNET_TRANSPORT_TESTING_stop_peer(), GSF_cadet_query_cancel(), handle_dht_local_hello_get(), handle_dns_request(), handle_index_start_failed(), handle_index_start_ok(), handle_show_path(), handle_signature_response(), hash_for_index_cb(), hello_iter_cb(), ibf_hashcode_from_key(), ieee80211_get_radiotap_len(), index_mq_error_handler(), main(), maint_child_death(), modify_request(), notify_connect(), notify_disconnect(), parse_definitions(), parse_pattern(), parser_new(), process_result(), process_result(), progress_cb(), progress_proc(), publish_content(), publish_kblocks(), publish_kblocks_cont(), publish_stop_task(), queue(), queue_ready_task(), recursive_dns_resolution(), regex_add(), regex_combine(), REGEX_INTERNAL_construct_nfa(), retrieve_hello(), run(), run(), schedule_transmit_on_queue(), search_stop_task(), set_work_priority(), shutdown_task(), signal_publish_completion(), signal_publish_error(), start_cb(), start_download(), start_publish(), update_network_size_estimate(), and w_check().

◆ sigpipe

struct GNUNET_DISK_PipeHandle* sigpipe
static

Pipe used to communicate shutdown via signal.

Definition at line 43 of file gnunet-uri.c.

Referenced by main(), run(), and sighandler_child_death().