2 This file is part of GNUnet.
3 Copyright (C) 2015, 2016 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.
21 * @file util/test_socks.c
22 * @brief tests for socks.c
25 #include "gnunet_util_lib.h"
30 #define MYNAME "test_sockst"
32 static struct GNUNET_MQ_Handle *mq;
34 static struct GNUNET_SERVER_Handle *server;
36 static struct GNUNET_CONFIGURATION_Handle *cfg;
42 struct GNUNET_SERVER_Client *client;
43 struct GNUNET_MessageHeader *cpy;
47 copy_msg (void *cls, size_t size, void *buf)
49 struct CopyContext *ctx = cls;
50 struct GNUNET_MessageHeader *cpy = ctx->cpy;
52 GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (cpy->size));
53 GNUNET_assert (size >= ntohs (cpy->size));
54 GNUNET_memcpy (buf, cpy, ntohs (cpy->size));
55 GNUNET_SERVER_receive_done (ctx->client, GNUNET_OK);
58 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message bounced back to client\n");
59 return sizeof (struct GNUNET_MessageHeader);
64 * Callback that just bounces the message back to the sender.
67 echo_cb (void *cls, struct GNUNET_SERVER_Client *client,
68 const struct GNUNET_MessageHeader *message)
70 struct CopyContext *cc;
71 struct GNUNET_MessageHeader *cpy;
73 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
74 "Receiving message from client, bouncing back\n");
75 GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size));
76 cc = GNUNET_new (struct CopyContext);
78 cpy = GNUNET_malloc (ntohs (message->size));
79 GNUNET_memcpy (cpy, message, ntohs (message->size));
81 GNUNET_assert (NULL !=
82 GNUNET_SERVER_notify_transmit_ready (client,
83 ntohs (message->size),
84 GNUNET_TIME_UNIT_SECONDS,
89 static struct GNUNET_SERVER_MessageHandler handlers[] = {
90 {&echo_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
96 handle_bounce (void *cls,
97 const struct GNUNET_MessageHeader *got)
101 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
102 "Receiving bounce, checking content\n");
103 GNUNET_assert (NULL != got);
104 GNUNET_MQ_destroy (mq);
106 GNUNET_SERVER_destroy (server);
113 * Generic error handler, called with the appropriate error code and
114 * the same closure specified at the creation of the message queue.
115 * Not every message queue implementation supports an error handler.
117 * @param cls closure with the `struct GNUNET_STATISTICS_Handle *`
118 * @param error error code
121 mq_error_handler (void *cls,
122 enum GNUNET_MQ_Error error)
124 GNUNET_assert (0); /* should never happen */
131 struct sockaddr_in sa;
132 struct sockaddr *sap[2];
134 struct GNUNET_MQ_Envelope *env;
135 struct GNUNET_MessageHeader *msg;
136 struct GNUNET_MQ_MessageHandler chandlers[] = {
137 GNUNET_MQ_hd_fixed_size (bounce,
139 struct GNUNET_MessageHeader,
141 GNUNET_MQ_handler_end ()
144 /* test IPC between client and server */
145 sap[0] = (struct sockaddr *) &sa;
146 slens[0] = sizeof (sa);
149 memset (&sa, 0, sizeof (sa));
150 #if HAVE_SOCKADDR_IN_SIN_LEN
151 sa.sin_len = sizeof (sa);
153 sa.sin_family = AF_INET;
154 sa.sin_port = htons (PORT);
156 GNUNET_SERVER_create (NULL, NULL, sap, slens,
157 GNUNET_TIME_relative_multiply
158 (GNUNET_TIME_UNIT_MILLISECONDS, 10000), GNUNET_NO);
159 GNUNET_assert (server != NULL);
160 handlers[0].callback_cls = cls;
161 handlers[1].callback_cls = cls;
162 GNUNET_SERVER_add_handlers (server, handlers);
163 mq = GNUNET_CLIENT_connect (cfg,
168 GNUNET_assert (NULL != mq);
169 env = GNUNET_MQ_msg (msg,
177 main (int argc, char *argv[])
181 const char *socksport = "1081";
183 GNUNET_log_setup ("test_client",
188 GNUNET_assert (pid >= 0);
192 "ssh","-D",socksport,
193 "-o","BatchMode yes",
194 "-o","UserKnownHostsFile /tmp/gnunet_test_socks_ssh_garbage",
195 "-o","StrictHostKeyChecking no",
196 "127.0.0.1","-N",(char*)NULL);
197 perror ("execlp (\"ssh\",\"ssh\",...,\"-D\",\"1081\",\"127.0.0.1\",\"-N\") ");
199 "Please ensure you have ssh installed and have sshd installed and running :\n"
200 "\tsudo apt-get install openssh-client openssh-server\n"
201 "If you run Tor as a network proxy then Tor might prevent ssh from connecting\n"
202 "to localhost. Please either run make check from an unproxied user, or else\n"
203 "add these lines to the beginning of your ~/.ssh/config file :"
204 "\tHost 127.0.0.1 localhost\n"
205 "\t CheckHostIP no\n"
207 "\t ProxyCommand nc 127.0.0.1 22\n");
208 kill (getppid(), SIGALRM);
213 /* sleep interrupted, likely SIGALRM, failure to
214 launch child, terminate */
216 "Please ensure you have ssh installed and have sshd installed and running :\n"
217 "\tsudo apt-get install openssh-client openssh-server\n"
218 "If you run Tor as a network proxy then Tor might prevent ssh from connecting\n"
219 "to localhost. Please either run make check from an unproxied user, or else\n"
220 "add these lines to the beginning of your ~/.ssh/config file :"
221 "\tHost 127.0.0.1 localhost\n"
222 "\t CheckHostIP no\n"
224 "\t ProxyCommand nc 127.0.0.1 22\n");
227 /* check if child exec()ed but died */
228 if (0 != waitpid (pid, &status, WNOHANG))
231 "If you run Tor as a network proxy then Tor might prevent ssh from connecting\n"
232 "to localhost. Please either run make check from an unproxied user, or else\n"
233 "add these lines to the beginning of your ~/.ssh/config file :"
234 "\tHost 127.0.0.1 localhost\n"
235 "\t CheckHostIP no\n"
237 "\t ProxyCommand nc 127.0.0.1 22\n");
241 cfg = GNUNET_CONFIGURATION_create ();
242 GNUNET_CONFIGURATION_set_value_string (cfg, MYNAME, "SOCKSHOST", "127.0.0.1");
243 GNUNET_CONFIGURATION_set_value_string (cfg, MYNAME, "SOCKSPORT", socksport);
244 GNUNET_CONFIGURATION_set_value_number (cfg, MYNAME, "PORT", PORT);
245 GNUNET_CONFIGURATION_set_value_string (cfg, MYNAME, "HOSTNAME", "127.0.0.1");
247 GNUNET_SCHEDULER_run (&task, &ok);
248 GNUNET_CONFIGURATION_destroy (cfg);
250 GNUNET_break (0 == kill (pid, SIGTERM));
251 GNUNET_break (pid == waitpid (pid, &status, 0));
255 /* end of test_socks.c */