Fix #5514; Add test for GNS Proxy and DANE; Fix TLS connections on ports != 443 throu...
[oweals/gnunet.git] / src / gns / gnunet-gns-proxy.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012-2018 GNUnet e.V.
4
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.
9
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.
14
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/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19 */
20 /**
21  * @author Martin Schanzenbach
22  * @author Christian Grothoff
23  * @file src/gns/gnunet-gns-proxy.c
24  * @brief HTTP(S) proxy that rewrites URIs and fakes certificats to make GNS work
25  *        with legacy browsers
26  *
27  * TODO:
28  * - double-check queueing logic
29  */
30 #include "platform.h"
31 #include <microhttpd.h>
32 #if HAVE_CURL_CURL_H
33 #include <curl/curl.h>
34 #elif HAVE_GNURL_CURL_H
35 #include <gnurl/curl.h>
36 #endif
37 #include <gnutls/gnutls.h>
38 #include <gnutls/x509.h>
39 #include <gnutls/abstract.h>
40 #include <gnutls/crypto.h>
41 #if HAVE_GNUTLS_DANE
42 #include <gnutls/dane.h>
43 #endif
44 #include <regex.h>
45 #include "gnunet_util_lib.h"
46 #include "gnunet_gns_service.h"
47 #include "gnunet_identity_service.h"
48 #include "gns.h"
49
50
51
52 /**
53  * Default Socks5 listen port.
54  */
55 #define GNUNET_GNS_PROXY_PORT 7777
56
57 /**
58  * Maximum supported length for a URI.
59  * Should die. @deprecated
60  */
61 #define MAX_HTTP_URI_LENGTH 2048
62
63 /**
64  * Maximum number of DANE records we support
65  * per domain name (and port and protocol).
66  */
67 #define MAX_DANES 32
68
69 /**
70  * Size of the buffer for the data upload / download.  Must be
71  * enough for curl, thus CURL_MAX_WRITE_SIZE is needed here (16k).
72  */
73 #define IO_BUFFERSIZE CURL_MAX_WRITE_SIZE
74
75 /**
76  * Size of the read/write buffers for Socks.   Uses
77  * 256 bytes for the hostname (at most), plus a few
78  * bytes overhead for the messages.
79  */
80 #define SOCKS_BUFFERSIZE (256 + 32)
81
82 /**
83  * Port for plaintext HTTP.
84  */
85 #define HTTP_PORT 80
86
87 /**
88  * Port for HTTPS.
89  */
90 #define HTTPS_PORT 443
91
92 /**
93  * Largest allowed size for a PEM certificate.
94  */
95 #define MAX_PEM_SIZE (10 * 1024)
96
97 /**
98  * After how long do we clean up unused MHD TLS instances?
99  */
100 #define MHD_CACHE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
101
102 /**
103  * After how long do we clean up Socks5 handles that failed to show any activity
104  * with their respective MHD instance?
105  */
106 #define HTTP_HANDSHAKE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
107
108
109 /**
110  * Log curl error.
111  *
112  * @param level log level
113  * @param fun name of curl_easy-function that gave the error
114  * @param rc return code from curl
115  */
116 #define LOG_CURL_EASY(level,fun,rc) \
117    GNUNET_log (level, \
118                _("%s failed at %s:%d: `%s'\n"), \
119                fun, \
120                __FILE__, \
121                __LINE__, \
122                curl_easy_strerror (rc))
123
124
125 /* *************** Socks protocol definitions (move to TUN?) ****************** */
126
127 /**
128  * Which SOCKS version do we speak?
129  */
130 #define SOCKS_VERSION_5 0x05
131
132 /**
133  * Flag to set for 'no authentication'.
134  */
135 #define SOCKS_AUTH_NONE 0
136
137
138 /**
139  * Commands in Socks5.
140  */
141 enum Socks5Commands
142 {
143   /**
144    * Establish TCP/IP stream.
145    */
146   SOCKS5_CMD_TCP_STREAM = 1,
147
148   /**
149    * Establish TCP port binding.
150    */
151   SOCKS5_CMD_TCP_PORT = 2,
152
153   /**
154    * Establish UDP port binding.
155    */
156   SOCKS5_CMD_UDP_PORT = 3
157 };
158
159
160 /**
161  * Address types in Socks5.
162  */
163 enum Socks5AddressType
164 {
165   /**
166    * IPv4 address.
167    */
168   SOCKS5_AT_IPV4 = 1,
169
170   /**
171    * IPv4 address.
172    */
173   SOCKS5_AT_DOMAINNAME = 3,
174
175   /**
176    * IPv6 address.
177    */
178   SOCKS5_AT_IPV6 = 4
179
180 };
181
182
183 /**
184  * Status codes in Socks5 response.
185  */
186 enum Socks5StatusCode
187 {
188   SOCKS5_STATUS_REQUEST_GRANTED = 0,
189   SOCKS5_STATUS_GENERAL_FAILURE = 1,
190   SOCKS5_STATUS_CONNECTION_NOT_ALLOWED_BY_RULE = 2,
191   SOCKS5_STATUS_NETWORK_UNREACHABLE = 3,
192   SOCKS5_STATUS_HOST_UNREACHABLE = 4,
193   SOCKS5_STATUS_CONNECTION_REFUSED_BY_HOST = 5,
194   SOCKS5_STATUS_TTL_EXPIRED = 6,
195   SOCKS5_STATUS_COMMAND_NOT_SUPPORTED = 7,
196   SOCKS5_STATUS_ADDRESS_TYPE_NOT_SUPPORTED = 8
197 };
198
199
200 /**
201  * Client hello in Socks5 protocol.
202  */
203 struct Socks5ClientHelloMessage
204 {
205   /**
206    * Should be #SOCKS_VERSION_5.
207    */
208   uint8_t version;
209
210   /**
211    * How many authentication methods does the client support.
212    */
213   uint8_t num_auth_methods;
214
215   /* followed by supported authentication methods, 1 byte per method */
216
217 };
218
219
220 /**
221  * Server hello in Socks5 protocol.
222  */
223 struct Socks5ServerHelloMessage
224 {
225   /**
226    * Should be #SOCKS_VERSION_5.
227    */
228   uint8_t version;
229
230   /**
231    * Chosen authentication method, for us always #SOCKS_AUTH_NONE,
232    * which skips the authentication step.
233    */
234   uint8_t auth_method;
235 };
236
237
238 /**
239  * Client socks request in Socks5 protocol.
240  */
241 struct Socks5ClientRequestMessage
242 {
243   /**
244    * Should be #SOCKS_VERSION_5.
245    */
246   uint8_t version;
247
248   /**
249    * Command code, we only uspport #SOCKS5_CMD_TCP_STREAM.
250    */
251   uint8_t command;
252
253   /**
254    * Reserved, always zero.
255    */
256   uint8_t resvd;
257
258   /**
259    * Address type, an `enum Socks5AddressType`.
260    */
261   uint8_t addr_type;
262
263   /*
264    * Followed by either an ip4/ipv6 address or a domain name with a
265    * length field (uint8_t) in front (depending on @e addr_type).
266    * followed by port number in network byte order (uint16_t).
267    */
268 };
269
270
271 /**
272  * Server response to client requests in Socks5 protocol.
273  */
274 struct Socks5ServerResponseMessage
275 {
276   /**
277    * Should be #SOCKS_VERSION_5.
278    */
279   uint8_t version;
280
281   /**
282    * Status code, an `enum Socks5StatusCode`
283    */
284   uint8_t reply;
285
286   /**
287    * Always zero.
288    */
289   uint8_t reserved;
290
291   /**
292    * Address type, an `enum Socks5AddressType`.
293    */
294   uint8_t addr_type;
295
296   /*
297    * Followed by either an ip4/ipv6 address or a domain name with a
298    * length field (uint8_t) in front (depending on @e addr_type).
299    * followed by port number in network byte order (uint16_t).
300    */
301
302 };
303
304
305
306 /* *********************** Datastructures for HTTP handling ****************** */
307
308 /**
309  * A structure for CA cert/key
310  */
311 struct ProxyCA
312 {
313   /**
314    * The certificate
315    */
316   gnutls_x509_crt_t cert;
317
318   /**
319    * The private key
320    */
321   gnutls_x509_privkey_t key;
322 };
323
324
325 /**
326  * Structure for GNS certificates
327  */
328 struct ProxyGNSCertificate
329 {
330   /**
331    * The certificate as PEM
332    */
333   char cert[MAX_PEM_SIZE];
334
335   /**
336    * The private key as PEM
337    */
338   char key[MAX_PEM_SIZE];
339 };
340
341
342
343 /**
344  * A structure for all running Httpds
345  */
346 struct MhdHttpList
347 {
348   /**
349    * DLL for httpds
350    */
351   struct MhdHttpList *prev;
352
353   /**
354    * DLL for httpds
355    */
356   struct MhdHttpList *next;
357
358   /**
359    * the domain name to server (only important for TLS)
360    */
361   char *domain;
362
363   /**
364    * The daemon handle
365    */
366   struct MHD_Daemon *daemon;
367
368   /**
369    * Optional proxy certificate used
370    */
371   struct ProxyGNSCertificate *proxy_cert;
372
373   /**
374    * The task ID
375    */
376   struct GNUNET_SCHEDULER_Task *httpd_task;
377
378   /**
379    * is this an ssl daemon?
380    */
381   int is_ssl;
382
383 };
384
385
386 /* ***************** Datastructures for Socks handling **************** */
387
388
389 /**
390  * The socks phases.
391  */
392 enum SocksPhase
393 {
394   /**
395    * We're waiting to get the client hello.
396    */
397   SOCKS5_INIT,
398
399   /**
400    * We're waiting to get the initial request.
401    */
402   SOCKS5_REQUEST,
403
404   /**
405    * We are currently resolving the destination.
406    */
407   SOCKS5_RESOLVING,
408
409   /**
410    * We're in transfer mode.
411    */
412   SOCKS5_DATA_TRANSFER,
413
414   /**
415    * Finish writing the write buffer, then clean up.
416    */
417   SOCKS5_WRITE_THEN_CLEANUP,
418
419   /**
420    * Socket has been passed to MHD, do not close it anymore.
421    */
422   SOCKS5_SOCKET_WITH_MHD,
423
424   /**
425    * We've started receiving upload data from MHD.
426    */
427   SOCKS5_SOCKET_UPLOAD_STARTED,
428
429   /**
430    * We've finished receiving upload data from MHD.
431    */
432   SOCKS5_SOCKET_UPLOAD_DONE,
433
434   /**
435    * We've finished uploading data via CURL and can now download.
436    */
437   SOCKS5_SOCKET_DOWNLOAD_STARTED,
438
439   /**
440    * We've finished receiving download data from cURL.
441    */
442   SOCKS5_SOCKET_DOWNLOAD_DONE
443 };
444
445
446 /**
447  * A header list
448  */
449 struct HttpResponseHeader
450 {
451   /**
452    * DLL
453    */
454   struct HttpResponseHeader *next;
455
456   /**
457    * DLL
458    */
459   struct HttpResponseHeader *prev;
460
461   /**
462    * Header type
463    */
464   char *type;
465
466   /**
467    * Header value
468    */
469   char *value;
470 };
471
472 /**
473  * A structure for socks requests
474  */
475 struct Socks5Request
476 {
477
478   /**
479    * DLL.
480    */
481   struct Socks5Request *next;
482
483   /**
484    * DLL.
485    */
486   struct Socks5Request *prev;
487
488   /**
489    * The client socket
490    */
491   struct GNUNET_NETWORK_Handle *sock;
492
493   /**
494    * Handle to GNS lookup, during #SOCKS5_RESOLVING phase.
495    */
496   struct GNUNET_GNS_LookupWithTldRequest *gns_lookup;
497
498   /**
499    * Client socket read task
500    */
501   struct GNUNET_SCHEDULER_Task *rtask;
502
503   /**
504    * Client socket write task
505    */
506   struct GNUNET_SCHEDULER_Task *wtask;
507
508   /**
509    * Timeout task
510    */
511   struct GNUNET_SCHEDULER_Task *timeout_task;
512
513   /**
514    * Read buffer
515    */
516   char rbuf[SOCKS_BUFFERSIZE];
517
518   /**
519    * Write buffer
520    */
521   char wbuf[SOCKS_BUFFERSIZE];
522
523   /**
524    * Buffer we use for moving data between MHD and curl (in both directions).
525    */
526   char io_buf[IO_BUFFERSIZE];
527
528   /**
529    * MHD HTTP instance handling this request, NULL for none.
530    */
531   struct MhdHttpList *hd;
532
533   /**
534    * MHD connection for this request.
535    */
536   struct MHD_Connection *con;
537
538   /**
539    * MHD response object for this request.
540    */
541   struct MHD_Response *response;
542
543   /**
544    * the domain name to server (only important for TLS)
545    */
546   char *domain;
547
548   /**
549    * DNS Legacy Host Name as given by GNS, NULL if not given.
550    */
551   char *leho;
552
553   /**
554    * Payload of the DANE records encountered.
555    */
556   char *dane_data[MAX_DANES + 1];
557
558   /**
559    * The URL to fetch
560    */
561   char *url;
562
563   /**
564    * Handle to cURL
565    */
566   CURL *curl;
567
568   /**
569    * HTTP request headers for the curl request.
570    */
571   struct curl_slist *headers;
572
573   /**
574    * DNS->IP mappings resolved through GNS
575    */
576   struct curl_slist *hosts;
577
578   /**
579    * HTTP response code to give to MHD for the response.
580    */
581   unsigned int response_code;
582
583   /**
584    * Number of bytes in @e dane_data.
585    */
586   int dane_data_len[MAX_DANES + 1];
587
588   /**
589    * Number of entries used in @e dane_data_len
590    * and @e dane_data.
591    */
592   unsigned int num_danes;
593
594   /**
595    * Number of bytes already in read buffer
596    */
597   size_t rbuf_len;
598
599   /**
600    * Number of bytes already in write buffer
601    */
602   size_t wbuf_len;
603
604   /**
605    * Number of bytes already in the IO buffer.
606    */
607   size_t io_len;
608
609   /**
610    * Once known, what's the target address for the connection?
611    */
612   struct sockaddr_storage destination_address;
613
614   /**
615    * The socks state
616    */
617   enum SocksPhase state;
618
619   /**
620    * Desired destination port.
621    */
622   uint16_t port;
623
624   /**
625    * Headers from response
626    */
627   struct HttpResponseHeader *header_head;
628
629   /**
630    * Headers from response
631    */
632   struct HttpResponseHeader *header_tail;
633
634   /**
635    * X.509 Certificate status
636    */
637   int ssl_checked;
638
639   /**
640    * Was the hostname resolved via GNS?
641    */
642   int is_gns;
643
644   /**
645    * This is (probably) a TLS connection
646    */
647   int is_tls;
648
649   /**
650    * Did we suspend MHD processing?
651    */
652   int suspended;
653
654   /**
655    * Did we pause CURL processing?
656    */
657   int curl_paused;
658 };
659
660
661
662 /* *********************** Globals **************************** */
663
664
665 /**
666  * The port the proxy is running on (default 7777)
667  */
668 static uint16_t port = GNUNET_GNS_PROXY_PORT;
669
670 /**
671  * The CA file (pem) to use for the proxy CA
672  */
673 static char *cafile_opt;
674
675 /**
676  * The listen socket of the proxy for IPv4
677  */
678 static struct GNUNET_NETWORK_Handle *lsock4;
679
680 /**
681  * The listen socket of the proxy for IPv6
682  */
683 static struct GNUNET_NETWORK_Handle *lsock6;
684
685 /**
686  * The listen task ID for IPv4
687  */
688 static struct GNUNET_SCHEDULER_Task * ltask4;
689
690 /**
691  * The listen task ID for IPv6
692  */
693 static struct GNUNET_SCHEDULER_Task * ltask6;
694
695 /**
696  * The cURL download task (curl multi API).
697  */
698 static struct GNUNET_SCHEDULER_Task * curl_download_task;
699
700 /**
701  * The cURL multi handle
702  */
703 static CURLM *curl_multi;
704
705 /**
706  * Handle to the GNS service
707  */
708 static struct GNUNET_GNS_Handle *gns_handle;
709
710 /**
711  * Disable IPv6.
712  */
713 static int disable_v6;
714
715 /**
716  * DLL for http/https daemons
717  */
718 static struct MhdHttpList *mhd_httpd_head;
719
720 /**
721  * DLL for http/https daemons
722  */
723 static struct MhdHttpList *mhd_httpd_tail;
724
725 /**
726  * Daemon for HTTP (we have one per X.509 certificate, and then one for
727  * all HTTP connections; this is the one for HTTP, not HTTPS).
728  */
729 static struct MhdHttpList *httpd;
730
731 /**
732  * DLL of active socks requests.
733  */
734 static struct Socks5Request *s5r_head;
735
736 /**
737  * DLL of active socks requests.
738  */
739 static struct Socks5Request *s5r_tail;
740
741 /**
742  * The CA for X.509 certificate generation
743  */
744 static struct ProxyCA proxy_ca;
745
746 /**
747  * Response we return on cURL failures.
748  */
749 static struct MHD_Response *curl_failure_response;
750
751 /**
752  * Our configuration.
753  */
754 static const struct GNUNET_CONFIGURATION_Handle *cfg;
755
756
757 /* ************************* Global helpers ********************* */
758
759
760 /**
761  * Run MHD now, we have extra data ready for the callback.
762  *
763  * @param hd the daemon to run now.
764  */
765 static void
766 run_mhd_now (struct MhdHttpList *hd);
767
768
769 /**
770  * Clean up s5r handles.
771  *
772  * @param s5r the handle to destroy
773  */
774 static void
775 cleanup_s5r (struct Socks5Request *s5r)
776 {
777   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
778               "Cleaning up socks request\n");
779   if (NULL != s5r->curl)
780   {
781     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
782                 "Cleaning up cURL handle\n");
783     curl_multi_remove_handle (curl_multi,
784                               s5r->curl);
785     curl_easy_cleanup (s5r->curl);
786     s5r->curl = NULL;
787   }
788   if (s5r->suspended)
789   {
790     s5r->suspended = GNUNET_NO;
791     MHD_resume_connection (s5r->con);
792   }
793   curl_slist_free_all (s5r->headers);
794   if (NULL != s5r->hosts)
795   {
796     curl_slist_free_all (s5r->hosts);
797   }
798   if ( (NULL != s5r->response) &&
799        (curl_failure_response != s5r->response) )
800   {
801     MHD_destroy_response (s5r->response);
802     s5r->response = NULL;
803   }
804   if (NULL != s5r->rtask)
805   {
806     GNUNET_SCHEDULER_cancel (s5r->rtask);
807     s5r->rtask = NULL;
808   }
809   if (NULL != s5r->timeout_task)
810   {
811     GNUNET_SCHEDULER_cancel (s5r->timeout_task);
812     s5r->timeout_task = NULL;
813   }
814   if (NULL != s5r->wtask)
815   {
816     GNUNET_SCHEDULER_cancel (s5r->wtask);
817     s5r->wtask = NULL;
818   }
819   if (NULL != s5r->gns_lookup)
820   {
821     GNUNET_GNS_lookup_with_tld_cancel (s5r->gns_lookup);
822     s5r->gns_lookup = NULL;
823   }
824   if (NULL != s5r->sock)
825   {
826     if (SOCKS5_SOCKET_WITH_MHD <= s5r->state)
827       GNUNET_NETWORK_socket_free_memory_only_ (s5r->sock);
828     else
829       GNUNET_NETWORK_socket_close (s5r->sock);
830     s5r->sock = NULL;
831   }
832   GNUNET_CONTAINER_DLL_remove (s5r_head,
833                                s5r_tail,
834                                s5r);
835   GNUNET_free_non_null (s5r->domain);
836   GNUNET_free_non_null (s5r->leho);
837   GNUNET_free_non_null (s5r->url);
838   for (unsigned int i=0;i<s5r->num_danes;i++)
839     GNUNET_free (s5r->dane_data[i]);
840   GNUNET_free (s5r);
841 }
842
843
844 /* ************************* HTTP handling with cURL *********************** */
845
846 static void
847 curl_download_prepare ();
848
849
850 /**
851  * Callback for MHD response generation.  This function is called from
852  * MHD whenever MHD expects to get data back.  Copies data from the
853  * io_buf, if available.
854  *
855  * @param cls closure with our `struct Socks5Request`
856  * @param pos in buffer
857  * @param buf where to copy data
858  * @param max available space in @a buf
859  * @return number of bytes written to @a buf
860  */
861 static ssize_t
862 mhd_content_cb (void *cls,
863                 uint64_t pos,
864                 char* buf,
865                 size_t max)
866 {
867   struct Socks5Request *s5r = cls;
868   size_t bytes_to_copy;
869
870   if ( (SOCKS5_SOCKET_UPLOAD_STARTED == s5r->state) ||
871        (SOCKS5_SOCKET_UPLOAD_DONE == s5r->state) )
872   {
873     /* we're still not done with the upload, do not yet
874        start the download, the IO buffer is still full
875        with upload data. */
876     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
877                 "Pausing MHD download %s%s, not yet ready for download\n",
878                 s5r->domain,
879                 s5r->url);
880     return 0; /* not yet ready for data download */
881   }
882   bytes_to_copy = GNUNET_MIN (max,
883                               s5r->io_len);
884   if ( (0 == bytes_to_copy) &&
885        (SOCKS5_SOCKET_DOWNLOAD_DONE != s5r->state) )
886   {
887     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
888                 "Pausing MHD download %s%s, no data available\n",
889                 s5r->domain,
890                 s5r->url);
891     if (NULL != s5r->curl)
892     {
893       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
894                   "Continuing CURL interaction for %s%s\n",
895                   s5r->domain,
896                   s5r->url);
897       if (GNUNET_YES == s5r->curl_paused)
898       {
899         s5r->curl_paused = GNUNET_NO;
900         curl_easy_pause (s5r->curl,
901                          CURLPAUSE_CONT);
902       }
903       curl_download_prepare ();
904     }
905     if (GNUNET_NO == s5r->suspended)
906     {
907       MHD_suspend_connection (s5r->con);
908       s5r->suspended = GNUNET_YES;
909     }
910     return 0; /* more data later */
911   }
912   if ( (0 == bytes_to_copy) &&
913        (SOCKS5_SOCKET_DOWNLOAD_DONE == s5r->state) )
914   {
915     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
916                 "Completed MHD download %s%s\n",
917                 s5r->domain,
918                 s5r->url);
919     return MHD_CONTENT_READER_END_OF_STREAM;
920   }
921   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
922               "Writing %llu/%llu bytes to %s%s\n",
923               (unsigned long long) bytes_to_copy,
924               (unsigned long long) s5r->io_len,
925               s5r->domain,
926               s5r->url);
927   GNUNET_memcpy (buf,
928                  s5r->io_buf,
929                  bytes_to_copy);
930   memmove (s5r->io_buf,
931            &s5r->io_buf[bytes_to_copy],
932            s5r->io_len - bytes_to_copy);
933   s5r->io_len -= bytes_to_copy;
934   if ( (NULL != s5r->curl) &&
935        (GNUNET_YES == s5r->curl_paused) )
936   {
937     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
938                 "Continuing CURL interaction for %s%s\n",
939                 s5r->domain,
940                 s5r->url);
941     s5r->curl_paused = GNUNET_NO;
942     curl_easy_pause (s5r->curl,
943                      CURLPAUSE_CONT);
944   }
945   return bytes_to_copy;
946 }
947
948
949 /**
950  * Check that the website has presented us with a valid X.509 certificate.
951  * The certificate must either match the domain name or the LEHO name
952  * (or, if available, the TLSA record).
953  *
954  * @param s5r request to check for.
955  * @return #GNUNET_OK if the certificate is valid
956  */
957 static int
958 check_ssl_certificate (struct Socks5Request *s5r)
959 {
960   unsigned int cert_list_size;
961   const gnutls_datum_t *chainp;
962   const struct curl_tlssessioninfo *tlsinfo;
963   char certdn[GNUNET_DNSPARSER_MAX_NAME_LENGTH + 3];
964   size_t size;
965   gnutls_x509_crt_t x509_cert;
966   int rc;
967   const char *name;
968
969   s5r->ssl_checked = GNUNET_YES;
970   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
971               "Checking X.509 certificate\n");
972   if (CURLE_OK !=
973       curl_easy_getinfo (s5r->curl,
974                          CURLINFO_TLS_SESSION,
975                          (struct curl_slist **) &tlsinfo))
976     return GNUNET_SYSERR;
977   if (CURLSSLBACKEND_GNUTLS != tlsinfo->backend)
978   {
979     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
980                 _("Unsupported CURL TLS backend %d\n"),
981                 tlsinfo->backend);
982     return GNUNET_SYSERR;
983   }
984   chainp = gnutls_certificate_get_peers (tlsinfo->internals,
985                                          &cert_list_size);
986   if ( (! chainp) ||
987        (0 == cert_list_size) )
988     return GNUNET_SYSERR;
989
990   size = sizeof (certdn);
991   /* initialize an X.509 certificate structure. */
992   gnutls_x509_crt_init (&x509_cert);
993   gnutls_x509_crt_import (x509_cert,
994                           chainp,
995                           GNUTLS_X509_FMT_DER);
996
997   if (0 != (rc = gnutls_x509_crt_get_dn_by_oid (x509_cert,
998                                                 GNUTLS_OID_X520_COMMON_NAME,
999                                                 0, /* the first and only one */
1000                                                 0 /* no DER encoding */,
1001                                                 certdn,
1002                                                 &size)))
1003   {
1004     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1005                 _("Failed to fetch CN from cert: %s\n"),
1006                 gnutls_strerror(rc));
1007     gnutls_x509_crt_deinit (x509_cert);
1008     return GNUNET_SYSERR;
1009   }
1010   /* check for TLSA/DANE records */
1011 #if HAVE_GNUTLS_DANE
1012   if (0 != s5r->num_danes)
1013   {
1014     dane_state_t dane_state;
1015     dane_query_t dane_query;
1016     unsigned int verify;
1017
1018     /* FIXME: add flags to gnutls to NOT read UNBOUND_ROOT_KEY_FILE here! */
1019     if (0 != (rc = dane_state_init (&dane_state,
1020 #ifdef DANE_F_IGNORE_DNSSEC
1021                                     DANE_F_IGNORE_DNSSEC |
1022 #endif
1023                                     DANE_F_IGNORE_LOCAL_RESOLVER)))
1024     {
1025       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1026                   _("Failed to initialize DANE: %s\n"),
1027                   dane_strerror(rc));
1028       gnutls_x509_crt_deinit (x509_cert);
1029       return GNUNET_SYSERR;
1030     }
1031     s5r->dane_data[s5r->num_danes] = NULL;
1032     s5r->dane_data_len[s5r->num_danes] = 0;
1033     if (0 != (rc = dane_raw_tlsa (dane_state,
1034                                   &dane_query,
1035                                   s5r->dane_data,
1036                                   s5r->dane_data_len,
1037                                   GNUNET_YES,
1038                                   GNUNET_NO)))
1039     {
1040       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1041                   _("Failed to parse DANE record: %s\n"),
1042                   dane_strerror(rc));
1043       dane_state_deinit (dane_state);
1044       gnutls_x509_crt_deinit (x509_cert);
1045       return GNUNET_SYSERR;
1046     }
1047     if (0 != (rc = dane_verify_crt_raw (dane_state,
1048                                         chainp,
1049                                         cert_list_size,
1050                                         gnutls_certificate_type_get (tlsinfo->internals),
1051                                         dane_query,
1052                                         0, 0,
1053                                         &verify)))
1054     {
1055       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1056                   _("Failed to verify TLS connection using DANE: %s\n"),
1057                   dane_strerror(rc));
1058       dane_query_deinit (dane_query);
1059       dane_state_deinit (dane_state);
1060       gnutls_x509_crt_deinit (x509_cert);
1061       return GNUNET_SYSERR;
1062     }
1063     if (0 != verify)
1064     {
1065       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1066                   _("Failed DANE verification failed with GnuTLS verify status code: %u\n"),
1067                   verify);
1068       dane_query_deinit (dane_query);
1069       dane_state_deinit (dane_state);
1070       gnutls_x509_crt_deinit (x509_cert);
1071       return GNUNET_SYSERR;
1072     }
1073     dane_query_deinit (dane_query);
1074     dane_state_deinit (dane_state);
1075     /* success! */
1076   }
1077   else
1078 #endif
1079   {
1080     /* try LEHO or ordinary domain name X509 verification */
1081     name = s5r->domain;
1082     if (NULL != s5r->leho)
1083       name = s5r->leho;
1084     if (NULL != name)
1085     {
1086       if (0 == (rc = gnutls_x509_crt_check_hostname (x509_cert,
1087                                                      name)))
1088       {
1089         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1090                     _("TLS certificate subject name (%s) does not match `%s': %d\n"),
1091                     certdn,
1092                     name,
1093                     rc);
1094         gnutls_x509_crt_deinit (x509_cert);
1095         return GNUNET_SYSERR;
1096       }
1097     }
1098     else
1099     {
1100       /* we did not even have the domain name!? */
1101       GNUNET_break (0);
1102       return GNUNET_SYSERR;
1103     }
1104   }
1105   gnutls_x509_crt_deinit (x509_cert);
1106   return GNUNET_OK;
1107 }
1108
1109
1110 /**
1111  * We're getting an HTTP response header from cURL.  Convert it to the
1112  * MHD response headers.  Mostly copies the headers, but makes special
1113  * adjustments to "Set-Cookie" and "Location" headers as those may need
1114  * to be changed from the LEHO to the domain the browser expects.
1115  *
1116  * @param buffer curl buffer with a single line of header data; not 0-terminated!
1117  * @param size curl blocksize
1118  * @param nmemb curl blocknumber
1119  * @param cls our `struct Socks5Request *`
1120  * @return size of processed bytes
1121  */
1122 static size_t
1123 curl_check_hdr (void *buffer,
1124                 size_t size,
1125                 size_t nmemb,
1126                 void *cls)
1127 {
1128   struct Socks5Request *s5r = cls;
1129   struct HttpResponseHeader *header;
1130   size_t bytes = size * nmemb;
1131   char *ndup;
1132   const char *hdr_type;
1133   const char *cookie_domain;
1134   char *hdr_val;
1135   char *new_cookie_hdr;
1136   char *new_location;
1137   size_t offset;
1138   size_t delta_cdomain;
1139   int domain_matched;
1140   char *tok;
1141
1142   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1143               "Receiving HTTP response header from CURL\n");
1144   /* first, check TLS certificate */
1145   if ( (GNUNET_YES != s5r->ssl_checked) &&
1146        (GNUNET_YES == s5r->is_tls))
1147        //(HTTPS_PORT == s5r->port))
1148   {
1149     if (GNUNET_OK != check_ssl_certificate (s5r))
1150       return 0;
1151   }
1152   ndup = GNUNET_strndup (buffer,
1153                          bytes);
1154   hdr_type = strtok (ndup,
1155                      ":");
1156   if (NULL == hdr_type)
1157   {
1158     GNUNET_free (ndup);
1159     return bytes;
1160   }
1161   hdr_val = strtok (NULL,
1162                     "");
1163   if (NULL == hdr_val)
1164   {
1165     GNUNET_free (ndup);
1166     return bytes;
1167   }
1168   if (' ' == *hdr_val)
1169     hdr_val++;
1170
1171   /* custom logic for certain header types */
1172   new_cookie_hdr = NULL;
1173   if ( (NULL != s5r->leho) &&
1174        (0 == strcasecmp (hdr_type,
1175                          MHD_HTTP_HEADER_SET_COOKIE)) )
1176
1177   {
1178     new_cookie_hdr = GNUNET_malloc (strlen (hdr_val) +
1179                                     strlen (s5r->domain) + 1);
1180     offset = 0;
1181     domain_matched = GNUNET_NO; /* make sure we match domain at most once */
1182     for (tok = strtok (hdr_val, ";"); NULL != tok; tok = strtok (NULL, ";"))
1183     {
1184       if ( (0 == strncasecmp (tok,
1185                               " domain",
1186                               strlen (" domain"))) &&
1187            (GNUNET_NO == domain_matched) )
1188       {
1189         domain_matched = GNUNET_YES;
1190         cookie_domain = tok + strlen (" domain") + 1;
1191         if (strlen (cookie_domain) < strlen (s5r->leho))
1192         {
1193           delta_cdomain = strlen (s5r->leho) - strlen (cookie_domain);
1194           if (0 == strcasecmp (cookie_domain,
1195                                s5r->leho + delta_cdomain))
1196           {
1197             offset += sprintf (new_cookie_hdr + offset,
1198                                " domain=%s;",
1199                                s5r->domain);
1200             continue;
1201           }
1202         }
1203         else if (0 == strcmp (cookie_domain,
1204                               s5r->leho))
1205         {
1206           offset += sprintf (new_cookie_hdr + offset,
1207                              " domain=%s;",
1208                              s5r->domain);
1209           continue;
1210         }
1211         else if ( ('.' == cookie_domain[0]) &&
1212                   (0 == strcmp (&cookie_domain[1],
1213                                 s5r->leho)) )
1214         {
1215           offset += sprintf (new_cookie_hdr + offset,
1216                              " domain=.%s;",
1217                              s5r->domain);
1218           continue;
1219         }
1220         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1221                     _("Cookie domain `%s' supplied by server is invalid\n"),
1222                     tok);
1223       }
1224       GNUNET_memcpy (new_cookie_hdr + offset,
1225                      tok,
1226                      strlen (tok));
1227       offset += strlen (tok);
1228       new_cookie_hdr[offset++] = ';';
1229     }
1230     hdr_val = new_cookie_hdr;
1231   }
1232
1233   new_location = NULL;
1234   if (0 == strcasecmp (MHD_HTTP_HEADER_TRANSFER_ENCODING,
1235                        hdr_type))
1236   {
1237     /* Ignore transfer encoding, set automatically by MHD if required */
1238     goto cleanup;
1239   }
1240   if ((0 == strcasecmp (MHD_HTTP_HEADER_LOCATION,
1241                        hdr_type)))
1242   {
1243     char *leho_host;
1244
1245     GNUNET_asprintf (&leho_host,
1246                      (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1247                      ? "http://%s"
1248                      : "https://%s",
1249                      s5r->leho);
1250     if (0 == strncmp (leho_host,
1251                       hdr_val,
1252                       strlen (leho_host)))
1253     {
1254       GNUNET_asprintf (&new_location,
1255                        "%s%s%s",
1256                        (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1257                        ? "http://"
1258                        : "https://",
1259                        s5r->domain,
1260                        hdr_val + strlen (leho_host));
1261       hdr_val = new_location;
1262     }
1263     GNUNET_free (leho_host);
1264   }
1265   if (0 == strcasecmp (MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN,
1266        hdr_type))
1267   {
1268     char *leho_host;
1269
1270     GNUNET_asprintf (&leho_host,
1271                      (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1272                      ? "http://%s"
1273                      : "https://%s",
1274                      s5r->leho);
1275     if (0 == strncmp (leho_host,
1276                       hdr_val,
1277                       strlen (leho_host)))
1278     {
1279       GNUNET_asprintf (&new_location,
1280                        "%s%s",
1281                        (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1282                        ? "http://"
1283                        : "https://",
1284                        s5r->domain);
1285       hdr_val = new_location;
1286     }
1287     GNUNET_free (leho_host);
1288   }
1289
1290   /* MHD does not allow certain characters in values, remove those */
1291   if (NULL != (tok = strchr (hdr_val, '\n')))
1292     *tok = '\0';
1293   if (NULL != (tok = strchr (hdr_val, '\r')))
1294     *tok = '\0';
1295   if (NULL != (tok = strchr (hdr_val, '\t')))
1296     *tok = '\0';
1297   if (0 != strlen (hdr_val)) /* Rely in MHD to set those */
1298   {
1299     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1300                 "Adding header %s: %s to MHD response\n",
1301                 hdr_type,
1302                 hdr_val);
1303     header = GNUNET_new (struct HttpResponseHeader);
1304     header->type = GNUNET_strdup (hdr_type);
1305     header->value = GNUNET_strdup (hdr_val);
1306     GNUNET_CONTAINER_DLL_insert (s5r->header_head,
1307                                  s5r->header_tail,
1308                                  header);
1309   }
1310  cleanup:
1311   GNUNET_free (ndup);
1312   GNUNET_free_non_null (new_cookie_hdr);
1313   GNUNET_free_non_null (new_location);
1314   return bytes;
1315 }
1316
1317
1318 /**
1319  * Create an MHD response object in @a s5r matching the
1320  * information we got from curl.
1321  *
1322  * @param s5r the request for which we convert the response
1323  * @return #GNUNET_OK on success, #GNUNET_SYSERR if response was
1324  *         already initialized before
1325  */
1326 static int
1327 create_mhd_response_from_s5r (struct Socks5Request *s5r)
1328 {
1329   long resp_code;
1330   double content_length;
1331
1332   if (NULL != s5r->response)
1333   {
1334     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1335                 "Response already set!\n");
1336     return GNUNET_SYSERR;
1337   }
1338
1339   GNUNET_break (CURLE_OK ==
1340                 curl_easy_getinfo (s5r->curl,
1341                                    CURLINFO_RESPONSE_CODE,
1342                                    &resp_code));
1343   GNUNET_break (CURLE_OK ==
1344                 curl_easy_getinfo (s5r->curl,
1345                                    CURLINFO_CONTENT_LENGTH_DOWNLOAD,
1346                                    &content_length));
1347   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1348               "Creating MHD response with code %d and size %d for %s%s\n",
1349               (int) resp_code,
1350               (int) content_length,
1351               s5r->domain,
1352               s5r->url);
1353   s5r->response_code = resp_code;
1354   s5r->response = MHD_create_response_from_callback ((-1 == content_length)
1355                                                      ? MHD_SIZE_UNKNOWN
1356                                                      : content_length,
1357                                                      IO_BUFFERSIZE,
1358                                                      &mhd_content_cb,
1359                                                      s5r,
1360                                                      NULL);
1361   for (struct HttpResponseHeader *header = s5r->header_head;
1362        NULL != header;
1363        header = header->next)
1364   {
1365     GNUNET_break (MHD_YES ==
1366                   MHD_add_response_header (s5r->response,
1367                                            header->type,
1368                                            header->value));
1369
1370   }
1371   /* force connection to be closed after each request, as we
1372      do not support HTTP pipelining (yet, FIXME!) */
1373   /*GNUNET_break (MHD_YES ==
1374     MHD_add_response_header (s5r->response,
1375     MHD_HTTP_HEADER_CONNECTION,
1376     "close"));*/
1377   MHD_resume_connection (s5r->con);
1378   s5r->suspended = GNUNET_NO;
1379   return GNUNET_OK;
1380 }
1381
1382
1383 /**
1384  * Handle response payload data from cURL.  Copies it into our `io_buf` to make
1385  * it available to MHD.
1386  *
1387  * @param ptr pointer to the data
1388  * @param size number of blocks of data
1389  * @param nmemb blocksize
1390  * @param ctx our `struct Socks5Request *`
1391  * @return number of bytes handled
1392  */
1393 static size_t
1394 curl_download_cb (void *ptr,
1395                   size_t size,
1396                   size_t nmemb,
1397                   void* ctx)
1398 {
1399   struct Socks5Request *s5r = ctx;
1400   size_t total = size * nmemb;
1401
1402   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1403               "Receiving %ux%u bytes for `%s%s' from cURL\n",
1404               (unsigned int) size,
1405               (unsigned int) nmemb,
1406               s5r->domain,
1407               s5r->url);
1408   if (NULL == s5r->response)
1409     GNUNET_assert (GNUNET_OK ==
1410                    create_mhd_response_from_s5r (s5r));
1411
1412   if ( (SOCKS5_SOCKET_UPLOAD_STARTED == s5r->state) ||
1413        (SOCKS5_SOCKET_UPLOAD_DONE == s5r->state) )
1414   {
1415     /* we're still not done with the upload, do not yet
1416        start the download, the IO buffer is still full
1417        with upload data. */
1418     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1419                 "Pausing CURL download `%s%s', waiting for UPLOAD to finish\n",
1420                 s5r->domain,
1421                 s5r->url);
1422     s5r->curl_paused = GNUNET_YES;
1423     return CURL_WRITEFUNC_PAUSE; /* not yet ready for data download */
1424   }
1425   if (sizeof (s5r->io_buf) - s5r->io_len < total)
1426   {
1427     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1428                 "Pausing CURL `%s%s' download, not enough space %llu %llu %llu\n",
1429                 s5r->domain,
1430                 s5r->url,
1431                 (unsigned long long) sizeof (s5r->io_buf),
1432                 (unsigned long long) s5r->io_len,
1433                 (unsigned long long) total);
1434     s5r->curl_paused = GNUNET_YES;
1435     return CURL_WRITEFUNC_PAUSE; /* not enough space */
1436   }
1437   GNUNET_memcpy (&s5r->io_buf[s5r->io_len],
1438                  ptr,
1439                  total);
1440   s5r->io_len += total;
1441   if (GNUNET_YES == s5r->suspended)
1442   {
1443     MHD_resume_connection (s5r->con);
1444     s5r->suspended = GNUNET_NO;
1445   }
1446   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1447               "Received %llu bytes of payload via cURL from %s\n",
1448               (unsigned long long) total,
1449               s5r->domain);
1450   if (s5r->io_len == total)
1451     run_mhd_now (s5r->hd);
1452   return total;
1453 }
1454
1455
1456 /**
1457  * cURL callback for uploaded (PUT/POST) data.  Copies it into our `io_buf`
1458  * to make it available to MHD.
1459  *
1460  * @param buf where to write the data
1461  * @param size number of bytes per member
1462  * @param nmemb number of members available in @a buf
1463  * @param cls our `struct Socks5Request` that generated the data
1464  * @return number of bytes copied to @a buf
1465  */
1466 static size_t
1467 curl_upload_cb (void *buf,
1468                 size_t size,
1469                 size_t nmemb,
1470                 void *cls)
1471 {
1472   struct Socks5Request *s5r = cls;
1473   size_t len = size * nmemb;
1474   size_t to_copy;
1475
1476   if ( (0 == s5r->io_len) &&
1477        (SOCKS5_SOCKET_UPLOAD_DONE != s5r->state) )
1478   {
1479     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1480                 "Pausing CURL UPLOAD %s%s, need more data\n",
1481                 s5r->domain,
1482                 s5r->url);
1483     return CURL_READFUNC_PAUSE;
1484   }
1485   if ( (0 == s5r->io_len) &&
1486        (SOCKS5_SOCKET_UPLOAD_DONE == s5r->state) )
1487   {
1488     s5r->state = SOCKS5_SOCKET_DOWNLOAD_STARTED;
1489     if (GNUNET_YES == s5r->curl_paused)
1490     {
1491       s5r->curl_paused = GNUNET_NO;
1492       curl_easy_pause (s5r->curl,
1493                        CURLPAUSE_CONT);
1494     }
1495     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1496                 "Completed CURL UPLOAD %s%s\n",
1497                 s5r->domain,
1498                 s5r->url);
1499     return 0; /* upload finished, can now download */
1500   }
1501   if ( (SOCKS5_SOCKET_UPLOAD_STARTED != s5r->state) &&
1502        (SOCKS5_SOCKET_UPLOAD_DONE != s5r->state) )
1503   {
1504     GNUNET_break (0);
1505     return CURL_READFUNC_ABORT;
1506   }
1507   to_copy = GNUNET_MIN (s5r->io_len,
1508                         len);
1509   GNUNET_memcpy (buf,
1510                  s5r->io_buf,
1511                  to_copy);
1512   memmove (s5r->io_buf,
1513            &s5r->io_buf[to_copy],
1514            s5r->io_len - to_copy);
1515   s5r->io_len -= to_copy;
1516   if (s5r->io_len + to_copy == sizeof (s5r->io_buf))
1517     run_mhd_now (s5r->hd); /* got more space for upload now */
1518   return to_copy;
1519 }
1520
1521
1522 /* ************************** main loop of cURL interaction ****************** */
1523
1524
1525 /**
1526  * Task that is run when we are ready to receive more data
1527  * from curl
1528  *
1529  * @param cls closure
1530  */
1531 static void
1532 curl_task_download (void *cls);
1533
1534
1535 /**
1536  * Ask cURL for the select() sets and schedule cURL operations.
1537  */
1538 static void
1539 curl_download_prepare ()
1540 {
1541   CURLMcode mret;
1542   fd_set rs;
1543   fd_set ws;
1544   fd_set es;
1545   int max;
1546   struct GNUNET_NETWORK_FDSet *grs;
1547   struct GNUNET_NETWORK_FDSet *gws;
1548   long to;
1549   struct GNUNET_TIME_Relative rtime;
1550
1551   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1552               "Scheduling CURL interaction\n");
1553   if (NULL != curl_download_task)
1554   {
1555     GNUNET_SCHEDULER_cancel (curl_download_task);
1556     curl_download_task = NULL;
1557   }
1558   max = -1;
1559   FD_ZERO (&rs);
1560   FD_ZERO (&ws);
1561   FD_ZERO (&es);
1562   if (CURLM_OK != (mret = curl_multi_fdset (curl_multi,
1563                                             &rs,
1564                                             &ws,
1565                                             &es,
1566                                             &max)))
1567   {
1568     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1569                 "%s failed at %s:%d: `%s'\n",
1570                 "curl_multi_fdset", __FILE__, __LINE__,
1571                 curl_multi_strerror (mret));
1572     return;
1573   }
1574   to = -1;
1575   GNUNET_break (CURLM_OK ==
1576                 curl_multi_timeout (curl_multi,
1577                                     &to));
1578   if (-1 == to)
1579     rtime = GNUNET_TIME_UNIT_FOREVER_REL;
1580   else
1581     rtime = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
1582                                            to);
1583   if (-1 != max)
1584   {
1585     grs = GNUNET_NETWORK_fdset_create ();
1586     gws = GNUNET_NETWORK_fdset_create ();
1587     GNUNET_NETWORK_fdset_copy_native (grs,
1588                                       &rs,
1589                                       max + 1);
1590     GNUNET_NETWORK_fdset_copy_native (gws,
1591                                       &ws,
1592                                       max + 1);
1593     curl_download_task = GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
1594                                                       rtime,
1595                                                       grs,
1596                                                       gws,
1597                                                       &curl_task_download,
1598                                                       curl_multi);
1599     GNUNET_NETWORK_fdset_destroy (gws);
1600     GNUNET_NETWORK_fdset_destroy (grs);
1601   }
1602   else
1603   {
1604     curl_download_task = GNUNET_SCHEDULER_add_delayed (rtime,
1605                                                        &curl_task_download,
1606                                                        curl_multi);
1607   }
1608 }
1609
1610
1611 /**
1612  * Task that is run when we are ready to receive more data from curl.
1613  *
1614  * @param cls closure, NULL
1615  */
1616 static void
1617 curl_task_download (void *cls)
1618 {
1619   int running;
1620   int msgnum;
1621   struct CURLMsg *msg;
1622   CURLMcode mret;
1623   struct Socks5Request *s5r;
1624
1625   curl_download_task = NULL;
1626   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1627               "Running CURL interaction\n");
1628   do
1629   {
1630     running = 0;
1631     mret = curl_multi_perform (curl_multi,
1632                                &running);
1633     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1634                 "Checking CURL multi status: %d\n",
1635                 mret);
1636     while (NULL != (msg = curl_multi_info_read (curl_multi,
1637                                                 &msgnum)))
1638     {
1639       GNUNET_break (CURLE_OK ==
1640                     curl_easy_getinfo (msg->easy_handle,
1641                                        CURLINFO_PRIVATE,
1642                                        (char **) &s5r ));
1643       if (NULL == s5r)
1644       {
1645         GNUNET_break (0);
1646         continue;
1647       }
1648       switch (msg->msg)
1649       {
1650         case CURLMSG_NONE:
1651           /* documentation says this is not used */
1652           GNUNET_break (0);
1653           break;
1654         case CURLMSG_DONE:
1655           switch (msg->data.result)
1656           {
1657             case CURLE_OK:
1658             case CURLE_GOT_NOTHING:
1659               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1660                           "CURL download %s%s completed.\n",
1661                           s5r->domain,
1662                           s5r->url);
1663               if (NULL == s5r->response)
1664               {
1665                 GNUNET_assert (GNUNET_OK ==
1666                                create_mhd_response_from_s5r (s5r));
1667               }
1668               s5r->state = SOCKS5_SOCKET_DOWNLOAD_DONE;
1669               if (GNUNET_YES == s5r->suspended)
1670               {
1671                 MHD_resume_connection (s5r->con);
1672                 s5r->suspended = GNUNET_NO;
1673               }
1674               run_mhd_now (s5r->hd);
1675               break;
1676             default:
1677               GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1678                           "Download curl %s%s failed: %s\n",
1679                           s5r->domain,
1680                           s5r->url,
1681                           curl_easy_strerror (msg->data.result));
1682               /* FIXME: indicate error somehow? close MHD connection badly as well? */
1683               s5r->state = SOCKS5_SOCKET_DOWNLOAD_DONE;
1684               if (GNUNET_YES == s5r->suspended)
1685               {
1686                 MHD_resume_connection (s5r->con);
1687                 s5r->suspended = GNUNET_NO;
1688               }
1689               run_mhd_now (s5r->hd);
1690               break;
1691           }
1692           if (NULL == s5r->response)
1693             s5r->response = curl_failure_response;
1694           break;
1695         case CURLMSG_LAST:
1696           /* documentation says this is not used */
1697           GNUNET_break (0);
1698           break;
1699         default:
1700           /* unexpected status code */
1701           GNUNET_break (0);
1702           break;
1703       }
1704     };
1705   } while (mret == CURLM_CALL_MULTI_PERFORM);
1706   if (CURLM_OK != mret)
1707     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1708                 "%s failed at %s:%d: `%s'\n",
1709                 "curl_multi_perform", __FILE__, __LINE__,
1710                 curl_multi_strerror (mret));
1711   if (0 == running)
1712   {
1713     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1714                 "Suspending cURL multi loop, no more events pending\n");
1715     if (NULL != curl_download_task)
1716     {
1717       GNUNET_SCHEDULER_cancel (curl_download_task);
1718       curl_download_task = NULL;
1719     }
1720     return; /* nothing more in progress */
1721   }
1722   curl_download_prepare ();
1723 }
1724
1725
1726 /* ********************************* MHD response generation ******************* */
1727
1728
1729 /**
1730  * Read HTTP request header field from the request.  Copies the fields
1731  * over to the 'headers' that will be given to curl.  However, 'Host'
1732  * is substituted with the LEHO if present.  We also change the
1733  * 'Connection' header value to "close" as the proxy does not support
1734  * pipelining.
1735  *
1736  * @param cls our `struct Socks5Request`
1737  * @param kind value kind
1738  * @param key field key
1739  * @param value field value
1740  * @return #MHD_YES to continue to iterate
1741  */
1742 static int
1743 con_val_iter (void *cls,
1744               enum MHD_ValueKind kind,
1745               const char *key,
1746               const char *value)
1747 {
1748   struct Socks5Request *s5r = cls;
1749   char *hdr;
1750
1751   if ( (0 == strcasecmp (MHD_HTTP_HEADER_HOST,
1752                          key)) &&
1753        (NULL != s5r->leho) )
1754     value = s5r->leho;
1755   GNUNET_asprintf (&hdr,
1756                    "%s: %s",
1757                    key,
1758                    value);
1759   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1760               "Adding HEADER `%s' to HTTP request\n",
1761               hdr);
1762   s5r->headers = curl_slist_append (s5r->headers,
1763                                     hdr);
1764   GNUNET_free (hdr);
1765   return MHD_YES;
1766 }
1767
1768
1769 /**
1770  * Main MHD callback for handling requests.
1771  *
1772  * @param cls unused
1773  * @param con MHD connection handle
1774  * @param url the url in the request
1775  * @param meth the HTTP method used ("GET", "PUT", etc.)
1776  * @param ver the HTTP version string (i.e. "HTTP/1.1")
1777  * @param upload_data the data being uploaded (excluding HEADERS,
1778  *        for a POST that fits into memory and that is encoded
1779  *        with a supported encoding, the POST data will NOT be
1780  *        given in upload_data and is instead available as
1781  *        part of MHD_get_connection_values; very large POST
1782  *        data *will* be made available incrementally in
1783  *        upload_data)
1784  * @param upload_data_size set initially to the size of the
1785  *        @a upload_data provided; the method must update this
1786  *        value to the number of bytes NOT processed;
1787  * @param con_cls pointer to location where we store the `struct Request`
1788  * @return #MHD_YES if the connection was handled successfully,
1789  *         #MHD_NO if the socket must be closed due to a serious
1790  *         error while handling the request
1791  */
1792 static int
1793 create_response (void *cls,
1794                  struct MHD_Connection *con,
1795                  const char *url,
1796                  const char *meth,
1797                  const char *ver,
1798                  const char *upload_data,
1799                  size_t *upload_data_size,
1800                  void **con_cls)
1801 {
1802   struct Socks5Request *s5r = *con_cls;
1803   char *curlurl;
1804   char ipstring[INET6_ADDRSTRLEN];
1805   char ipaddr[INET6_ADDRSTRLEN + 2];
1806   const struct sockaddr *sa;
1807   const struct sockaddr_in *s4;
1808   const struct sockaddr_in6 *s6;
1809   uint16_t port;
1810   size_t left;
1811
1812   if (NULL == s5r)
1813   {
1814     GNUNET_break (0);
1815     return MHD_NO;
1816   }
1817   s5r->con = con;
1818   /* Fresh connection. */
1819   if (SOCKS5_SOCKET_WITH_MHD == s5r->state)
1820   {
1821     /* first time here, initialize curl handle */
1822     if (s5r->is_gns)
1823     {
1824       sa = (const struct sockaddr *) &s5r->destination_address;
1825       switch (sa->sa_family)
1826       {
1827       case AF_INET:
1828         s4 = (const struct sockaddr_in *) &s5r->destination_address;
1829         if (NULL == inet_ntop (AF_INET,
1830                                &s4->sin_addr,
1831                                ipstring,
1832                                sizeof (ipstring)))
1833         {
1834           GNUNET_break (0);
1835           return MHD_NO;
1836         }
1837         GNUNET_snprintf (ipaddr,
1838                          sizeof (ipaddr),
1839                          "%s",
1840                          ipstring);
1841         port = ntohs (s4->sin_port);
1842         break;
1843       case AF_INET6:
1844         s6 = (const struct sockaddr_in6 *) &s5r->destination_address;
1845         if (NULL == inet_ntop (AF_INET6,
1846                                &s6->sin6_addr,
1847                                ipstring,
1848                                sizeof (ipstring)))
1849         {
1850           GNUNET_break (0);
1851           return MHD_NO;
1852         }
1853         GNUNET_snprintf (ipaddr,
1854                          sizeof (ipaddr),
1855                          "%s",
1856                          ipstring);
1857         port = ntohs (s6->sin6_port);
1858         break;
1859       default:
1860         GNUNET_break (0);
1861         return MHD_NO;
1862       }
1863     }
1864     else
1865     {
1866       port = s5r->port;
1867     }
1868     if (NULL == s5r->curl)
1869       s5r->curl = curl_easy_init ();
1870     if (NULL == s5r->curl)
1871       return MHD_queue_response (con,
1872                                  MHD_HTTP_INTERNAL_SERVER_ERROR,
1873                                  curl_failure_response);
1874     curl_easy_setopt (s5r->curl,
1875                       CURLOPT_HEADERFUNCTION,
1876                       &curl_check_hdr);
1877     curl_easy_setopt (s5r->curl,
1878                       CURLOPT_HEADERDATA,
1879                       s5r);
1880     curl_easy_setopt (s5r->curl,
1881                       CURLOPT_FOLLOWLOCATION,
1882                       0);
1883     if (s5r->is_gns)
1884       curl_easy_setopt (s5r->curl,
1885                         CURLOPT_IPRESOLVE,
1886                         CURL_IPRESOLVE_V4);
1887     curl_easy_setopt (s5r->curl,
1888                       CURLOPT_CONNECTTIMEOUT,
1889                       600L);
1890     curl_easy_setopt (s5r->curl,
1891                       CURLOPT_TIMEOUT,
1892                       600L);
1893     curl_easy_setopt (s5r->curl,
1894                       CURLOPT_NOSIGNAL,
1895                       1L);
1896     curl_easy_setopt (s5r->curl,
1897                       CURLOPT_HTTP_CONTENT_DECODING,
1898                       0);
1899     curl_easy_setopt (s5r->curl,
1900                       CURLOPT_NOSIGNAL,
1901                       1L);
1902     curl_easy_setopt (s5r->curl,
1903                       CURLOPT_PRIVATE,
1904                       s5r);
1905     curl_easy_setopt (s5r->curl,
1906                       CURLOPT_VERBOSE,
1907                       0L);
1908     /**
1909      * Pre-populate cache to resolve Hostname.
1910      * This is necessary as the DNS name in the CURLOPT_URL is used
1911      * for SNI http://de.wikipedia.org/wiki/Server_Name_Indication
1912      */
1913     if (NULL != s5r->leho)
1914     {
1915       char *curl_hosts;
1916
1917       GNUNET_asprintf (&curl_hosts,
1918                        "%s:%d:%s",
1919                        s5r->leho,
1920                        port,
1921                        ipaddr);
1922       s5r->hosts = curl_slist_append (NULL,
1923                                       curl_hosts);
1924       curl_easy_setopt (s5r->curl,
1925                         CURLOPT_RESOLVE,
1926                         s5r->hosts);
1927       GNUNET_free (curl_hosts);
1928     }
1929     if (s5r->is_gns)
1930     {
1931       GNUNET_asprintf (&curlurl,
1932                        (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1933                        ? "http://%s:%d%s"
1934                        : "https://%s:%d%s",
1935                        (NULL != s5r->leho)
1936                        ? s5r->leho
1937                        : ipaddr,
1938                        port,
1939                        s5r->url);
1940     }
1941     else
1942     {
1943       GNUNET_asprintf (&curlurl,
1944                        (GNUNET_YES != s5r->is_tls) //(HTTPS_PORT != s5r->port)
1945                        ? "http://%s:%d%s"
1946                        : "https://%s:%d%s",
1947                        s5r->domain,
1948                        port,
1949                        s5r->url);
1950     }
1951     curl_easy_setopt (s5r->curl,
1952                       CURLOPT_URL,
1953                       curlurl);
1954     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1955                 "Launching %s CURL interaction, fetching `%s'\n",
1956                 (s5r->is_gns) ? "GNS" : "DNS",
1957                 curlurl);
1958     GNUNET_free (curlurl);
1959     if (0 == strcasecmp (meth,
1960                          MHD_HTTP_METHOD_PUT))
1961     {
1962       s5r->state = SOCKS5_SOCKET_UPLOAD_STARTED;
1963       curl_easy_setopt (s5r->curl,
1964                         CURLOPT_UPLOAD,
1965                         1L);
1966       curl_easy_setopt (s5r->curl,
1967                         CURLOPT_WRITEFUNCTION,
1968                         &curl_download_cb);
1969       curl_easy_setopt (s5r->curl,
1970                         CURLOPT_WRITEDATA,
1971                         s5r);
1972       GNUNET_assert (CURLE_OK ==
1973                      curl_easy_setopt (s5r->curl,
1974                                        CURLOPT_READFUNCTION,
1975                                        &curl_upload_cb));
1976       curl_easy_setopt (s5r->curl,
1977                         CURLOPT_READDATA,
1978                         s5r);
1979       {
1980         const char *us;
1981         long upload_size = 0;
1982
1983         us = MHD_lookup_connection_value (con,
1984                                           MHD_HEADER_KIND,
1985                                           MHD_HTTP_HEADER_CONTENT_LENGTH);
1986         if ( (1 == sscanf (us,
1987                            "%ld",
1988                            &upload_size)) &&
1989              (upload_size >= 0) )
1990         {
1991           curl_easy_setopt (s5r->curl,
1992                             CURLOPT_INFILESIZE,
1993                             upload_size);
1994         }
1995       }
1996     }
1997     else if (0 == strcasecmp (meth, MHD_HTTP_METHOD_POST))
1998     {
1999       s5r->state = SOCKS5_SOCKET_UPLOAD_STARTED;
2000       curl_easy_setopt (s5r->curl,
2001                         CURLOPT_POST,
2002                         1L);
2003       curl_easy_setopt (s5r->curl,
2004                         CURLOPT_WRITEFUNCTION,
2005                         &curl_download_cb);
2006       curl_easy_setopt (s5r->curl,
2007                         CURLOPT_WRITEDATA,
2008                         s5r);
2009       curl_easy_setopt (s5r->curl,
2010                         CURLOPT_READFUNCTION,
2011                         &curl_upload_cb);
2012       curl_easy_setopt (s5r->curl,
2013                         CURLOPT_READDATA,
2014                         s5r);
2015       {
2016         const char *us;
2017         long upload_size;
2018
2019         us = MHD_lookup_connection_value (con,
2020                                           MHD_HEADER_KIND,
2021                                           MHD_HTTP_HEADER_CONTENT_LENGTH);
2022         if ( (NULL != us) &&
2023              (1 == sscanf (us,
2024                            "%ld",
2025                            &upload_size)) &&
2026              (upload_size >= 0) )
2027         {
2028           curl_easy_setopt (s5r->curl,
2029                             CURLOPT_INFILESIZE,
2030                             upload_size);
2031         } else {
2032           curl_easy_setopt (s5r->curl,
2033                             CURLOPT_INFILESIZE,
2034                             upload_size);
2035         }
2036       }
2037     }
2038     else if (0 == strcasecmp (meth,
2039                               MHD_HTTP_METHOD_HEAD))
2040     {
2041       s5r->state = SOCKS5_SOCKET_DOWNLOAD_STARTED;
2042       curl_easy_setopt (s5r->curl,
2043                         CURLOPT_NOBODY,
2044                         1L);
2045     }
2046     else if (0 == strcasecmp (meth,
2047                               MHD_HTTP_METHOD_OPTIONS))
2048     {
2049       s5r->state = SOCKS5_SOCKET_DOWNLOAD_STARTED;
2050       curl_easy_setopt (s5r->curl,
2051                         CURLOPT_CUSTOMREQUEST,
2052                         "OPTIONS");
2053       curl_easy_setopt (s5r->curl,
2054                         CURLOPT_WRITEFUNCTION,
2055                         &curl_download_cb);
2056       curl_easy_setopt (s5r->curl,
2057                         CURLOPT_WRITEDATA,
2058                         s5r);
2059
2060     }
2061     else if (0 == strcasecmp (meth,
2062                               MHD_HTTP_METHOD_GET))
2063     {
2064       s5r->state = SOCKS5_SOCKET_DOWNLOAD_STARTED;
2065       curl_easy_setopt (s5r->curl,
2066                         CURLOPT_HTTPGET,
2067                         1L);
2068       curl_easy_setopt (s5r->curl,
2069                         CURLOPT_WRITEFUNCTION,
2070                         &curl_download_cb);
2071       curl_easy_setopt (s5r->curl,
2072                         CURLOPT_WRITEDATA,
2073                         s5r);
2074     }
2075     else if (0 == strcasecmp (meth,
2076                               MHD_HTTP_METHOD_DELETE))
2077     {
2078       s5r->state = SOCKS5_SOCKET_DOWNLOAD_STARTED;
2079       curl_easy_setopt (s5r->curl,
2080                         CURLOPT_CUSTOMREQUEST,
2081                         "DELETE");
2082       curl_easy_setopt (s5r->curl,
2083                         CURLOPT_WRITEFUNCTION,
2084                         &curl_download_cb);
2085       curl_easy_setopt (s5r->curl,
2086                         CURLOPT_WRITEDATA,
2087                         s5r);
2088     }
2089     else
2090     {
2091       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2092                   _("Unsupported HTTP method `%s'\n"),
2093                   meth);
2094       curl_easy_cleanup (s5r->curl);
2095       s5r->curl = NULL;
2096       return MHD_NO;
2097     }
2098
2099     if (0 == strcasecmp (ver, MHD_HTTP_VERSION_1_0))
2100     {
2101       curl_easy_setopt (s5r->curl,
2102                         CURLOPT_HTTP_VERSION,
2103                         CURL_HTTP_VERSION_1_0);
2104     }
2105     else if (0 == strcasecmp (ver, MHD_HTTP_VERSION_1_1))
2106     {
2107       curl_easy_setopt (s5r->curl,
2108                         CURLOPT_HTTP_VERSION,
2109                         CURL_HTTP_VERSION_1_1);
2110     }
2111     else
2112     {
2113       curl_easy_setopt (s5r->curl,
2114                         CURLOPT_HTTP_VERSION,
2115                         CURL_HTTP_VERSION_NONE);
2116     }
2117
2118     if (GNUNET_YES == s5r->is_tls) //(HTTPS_PORT == s5r->port)
2119     {
2120       curl_easy_setopt (s5r->curl,
2121                         CURLOPT_USE_SSL,
2122                         CURLUSESSL_ALL);
2123       if (NULL != s5r->dane_data)
2124         curl_easy_setopt (s5r->curl,
2125                           CURLOPT_SSL_VERIFYPEER,
2126                           0L);
2127       else
2128         curl_easy_setopt (s5r->curl,
2129                           CURLOPT_SSL_VERIFYPEER,
2130                           1L);
2131       /* Disable cURL checking the hostname, as we will check ourselves
2132          as only we have the domain name or the LEHO or the DANE record */
2133       curl_easy_setopt (s5r->curl,
2134                         CURLOPT_SSL_VERIFYHOST,
2135                         0L);
2136     }
2137     else
2138     {
2139       curl_easy_setopt (s5r->curl,
2140                         CURLOPT_USE_SSL,
2141                         CURLUSESSL_NONE);
2142     }
2143
2144     if (CURLM_OK !=
2145         curl_multi_add_handle (curl_multi,
2146                                s5r->curl))
2147     {
2148       GNUNET_break (0);
2149       curl_easy_cleanup (s5r->curl);
2150       s5r->curl = NULL;
2151       return MHD_NO;
2152     }
2153     MHD_get_connection_values (con,
2154                                MHD_HEADER_KIND,
2155                                &con_val_iter,
2156                                s5r);
2157     curl_easy_setopt (s5r->curl,
2158                       CURLOPT_HTTPHEADER,
2159                       s5r->headers);
2160     curl_download_prepare ();
2161     return MHD_YES;
2162   }
2163
2164   /* continuing to process request */
2165   if (0 != *upload_data_size)
2166   {
2167     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2168                 "Processing %u bytes UPLOAD\n",
2169                 (unsigned int) *upload_data_size);
2170
2171     /* FIXME: This must be set or a header with Transfer-Encoding: chunked. Else
2172      * upload callback is not called!
2173      */
2174     curl_easy_setopt (s5r->curl,
2175                       CURLOPT_POSTFIELDSIZE,
2176                       *upload_data_size);
2177
2178     left = GNUNET_MIN (*upload_data_size,
2179                        sizeof (s5r->io_buf) - s5r->io_len);
2180     GNUNET_memcpy (&s5r->io_buf[s5r->io_len],
2181                    upload_data,
2182                    left);
2183     s5r->io_len += left;
2184     *upload_data_size -= left;
2185     GNUNET_assert (NULL != s5r->curl);
2186     if (GNUNET_YES == s5r->curl_paused)
2187     {
2188       s5r->curl_paused = GNUNET_NO;
2189       curl_easy_pause (s5r->curl,
2190                        CURLPAUSE_CONT);
2191     }
2192     return MHD_YES;
2193   }
2194   if (SOCKS5_SOCKET_UPLOAD_STARTED == s5r->state)
2195   {
2196     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2197                 "Finished processing UPLOAD\n");
2198     s5r->state = SOCKS5_SOCKET_UPLOAD_DONE;
2199   }
2200   if (NULL == s5r->response)
2201   {
2202     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2203                 "Waiting for HTTP response for %s%s...\n",
2204                 s5r->domain,
2205                 s5r->url);
2206     MHD_suspend_connection (con);
2207     s5r->suspended = GNUNET_YES;
2208     return MHD_YES;
2209   }
2210   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2211               "Queueing response for %s%s with MHD\n",
2212               s5r->domain,
2213               s5r->url);
2214   run_mhd_now (s5r->hd);
2215   return MHD_queue_response (con,
2216                              s5r->response_code,
2217                              s5r->response);
2218 }
2219
2220
2221 /* ******************** MHD HTTP setup and event loop ******************** */
2222
2223
2224 /**
2225  * Function called when MHD decides that we are done with a request.
2226  *
2227  * @param cls NULL
2228  * @param connection connection handle
2229  * @param con_cls value as set by the last call to
2230  *        the MHD_AccessHandlerCallback, should be our `struct Socks5Request *`
2231  * @param toe reason for request termination (ignored)
2232  */
2233 static void
2234 mhd_completed_cb (void *cls,
2235                   struct MHD_Connection *connection,
2236                   void **con_cls,
2237                   enum MHD_RequestTerminationCode toe)
2238 {
2239   struct Socks5Request *s5r = *con_cls;
2240
2241   if (NULL == s5r)
2242     return;
2243   if (MHD_REQUEST_TERMINATED_COMPLETED_OK != toe)
2244     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
2245                 "MHD encountered error handling request: %d\n",
2246                 toe);
2247   if (NULL != s5r->curl)
2248   {
2249     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2250                 "Removing cURL handle (MHD interaction complete)\n");
2251     curl_multi_remove_handle (curl_multi,
2252                               s5r->curl);
2253     curl_slist_free_all (s5r->headers);
2254     s5r->headers = NULL;
2255     curl_easy_reset (s5r->curl);
2256     s5r->rbuf_len = 0;
2257     s5r->wbuf_len = 0;
2258     s5r->io_len = 0;
2259     curl_download_prepare ();
2260   }
2261   if ( (NULL != s5r->response) &&
2262        (curl_failure_response != s5r->response) )
2263     MHD_destroy_response (s5r->response);
2264   for (struct HttpResponseHeader *header = s5r->header_head;
2265        NULL != header;
2266        header = s5r->header_head)
2267   {
2268     GNUNET_CONTAINER_DLL_remove (s5r->header_head,
2269                                  s5r->header_tail,
2270                                  header);
2271     GNUNET_free (header->type);
2272     GNUNET_free (header->value);
2273     GNUNET_free (header);
2274   }
2275   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2276               "Finished request for %s\n",
2277               s5r->url);
2278   GNUNET_free (s5r->url);
2279   s5r->state = SOCKS5_SOCKET_WITH_MHD;
2280   s5r->url = NULL;
2281   s5r->response = NULL;
2282   *con_cls = NULL;
2283 }
2284
2285
2286 /**
2287  * Function called when MHD connection is opened or closed.
2288  *
2289  * @param cls NULL
2290  * @param connection connection handle
2291  * @param con_cls value as set by the last call to
2292  *        the MHD_AccessHandlerCallback, should be our `struct Socks5Request *`
2293  * @param toe connection notification type
2294  */
2295 static void
2296 mhd_connection_cb (void *cls,
2297                    struct MHD_Connection *connection,
2298                    void **con_cls,
2299                    enum MHD_ConnectionNotificationCode cnc)
2300 {
2301   struct Socks5Request *s5r;
2302   const union MHD_ConnectionInfo *ci;
2303   int sock;
2304
2305   switch (cnc)
2306   {
2307     case MHD_CONNECTION_NOTIFY_STARTED:
2308       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connection started...\n");
2309       ci = MHD_get_connection_info (connection,
2310                                     MHD_CONNECTION_INFO_CONNECTION_FD);
2311       if (NULL == ci)
2312       {
2313         GNUNET_break (0);
2314         return;
2315       }
2316       sock = ci->connect_fd;
2317       for (s5r = s5r_head; NULL != s5r; s5r = s5r->next)
2318       {
2319         if (GNUNET_NETWORK_get_fd (s5r->sock) == sock)
2320         {
2321           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2322                       "Context set...\n");
2323           s5r->ssl_checked = GNUNET_NO;
2324           *con_cls = s5r;
2325           break;
2326         }
2327       }
2328       break;
2329     case MHD_CONNECTION_NOTIFY_CLOSED:
2330       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2331                   "Connection closed... cleaning up\n");
2332       s5r = *con_cls;
2333       if (NULL == s5r)
2334       {
2335         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2336                     "Connection stale!\n");
2337         return;
2338       }
2339       cleanup_s5r (s5r);
2340       curl_download_prepare ();
2341       *con_cls = NULL;
2342       break;
2343     default:
2344       GNUNET_break (0);
2345   }
2346 }
2347
2348 /**
2349  * Function called when MHD first processes an incoming connection.
2350  * Gives us the respective URI information.
2351  *
2352  * We use this to associate the `struct MHD_Connection` with our
2353  * internal `struct Socks5Request` data structure (by checking
2354  * for matching sockets).
2355  *
2356  * @param cls the HTTP server handle (a `struct MhdHttpList`)
2357  * @param url the URL that is being requested
2358  * @param connection MHD connection object for the request
2359  * @return the `struct Socks5Request` that this @a connection is for
2360  */
2361 static void *
2362 mhd_log_callback (void *cls,
2363                   const char *url,
2364                   struct MHD_Connection *connection)
2365 {
2366   struct Socks5Request *s5r;
2367   const union MHD_ConnectionInfo *ci;
2368
2369   ci = MHD_get_connection_info (connection,
2370                                 MHD_CONNECTION_INFO_SOCKET_CONTEXT);
2371   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Processing %s\n", url);
2372   if (NULL == ci)
2373   {
2374     GNUNET_break (0);
2375     return NULL;
2376   }
2377   s5r = ci->socket_context;
2378   if (NULL != s5r->url)
2379   {
2380     GNUNET_break (0);
2381     return NULL;
2382   }
2383   s5r->url = GNUNET_strdup (url);
2384   if (NULL != s5r->timeout_task)
2385   {
2386     GNUNET_SCHEDULER_cancel (s5r->timeout_task);
2387     s5r->timeout_task = NULL;
2388   }
2389   GNUNET_assert (s5r->state == SOCKS5_SOCKET_WITH_MHD);
2390   return s5r;
2391 }
2392
2393
2394 /**
2395  * Kill the given MHD daemon.
2396  *
2397  * @param hd daemon to stop
2398  */
2399 static void
2400 kill_httpd (struct MhdHttpList *hd)
2401 {
2402   GNUNET_CONTAINER_DLL_remove (mhd_httpd_head,
2403                                mhd_httpd_tail,
2404                                hd);
2405   GNUNET_free_non_null (hd->domain);
2406   MHD_stop_daemon (hd->daemon);
2407   if (NULL != hd->httpd_task)
2408   {
2409     GNUNET_SCHEDULER_cancel (hd->httpd_task);
2410     hd->httpd_task = NULL;
2411   }
2412   GNUNET_free_non_null (hd->proxy_cert);
2413   if (hd == httpd)
2414     httpd = NULL;
2415   GNUNET_free (hd);
2416 }
2417
2418
2419 /**
2420  * Task run whenever HTTP server is idle for too long. Kill it.
2421  *
2422  * @param cls the `struct MhdHttpList *`
2423  */
2424 static void
2425 kill_httpd_task (void *cls)
2426 {
2427   struct MhdHttpList *hd = cls;
2428
2429   hd->httpd_task = NULL;
2430   kill_httpd (hd);
2431 }
2432
2433
2434 /**
2435  * Task run whenever HTTP server operations are pending.
2436  *
2437  * @param cls the `struct MhdHttpList *` of the daemon that is being run
2438  */
2439 static void
2440 do_httpd (void *cls);
2441
2442
2443 /**
2444  * Schedule MHD.  This function should be called initially when an
2445  * MHD is first getting its client socket, and will then automatically
2446  * always be called later whenever there is work to be done.
2447  *
2448  * @param hd the daemon to schedule
2449  */
2450 static void
2451 schedule_httpd (struct MhdHttpList *hd)
2452 {
2453   fd_set rs;
2454   fd_set ws;
2455   fd_set es;
2456   struct GNUNET_NETWORK_FDSet *wrs;
2457   struct GNUNET_NETWORK_FDSet *wws;
2458   int max;
2459   int haveto;
2460   MHD_UNSIGNED_LONG_LONG timeout;
2461   struct GNUNET_TIME_Relative tv;
2462
2463   FD_ZERO (&rs);
2464   FD_ZERO (&ws);
2465   FD_ZERO (&es);
2466   max = -1;
2467   if (MHD_YES !=
2468       MHD_get_fdset (hd->daemon,
2469                      &rs,
2470                      &ws,
2471                      &es,
2472                      &max))
2473   {
2474     kill_httpd (hd);
2475     return;
2476   }
2477   haveto = MHD_get_timeout (hd->daemon,
2478                             &timeout);
2479   if (MHD_YES == haveto)
2480     tv.rel_value_us = (uint64_t) timeout * 1000LL;
2481   else
2482     tv = GNUNET_TIME_UNIT_FOREVER_REL;
2483   if (-1 != max)
2484   {
2485     wrs = GNUNET_NETWORK_fdset_create ();
2486     wws = GNUNET_NETWORK_fdset_create ();
2487     GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
2488     GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
2489   }
2490   else
2491   {
2492     wrs = NULL;
2493     wws = NULL;
2494   }
2495   if (NULL != hd->httpd_task)
2496   {
2497     GNUNET_SCHEDULER_cancel (hd->httpd_task);
2498     hd->httpd_task = NULL;
2499   }
2500   if ( (MHD_YES != haveto) &&
2501        (-1 == max) &&
2502        (hd != httpd) )
2503   {
2504     /* daemon is idle, kill after timeout */
2505     hd->httpd_task = GNUNET_SCHEDULER_add_delayed (MHD_CACHE_TIMEOUT,
2506                                                    &kill_httpd_task,
2507                                                    hd);
2508   }
2509   else
2510   {
2511     hd->httpd_task =
2512       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
2513                                    tv, wrs, wws,
2514                                    &do_httpd, hd);
2515   }
2516   if (NULL != wrs)
2517     GNUNET_NETWORK_fdset_destroy (wrs);
2518   if (NULL != wws)
2519     GNUNET_NETWORK_fdset_destroy (wws);
2520 }
2521
2522
2523 /**
2524  * Task run whenever HTTP server operations are pending.
2525  *
2526  * @param cls the `struct MhdHttpList` of the daemon that is being run
2527  */
2528 static void
2529 do_httpd (void *cls)
2530 {
2531   struct MhdHttpList *hd = cls;
2532
2533   hd->httpd_task = NULL;
2534   MHD_run (hd->daemon);
2535   schedule_httpd (hd);
2536 }
2537
2538
2539 /**
2540  * Run MHD now, we have extra data ready for the callback.
2541  *
2542  * @param hd the daemon to run now.
2543  */
2544 static void
2545 run_mhd_now (struct MhdHttpList *hd)
2546 {
2547   if (NULL != hd->httpd_task)
2548     GNUNET_SCHEDULER_cancel (hd->httpd_task);
2549   hd->httpd_task = GNUNET_SCHEDULER_add_now (&do_httpd,
2550                                              hd);
2551 }
2552
2553
2554 /**
2555  * Read file in filename
2556  *
2557  * @param filename file to read
2558  * @param size pointer where filesize is stored
2559  * @return NULL on error
2560  */
2561 static void*
2562 load_file (const char* filename,
2563            unsigned int* size)
2564 {
2565   void *buffer;
2566   uint64_t fsize;
2567
2568   if (GNUNET_OK !=
2569       GNUNET_DISK_file_size (filename,
2570                              &fsize,
2571                              GNUNET_YES,
2572                              GNUNET_YES))
2573     return NULL;
2574   if (fsize > MAX_PEM_SIZE)
2575     return NULL;
2576   *size = (unsigned int) fsize;
2577   buffer = GNUNET_malloc (*size);
2578   if (fsize !=
2579       GNUNET_DISK_fn_read (filename,
2580                            buffer,
2581                            (size_t) fsize))
2582   {
2583     GNUNET_free (buffer);
2584     return NULL;
2585   }
2586   return buffer;
2587 }
2588
2589
2590 /**
2591  * Load PEM key from file
2592  *
2593  * @param key where to store the data
2594  * @param keyfile path to the PEM file
2595  * @return #GNUNET_OK on success
2596  */
2597 static int
2598 load_key_from_file (gnutls_x509_privkey_t key,
2599                     const char* keyfile)
2600 {
2601   gnutls_datum_t key_data;
2602   int ret;
2603
2604   key_data.data = load_file (keyfile,
2605                              &key_data.size);
2606   if (NULL == key_data.data)
2607     return GNUNET_SYSERR;
2608   ret = gnutls_x509_privkey_import (key, &key_data,
2609                                     GNUTLS_X509_FMT_PEM);
2610   if (GNUTLS_E_SUCCESS != ret)
2611   {
2612     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2613                 _("Unable to import private key from file `%s'\n"),
2614                 keyfile);
2615   }
2616   GNUNET_free_non_null (key_data.data);
2617   return (GNUTLS_E_SUCCESS != ret) ? GNUNET_SYSERR : GNUNET_OK;
2618 }
2619
2620
2621 /**
2622  * Load cert from file
2623  *
2624  * @param crt struct to store data in
2625  * @param certfile path to pem file
2626  * @return #GNUNET_OK on success
2627  */
2628 static int
2629 load_cert_from_file (gnutls_x509_crt_t crt,
2630                      const char* certfile)
2631 {
2632   gnutls_datum_t cert_data;
2633   int ret;
2634
2635   cert_data.data = load_file (certfile,
2636                               &cert_data.size);
2637   if (NULL == cert_data.data)
2638     return GNUNET_SYSERR;
2639   ret = gnutls_x509_crt_import (crt,
2640                                 &cert_data,
2641                                 GNUTLS_X509_FMT_PEM);
2642   if (GNUTLS_E_SUCCESS != ret)
2643   {
2644     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2645                 _("Unable to import certificate from `%s'\n"),
2646                 certfile);
2647   }
2648   GNUNET_free_non_null (cert_data.data);
2649   return (GNUTLS_E_SUCCESS != ret) ? GNUNET_SYSERR : GNUNET_OK;
2650 }
2651
2652
2653 /**
2654  * Generate new certificate for specific name
2655  *
2656  * @param name the subject name to generate a cert for
2657  * @return a struct holding the PEM data, NULL on error
2658  */
2659 static struct ProxyGNSCertificate *
2660 generate_gns_certificate (const char *name)
2661 {
2662   unsigned int serial;
2663   size_t key_buf_size;
2664   size_t cert_buf_size;
2665   gnutls_x509_crt_t request;
2666   time_t etime;
2667   struct tm *tm_data;
2668   struct ProxyGNSCertificate *pgc;
2669
2670   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2671               "Generating x.509 certificate for `%s'\n",
2672               name);
2673   GNUNET_break (GNUTLS_E_SUCCESS == gnutls_x509_crt_init (&request));
2674   GNUNET_break (GNUTLS_E_SUCCESS == gnutls_x509_crt_set_key (request, proxy_ca.key));
2675   pgc = GNUNET_new (struct ProxyGNSCertificate);
2676   gnutls_x509_crt_set_dn_by_oid (request,
2677                                  GNUTLS_OID_X520_COUNTRY_NAME,
2678                                  0,
2679                                  "ZZ",
2680                                  strlen ("ZZ"));
2681   gnutls_x509_crt_set_dn_by_oid (request,
2682                                  GNUTLS_OID_X520_ORGANIZATION_NAME,
2683                                  0,
2684                                  "GNU Name System",
2685                                  strlen ("GNU Name System"));
2686   gnutls_x509_crt_set_dn_by_oid (request,
2687                                  GNUTLS_OID_X520_COMMON_NAME,
2688                                  0,
2689                                  name,
2690                                  strlen (name));
2691   gnutls_x509_crt_set_subject_alternative_name (request,
2692                                         GNUTLS_SAN_DNSNAME,
2693                                         name);
2694   GNUNET_break (GNUTLS_E_SUCCESS ==
2695                 gnutls_x509_crt_set_version (request,
2696                                              3));
2697   gnutls_rnd (GNUTLS_RND_NONCE,
2698               &serial,
2699               sizeof (serial));
2700   gnutls_x509_crt_set_serial (request,
2701                               &serial,
2702                               sizeof (serial));
2703   etime = time (NULL);
2704   tm_data = localtime (&etime);
2705   tm_data->tm_hour--;
2706   etime = mktime(tm_data);
2707   gnutls_x509_crt_set_activation_time (request,
2708                                        etime);
2709   tm_data->tm_year++;
2710   etime = mktime (tm_data);
2711   gnutls_x509_crt_set_expiration_time (request,
2712                                        etime);
2713   gnutls_x509_crt_sign2 (request,
2714                          proxy_ca.cert,
2715                          proxy_ca.key,
2716                          GNUTLS_DIG_SHA512,
2717                          0);
2718   key_buf_size = sizeof (pgc->key);
2719   cert_buf_size = sizeof (pgc->cert);
2720   gnutls_x509_crt_export (request,
2721                           GNUTLS_X509_FMT_PEM,
2722                           pgc->cert,
2723                           &cert_buf_size);
2724   gnutls_x509_privkey_export (proxy_ca.key,
2725                               GNUTLS_X509_FMT_PEM,
2726                               pgc->key,
2727                               &key_buf_size);
2728   gnutls_x509_crt_deinit (request);
2729   return pgc;
2730 }
2731
2732
2733 /**
2734  * Function called by MHD with errors, suppresses them all.
2735  *
2736  * @param cls closure
2737  * @param fm format string (`printf()`-style)
2738  * @param ap arguments to @a fm
2739  */
2740 static void
2741 mhd_error_log_callback (void *cls,
2742                         const char *fm,
2743                         va_list ap)
2744 {
2745   /* do nothing */
2746 }
2747
2748
2749 /**
2750  * Lookup (or create) an TLS MHD instance for a particular domain.
2751  *
2752  * @param domain the domain the TLS daemon has to serve
2753  * @return NULL on error
2754  */
2755 static struct MhdHttpList *
2756 lookup_ssl_httpd (const char* domain)
2757 {
2758   struct MhdHttpList *hd;
2759   struct ProxyGNSCertificate *pgc;
2760
2761   if (NULL == domain)
2762   {
2763     GNUNET_break (0);
2764     return NULL;
2765   }
2766   for (hd = mhd_httpd_head; NULL != hd; hd = hd->next)
2767     if ( (NULL != hd->domain) &&
2768          (0 == strcmp (hd->domain, domain)) )
2769       return hd;
2770   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2771               "Starting fresh MHD HTTPS instance for domain `%s'\n",
2772               domain);
2773   pgc = generate_gns_certificate (domain);
2774   hd = GNUNET_new (struct MhdHttpList);
2775   hd->is_ssl = GNUNET_YES;
2776   hd->domain = GNUNET_strdup (domain);
2777   hd->proxy_cert = pgc;
2778   hd->daemon = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_SSL | MHD_USE_NO_LISTEN_SOCKET | MHD_ALLOW_SUSPEND_RESUME,
2779                                  0,
2780                                  NULL, NULL,
2781                                  &create_response, hd,
2782                                  MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
2783                                  MHD_OPTION_NOTIFY_COMPLETED, &mhd_completed_cb, NULL,
2784                                  MHD_OPTION_NOTIFY_CONNECTION, &mhd_connection_cb, NULL,
2785                                  MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback, NULL,
2786                                  MHD_OPTION_EXTERNAL_LOGGER, &mhd_error_log_callback, NULL,
2787                                  MHD_OPTION_HTTPS_MEM_KEY, pgc->key,
2788                                  MHD_OPTION_HTTPS_MEM_CERT, pgc->cert,
2789                                  MHD_OPTION_END);
2790   if (NULL == hd->daemon)
2791   {
2792     GNUNET_free (pgc);
2793     GNUNET_free (hd);
2794     return NULL;
2795   }
2796   GNUNET_CONTAINER_DLL_insert (mhd_httpd_head,
2797                                mhd_httpd_tail,
2798                                hd);
2799   return hd;
2800 }
2801
2802
2803 /**
2804  * Task run when a Socks5Request somehow fails to be associated with
2805  * an MHD connection (i.e. because the client never speaks HTTP after
2806  * the SOCKS5 handshake).  Clean up.
2807  *
2808  * @param cls the `struct Socks5Request *`
2809  */
2810 static void
2811 timeout_s5r_handshake (void *cls)
2812 {
2813   struct Socks5Request *s5r = cls;
2814
2815   s5r->timeout_task = NULL;
2816   cleanup_s5r (s5r);
2817 }
2818
2819
2820 /**
2821  * We're done with the Socks5 protocol, now we need to pass the
2822  * connection data through to the final destination, either
2823  * direct (if the protocol might not be HTTP), or via MHD
2824  * (if the port looks like it should be HTTP).
2825  *
2826  * @param s5r socks request that has reached the final stage
2827  */
2828 static void
2829 setup_data_transfer (struct Socks5Request *s5r)
2830 {
2831   struct MhdHttpList *hd;
2832   int fd;
2833   const struct sockaddr *addr;
2834   socklen_t len;
2835   char *domain;
2836
2837   if (GNUNET_YES == s5r->is_tls)
2838   {
2839     GNUNET_asprintf (&domain,
2840                      "%s",
2841                      s5r->domain);
2842     hd = lookup_ssl_httpd (domain);
2843     if (NULL == hd)
2844     {
2845       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2846                   _("Failed to start HTTPS server for `%s'\n"),
2847                   s5r->domain);
2848       cleanup_s5r (s5r);
2849       GNUNET_free (domain);
2850       return;
2851     }
2852   } else {
2853       domain = NULL;
2854       GNUNET_assert (NULL != httpd);
2855       hd = httpd;
2856   }
2857   fd = GNUNET_NETWORK_get_fd (s5r->sock);
2858   addr = GNUNET_NETWORK_get_addr (s5r->sock);
2859   len = GNUNET_NETWORK_get_addrlen (s5r->sock);
2860   s5r->state = SOCKS5_SOCKET_WITH_MHD;
2861   if (MHD_YES !=
2862       MHD_add_connection (hd->daemon,
2863                           fd,
2864                           addr,
2865                           len))
2866   {
2867     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2868                 _("Failed to pass client to MHD\n"));
2869     cleanup_s5r (s5r);
2870     GNUNET_free_non_null (domain);
2871     return;
2872   }
2873   s5r->hd = hd;
2874   schedule_httpd (hd);
2875   s5r->timeout_task = GNUNET_SCHEDULER_add_delayed (HTTP_HANDSHAKE_TIMEOUT,
2876                                                     &timeout_s5r_handshake,
2877                                                     s5r);
2878   GNUNET_free_non_null (domain);
2879 }
2880
2881
2882 /* ********************* SOCKS handling ************************* */
2883
2884
2885 /**
2886  * Write data from buffer to socks5 client, then continue with state machine.
2887  *
2888  * @param cls the closure with the `struct Socks5Request`
2889  */
2890 static void
2891 do_write (void *cls)
2892 {
2893   struct Socks5Request *s5r = cls;
2894   ssize_t len;
2895
2896   s5r->wtask = NULL;
2897   len = GNUNET_NETWORK_socket_send (s5r->sock,
2898                                     s5r->wbuf,
2899                                     s5r->wbuf_len);
2900   if (len <= 0)
2901   {
2902     /* write error: connection closed, shutdown, etc.; just clean up */
2903     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2904                 "Write Error\n");
2905     cleanup_s5r (s5r);
2906     return;
2907   }
2908   memmove (s5r->wbuf,
2909            &s5r->wbuf[len],
2910            s5r->wbuf_len - len);
2911   s5r->wbuf_len -= len;
2912   if (s5r->wbuf_len > 0)
2913   {
2914     /* not done writing */
2915     s5r->wtask =
2916       GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
2917                                       s5r->sock,
2918                                       &do_write, s5r);
2919     return;
2920   }
2921
2922   /* we're done writing, continue with state machine! */
2923
2924   switch (s5r->state)
2925   {
2926     case SOCKS5_INIT:
2927       GNUNET_assert (0);
2928       break;
2929     case SOCKS5_REQUEST:
2930       GNUNET_assert (NULL != s5r->rtask);
2931       break;
2932     case SOCKS5_DATA_TRANSFER:
2933       setup_data_transfer (s5r);
2934       return;
2935     case SOCKS5_WRITE_THEN_CLEANUP:
2936       cleanup_s5r (s5r);
2937       return;
2938     default:
2939       GNUNET_break (0);
2940       break;
2941   }
2942 }
2943
2944
2945 /**
2946  * Return a server response message indicating a failure to the client.
2947  *
2948  * @param s5r request to return failure code for
2949  * @param sc status code to return
2950  */
2951 static void
2952 signal_socks_failure (struct Socks5Request *s5r,
2953                       enum Socks5StatusCode sc)
2954 {
2955   struct Socks5ServerResponseMessage *s_resp;
2956
2957   s_resp = (struct Socks5ServerResponseMessage *) &s5r->wbuf[s5r->wbuf_len];
2958   memset (s_resp, 0, sizeof (struct Socks5ServerResponseMessage));
2959   s_resp->version = SOCKS_VERSION_5;
2960   s_resp->reply = sc;
2961   s5r->state = SOCKS5_WRITE_THEN_CLEANUP;
2962   if (NULL != s5r->wtask)
2963     s5r->wtask =
2964       GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
2965                                       s5r->sock,
2966                                       &do_write, s5r);
2967 }
2968
2969
2970 /**
2971  * Return a server response message indicating success.
2972  *
2973  * @param s5r request to return success status message for
2974  */
2975 static void
2976 signal_socks_success (struct Socks5Request *s5r)
2977 {
2978   struct Socks5ServerResponseMessage *s_resp;
2979
2980   s_resp = (struct Socks5ServerResponseMessage *) &s5r->wbuf[s5r->wbuf_len];
2981   s_resp->version = SOCKS_VERSION_5;
2982   s_resp->reply = SOCKS5_STATUS_REQUEST_GRANTED;
2983   s_resp->reserved = 0;
2984   s_resp->addr_type = SOCKS5_AT_IPV4;
2985   /* zero out IPv4 address and port */
2986   memset (&s_resp[1],
2987           0,
2988           sizeof (struct in_addr) + sizeof (uint16_t));
2989   s5r->wbuf_len += sizeof (struct Socks5ServerResponseMessage) +
2990     sizeof (struct in_addr) + sizeof (uint16_t);
2991   if (NULL == s5r->wtask)
2992     s5r->wtask =
2993       GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
2994                                       s5r->sock,
2995                                       &do_write, s5r);
2996 }
2997
2998
2999 /**
3000  * Process GNS results for target domain.
3001  *
3002  * @param cls the `struct Socks5Request *`
3003  * @param tld #GNUNET_YES if this was a GNS TLD.
3004  * @param rd_count number of records returned
3005  * @param rd record data
3006  */
3007 static void
3008 handle_gns_result (void *cls,
3009                    int tld,
3010                    uint32_t rd_count,
3011                    const struct GNUNET_GNSRECORD_Data *rd)
3012 {
3013   struct Socks5Request *s5r = cls;
3014   const struct GNUNET_GNSRECORD_Data *r;
3015   int got_ip;
3016
3017   s5r->gns_lookup = NULL;
3018   s5r->is_gns = tld;
3019   got_ip = GNUNET_NO;
3020   for (uint32_t i=0;i<rd_count;i++)
3021   {
3022     r = &rd[i];
3023     switch (r->record_type)
3024     {
3025       case GNUNET_DNSPARSER_TYPE_A:
3026         {
3027           struct sockaddr_in *in;
3028
3029           if (sizeof (struct in_addr) != r->data_size)
3030           {
3031             GNUNET_break_op (0);
3032             break;
3033           }
3034           if (GNUNET_YES == got_ip)
3035             break;
3036           if (GNUNET_OK !=
3037               GNUNET_NETWORK_test_pf (PF_INET))
3038             break;
3039           got_ip = GNUNET_YES;
3040           in = (struct sockaddr_in *) &s5r->destination_address;
3041           in->sin_family = AF_INET;
3042           GNUNET_memcpy (&in->sin_addr,
3043                          r->data,
3044                          r->data_size);
3045           in->sin_port = htons (s5r->port);
3046 #if HAVE_SOCKADDR_IN_SIN_LEN
3047           in->sin_len = sizeof (*in);
3048 #endif
3049         }
3050         break;
3051       case GNUNET_DNSPARSER_TYPE_AAAA:
3052         {
3053           struct sockaddr_in6 *in;
3054
3055           if (sizeof (struct in6_addr) != r->data_size)
3056           {
3057             GNUNET_break_op (0);
3058             break;
3059           }
3060           if (GNUNET_YES == got_ip)
3061             break;
3062           if (GNUNET_YES == disable_v6)
3063             break;
3064           if (GNUNET_OK !=
3065               GNUNET_NETWORK_test_pf (PF_INET6))
3066             break;
3067           /* FIXME: allow user to disable IPv6 per configuration option... */
3068           got_ip = GNUNET_YES;
3069           in = (struct sockaddr_in6 *) &s5r->destination_address;
3070           in->sin6_family = AF_INET6;
3071           GNUNET_memcpy (&in->sin6_addr,
3072                          r->data,
3073                          r->data_size);
3074           in->sin6_port = htons (s5r->port);
3075 #if HAVE_SOCKADDR_IN_SIN_LEN
3076           in->sin6_len = sizeof (*in);
3077 #endif
3078         }
3079         break;
3080       case GNUNET_GNSRECORD_TYPE_VPN:
3081         GNUNET_break (0); /* should have been translated within GNS */
3082         break;
3083       case GNUNET_GNSRECORD_TYPE_LEHO:
3084         GNUNET_free_non_null (s5r->leho);
3085         s5r->leho = GNUNET_strndup (r->data,
3086                                     r->data_size);
3087         break;
3088       case GNUNET_GNSRECORD_TYPE_BOX:
3089         {
3090           const struct GNUNET_GNSRECORD_BoxRecord *box;
3091
3092           if (r->data_size < sizeof (struct GNUNET_GNSRECORD_BoxRecord))
3093           {
3094             GNUNET_break_op (0);
3095             break;
3096           }
3097           box = r->data;
3098           if ( (ntohl (box->record_type) != GNUNET_DNSPARSER_TYPE_TLSA) ||
3099                (ntohs (box->protocol) != IPPROTO_TCP) ||
3100                (ntohs (box->service) != s5r->port) )
3101             break; /* BOX record does not apply */
3102           if (s5r->num_danes >= MAX_DANES)
3103             {
3104               GNUNET_break (0); /* MAX_DANES too small */
3105               break;
3106             }
3107           s5r->is_tls = GNUNET_YES; /* This should be TLS */
3108           s5r->dane_data_len[s5r->num_danes]
3109             = r->data_size - sizeof (struct GNUNET_GNSRECORD_BoxRecord);
3110           s5r->dane_data[s5r->num_danes]
3111             = GNUNET_memdup (&box[1],
3112                              s5r->dane_data_len[s5r->num_danes]);
3113           s5r->num_danes++;
3114           break;
3115         }
3116       default:
3117         /* don't care */
3118         break;
3119     }
3120   }
3121   if ( (GNUNET_YES != got_ip) &&
3122        (GNUNET_YES == tld) )
3123   {
3124     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3125                 "Name resolution failed to yield useful IP address.\n");
3126     signal_socks_failure (s5r,
3127                           SOCKS5_STATUS_GENERAL_FAILURE);
3128     return;
3129   }
3130   s5r->state = SOCKS5_DATA_TRANSFER;
3131   signal_socks_success (s5r);
3132 }
3133
3134
3135 /**
3136  * Remove the first @a len bytes from the beginning of the read buffer.
3137  *
3138  * @param s5r the handle clear the read buffer for
3139  * @param len number of bytes in read buffer to advance
3140  */
3141 static void
3142 clear_from_s5r_rbuf (struct Socks5Request *s5r,
3143                      size_t len)
3144 {
3145   GNUNET_assert (len <= s5r->rbuf_len);
3146   memmove (s5r->rbuf,
3147            &s5r->rbuf[len],
3148            s5r->rbuf_len - len);
3149   s5r->rbuf_len -= len;
3150 }
3151
3152
3153 /**
3154  * Read data from incoming Socks5 connection
3155  *
3156  * @param cls the closure with the `struct Socks5Request`
3157  */
3158 static void
3159 do_s5r_read (void *cls)
3160 {
3161   struct Socks5Request *s5r = cls;
3162   const struct Socks5ClientHelloMessage *c_hello;
3163   struct Socks5ServerHelloMessage *s_hello;
3164   const struct Socks5ClientRequestMessage *c_req;
3165   ssize_t rlen;
3166   size_t alen;
3167   const struct GNUNET_SCHEDULER_TaskContext *tc;
3168
3169   s5r->rtask = NULL;
3170   tc = GNUNET_SCHEDULER_get_task_context ();
3171   if ( (NULL != tc->read_ready) &&
3172        (GNUNET_NETWORK_fdset_isset (tc->read_ready,
3173                                     s5r->sock)) )
3174   {
3175     rlen = GNUNET_NETWORK_socket_recv (s5r->sock,
3176                                        &s5r->rbuf[s5r->rbuf_len],
3177                                        sizeof (s5r->rbuf) - s5r->rbuf_len);
3178     if (rlen <= 0)
3179     {
3180       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3181                   "socks5 client disconnected.\n");
3182       cleanup_s5r (s5r);
3183       return;
3184     }
3185     s5r->rbuf_len += rlen;
3186   }
3187   s5r->rtask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3188                                               s5r->sock,
3189                                               &do_s5r_read, s5r);
3190   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3191               "Processing %zu bytes of socks data in state %d\n",
3192               s5r->rbuf_len,
3193               s5r->state);
3194   switch (s5r->state)
3195   {
3196     case SOCKS5_INIT:
3197       c_hello = (const struct Socks5ClientHelloMessage*) &s5r->rbuf;
3198       if ( (s5r->rbuf_len < sizeof (struct Socks5ClientHelloMessage)) ||
3199            (s5r->rbuf_len < sizeof (struct Socks5ClientHelloMessage) + c_hello->num_auth_methods) )
3200         return; /* need more data */
3201       if (SOCKS_VERSION_5 != c_hello->version)
3202       {
3203         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3204                     _("Unsupported socks version %d\n"),
3205                     (int) c_hello->version);
3206         cleanup_s5r (s5r);
3207         return;
3208       }
3209       clear_from_s5r_rbuf (s5r,
3210                            sizeof (struct Socks5ClientHelloMessage) + c_hello->num_auth_methods);
3211       GNUNET_assert (0 == s5r->wbuf_len);
3212       s_hello = (struct Socks5ServerHelloMessage *) &s5r->wbuf;
3213       s5r->wbuf_len = sizeof (struct Socks5ServerHelloMessage);
3214       s_hello->version = SOCKS_VERSION_5;
3215       s_hello->auth_method = SOCKS_AUTH_NONE;
3216       GNUNET_assert (NULL == s5r->wtask);
3217       s5r->wtask = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
3218                                                    s5r->sock,
3219                                                    &do_write, s5r);
3220       s5r->state = SOCKS5_REQUEST;
3221       return;
3222     case SOCKS5_REQUEST:
3223       c_req = (const struct Socks5ClientRequestMessage *) &s5r->rbuf;
3224       if (s5r->rbuf_len < sizeof (struct Socks5ClientRequestMessage))
3225         return;
3226       switch (c_req->command)
3227       {
3228         case SOCKS5_CMD_TCP_STREAM:
3229           /* handled below */
3230           break;
3231         default:
3232           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3233                       _("Unsupported socks command %d\n"),
3234                       (int) c_req->command);
3235           signal_socks_failure (s5r,
3236                                 SOCKS5_STATUS_COMMAND_NOT_SUPPORTED);
3237           return;
3238       }
3239       switch (c_req->addr_type)
3240       {
3241         case SOCKS5_AT_IPV4:
3242           {
3243             const struct in_addr *v4 = (const struct in_addr *) &c_req[1];
3244             const uint16_t *port = (const uint16_t *) &v4[1];
3245             struct sockaddr_in *in;
3246
3247             s5r->port = ntohs (*port);
3248             alen = sizeof (struct in_addr);
3249             if (s5r->rbuf_len < sizeof (struct Socks5ClientRequestMessage) +
3250                 alen + sizeof (uint16_t))
3251               return; /* need more data */
3252             in = (struct sockaddr_in *) &s5r->destination_address;
3253             in->sin_family = AF_INET;
3254             in->sin_addr = *v4;
3255             in->sin_port = *port;
3256 #if HAVE_SOCKADDR_IN_SIN_LEN
3257             in->sin_len = sizeof (*in);
3258 #endif
3259             s5r->state = SOCKS5_DATA_TRANSFER;
3260           }
3261           break;
3262         case SOCKS5_AT_IPV6:
3263           {
3264             const struct in6_addr *v6 = (const struct in6_addr *) &c_req[1];
3265             const uint16_t *port = (const uint16_t *) &v6[1];
3266             struct sockaddr_in6 *in;
3267
3268             s5r->port = ntohs (*port);
3269             alen = sizeof (struct in6_addr);
3270             if (s5r->rbuf_len < sizeof (struct Socks5ClientRequestMessage) +
3271                 alen + sizeof (uint16_t))
3272               return; /* need more data */
3273             in = (struct sockaddr_in6 *) &s5r->destination_address;
3274             in->sin6_family = AF_INET6;
3275             in->sin6_addr = *v6;
3276             in->sin6_port = *port;
3277 #if HAVE_SOCKADDR_IN_SIN_LEN
3278             in->sin6_len = sizeof (*in);
3279 #endif
3280             s5r->state = SOCKS5_DATA_TRANSFER;
3281           }
3282           break;
3283         case SOCKS5_AT_DOMAINNAME:
3284           {
3285             const uint8_t *dom_len;
3286             const char *dom_name;
3287             const uint16_t *port;
3288
3289             dom_len = (const uint8_t *) &c_req[1];
3290             alen = *dom_len + 1;
3291             if (s5r->rbuf_len < sizeof (struct Socks5ClientRequestMessage) +
3292                 alen + sizeof (uint16_t))
3293               return; /* need more data */
3294             dom_name = (const char *) &dom_len[1];
3295             port = (const uint16_t*) &dom_name[*dom_len];
3296             s5r->domain = GNUNET_strndup (dom_name,
3297                                           *dom_len);
3298             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3299                         "Requested connection is to %s:%d\n",
3300                         //(HTTPS_PORT == s5r->port) ? "s" : "",
3301                         s5r->domain,
3302                         ntohs (*port));
3303             s5r->state = SOCKS5_RESOLVING;
3304             s5r->port = ntohs (*port);
3305             s5r->is_tls = (HTTPS_PORT == s5r->port) ? GNUNET_YES : GNUNET_NO;
3306             s5r->gns_lookup = GNUNET_GNS_lookup_with_tld (gns_handle,
3307                                                           s5r->domain,
3308                                                           GNUNET_DNSPARSER_TYPE_A,
3309                                                           GNUNET_NO /* only cached */,
3310                                                           &handle_gns_result,
3311                                                           s5r);
3312             break;
3313           }
3314         default:
3315           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3316                       _("Unsupported socks address type %d\n"),
3317                       (int) c_req->addr_type);
3318           signal_socks_failure (s5r,
3319                                 SOCKS5_STATUS_ADDRESS_TYPE_NOT_SUPPORTED);
3320           return;
3321       }
3322       clear_from_s5r_rbuf (s5r,
3323                            sizeof (struct Socks5ClientRequestMessage) +
3324                            alen + sizeof (uint16_t));
3325       if (0 != s5r->rbuf_len)
3326       {
3327         /* read more bytes than healthy, why did the client send more!? */
3328         GNUNET_break_op (0);
3329         signal_socks_failure (s5r,
3330                               SOCKS5_STATUS_GENERAL_FAILURE);
3331         return;
3332       }
3333       if (SOCKS5_DATA_TRANSFER == s5r->state)
3334       {
3335         /* if we are not waiting for GNS resolution, signal success */
3336         signal_socks_success (s5r);
3337       }
3338       /* We are done reading right now */
3339       GNUNET_SCHEDULER_cancel (s5r->rtask);
3340       s5r->rtask = NULL;
3341       return;
3342     case SOCKS5_RESOLVING:
3343       GNUNET_assert (0);
3344       return;
3345     case SOCKS5_DATA_TRANSFER:
3346       GNUNET_assert (0);
3347       return;
3348     default:
3349       GNUNET_assert (0);
3350       return;
3351   }
3352 }
3353
3354
3355 /**
3356  * Accept new incoming connections
3357  *
3358  * @param cls the closure with the lsock4 or lsock6
3359  * @param tc the scheduler context
3360  */
3361 static void
3362 do_accept (void *cls)
3363 {
3364   struct GNUNET_NETWORK_Handle *lsock = cls;
3365   struct GNUNET_NETWORK_Handle *s;
3366   struct Socks5Request *s5r;
3367
3368   GNUNET_assert (NULL != lsock);
3369   if (lsock == lsock4)
3370     ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3371                                             lsock,
3372                                             &do_accept,
3373                                             lsock);
3374   else if (lsock == lsock6)
3375     ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3376                                             lsock,
3377                                             &do_accept,
3378                                             lsock);
3379   else
3380     GNUNET_assert (0);
3381   s = GNUNET_NETWORK_socket_accept (lsock,
3382                                     NULL,
3383                                     NULL);
3384   if (NULL == s)
3385   {
3386     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3387                          "accept");
3388     return;
3389   }
3390   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3391               "Got an inbound connection, waiting for data\n");
3392   s5r = GNUNET_new (struct Socks5Request);
3393   GNUNET_CONTAINER_DLL_insert (s5r_head,
3394                                s5r_tail,
3395                                s5r);
3396   s5r->sock = s;
3397   s5r->state = SOCKS5_INIT;
3398   s5r->rtask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3399                                               s5r->sock,
3400                                               &do_s5r_read,
3401                                               s5r);
3402 }
3403
3404
3405 /* ******************* General / main code ********************* */
3406
3407
3408 /**
3409  * Task run on shutdown
3410  *
3411  * @param cls closure
3412  */
3413 static void
3414 do_shutdown (void *cls)
3415 {
3416   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
3417               "Shutting down...\n");
3418   /* MHD requires resuming before destroying the daemons */
3419   for (struct Socks5Request *s5r = s5r_head;
3420        NULL != s5r;
3421        s5r = s5r->next)
3422   {
3423     if (s5r->suspended)
3424     {
3425       s5r->suspended = GNUNET_NO;
3426       MHD_resume_connection (s5r->con);
3427     }
3428   }
3429   while (NULL != mhd_httpd_head)
3430     kill_httpd (mhd_httpd_head);
3431   while (NULL != s5r_head)
3432     cleanup_s5r (s5r_head);
3433   if (NULL != lsock4)
3434   {
3435     GNUNET_NETWORK_socket_close (lsock4);
3436     lsock4 = NULL;
3437   }
3438   if (NULL != lsock6)
3439   {
3440     GNUNET_NETWORK_socket_close (lsock6);
3441     lsock6 = NULL;
3442   }
3443   if (NULL != curl_multi)
3444   {
3445     curl_multi_cleanup (curl_multi);
3446     curl_multi = NULL;
3447   }
3448   if (NULL != gns_handle)
3449   {
3450     GNUNET_GNS_disconnect (gns_handle);
3451     gns_handle = NULL;
3452   }
3453   if (NULL != curl_download_task)
3454   {
3455     GNUNET_SCHEDULER_cancel (curl_download_task);
3456     curl_download_task = NULL;
3457   }
3458   if (NULL != ltask4)
3459   {
3460     GNUNET_SCHEDULER_cancel (ltask4);
3461     ltask4 = NULL;
3462   }
3463   if (NULL != ltask6)
3464   {
3465     GNUNET_SCHEDULER_cancel (ltask6);
3466     ltask6 = NULL;
3467   }
3468   gnutls_x509_crt_deinit (proxy_ca.cert);
3469   gnutls_x509_privkey_deinit (proxy_ca.key);
3470   gnutls_global_deinit ();
3471 }
3472
3473
3474 /**
3475  * Create an IPv4 listen socket bound to our port.
3476  *
3477  * @return NULL on error
3478  */
3479 static struct GNUNET_NETWORK_Handle *
3480 bind_v4 ()
3481 {
3482   struct GNUNET_NETWORK_Handle *ls;
3483   struct sockaddr_in sa4;
3484   int eno;
3485
3486   memset (&sa4, 0, sizeof (sa4));
3487   sa4.sin_family = AF_INET;
3488   sa4.sin_port = htons (port);
3489 #if HAVE_SOCKADDR_IN_SIN_LEN
3490   sa4.sin_len = sizeof (sa4);
3491 #endif
3492   ls = GNUNET_NETWORK_socket_create (AF_INET,
3493                                      SOCK_STREAM,
3494                                      0);
3495   if (NULL == ls)
3496     return NULL;
3497   if (GNUNET_OK !=
3498       GNUNET_NETWORK_socket_bind (ls,
3499                                   (const struct sockaddr *) &sa4,
3500                                   sizeof (sa4)))
3501   {
3502     eno = errno;
3503     GNUNET_NETWORK_socket_close (ls);
3504     errno = eno;
3505     return NULL;
3506   }
3507   return ls;
3508 }
3509
3510
3511 /**
3512  * Create an IPv6 listen socket bound to our port.
3513  *
3514  * @return NULL on error
3515  */
3516 static struct GNUNET_NETWORK_Handle *
3517 bind_v6 ()
3518 {
3519   struct GNUNET_NETWORK_Handle *ls;
3520   struct sockaddr_in6 sa6;
3521   int eno;
3522
3523   memset (&sa6, 0, sizeof (sa6));
3524   sa6.sin6_family = AF_INET6;
3525   sa6.sin6_port = htons (port);
3526 #if HAVE_SOCKADDR_IN_SIN_LEN
3527   sa6.sin6_len = sizeof (sa6);
3528 #endif
3529   ls = GNUNET_NETWORK_socket_create (AF_INET6,
3530                                      SOCK_STREAM,
3531                                      0);
3532   if (NULL == ls)
3533     return NULL;
3534   if (GNUNET_OK !=
3535       GNUNET_NETWORK_socket_bind (ls,
3536                                   (const struct sockaddr *) &sa6,
3537                                   sizeof (sa6)))
3538   {
3539     eno = errno;
3540     GNUNET_NETWORK_socket_close (ls);
3541     errno = eno;
3542     return NULL;
3543   }
3544   return ls;
3545 }
3546
3547
3548 /**
3549  * Main function that will be run
3550  *
3551  * @param cls closure
3552  * @param args remaining command-line arguments
3553  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
3554  * @param c configuration
3555  */
3556 static void
3557 run (void *cls,
3558      char *const *args,
3559      const char *cfgfile,
3560      const struct GNUNET_CONFIGURATION_Handle *c)
3561 {
3562   char* cafile_cfg = NULL;
3563   char* cafile;
3564   struct MhdHttpList *hd;
3565
3566   cfg = c;
3567
3568   if (NULL == (curl_multi = curl_multi_init ()))
3569   {
3570     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3571                 "Failed to create cURL multi handle!\n");
3572     return;
3573   }
3574   cafile = cafile_opt;
3575   if (NULL == cafile)
3576   {
3577     if (GNUNET_OK !=
3578         GNUNET_CONFIGURATION_get_value_filename (cfg,
3579                                                  "gns-proxy",
3580                                                  "PROXY_CACERT",
3581                                                  &cafile_cfg))
3582     {
3583       GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
3584                                  "gns-proxy",
3585                                  "PROXY_CACERT");
3586       return;
3587     }
3588     cafile = cafile_cfg;
3589   }
3590   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3591               "Using `%s' as CA\n",
3592               cafile);
3593
3594   gnutls_global_init ();
3595   gnutls_x509_crt_init (&proxy_ca.cert);
3596   gnutls_x509_privkey_init (&proxy_ca.key);
3597
3598   if ( (GNUNET_OK !=
3599         load_cert_from_file (proxy_ca.cert,
3600                              cafile)) ||
3601        (GNUNET_OK !=
3602         load_key_from_file (proxy_ca.key,
3603                             cafile)) )
3604   {
3605     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3606                 _("Failed to load X.509 key and certificate from `%s'\n"),
3607                 cafile);
3608     gnutls_x509_crt_deinit (proxy_ca.cert);
3609     gnutls_x509_privkey_deinit (proxy_ca.key);
3610     gnutls_global_deinit ();
3611     GNUNET_free_non_null (cafile_cfg);
3612     return;
3613   }
3614   GNUNET_free_non_null (cafile_cfg);
3615   if (NULL == (gns_handle = GNUNET_GNS_connect (cfg)))
3616   {
3617     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3618                 "Unable to connect to GNS!\n");
3619     gnutls_x509_crt_deinit (proxy_ca.cert);
3620     gnutls_x509_privkey_deinit (proxy_ca.key);
3621     gnutls_global_deinit ();
3622     return;
3623   }
3624   GNUNET_SCHEDULER_add_shutdown (&do_shutdown,
3625                                  NULL);
3626
3627   /* Open listen socket for socks proxy */
3628   lsock6 = bind_v6 ();
3629   if (NULL == lsock6)
3630   {
3631     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3632                          "bind");
3633   }
3634   else
3635   {
3636     if (GNUNET_OK !=
3637         GNUNET_NETWORK_socket_listen (lsock6,
3638                                       5))
3639     {
3640       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3641                            "listen");
3642       GNUNET_NETWORK_socket_close (lsock6);
3643       lsock6 = NULL;
3644     }
3645     else
3646     {
3647       ltask6 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3648                                               lsock6,
3649                                               &do_accept,
3650                                               lsock6);
3651     }
3652   }
3653   lsock4 = bind_v4 ();
3654   if (NULL == lsock4)
3655   {
3656     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3657                          "bind");
3658   }
3659   else
3660   {
3661     if (GNUNET_OK !=
3662         GNUNET_NETWORK_socket_listen (lsock4,
3663                                       5))
3664     {
3665       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
3666                            "listen");
3667       GNUNET_NETWORK_socket_close (lsock4);
3668       lsock4 = NULL;
3669     }
3670     else
3671     {
3672       ltask4 = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
3673                                               lsock4,
3674                                               &do_accept,
3675                                               lsock4);
3676     }
3677   }
3678   if ( (NULL == lsock4) &&
3679        (NULL == lsock6) )
3680   {
3681     GNUNET_SCHEDULER_shutdown ();
3682     return;
3683   }
3684   if (0 != curl_global_init (CURL_GLOBAL_WIN32))
3685   {
3686     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
3687                 "cURL global init failed!\n");
3688     GNUNET_SCHEDULER_shutdown ();
3689     return;
3690   }
3691   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3692               "Proxy listens on port %u\n",
3693               (unsigned int) port);
3694
3695   /* start MHD daemon for HTTP */
3696   hd = GNUNET_new (struct MhdHttpList);
3697   hd->daemon = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_NO_LISTEN_SOCKET | MHD_ALLOW_SUSPEND_RESUME,
3698                                  0,
3699                                  NULL, NULL,
3700                                  &create_response, hd,
3701                                  MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
3702                                  MHD_OPTION_NOTIFY_COMPLETED, &mhd_completed_cb, NULL,
3703                                  MHD_OPTION_NOTIFY_CONNECTION, &mhd_connection_cb, NULL,
3704                                  MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback, NULL,
3705                                  MHD_OPTION_END);
3706   if (NULL == hd->daemon)
3707   {
3708     GNUNET_free (hd);
3709     GNUNET_SCHEDULER_shutdown ();
3710     return;
3711   }
3712   httpd = hd;
3713   GNUNET_CONTAINER_DLL_insert (mhd_httpd_head,
3714                                mhd_httpd_tail,
3715                                hd);
3716 }
3717
3718
3719 /**
3720  * The main function for gnunet-gns-proxy.
3721  *
3722  * @param argc number of arguments from the command line
3723  * @param argv command line arguments
3724  * @return 0 ok, 1 on error
3725  */
3726 int
3727 main (int argc,
3728       char *const *argv)
3729 {
3730   struct GNUNET_GETOPT_CommandLineOption options[] = {
3731     GNUNET_GETOPT_option_uint16 ('p',
3732                                  "port",
3733                                  NULL,
3734                                  gettext_noop ("listen on specified port (default: 7777)"),
3735                                  &port),
3736     GNUNET_GETOPT_option_string ('a',
3737                                  "authority",
3738                                  NULL,
3739                                  gettext_noop ("pem file to use as CA"),
3740                                  &cafile_opt),
3741     GNUNET_GETOPT_option_flag ('6',
3742                                "disable-ivp6",
3743                                gettext_noop ("disable use of IPv6"),
3744                                &disable_v6),
3745
3746     GNUNET_GETOPT_OPTION_END
3747   };
3748   static const char* page =
3749     "<html><head><title>gnunet-gns-proxy</title>"
3750     "</head><body>cURL fail</body></html>";
3751   int ret;
3752
3753   if (GNUNET_OK !=
3754       GNUNET_STRINGS_get_utf8_args (argc, argv,
3755                                     &argc, &argv))
3756     return 2;
3757   GNUNET_log_setup ("gnunet-gns-proxy",
3758                     "WARNING",
3759                     NULL);
3760   curl_failure_response
3761     = MHD_create_response_from_buffer (strlen (page),
3762                                        (void *) page,
3763                                        MHD_RESPMEM_PERSISTENT);
3764
3765   ret =
3766     (GNUNET_OK ==
3767      GNUNET_PROGRAM_run (argc, argv,
3768                          "gnunet-gns-proxy",
3769                          _("GNUnet GNS proxy"),
3770                          options,
3771                          &run, NULL)) ? 0 : 1;
3772   MHD_destroy_response (curl_failure_response);
3773   GNUNET_free_non_null ((char *) argv);
3774   return ret;
3775 }
3776
3777 /* end of gnunet-gns-proxy.c */