aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-proxy.c
blob: 3a3678df1f5e039e25f18d37c56a0b99fc431989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
/*
     This file is part of GNUnet.
     (C) 2012-2013 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 3, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/
/**
 * @author Martin Schanzenbach
 * @file src/gns/gnunet-gns-proxy.c
 * @brief HTTP(S) proxy that rewrites URIs and fakes certificats to make GNS work
 *        with legacy browsers
 */
#include "platform.h"
#include <microhttpd.h>
#include <curl/curl.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include <gnutls/abstract.h>
#include <gnutls/crypto.h>
#include <regex.h>
#include "gnunet_util_lib.h"
#include "gnunet_gns_service.h"
#include "gns_proxy_proto.h"
#include "gns.h"

#define HAVE_MHD_NO_LISTEN_SOCKET (MHD_VERSION >= 0x00091401)

#define GNUNET_GNS_PROXY_PORT 7777
#define MHD_MAX_CONNECTIONS 300
#define MAX_HTTP_URI_LENGTH 2048
#define POSTBUFFERSIZE 4096

/* MHD/cURL defines */
enum BufferStatus
  {
    BUF_WAIT_FOR_CURL,
    BUF_WAIT_FOR_MHD,
    BUF_WAIT_FOR_PP 
  };

#define HTML_HDR_CONTENT "Content-Type: text/html"

/* buffer padding for proper RE matching */
#define CURL_BUF_PADDING 1000

/* regexp */
//#define RE_DOTPLUS "<a href=\"http://(([A-Za-z]+[.])+)([+])"
#define RE_A_HREF  "href=\"https?://(([A-Za-z0-9]+[.])+)([+]|[a-z]+)"
#define RE_N_MATCHES 4

/* The usual suspects */
#define HTTP_PORT 80
#define HTTPS_PORT 443


/**
 * A structure for CA cert/key
 */
struct ProxyCA
{
  /* The certificate */
  gnutls_x509_crt_t cert;

  /* The private key */
  gnutls_x509_privkey_t key;
};

#define MAX_PEM_SIZE (10 * 1024)

/**
 * Structure for GNS certificates
 */
struct ProxyGNSCertificate
{
  /* The certificate as PEM */
  char cert[MAX_PEM_SIZE];

  /* The private key as PEM */
  char key[MAX_PEM_SIZE];
};


/**
 * A structure for socks requests
 */
struct Socks5Request
{
  /* The client socket */
  struct GNUNET_NETWORK_Handle *sock;

  /* The server socket */
  struct GNUNET_NETWORK_Handle *remote_sock;
  
  /* The socks state */
  int state;
  
  /* Client socket read task */
  GNUNET_SCHEDULER_TaskIdentifier rtask;

  /* Server socket read task */
  GNUNET_SCHEDULER_TaskIdentifier fwdrtask;

  /* Client socket write task */
  GNUNET_SCHEDULER_TaskIdentifier wtask;

  /* Server socket write task */
  GNUNET_SCHEDULER_TaskIdentifier fwdwtask;

  /* Read buffer */
  char rbuf[2048];

  /* Write buffer */
  char wbuf[2048];

  /* Length of data in read buffer */
  unsigned int rbuf_len;

  /* Length of data in write buffer */
  unsigned int wbuf_len;

  /* This handle is scheduled for cleanup? */
  int cleanup;

  /* Shall we close the client socket on cleanup? */
  int cleanup_sock;
};

/**
 * DLL for Network Handles
 */
struct NetworkHandleList
{
  /*DLL*/
  struct NetworkHandleList *next;

  /*DLL*/
  struct NetworkHandleList *prev;

  /* The handle */
  struct GNUNET_NETWORK_Handle *h;
};

/**
 * A structure for all running Httpds
 */
struct MhdHttpList
{
  /* DLL for httpds */
  struct MhdHttpList *prev;

  /* DLL for httpds */
  struct MhdHttpList *next;

  /* is this an ssl daemon? */
  int is_ssl;

  /* the domain name to server (only important for SSL) */
  char domain[256];

  /* The daemon handle */
  struct MHD_Daemon *daemon;

  /* Optional proxy certificate used */
  struct ProxyGNSCertificate *proxy_cert;

  /* The task ID */
  GNUNET_SCHEDULER_TaskIdentifier httpd_task;

  /* Handles associated with this daemon */
  struct NetworkHandleList *socket_handles_head;
  
  /* Handles associated with this daemon */
  struct NetworkHandleList *socket_handles_tail;
};

/**
 * A structure for MHD<->cURL streams
 */
struct ProxyCurlTask
{
  /* DLL for tasks */
  struct ProxyCurlTask *prev;

  /* DLL for tasks */
  struct ProxyCurlTask *next;

  /* Handle to cURL */
  CURL *curl;

  /* Optional header replacements for curl (LEHO) */
  struct curl_slist *headers;

  /* Optional resolver replacements for curl (LEHO) */
  struct curl_slist *resolver;

  /* curl response code */
  long curl_response_code;

  /* The URL to fetch */
  char url[MAX_HTTP_URI_LENGTH];

  /* The cURL write buffer / MHD read buffer */
  char buffer[CURL_MAX_WRITE_SIZE + CURL_BUF_PADDING];

  /* Read pos of the data in the buffer */
  char *buffer_read_ptr;

  /* Write pos in the buffer */
  char *buffer_write_ptr;

  /* connection */
  struct MHD_Connection *connection;

  /*put*/
  size_t put_read_offset;
  size_t put_read_size;

  /*post*/
  struct MHD_PostProcessor *post_handler;

  /* post data */
  struct ProxyUploadData *upload_data_head;
  struct ProxyUploadData *upload_data_tail;

  /* the type of POST encoding */
  char* post_type;

  struct curl_httppost *httppost;

  struct curl_httppost *httppost_last;

  /* Number of bytes in buffer */
  unsigned int bytes_in_buffer;

  /* PP task */
  GNUNET_SCHEDULER_TaskIdentifier pp_task;

  /* PP match list */
  struct ProxyREMatch *pp_match_head;

  /* PP match list */
  struct ProxyREMatch *pp_match_tail;

  /* The associated daemon list entry */
  struct MhdHttpList *mhd;

  /* The associated response */
  struct MHD_Response *response;

  /* Cookies to set */
  struct ProxySetCookieHeader *set_cookies_head;

  /* Cookies to set */
  struct ProxySetCookieHeader *set_cookies_tail;

  /* The authority of the corresponding host (site of origin) */
  char authority[256];

  /* The hostname (Host header field) */
  char host[256];

  /* The LEgacy HOstname (can be empty) */
  char leho[256];

  /* The port */
  uint16_t port;

  /* The buffer status (BUF_WAIT_FOR_CURL or BUF_WAIT_FOR_MHD) */
  enum BufferStatus buf_status;

  /* connection status */
  int ready_to_queue;

  /* is curl running? */
  int curl_running;
  
  /* are we done */
  int fin;

  /* Already accepted */
  int accepted;

  /* Indicates wheather the download is in progress */
  int download_in_progress;

  /* Indicates wheather the download was successful */
  int download_is_finished;

  /* Indicates wheather the download failed */
  int download_error;

  /* Indicates wheather we need to parse HTML */
  int parse_content;

  /* Indicates wheather we are postprocessing the HTML right now */
  int is_postprocessing;

  /* Indicates wheather postprocessing has finished */
  int pp_finished;

  int post_done;

  int is_httppost;
  
};

/**
 * Struct for RE matches in postprocessing of HTML
 */
struct ProxyREMatch
{
  /* DLL */
  struct ProxyREMatch *next;

  /* DLL */
  struct ProxyREMatch *prev;

  /* start of match in buffer */
  char* start;

  /* end of match in buffer */
  char* end;

  /* associated proxycurltask */
  struct ProxyCurlTask *ctask;

  /* hostname found */
  char hostname[255];

  /* PP result */
  char result[255];

  /* shorten task */
  struct GNUNET_GNS_ShortenRequest *shorten_task;

  /* are we done */
  int done;

  /* is SSL */
  int is_ssl;

};

/**
 * Struct for set-cookies
 */
struct ProxySetCookieHeader
{
  /* DLL */
  struct ProxySetCookieHeader *next;

  /* DLL */
  struct ProxySetCookieHeader *prev;

  /* the cookie */
  char *cookie;
};

/**
 * Post data structure
 */
struct ProxyUploadData
{
  /* DLL */
  struct ProxyUploadData *next;

  /* DLL */
  struct ProxyUploadData *prev;

  char *key;

  char *filename;

  char *content_type;

  size_t content_length;
  
  /* value */
  char *value;

  /* to copy */
  size_t bytes_left;

  /* size */
  size_t total_bytes;
};


/* The port the proxy is running on (default 7777) */
static unsigned long port = GNUNET_GNS_PROXY_PORT;

/* The CA file (pem) to use for the proxy CA */
static char* cafile_opt;

/* The listen socket of the proxy */
static struct GNUNET_NETWORK_Handle *lsock;

/* The listen task ID */
static GNUNET_SCHEDULER_TaskIdentifier ltask;

/* The cURL download task */
static GNUNET_SCHEDULER_TaskIdentifier curl_download_task;

/* The non SSL httpd daemon handle */
static struct MHD_Daemon *httpd;

/* Number of current mhd connections */
static unsigned int total_mhd_connections;

/* The cURL multi handle */
static CURLM *curl_multi;

/* Handle to the GNS service */
static struct GNUNET_GNS_Handle *gns_handle;

/* DLL for ProxyCurlTasks */
static struct ProxyCurlTask *ctasks_head;

/* DLL for ProxyCurlTasks */
static struct ProxyCurlTask *ctasks_tail;

/* DLL for http daemons */
static struct MhdHttpList *mhd_httpd_head;

/* DLL for http daemons */
static struct MhdHttpList *mhd_httpd_tail;

/* Handle to the regex for dotplus (.+) replacement in HTML */
static regex_t re_dotplus;

/* The users local GNS zone hash */
static struct GNUNET_CRYPTO_ShortHashCode *local_gns_zone;

/* The users local private zone */
static struct GNUNET_CRYPTO_ShortHashCode *local_private_zone;

/* The users local shorten zone */
static struct GNUNET_CRYPTO_ShortHashCode *local_shorten_zone;

/* The CA for SSL certificate generation */
static struct ProxyCA proxy_ca;

/* UNIX domain socket for mhd */
#if !HAVE_MHD_NO_LISTEN_SOCKET
static struct GNUNET_NETWORK_Handle *mhd_unix_socket;
#endif

/* Shorten zone private key */
static struct GNUNET_CRYPTO_EccPrivateKey *shorten_zonekey;


/**
 * Checks if name is in tld
 *
 * @param name the name to check 
 * @param tld the TLD to check for (must NOT begin with ".")
 * @return GNUNET_YES or GNUNET_NO
 */
static int
is_tld (const char* name, const char* tld)
{
  size_t name_len = strlen (name);
  size_t tld_len = strlen (tld);

  GNUNET_break ('.' != tld[0]);
  return ( (tld_len < name_len) &&
	   ( ('.' == name[name_len - tld_len - 1]) || (name_len == tld_len) ) &&
	   (0 == memcmp (tld,
			 name + (name_len - tld_len),
			 tld_len)) );
}


static int
con_post_data_iter (void *cls,
                  enum MHD_ValueKind kind,
                  const char *key,
                  const char *filename,
                  const char *content_type,
                  const char *transfer_encoding,
                  const char *data,
                  uint64_t off,
                  size_t size)
{
  struct ProxyCurlTask* ctask = cls;
  struct ProxyUploadData* pdata;
  char* enc;
  char* new_value;
  
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Got POST data (file: %s, content type: %s): '%s=%.*s' at offset %llu size %llu\n",
	      filename, content_type,
              key, (int) size, data, 
	      (unsigned long long) off, 
	      (unsigned long long) size);
  GNUNET_assert (NULL != ctask->post_type);

  if (0 == strcasecmp (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA,
                       ctask->post_type))
  {
    ctask->is_httppost = GNUNET_YES;
    /* new part */
    if (0 == off)
    {
      pdata = GNUNET_malloc (sizeof (struct ProxyUploadData));
      pdata->key = GNUNET_strdup (key);

      if (NULL != filename)
        pdata->filename = GNUNET_strdup (filename);
      if (NULL != content_type)
        pdata->content_type = GNUNET_strdup (content_type);
      pdata->value = GNUNET_malloc (size);
      pdata->total_bytes = size;
      memcpy (pdata->value, data, size);
      GNUNET_CONTAINER_DLL_insert_tail (ctask->upload_data_head,
                                        ctask->upload_data_tail,
                                        pdata);

      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Copied %llu bytes of POST Data\n", 
		  (unsigned long long) size);
      return MHD_YES;
    }
    
    pdata = ctask->upload_data_tail;
    new_value = GNUNET_malloc (size + pdata->total_bytes);
    memcpy (new_value, pdata->value, pdata->total_bytes);
    memcpy (new_value+off, data, size);
    GNUNET_free (pdata->value);
    pdata->value = new_value;
    pdata->total_bytes += size;

    return MHD_YES;
  }

  if (0 != strcasecmp (MHD_HTTP_POST_ENCODING_FORM_URLENCODED,
                       ctask->post_type))
  {
    return MHD_NO;
  }

  ctask->is_httppost = GNUNET_NO;
  
  if (NULL != ctask->curl)
    curl_easy_pause (ctask->curl, CURLPAUSE_CONT);

  if (0 == off)
  {
    enc = curl_easy_escape (ctask->curl, key, 0);
    if (NULL == enc)
      {
	GNUNET_break (0);
	return MHD_NO;
      }
    /* a key */
    pdata = GNUNET_malloc (sizeof (struct ProxyUploadData));
    pdata->value = GNUNET_malloc (strlen (enc) + 3);
    if (NULL != ctask->upload_data_head)
    {
      pdata->value[0] = '&';
      memcpy (pdata->value+1, enc, strlen (enc));
    }
    else
      memcpy (pdata->value, enc, strlen (enc));
    pdata->value[strlen (pdata->value)] = '=';
    pdata->bytes_left = strlen (pdata->value);
    pdata->total_bytes = pdata->bytes_left;
    curl_free (enc);

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Escaped POST key: '%s'\n",
                pdata->value);

    GNUNET_CONTAINER_DLL_insert_tail (ctask->upload_data_head,
                                      ctask->upload_data_tail,
                                      pdata);
  }

  /* a value */
  enc = curl_easy_escape (ctask->curl, data, 0);
  if (NULL == enc)
    {
      GNUNET_break (0);
      return MHD_NO;
    }
  pdata = GNUNET_malloc (sizeof (struct ProxyUploadData));
  pdata->value = GNUNET_malloc (strlen (enc) + 1);
  memcpy (pdata->value, enc, strlen (enc));
  pdata->bytes_left = strlen (pdata->value);
  pdata->total_bytes = pdata->bytes_left;
  curl_free (enc);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Escaped POST value: '%s'\n",
              pdata->value);

  GNUNET_CONTAINER_DLL_insert_tail (ctask->upload_data_head,
                                    ctask->upload_data_tail,
                                    pdata);
  return MHD_YES;
}


/**
 * Read HTTP request header field 'Host'
 *
 * @param cls buffer to write to
 * @param kind value kind
 * @param key field key
 * @param value field value
 * @return MHD_NO when Host found
 */
static int
con_val_iter (void *cls,
              enum MHD_ValueKind kind,
              const char *key,
              const char *value)
{
  struct ProxyCurlTask *ctask = cls;
  char* buf = ctask->host;
  char* port;
  char* cstr;
  const char* hdr_val;
  unsigned int uport;

  if (0 == strcmp ("Host", key))
  {
    port = strchr (value, ':');
    if (NULL != port)
    {
      strncpy (buf, value, port-value);
      port++;
      if ((1 != sscanf (port, "%u", &uport)) ||
           (uport > UINT16_MAX) ||
           (0 == uport))
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                    "Unable to parse port!\n");
      else
        ctask->port = (uint16_t) uport;
    }
    else
      strcpy (buf, value);
    return MHD_YES;
  }

  if (0 == strcmp (MHD_HTTP_HEADER_ACCEPT_ENCODING, key))
    hdr_val = "";
  else
    hdr_val = value;

  if (0 == strcasecmp (MHD_HTTP_HEADER_CONTENT_TYPE,
                   key))
  {
    if (0 == strncasecmp (value,
                     MHD_HTTP_POST_ENCODING_FORM_URLENCODED,
                     strlen (MHD_HTTP_POST_ENCODING_FORM_URLENCODED)))
      ctask->post_type = MHD_HTTP_POST_ENCODING_FORM_URLENCODED;
    else if (0 == strncasecmp (value,
                          MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA,
                          strlen (MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA)))
      ctask->post_type = MHD_HTTP_POST_ENCODING_MULTIPART_FORMDATA;
    else
      ctask->post_type = NULL;

  }

  cstr = GNUNET_malloc (strlen (key) + strlen (hdr_val) + 3);
  GNUNET_snprintf (cstr, strlen (key) + strlen (hdr_val) + 3,
                   "%s: %s", key, hdr_val);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Client Header: %s\n", cstr);

  ctask->headers = curl_slist_append (ctask->headers, cstr);
  GNUNET_free (cstr);

  return MHD_YES;
}


/**
 * Callback for MHD response
 *
 * @param cls closure
 * @param pos in buffer
 * @param buf buffer
 * @param max space in buffer
 * @return number of bytes written
 */
static ssize_t
mhd_content_cb (void *cls,
                uint64_t pos,
                char* buf,
                size_t max);


/**
 * Check HTTP response header for mime
 *
 * @param buffer curl buffer
 * @param size curl blocksize
 * @param nmemb curl blocknumber
 * @param cls handle
 * @return size of read bytes
 */
static size_t
curl_check_hdr (void *buffer, size_t size, size_t nmemb, void *cls)
{
  size_t bytes = size * nmemb;
  struct ProxyCurlTask *ctask = cls;
  int html_mime_len = strlen (HTML_HDR_CONTENT);
  int cookie_hdr_len = strlen (MHD_HTTP_HEADER_SET_COOKIE);
  char hdr_mime[html_mime_len+1];
  char hdr_generic[bytes+1];
  char new_cookie_hdr[bytes+strlen (ctask->leho)+1];
  char new_location[MAX_HTTP_URI_LENGTH+500];
  char real_host[264];
  char leho_host[264];
  char* ndup;
  char* tok;
  char* cookie_domain;
  char* hdr_type;
  char* hdr_val;
  int delta_cdomain;
  size_t offset = 0;
  char cors_hdr[strlen (ctask->leho) + strlen ("https://")];
  
  if (NULL == ctask->response)
  {
    /* FIXME: get total size from curl (if available) */
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Creating response for %s\n", ctask->url);
    ctask->response = MHD_create_response_from_callback (MHD_SIZE_UNKNOWN,
							 sizeof (ctask->buffer),
							 &mhd_content_cb,
							 ctask,
							 NULL);

    /* if we have a leho add a CORS header */
    if (0 != strcmp ("", ctask->leho))
    {
      /* We could also allow ssl and http here */
      if (ctask->mhd->is_ssl)
        sprintf (cors_hdr, "https://%s", ctask->leho);
      else
        sprintf (cors_hdr, "http://%s", ctask->leho);

      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "MHD: Adding CORS header field %s\n",
                  cors_hdr);

      if (GNUNET_NO == MHD_add_response_header (ctask->response,
                                              "Access-Control-Allow-Origin",
                                              cors_hdr))
      {
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "MHD: Error adding CORS header field %s\n",
                  cors_hdr);
      }
    }
    ctask->ready_to_queue = GNUNET_YES;
  }
  
  if (html_mime_len <= bytes)
  {
    memcpy (hdr_mime, buffer, html_mime_len);
    hdr_mime[html_mime_len] = '\0';

    if (0 == strcmp (hdr_mime, HTML_HDR_CONTENT))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Got HTML HTTP response header\n");
      ctask->parse_content = GNUNET_YES;
    }
  }

  if (cookie_hdr_len > bytes)
    return bytes;

  memcpy (hdr_generic, buffer, bytes);
  hdr_generic[bytes] = '\0';
  /* remove crlf */
  if ('\n' == hdr_generic[bytes-1])
    hdr_generic[bytes-1] = '\0';

  if (hdr_generic[bytes-2] == '\r')
    hdr_generic[bytes-2] = '\0';
  
  if (0 == memcmp (hdr_generic,
                   MHD_HTTP_HEADER_SET_COOKIE,
                   cookie_hdr_len))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Looking for cookie in: `%s'\n", hdr_generic);    
    ndup = GNUNET_strdup (hdr_generic+cookie_hdr_len+1);
    memset (new_cookie_hdr, 0, sizeof (new_cookie_hdr));
    for (tok = strtok (ndup, ";"); tok != NULL; tok = strtok (NULL, ";"))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                  "Got Cookie token: %s\n", tok);
      //memcpy (new_cookie_hdr+offset, tok, strlen (tok));
      if (0 == memcmp (tok, " domain", strlen (" domain")))
      {
        cookie_domain = tok + strlen (" domain") + 1;

        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                    "Got Set-Cookie Domain: %s\n", cookie_domain);

        if (strlen (cookie_domain) < strlen (ctask->leho))
        {
          delta_cdomain = strlen (ctask->leho) - strlen (cookie_domain);
          if (0 == strcmp (cookie_domain, ctask->leho + (delta_cdomain)))
          {
            GNUNET_snprintf (new_cookie_hdr+offset,
                             sizeof (new_cookie_hdr),
                             " domain=%s", ctask->authority);
            offset += strlen (" domain=") + strlen (ctask->authority);
            new_cookie_hdr[offset] = ';';
            offset++;
            continue;
          }
        }
        else if (strlen (cookie_domain) == strlen (ctask->leho))
        {
          if (0 == strcmp (cookie_domain, ctask->leho))
          {
            GNUNET_snprintf (new_cookie_hdr+offset,
                             sizeof (new_cookie_hdr),
                             " domain=%s", ctask->host);
            offset += strlen (" domain=") + strlen (ctask->host);
            new_cookie_hdr[offset] = ';';
            offset++;
            continue;
          }
        }
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                    "Cookie domain invalid\n");

        
      }
      memcpy (new_cookie_hdr+offset, tok, strlen (tok));
      offset += strlen (tok);
      new_cookie_hdr[offset] = ';';
      offset++;
    }
    
    GNUNET_free (ndup);

    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "Got Set-Cookie HTTP header %s\n", new_cookie_hdr);

    if (GNUNET_NO == MHD_add_response_header (ctask->response,
                                              MHD_HTTP_HEADER_SET_COOKIE,
                                              new_cookie_hdr))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "MHD: Error adding set-cookie header field %s\n",
                  hdr_generic+cookie_hdr_len+1);
    }
    return bytes;
  }

  ndup = GNUNET_strdup (hdr_generic);
  hdr_type = strtok (ndup, ":");

  if (NULL == hdr_type)
  {
    GNUNET_free (ndup);
    return bytes;
  }

  hdr_val = strtok (NULL, "");

  if (NULL == hdr_val)
  {
    GNUNET_free (ndup);
    return bytes;
  }

  hdr_val++;

  if (0 == strcasecmp (MHD_HTTP_HEADER_LOCATION, hdr_type))
  {
    if (ctask->mhd->is_ssl)
    {
      sprintf (leho_host, "https://%s", ctask->leho);
      sprintf (real_host, "https://%s", ctask->host);
    }
    else
    {
      sprintf (leho_host, "http://%s", ctask->leho);
      sprintf (real_host, "http://%s", ctask->host);
    }

    if (0 == memcmp (leho_host, hdr_val, strlen (leho_host)))
    {
      sprintf (new_location, "%s%s", real_host, hdr_val+strlen (leho_host));
      hdr_val = new_location;
    }
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Trying to set %s: %s\n",
              hdr_type,
              hdr_val);
  if (GNUNET_NO == MHD_add_response_header (ctask->response,
                                            hdr_type,
                                            hdr_val))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "MHD: Error adding %s header field %s\n",
                hdr_type,
                hdr_val);
  }
  GNUNET_free (ndup);
  return bytes;
}


/**
 * schedule mhd
 *
 * @param hd a http daemon list entry
 */
static void
run_httpd (struct MhdHttpList *hd);


/**
 * schedule all mhds
 *
 */
static void
run_httpds (void);


/**
 * Task run whenever HTTP server operations are pending.
 *
 * @param cls unused
 * @param tc sched context
 */
static void
do_httpd (void *cls,
          const struct GNUNET_SCHEDULER_TaskContext *tc);


static void
run_mhd_now (struct MhdHttpList *hd)
{
  if (GNUNET_SCHEDULER_NO_TASK != hd->httpd_task)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: killing old task\n");
    GNUNET_SCHEDULER_cancel (hd->httpd_task);
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: Scheduling MHD now\n");
  hd->httpd_task = GNUNET_SCHEDULER_add_now (&do_httpd, hd);
}


/**
 * Ask cURL for the select sets and schedule download
 */
static void
curl_download_prepare (void);


/**
 * Callback to free content
 *
 * @param cls content to free
 * @param tc task context
 */
static void
mhd_content_free (void *cls,
                  const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct ProxyCurlTask *ctask = cls;
  struct ProxyUploadData *pdata;

  GNUNET_assert (NULL == ctask->pp_match_head);
  if (NULL != ctask->headers)
    curl_slist_free_all (ctask->headers);

  if (NULL != ctask->headers)
    curl_slist_free_all (ctask->resolver);

  if (NULL != ctask->response)
    MHD_destroy_response (ctask->response);

  if (NULL != ctask->post_handler)
    MHD_destroy_post_processor (ctask->post_handler);

  if (GNUNET_SCHEDULER_NO_TASK != ctask->pp_task)
    GNUNET_SCHEDULER_cancel (ctask->pp_task);

  for (pdata = ctask->upload_data_head; NULL != pdata; pdata = ctask->upload_data_head)
  {
    GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                 ctask->upload_data_tail,
                                 pdata);
    GNUNET_free_non_null (pdata->filename);
    GNUNET_free_non_null (pdata->content_type);
    GNUNET_free_non_null (pdata->key);
    GNUNET_free_non_null (pdata->value);
    GNUNET_free (pdata);
  }
  GNUNET_free (ctask);
}


/**
 * Callback for MHD response
 *
 * @param cls closure
 * @param pos in buffer
 * @param buf buffer
 * @param max space in buffer
 * @return number of bytes written
 */
static ssize_t
mhd_content_cb (void *cls,
                uint64_t pos,
                char* buf,
                size_t max)
{
  struct ProxyCurlTask *ctask = cls;
  struct ProxyREMatch *re_match;
  ssize_t copied = 0;
  size_t bytes_to_copy = ctask->buffer_write_ptr - ctask->buffer_read_ptr;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: content cb for %s. To copy: %u\n",
              ctask->url, (unsigned int) bytes_to_copy);
  if ((GNUNET_YES == ctask->download_is_finished) &&
      (GNUNET_NO == ctask->download_error) &&
      (0 == bytes_to_copy))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "MHD: sending response for %s\n", ctask->url);
    ctask->download_in_progress = GNUNET_NO;
    run_mhd_now (ctask->mhd);
    GNUNET_SCHEDULER_add_now (&mhd_content_free, ctask);
    total_mhd_connections--;
    return MHD_CONTENT_READER_END_OF_STREAM;
  }
  
  if ((GNUNET_YES == ctask->download_error) &&
      (GNUNET_YES == ctask->download_is_finished) &&
      (0 == bytes_to_copy))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "MHD: sending error response\n");
    ctask->download_in_progress = GNUNET_NO;
    run_mhd_now (ctask->mhd);
    GNUNET_SCHEDULER_add_now (&mhd_content_free, ctask);
    total_mhd_connections--;
    return MHD_CONTENT_READER_END_WITH_ERROR;
  }

  if ( ctask->buf_status == BUF_WAIT_FOR_CURL )
    return 0;
  
  copied = 0;
  for (re_match = ctask->pp_match_head; NULL != re_match; re_match = ctask->pp_match_head)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: Processing PP %s\n",
                re_match->hostname);
    bytes_to_copy = re_match->start - ctask->buffer_read_ptr;
    if (bytes_to_copy+copied > max)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "MHD: buffer in response too small for %u. Using available space (%d). (%s)\n",
		  (unsigned int) bytes_to_copy,
		  max,
		  ctask->url);
      memcpy (buf+copied, ctask->buffer_read_ptr, max-copied);
      ctask->buffer_read_ptr += max-copied;
      copied = max;
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "MHD: copied %d bytes\n", (int) copied);
      return copied;
    }

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: copying %u bytes to mhd response at offset %d\n",
                (unsigned int) bytes_to_copy, ctask->buffer_read_ptr);
    memcpy (buf+copied, ctask->buffer_read_ptr, bytes_to_copy);
    copied += bytes_to_copy;

    if (GNUNET_NO == re_match->done)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "MHD: Waiting for PP of %s\n", re_match->hostname);
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "MHD: copied %d bytes\n", (int) copied);
      ctask->buffer_read_ptr += bytes_to_copy;
      return copied;
    }
    
    if (strlen (re_match->result) > (max - copied))
    {
      //FIXME partially copy domain here
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "MHD: buffer in response too small for %s! (%s)\n",
                  re_match->result,
                  ctask->url);
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
		  "MHD: copied %d bytes\n", (int) copied);
      ctask->buffer_read_ptr += bytes_to_copy;
      return copied;
    }
    
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: Adding PP result %s to buffer\n",
                re_match->result);
    memcpy (buf + copied, re_match->result, strlen (re_match->result));
    copied += strlen (re_match->result);
    ctask->buffer_read_ptr = re_match->end;
    GNUNET_CONTAINER_DLL_remove (ctask->pp_match_head,
                                 ctask->pp_match_tail,
                                 re_match);
    GNUNET_free (re_match);
  }

  bytes_to_copy = ctask->buffer_write_ptr - ctask->buffer_read_ptr;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: copied: %d left: %u, space left in buf: %d\n",
              copied,
              (unsigned int) bytes_to_copy, (int) (max - copied));
  
  if (GNUNET_NO == ctask->download_is_finished)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: Purging buffer\n");
    memmove (ctask->buffer, ctask->buffer_read_ptr, bytes_to_copy);
    ctask->buffer_read_ptr = ctask->buffer;
    ctask->buffer_write_ptr = ctask->buffer + bytes_to_copy;
    ctask->buffer[bytes_to_copy] = '\0';
  }
  
  if (bytes_to_copy + copied > max)
    bytes_to_copy = max - copied;
  memcpy (buf+copied, ctask->buffer_read_ptr, bytes_to_copy);
  ctask->buffer_read_ptr += bytes_to_copy;
  copied += bytes_to_copy;
  ctask->buf_status = BUF_WAIT_FOR_CURL;
  
  if (NULL != ctask->curl)
    curl_easy_pause (ctask->curl, CURLPAUSE_CONT);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: copied %d bytes\n", (int) copied);
  run_mhd_now (ctask->mhd);
  return copied;
}


/**
 * Shorten result callback
 *
 * @param cls the proxycurltask
 * @param short_name the shortened name (NULL on error)
 */
static void
process_shorten (void* cls, const char* short_name)
{
  struct ProxyREMatch *re_match = cls;
  char result[sizeof (re_match->result)];
  
  if (NULL == short_name)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "PP: Unable to shorten %s\n",
                re_match->hostname);
    GNUNET_CONTAINER_DLL_remove (re_match->ctask->pp_match_head,
                                 re_match->ctask->pp_match_tail,
                                 re_match);
    GNUNET_free (re_match);
    return;
  }

  if (0 == strcmp (short_name, re_match->ctask->leho))
    strcpy (result, re_match->ctask->host);
  else
    strcpy (result, short_name);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "PP: Shorten %s -> %s\n",
              re_match->hostname,
              result);
  
  if (re_match->is_ssl)
    sprintf (re_match->result, "href=\"https://%s", result);
  else
    sprintf (re_match->result, "href=\"http://%s", result);

  re_match->done = GNUNET_YES;
  run_mhd_now (re_match->ctask->mhd);
}


/**
 * Postprocess data in buffer. From read ptr to write ptr
 *
 * @param cls the curlproxytask
 * @param tc task context
 */
static void
postprocess_buffer (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct ProxyCurlTask *ctask = cls;
  struct ProxyREMatch *re_match;
  char* re_ptr = ctask->buffer_read_ptr;
  char re_hostname[255];
  regmatch_t m[RE_N_MATCHES];

  ctask->pp_task = GNUNET_SCHEDULER_NO_TASK;

  if (GNUNET_YES != ctask->parse_content)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "PP: Not parsing content\n");
    ctask->buf_status = BUF_WAIT_FOR_MHD;
    run_mhd_now (ctask->mhd);
    return;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "PP: We need to parse the HTML\n");

  /* 0 means match found */
  while (0 == regexec (&re_dotplus, re_ptr, RE_N_MATCHES, m, 0))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "PP: regex match\n");

    GNUNET_assert (m[1].rm_so != -1);

    memset (re_hostname, 0, sizeof (re_hostname));
    memcpy (re_hostname, re_ptr+m[1].rm_so, (m[3].rm_eo-m[1].rm_so));
    

    re_match = GNUNET_malloc (sizeof (struct ProxyREMatch));
    re_match->start = re_ptr + m[0].rm_so;
    re_match->end = re_ptr + m[3].rm_eo;
    re_match->done = GNUNET_NO;
    re_match->ctask = ctask;
    
    if ('s' == *(re_ptr+m[1].rm_so-strlen("://")-1)) //FIXME strcmp
      re_match->is_ssl = GNUNET_YES;
    else
      re_match->is_ssl = GNUNET_NO;
      
    strcpy (re_match->hostname, re_hostname);
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "PP: Got hostname %s\n", re_hostname);
    re_ptr += m[3].rm_eo;

    if (GNUNET_YES == is_tld (re_match->hostname, GNUNET_GNS_TLD_PLUS))
    {
      re_match->hostname[strlen(re_match->hostname)-1] = '\0';
      strcpy (re_match->hostname+strlen(re_match->hostname),
              ctask->authority);
    }

    re_match->shorten_task = GNUNET_GNS_shorten_zone (gns_handle,
                             re_match->hostname,
                             local_private_zone,
                             local_shorten_zone,
                             local_gns_zone,
                             &process_shorten,
                             re_match); //FIXME cancel appropriately

    GNUNET_CONTAINER_DLL_insert_tail (ctask->pp_match_head,
                                      ctask->pp_match_tail,
                                      re_match);
  }
  
  ctask->buf_status = BUF_WAIT_FOR_MHD;
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "PP: No more matches\n");
  run_mhd_now (ctask->mhd);
}


/**
 * Handle data from cURL
 *
 * @param ptr pointer to the data
 * @param size number of blocks of data
 * @param nmemb blocksize
 * @param ctx the curlproxytask
 * @return number of bytes handled
 */
static size_t
curl_download_cb (void *ptr, size_t size, size_t nmemb, void* ctx)
{
  const char *cbuf = ptr;
  size_t total = size * nmemb;
  struct ProxyCurlTask *ctask = ctx;
  size_t buf_space = sizeof (ctask->buffer) -
    (ctask->buffer_write_ptr-ctask->buffer);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: Got %d. %d free in buffer\n",
              total, buf_space);

  if (BUF_WAIT_FOR_CURL != ctask->buf_status)
    return CURL_WRITEFUNC_PAUSE;

  if (total > (buf_space - CURL_BUF_PADDING))
  {
    if (ctask->buf_status == BUF_WAIT_FOR_CURL)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "CURL: Buffer full starting postprocessing\n");
      ctask->buf_status = BUF_WAIT_FOR_PP;
      ctask->pp_task = GNUNET_SCHEDULER_add_now (&postprocess_buffer,
                                                 ctask);
      return CURL_WRITEFUNC_PAUSE;
    }

    /* we should not get called in that case */
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "CURL: called out of context and no space in buffer!\n");
    return CURL_WRITEFUNC_PAUSE;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: Copying %d bytes to buffer (%s)\n", total, ctask->url);
  memcpy (ctask->buffer_write_ptr, cbuf, total);
  ctask->bytes_in_buffer += total;
  ctask->buffer_write_ptr += total;
  ctask->buffer_write_ptr[0] = '\0';

  return total;
}


/**
 * cURL callback for put data
 */
static size_t
put_read_callback (void *buf, size_t size, size_t nmemb, void *cls)
{
  struct ProxyCurlTask *ctask = cls;
  struct ProxyUploadData *pdata = ctask->upload_data_head;
  size_t len = size * nmemb;
  size_t to_copy;
  char* pos;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: put read callback\n");

  if (NULL == pdata)
    return CURL_READFUNC_PAUSE;
  
  //fin
  if (NULL == pdata->value)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "CURL: Terminating PUT\n");

    GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                 ctask->upload_data_tail,
                                 pdata);
    GNUNET_free (pdata);
    return 0;
  }
 
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: read callback value %s\n", pdata->value); 
  
  to_copy = pdata->bytes_left;
  if (to_copy > len)
    to_copy = len;
  
  pos = pdata->value + (pdata->total_bytes - pdata->bytes_left);
  memcpy (buf, pos, to_copy);
  pdata->bytes_left -= to_copy;
  if (pdata->bytes_left <= 0)
  {
    GNUNET_free (pdata->value);
    GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                 ctask->upload_data_tail,
                                 pdata);
    GNUNET_free (pdata);
  }
  return to_copy;
}


/**
 * cURL callback for post data
 */
static size_t
post_read_callback (void *buf, size_t size, size_t nmemb, void *cls)
{
  struct ProxyCurlTask *ctask = cls;
  struct ProxyUploadData *pdata = ctask->upload_data_head;
  size_t len = size * nmemb;
  size_t to_copy;
  char* pos;

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: read callback\n");

  if (NULL == pdata)
    return CURL_READFUNC_PAUSE;
  
  //fin
  if (NULL == pdata->value)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "CURL: Terminating POST data\n");

    GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                 ctask->upload_data_tail,
                                 pdata);
    GNUNET_free (pdata);
    return 0;
  }
 
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "CURL: read callback value %s\n", pdata->value); 
  
  to_copy = pdata->bytes_left;
  if (to_copy > len)
    to_copy = len;
  
  pos = pdata->value + (pdata->total_bytes - pdata->bytes_left);
  memcpy (buf, pos, to_copy);
  pdata->bytes_left -= to_copy;
  if (pdata->bytes_left <= 0)
  {
    GNUNET_free (pdata->value);
    GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                 ctask->upload_data_tail,
                                 pdata);
    GNUNET_free (pdata);
  }
  return to_copy;
}


/**
 * Task that is run when we are ready to receive more data
 * from curl
 *
 * @param cls closure
 * @param tc task context
 */
static void
curl_task_download (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);


/**
 * Ask cURL for the select sets and schedule download
 */
static void
curl_download_prepare ()
{
  CURLMcode mret;
  fd_set rs;
  fd_set ws;
  fd_set es;
  int max;
  struct GNUNET_NETWORK_FDSet *grs;
  struct GNUNET_NETWORK_FDSet *gws;
  long to;
  struct GNUNET_TIME_Relative rtime;

  max = -1;
  FD_ZERO (&rs);
  FD_ZERO (&ws);
  FD_ZERO (&es);
  if (CURLM_OK != (mret = curl_multi_fdset (curl_multi, &rs, &ws, &es, &max)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "%s failed at %s:%d: `%s'\n",
                "curl_multi_fdset", __FILE__, __LINE__,
                curl_multi_strerror (mret));
    //TODO cleanup here?
    return;
  }
  to = -1;
  GNUNET_break (CURLM_OK == curl_multi_timeout (curl_multi, &to));
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "cURL multi fds: max=%d timeout=%lld\n", max, (long long) to);
  if (-1 == to)
    rtime = GNUNET_TIME_UNIT_FOREVER_REL;
  else
    rtime = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, to);
  grs = GNUNET_NETWORK_fdset_create ();
  gws = GNUNET_NETWORK_fdset_create ();
  GNUNET_NETWORK_fdset_copy_native (grs, &rs, max + 1);
  GNUNET_NETWORK_fdset_copy_native (gws, &ws, max + 1);
  if (curl_download_task != GNUNET_SCHEDULER_NO_TASK)
    GNUNET_SCHEDULER_cancel (curl_download_task);  
  if (-1 != max)
  {
    curl_download_task =
      GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
                                   rtime,
                                   grs, gws,
                                   &curl_task_download, curl_multi);
  }
  else if (NULL != ctasks_head)
  {
    /* as specified in curl docs */
    curl_download_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MILLISECONDS,
                                                       &curl_task_download,
                                                       curl_multi);
  }
  GNUNET_NETWORK_fdset_destroy (gws);
  GNUNET_NETWORK_fdset_destroy (grs);
}


/**
 * Task that is run when we are ready to receive more data
 * from curl
 *
 * @param cls closure
 * @param tc task context
 */
static void
curl_task_download (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  int running;
  int msgnum;
  struct CURLMsg *msg;
  CURLMcode mret;
  struct ProxyCurlTask *ctask;
  int num_ctasks;
  long resp_code;
  struct ProxyCurlTask *clean_head = NULL;
  struct ProxyCurlTask *clean_tail = NULL;

  curl_download_task = GNUNET_SCHEDULER_NO_TASK;

  if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Shutdown requested while trying to download\n");
    //TODO cleanup
    return;
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Ready to dl\n");

  do
  {
    running = 0;
    num_ctasks = 0;
    
    mret = curl_multi_perform (curl_multi, &running);

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Running curl tasks: %d\n", running);

    for (ctask = ctasks_head; NULL != ctask; ctask = ctask->next)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "CTask: %s\n", ctask->url);
      num_ctasks++;
    }

    if (num_ctasks != running)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "%d ctasks, %d curl running\n", num_ctasks, running);
    }
    
    do
    {
      
      msg = curl_multi_info_read (curl_multi, &msgnum);
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Messages left: %d\n", msgnum);
      
      if (msg == NULL)
        break;
      switch (msg->msg)
      {
       case CURLMSG_DONE:
         if ((msg->data.result != CURLE_OK) &&
             (msg->data.result != CURLE_GOT_NOTHING))
         {
           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                       "Download curl failed");
            
           for (ctask = ctasks_head; NULL != ctask; ctask = ctask->next)
           {
             if (NULL == ctask->curl)
               continue;

             if (memcmp (msg->easy_handle, ctask->curl, sizeof (CURL)) != 0)
               continue;
             
             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                         "CURL: Download failed for task %s: %s.\n",
                         ctask->url,
                         curl_easy_strerror (msg->data.result));
             ctask->download_is_finished = GNUNET_YES;
             ctask->download_error = GNUNET_YES;
             if (CURLE_OK == curl_easy_getinfo (ctask->curl,
                                                CURLINFO_RESPONSE_CODE,
                                                &resp_code))
               ctask->curl_response_code = resp_code;
             ctask->ready_to_queue = MHD_YES;
             ctask->buf_status = BUF_WAIT_FOR_MHD;
             run_mhd_now (ctask->mhd);
             
             GNUNET_CONTAINER_DLL_remove (ctasks_head, ctasks_tail,
                                          ctask);
             GNUNET_CONTAINER_DLL_insert (clean_head, clean_tail, ctask);
             break;
           }
           GNUNET_assert (ctask != NULL);
         }
         else
         {
           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                       "CURL: download completed.\n");

           for (ctask = ctasks_head; NULL != ctask; ctask = ctask->next)
           {
             if (NULL == ctask->curl)
               continue;

             if (0 != memcmp (msg->easy_handle, ctask->curl, sizeof (CURL)))
               continue;
             
             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                         "CURL: completed task %s found.\n", ctask->url);
             if (CURLE_OK == curl_easy_getinfo (ctask->curl,
                                                CURLINFO_RESPONSE_CODE,
                                                &resp_code))
               ctask->curl_response_code = resp_code;


             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                         "CURL: Completed ctask!\n");
             if (GNUNET_SCHEDULER_NO_TASK == ctask->pp_task)
             {
              ctask->buf_status = BUF_WAIT_FOR_PP;
              ctask->pp_task = GNUNET_SCHEDULER_add_now (&postprocess_buffer,
                                                          ctask);
             }

             ctask->ready_to_queue = MHD_YES;
             ctask->download_is_finished = GNUNET_YES;

             /* We MUST not modify the multi handle else we loose messages */
             GNUNET_CONTAINER_DLL_remove (ctasks_head, ctasks_tail,
                                          ctask);
             GNUNET_CONTAINER_DLL_insert (clean_head, clean_tail, ctask);

             break;
           }
           GNUNET_assert (ctask != NULL);
         }
         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                     "CURL: %s\n", curl_easy_strerror(msg->data.result));
         break;
       default:
         GNUNET_assert (0);
         break;
      }
    } while (msgnum > 0);

    for (ctask=clean_head; NULL != ctask; ctask = ctask->next)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "CURL: Removing task %s.\n", ctask->url);
      curl_multi_remove_handle (curl_multi, ctask->curl);
      curl_easy_cleanup (ctask->curl);
      ctask->curl = NULL;
    }
    
    num_ctasks=0;
    for (ctask=ctasks_head; NULL != ctask; ctask = ctask->next)    
      num_ctasks++; 
    
    if (num_ctasks != running)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "CURL: %d tasks, %d running\n", num_ctasks, running);
    }

    GNUNET_assert ( num_ctasks == running );

  } while (mret == CURLM_CALL_MULTI_PERFORM);
  
  if (mret != CURLM_OK)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "CURL: %s failed at %s:%d: `%s'\n",
                "curl_multi_perform", __FILE__, __LINE__,
                curl_multi_strerror (mret));
  }
  curl_download_prepare();
}


/**
 * Process LEHO lookup
 *
 * @param cls the ctask
 * @param rd_count number of records returned
 * @param rd record data
 */
static void
process_leho_lookup (void *cls,
                     uint32_t rd_count,
                     const struct GNUNET_NAMESTORE_RecordData *rd)
{
  struct ProxyCurlTask *ctask = cls;
  char hosthdr[262]; //256 + "Host: "
  int i;
  CURLcode ret;
  CURLMcode mret;
  struct hostent *phost;
  char *ssl_ip;
  char resolvename[512];
  char curlurl[512];

  strcpy (ctask->leho, "");

  if (rd_count == 0)
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "No LEHO present!\n");

  for (i=0; i<rd_count; i++)
  {
    if (rd[i].record_type != GNUNET_NAMESTORE_TYPE_LEHO)
      continue;

    memcpy (ctask->leho, rd[i].data, rd[i].data_size);

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Found LEHO %s for %s\n", ctask->leho, ctask->url);
  }

  if (0 != strcmp (ctask->leho, ""))
  {
    sprintf (hosthdr, "%s%s:%d", "Host: ", ctask->leho, ctask->port);
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "New HTTP header value: %s\n", hosthdr);
    ctask->headers = curl_slist_append (ctask->headers, hosthdr);
    GNUNET_assert (NULL != ctask->headers);
    ret = curl_easy_setopt (ctask->curl, CURLOPT_HTTPHEADER, ctask->headers);
    if (CURLE_OK != ret)
    {
      GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%s failed at %s:%d: `%s'\n",
                           "curl_easy_setopt", __FILE__, __LINE__, curl_easy_strerror(ret));
    }

  }

  if (ctask->mhd->is_ssl)
  {
    phost = (struct hostent*)gethostbyname (ctask->host);

    if (phost!=NULL)
    {
      ssl_ip = inet_ntoa(*((struct in_addr*)(phost->h_addr)));
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "SSL target server: %s\n", ssl_ip);
      sprintf (resolvename, "%s:%d:%s", ctask->leho, HTTPS_PORT, ssl_ip);
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Curl resolve: %s\n", resolvename);
      ctask->resolver = curl_slist_append ( ctask->resolver, resolvename);
      curl_easy_setopt (ctask->curl, CURLOPT_RESOLVE, ctask->resolver);
      sprintf (curlurl, "https://%s:%d%s", ctask->leho, ctask->port, ctask->url);
      curl_easy_setopt (ctask->curl, CURLOPT_URL, curlurl);
    }
    else
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "gethostbyname failed for %s!\n", ctask->host);
      ctask->download_is_finished = GNUNET_YES;
      ctask->download_error = GNUNET_YES;
      return;
    }
  }

  if (CURLM_OK != (mret=curl_multi_add_handle (curl_multi, ctask->curl)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "%s failed at %s:%d: `%s'\n",
                "curl_multi_add_handle", __FILE__, __LINE__,
                curl_multi_strerror (mret));
    ctask->download_is_finished = GNUNET_YES;
    ctask->download_error = GNUNET_YES;
    return;
  }
  GNUNET_CONTAINER_DLL_insert (ctasks_head, ctasks_tail, ctask);

  curl_download_prepare ();

}


/**
 * Initialize download and trigger curl
 *
 * @param cls the proxycurltask
 * @param auth_name the name of the authority (site of origin) of ctask->host
 *
 */
static void
process_get_authority (void *cls,
                       const char* auth_name)
{
  struct ProxyCurlTask *ctask = cls;

  if (NULL == auth_name)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Get authority failed!\n");
    strcpy (ctask->authority, "");
  }
  else
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Get authority yielded %s\n", auth_name);
    strcpy (ctask->authority, auth_name);
  }

  GNUNET_GNS_lookup_zone (gns_handle,
                          ctask->host,
                          local_gns_zone,
                          GNUNET_NAMESTORE_TYPE_LEHO,
                          GNUNET_YES, //Only cached for performance
                          shorten_zonekey,
                          &process_leho_lookup,
                          ctask);
}


static void*
mhd_log_callback (void* cls, const char* url)
{
  struct ProxyCurlTask *ctask;

  ctask = GNUNET_malloc (sizeof (struct ProxyCurlTask));
  strcpy (ctask->url, url);
  return ctask;
}


/**
 * Main MHD callback for handling requests.
 *
 * @param cls unused
 * @param con MHD connection handle
 * @param url the url in the request
 * @param meth the HTTP method used ("GET", "PUT", etc.)
 * @param ver the HTTP version string (i.e. "HTTP/1.1")
 * @param upload_data the data being uploaded (excluding HEADERS,
 *        for a POST that fits into memory and that is encoded
 *        with a supported encoding, the POST data will NOT be
 *        given in upload_data and is instead available as
 *        part of MHD_get_connection_values; very large POST
 *        data *will* be made available incrementally in
 *        upload_data)
 * @param upload_data_size set initially to the size of the
 *        upload_data provided; the method must update this
 *        value to the number of bytes NOT processed;
 * @param con_cls pointer to location where we store the 'struct Request'
 * @return MHD_YES if the connection was handled successfully,
 *         MHD_NO if the socket must be closed due to a serious
 *         error while handling the request
 */
static int
create_response (void *cls,
                 struct MHD_Connection *con,
                 const char *url,
                 const char *meth,
                 const char *ver,
                 const char *upload_data,
                 size_t *upload_data_size,
                 void **con_cls)
{
  struct MhdHttpList* hd = cls;
  const char* page = "<html><head><title>gnunet-gns-proxy</title>"
                      "</head><body>cURL fail</body></html>";
  
  char curlurl[MAX_HTTP_URI_LENGTH]; // buffer overflow!
  int ret = MHD_YES;
  int i;
  struct ProxyCurlTask *ctask = *con_cls;
  struct ProxyUploadData *fin_post;
  struct curl_forms forms[5];
  struct ProxyUploadData *upload_data_iter;
  
  //FIXME handle
  if ((0 != strcasecmp (meth, MHD_HTTP_METHOD_GET)) &&
      (0 != strcasecmp (meth, MHD_HTTP_METHOD_PUT)) &&
      (0 != strcasecmp (meth, MHD_HTTP_METHOD_POST)) &&
      (0 != strcasecmp (meth, MHD_HTTP_METHOD_HEAD)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "MHD: %s NOT IMPLEMENTED!\n", meth);
    return MHD_NO;
  }


  if (GNUNET_NO == ctask->accepted)
  {

    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                "Got %s request for %s\n", meth, url);
    ctask->mhd = hd;
    ctask->curl = curl_easy_init();
    ctask->curl_running = GNUNET_NO;
    if (NULL == ctask->curl)
    {
      ctask->response = MHD_create_response_from_buffer (strlen (page),
                                                (void*)page,
                                                MHD_RESPMEM_PERSISTENT);
      ret = MHD_queue_response (con,
                                MHD_HTTP_OK,
                                ctask->response);
      MHD_destroy_response (ctask->response);
      GNUNET_free (ctask);
      return ret;
    }
    
    if (ctask->mhd->is_ssl)
      ctask->port = HTTPS_PORT;
    else
      ctask->port = HTTP_PORT;

    MHD_get_connection_values (con,
                               MHD_HEADER_KIND,
                               &con_val_iter, ctask);
    
    curl_easy_setopt (ctask->curl, CURLOPT_HEADERFUNCTION, &curl_check_hdr);
    curl_easy_setopt (ctask->curl, CURLOPT_HEADERDATA, ctask);
    curl_easy_setopt (ctask->curl, CURLOPT_WRITEFUNCTION, &curl_download_cb);
    curl_easy_setopt (ctask->curl, CURLOPT_WRITEDATA, ctask);
    curl_easy_setopt (ctask->curl, CURLOPT_FOLLOWLOCATION, 0);
    curl_easy_setopt (ctask->curl, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4);

    if (GNUNET_NO == ctask->mhd->is_ssl)
    {
      sprintf (curlurl, "http://%s:%d%s", ctask->host, ctask->port, ctask->url);
      curl_easy_setopt (ctask->curl, CURLOPT_URL, curlurl);
    }
    

    curl_easy_setopt (ctask->curl, CURLOPT_FAILONERROR, 1);
    curl_easy_setopt (ctask->curl, CURLOPT_CONNECTTIMEOUT, 600L);
    curl_easy_setopt (ctask->curl, CURLOPT_TIMEOUT, 600L);
    
    /* Add GNS header */
    ctask->headers = curl_slist_append (ctask->headers,
                                          "GNS: YES");
    ctask->accepted = GNUNET_YES;
    ctask->download_in_progress = GNUNET_YES;
    ctask->buf_status = BUF_WAIT_FOR_CURL;
    ctask->connection = con;
    ctask->curl_response_code = MHD_HTTP_OK;
    ctask->buffer_read_ptr = ctask->buffer;
    ctask->buffer_write_ptr = ctask->buffer;
    ctask->pp_task = GNUNET_SCHEDULER_NO_TASK;
    

    if (0 == strcasecmp (meth, MHD_HTTP_METHOD_PUT))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Setting up PUT\n");
      
      curl_easy_setopt (ctask->curl, CURLOPT_UPLOAD, 1);
      curl_easy_setopt (ctask->curl, CURLOPT_READDATA, ctask);
      curl_easy_setopt (ctask->curl, CURLOPT_READFUNCTION, &put_read_callback);
      ctask->headers = curl_slist_append (ctask->headers,
                                          "Transfer-Encoding: chunked");
    }

    if (0 == strcasecmp (meth, MHD_HTTP_METHOD_POST))
    {
      //FIXME handle multipart
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Setting up POST processor\n");
      ctask->post_handler = MHD_create_post_processor (con,
                                 POSTBUFFERSIZE,
                                 &con_post_data_iter,
                                 ctask);
      ctask->headers = curl_slist_append (ctask->headers,
                                         "Transfer-Encoding: chunked");
      return MHD_YES;
    }

    if (0 == strcasecmp (meth, MHD_HTTP_METHOD_HEAD))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Setting NOBODY\n");
      curl_easy_setopt (ctask->curl, CURLOPT_NOBODY, 1);
    }

    
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "MHD: Adding new curl task for %s\n", ctask->host);

    GNUNET_GNS_get_authority (gns_handle,
                              ctask->host,
                              &process_get_authority,
                              ctask);
    ctask->ready_to_queue = GNUNET_NO;
    ctask->fin = GNUNET_NO;
    ctask->curl_running = GNUNET_YES;
    return MHD_YES;
  }

  ctask = (struct ProxyCurlTask *) *con_cls;
  if (0 == strcasecmp (meth, MHD_HTTP_METHOD_POST))
  {
    if (0 != *upload_data_size)
    {
      
      GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                  "Invoking POST processor\n");
      MHD_post_process (ctask->post_handler,
                        upload_data, *upload_data_size);
      *upload_data_size = 0;
      if ((GNUNET_NO == ctask->is_httppost) &&
          (GNUNET_NO == ctask->curl_running))
      {
        curl_easy_setopt (ctask->curl, CURLOPT_POST, 1);
        curl_easy_setopt (ctask->curl, CURLOPT_READFUNCTION,
                          &post_read_callback);
        curl_easy_setopt (ctask->curl, CURLOPT_READDATA, ctask);
        
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "MHD: Adding new curl task for %s\n", ctask->host);

        GNUNET_GNS_get_authority (gns_handle,
                                  ctask->host,
                                  &process_get_authority,
                                  ctask);
        ctask->ready_to_queue = GNUNET_NO;
        ctask->fin = GNUNET_NO;
        ctask->curl_running = GNUNET_YES;
      }
      return MHD_YES;
    }
    else if (GNUNET_NO == ctask->post_done)
    {
      if (GNUNET_YES == ctask->is_httppost)
      {
        for (upload_data_iter = ctask->upload_data_head;
             NULL != upload_data_iter;
             upload_data_iter = upload_data_iter->next)
        {
          i = 0;
          if (NULL != upload_data_iter->filename)
          {
            forms[i].option = CURLFORM_FILENAME;
            forms[i].value = upload_data_iter->filename;
            GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                        "Adding filename %s\n",
                        forms[i].value);
            i++;
          }
          if (NULL != upload_data_iter->content_type)
          {
            forms[i].option = CURLFORM_CONTENTTYPE;
            forms[i].value = upload_data_iter->content_type;
            GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                        "Adding content type %s\n",
                        forms[i].value);
            i++;
          }
          forms[i].option = CURLFORM_PTRCONTENTS;
          forms[i].value = upload_data_iter->value;
          forms[i+1].option = CURLFORM_END;

          GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                      "Adding formdata for %s (len=%lld)\n",
                      upload_data_iter->key,
                      upload_data_iter->total_bytes);

          curl_formadd(&ctask->httppost, &ctask->httppost_last,
                       CURLFORM_COPYNAME, upload_data_iter->key,
                       CURLFORM_CONTENTSLENGTH, upload_data_iter->total_bytes,
                       CURLFORM_ARRAY, forms,
                       CURLFORM_END);
        }
        curl_easy_setopt (ctask->curl, CURLOPT_HTTPPOST,
                          ctask->httppost);

        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "MHD: Adding new curl task for %s\n", ctask->host);

        GNUNET_GNS_get_authority (gns_handle,
                                  ctask->host,
                                  &process_get_authority,
                                  ctask);
        ctask->ready_to_queue = GNUNET_YES;
        ctask->fin = GNUNET_NO;
        ctask->curl_running = GNUNET_YES;
        ctask->post_done = GNUNET_YES;
        return MHD_YES;
      }

      fin_post = GNUNET_malloc (sizeof (struct ProxyUploadData));
      GNUNET_CONTAINER_DLL_insert_tail (ctask->upload_data_head,
                                        ctask->upload_data_tail,
                                        fin_post);
      ctask->post_done = GNUNET_YES;
      return MHD_YES;
    }
  }
  
  if (GNUNET_YES != ctask->ready_to_queue)
    return MHD_YES; /* wait longer */
  
  if (GNUNET_YES == ctask->fin)
    return MHD_YES;

  ctask->fin = GNUNET_YES;
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: Queueing response for %s\n", ctask->url);
  ret = MHD_queue_response (con, ctask->curl_response_code, ctask->response);
  run_mhd_now (ctask->mhd);
  return ret;
}


/**
 * run all httpd
 */
static void
run_httpds ()
{
  struct MhdHttpList *hd;

  for (hd=mhd_httpd_head; NULL != hd; hd = hd->next)
    run_httpd (hd);

}


#define UNSIGNED_MHD_LONG_LONG unsigned MHD_LONG_LONG


/**
 * schedule mhd
 *
 * @param hd the daemon to run
 */
static void
run_httpd (struct MhdHttpList *hd)
{
  fd_set rs;
  fd_set ws;
  fd_set es;
  struct GNUNET_NETWORK_FDSet *wrs;
  struct GNUNET_NETWORK_FDSet *wws;
  struct GNUNET_NETWORK_FDSet *wes;
  int max;
  int haveto;
  UNSIGNED_MHD_LONG_LONG timeout;
  struct GNUNET_TIME_Relative tv;

  FD_ZERO (&rs);
  FD_ZERO (&ws);
  FD_ZERO (&es);
  wrs = GNUNET_NETWORK_fdset_create ();
  wes = GNUNET_NETWORK_fdset_create ();
  wws = GNUNET_NETWORK_fdset_create ();
  max = -1;
  GNUNET_assert (MHD_YES == MHD_get_fdset (hd->daemon, &rs, &ws, &es, &max));
  
  
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD fds: max=%d\n", max);
  
  haveto = MHD_get_timeout (hd->daemon, &timeout);

  if (MHD_YES == haveto)
    tv.rel_value_us = (uint64_t) timeout * 1000LL;
  else
    tv = GNUNET_TIME_UNIT_FOREVER_REL;
  GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
  GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
  GNUNET_NETWORK_fdset_copy_native (wes, &es, max + 1);
  
  if (GNUNET_SCHEDULER_NO_TASK != hd->httpd_task)
    GNUNET_SCHEDULER_cancel (hd->httpd_task);
  hd->httpd_task =
    GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_HIGH,
                                 tv, wrs, wws,
                                 &do_httpd, hd);
  GNUNET_NETWORK_fdset_destroy (wrs);
  GNUNET_NETWORK_fdset_destroy (wws);
  GNUNET_NETWORK_fdset_destroy (wes);
}


/**
 * Task run whenever HTTP server operations are pending.
 *
 * @param cls unused
 * @param tc sched context
 */
static void
do_httpd (void *cls,
          const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct MhdHttpList *hd = cls;
  
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "MHD: Main loop\n");
  hd->httpd_task = GNUNET_SCHEDULER_NO_TASK; 
  MHD_run (hd->daemon);
  run_httpd (hd);
}


/**
 * Read data from socket
 *
 * @param cls the closure
 * @param tc scheduler context
 */
static void
do_read (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);


/**
 * Read from remote end
 *
 * @param cls closure
 * @param tc scheduler context
 */
static void
do_read_remote (void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc);


/**
 * Write data to remote socket
 *
 * @param cls the closure
 * @param tc scheduler context
 */
static void
do_write_remote (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct Socks5Request *s5r = cls;
  unsigned int len;

  s5r->fwdwtask = GNUNET_SCHEDULER_NO_TASK;

  if ((NULL != tc->read_ready) &&
      (GNUNET_NETWORK_fdset_isset (tc->write_ready, s5r->remote_sock)) &&
      ((len = GNUNET_NETWORK_socket_send (s5r->remote_sock, s5r->rbuf,
                                         s5r->rbuf_len)>0)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Successfully sent %d bytes to remote socket\n",
                len);
  }
  else
  {
    GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "write remote");
    if (GNUNET_SCHEDULER_NO_TASK != s5r->rtask)
      GNUNET_SCHEDULER_cancel (s5r->rtask);
    if (GNUNET_SCHEDULER_NO_TASK != s5r->wtask)
      GNUNET_SCHEDULER_cancel (s5r->wtask);
    if (GNUNET_SCHEDULER_NO_TASK != s5r->fwdrtask)
      GNUNET_SCHEDULER_cancel (s5r->fwdrtask);
    GNUNET_NETWORK_socket_close (s5r->remote_sock);
    GNUNET_NETWORK_socket_close (s5r->sock);
    GNUNET_free(s5r);
    return;
  }

  s5r->rtask =
    GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                   s5r->sock,
                                   &do_read, s5r);
}


/**
 * Clean up s5r handles
 *
 * @param s5r the handle to destroy
 */
static void
cleanup_s5r (struct Socks5Request *s5r)
{
  if (GNUNET_SCHEDULER_NO_TASK != s5r->rtask)
    GNUNET_SCHEDULER_cancel (s5r->rtask);
  if (GNUNET_SCHEDULER_NO_TASK != s5r->fwdwtask)
    GNUNET_SCHEDULER_cancel (s5r->fwdwtask);
  if (GNUNET_SCHEDULER_NO_TASK != s5r->fwdrtask)
    GNUNET_SCHEDULER_cancel (s5r->fwdrtask);  
  if (NULL != s5r->remote_sock)
    GNUNET_NETWORK_socket_close (s5r->remote_sock);
  if ((NULL != s5r->sock) && (s5r->cleanup_sock == GNUNET_YES))
    GNUNET_NETWORK_socket_close (s5r->sock);
  
  GNUNET_free(s5r);
}


/**
 * Write data to socket
 *
 * @param cls the closure
 * @param tc scheduler context
 */
static void
do_write (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct Socks5Request *s5r = cls;
  unsigned int len;

  s5r->wtask = GNUNET_SCHEDULER_NO_TASK;

  if ((NULL != tc->read_ready) &&
      (GNUNET_NETWORK_fdset_isset (tc->write_ready, s5r->sock)) &&
      ((len = GNUNET_NETWORK_socket_send (s5r->sock, s5r->wbuf,
                                         s5r->wbuf_len)>0)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Successfully sent %d bytes to socket\n",
                len);
  }
  else
  {    
    GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "write");
    s5r->cleanup = GNUNET_YES;
    s5r->cleanup_sock = GNUNET_YES;
    cleanup_s5r (s5r); 
    return;
  }

  if (GNUNET_YES == s5r->cleanup)
  {
    cleanup_s5r (s5r);
    return;
  }

  if ((s5r->state == SOCKS5_DATA_TRANSFER) &&
      (s5r->fwdrtask == GNUNET_SCHEDULER_NO_TASK))
    s5r->fwdrtask =
      GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                     s5r->remote_sock,
                                     &do_read_remote, s5r);
}


/**
 * Read from remote end
 *
 * @param cls closure
 * @param tc scheduler context
 */
static void
do_read_remote (void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct Socks5Request *s5r = cls;
  
  s5r->fwdrtask = GNUNET_SCHEDULER_NO_TASK;
  if ((NULL != tc->write_ready) &&
      (GNUNET_NETWORK_fdset_isset (tc->read_ready, s5r->remote_sock)) &&
      (s5r->wbuf_len = GNUNET_NETWORK_socket_recv (s5r->remote_sock, s5r->wbuf,
                                         sizeof (s5r->wbuf))))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Successfully read %d bytes from remote socket\n",
                s5r->wbuf_len);
  }
  else
  {
    if (0 == s5r->wbuf_len)
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "0 bytes received from remote... graceful shutdown!\n");
    if (s5r->fwdwtask != GNUNET_SCHEDULER_NO_TASK)
      GNUNET_SCHEDULER_cancel (s5r->fwdwtask);
    if (s5r->rtask != GNUNET_SCHEDULER_NO_TASK)
      GNUNET_SCHEDULER_cancel (s5r->rtask);
    
    GNUNET_NETWORK_socket_close (s5r->remote_sock);
    s5r->remote_sock = NULL;
    GNUNET_NETWORK_socket_close (s5r->sock);
    GNUNET_free(s5r);

    return;
  }
  
  s5r->wtask = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                               s5r->sock,
                                               &do_write, s5r);  
}


/**
 * Adds a socket to MHD
 *
 * @param h the handle to the socket to add
 * @param daemon the daemon to add the fd to
 * @return whatever MHD_add_connection returns
 */
static int
add_handle_to_mhd (struct GNUNET_NETWORK_Handle *h, struct MHD_Daemon *daemon)
{
  int fd;
  struct sockaddr *addr;
  socklen_t len;

  fd = dup (GNUNET_NETWORK_get_fd (h));
  addr = GNUNET_NETWORK_get_addr (h);
  len = GNUNET_NETWORK_get_addrlen (h);

  return MHD_add_connection (daemon, fd, addr, len);
}


/**
 * Read file in filename
 *
 * @param filename file to read
 * @param size pointer where filesize is stored
 * @return NULL on error
 */
static void*
load_file (const char* filename, 
	   unsigned int* size)
{
  void *buffer;
  uint64_t fsize;

  if (GNUNET_OK !=
      GNUNET_DISK_file_size (filename, &fsize,
			     GNUNET_YES, GNUNET_YES))
    return NULL;
  if (fsize > MAX_PEM_SIZE)
    return NULL;
  *size = (unsigned int) fsize;
  buffer = GNUNET_malloc (*size);
  if (fsize != GNUNET_DISK_fn_read (filename, buffer, (size_t) fsize))
  {
    GNUNET_free (buffer);
    return NULL;
  }
  return buffer;
}


/**
 * Load PEM key from file
 *
 * @param key where to store the data
 * @param keyfile path to the PEM file
 * @return GNUNET_OK on success
 */
static int
load_key_from_file (gnutls_x509_privkey_t key, const char* keyfile)
{
  gnutls_datum_t key_data;
  int ret;

  key_data.data = load_file (keyfile, &key_data.size);
  ret = gnutls_x509_privkey_import (key, &key_data,
                                    GNUTLS_X509_FMT_PEM);
  if (GNUTLS_E_SUCCESS != ret)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                _("Unable to import private key from file `%s'\n"),
		keyfile);
    GNUNET_break (0);
  }
  GNUNET_free (key_data.data);
  return (GNUTLS_E_SUCCESS != ret) ? GNUNET_SYSERR : GNUNET_OK;
}


/**
 * Load cert from file
 *
 * @param crt struct to store data in
 * @param certfile path to pem file
 * @return GNUNET_OK on success
 */
static int
load_cert_from_file (gnutls_x509_crt_t crt, char* certfile)
{
  gnutls_datum_t cert_data;
  int ret;

  cert_data.data = load_file (certfile, &cert_data.size);
  ret = gnutls_x509_crt_import (crt, &cert_data,
                                GNUTLS_X509_FMT_PEM);
  if (GNUTLS_E_SUCCESS != ret)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
               _("Unable to import certificate %s\n"), certfile);
    GNUNET_break (0);
  }
  GNUNET_free (cert_data.data);
  return (GNUTLS_E_SUCCESS != ret) ? GNUNET_SYSERR : GNUNET_OK;
}


/**
 * Generate new certificate for specific name
 *
 * @param name the subject name to generate a cert for
 * @return a struct holding the PEM data
 */
static struct ProxyGNSCertificate *
generate_gns_certificate (const char *name)
{
  int ret;
  unsigned int serial;
  size_t key_buf_size;
  size_t cert_buf_size;
  gnutls_x509_crt_t request;
  time_t etime;
  struct tm *tm_data;

  ret = gnutls_x509_crt_init (&request);

  if (GNUTLS_E_SUCCESS != ret)
  {
    GNUNET_break (0);
  }

  GNUNET_break (GNUTLS_E_SUCCESS == gnutls_x509_crt_set_key (request, proxy_ca.key));

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Generating cert\n");

  struct ProxyGNSCertificate *pgc =
    GNUNET_malloc (sizeof (struct ProxyGNSCertificate));

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Adding DNs\n");
  
  gnutls_x509_crt_set_dn_by_oid (request, GNUTLS_OID_X520_COUNTRY_NAME,
                                 0, "DE", 2);
  gnutls_x509_crt_set_dn_by_oid (request, GNUTLS_OID_X520_ORGANIZATION_NAME,
                                 0, "GADS", 4);
  gnutls_x509_crt_set_dn_by_oid (request, GNUTLS_OID_X520_COMMON_NAME,
                                 0, name, strlen (name));
  GNUNET_break (GNUTLS_E_SUCCESS == gnutls_x509_crt_set_version (request, 3));

  ret = gnutls_rnd (GNUTLS_RND_NONCE, &serial, sizeof (serial));

  etime = time (NULL);
  tm_data = localtime (&etime);
  

  ret = gnutls_x509_crt_set_serial (request,
                                    &serial,
                                    sizeof (serial));

  ret = gnutls_x509_crt_set_activation_time (request,
                                             etime);
  tm_data->tm_year++;
  etime = mktime (tm_data);

  if (-1 == etime)
  {
    GNUNET_break (0);
  }

  ret = gnutls_x509_crt_set_expiration_time (request,
                                             etime);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Signing...\n");

  ret = gnutls_x509_crt_sign (request, proxy_ca.cert, proxy_ca.key);

  key_buf_size = sizeof (pgc->key);
  cert_buf_size = sizeof (pgc->cert);

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Exporting certificate...\n");
  
  gnutls_x509_crt_export (request, GNUTLS_X509_FMT_PEM,
                          pgc->cert, &cert_buf_size);

  gnutls_x509_privkey_export (proxy_ca.key, GNUTLS_X509_FMT_PEM,
                          pgc->key, &key_buf_size);


  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Cleaning up\n");
  gnutls_x509_crt_deinit (request);

  return pgc;

}


/**
 * Accept policy for mhdaemons
 *
 * @param cls NULL
 * @param addr the sockaddr
 * @param addrlen the sockaddr length
 * @return MHD_NO if sockaddr is wrong or number of connections is too high
 */
static int
accept_cb (void* cls, const struct sockaddr *addr, socklen_t addrlen)
{
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "In MHD accept policy cb\n");

  if (addr != NULL)
  {
    if (addr->sa_family == AF_UNIX)
      return MHD_NO;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Connection accepted\n");

  return MHD_YES;
}


/**
 * Adds a socket to an SSL MHD instance
 * It is important the the domain name is
 * correct. In most cases we need to start a new daemon
 *
 * @param h the handle to add to a daemon
 * @param domain the domain the ssl daemon has to serve
 * @return MHD_YES on success
 */
static int
add_handle_to_ssl_mhd (struct GNUNET_NETWORK_Handle *h, const char* domain)
{
  struct MhdHttpList *hd;
  struct ProxyGNSCertificate *pgc;
  struct NetworkHandleList *nh;

  for (hd = mhd_httpd_head; NULL != hd; hd = hd->next)
    if (0 == strcmp (hd->domain, domain))
      break;

  if (NULL == hd)
  {    
    pgc = generate_gns_certificate (domain);
    
    hd = GNUNET_malloc (sizeof (struct MhdHttpList));
    hd->is_ssl = GNUNET_YES;
    strcpy (hd->domain, domain);
    hd->proxy_cert = pgc;

    /* Start new MHD */
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "No previous SSL instance found... starting new one for %s\n",
                domain);
#if HAVE_MHD_NO_LISTEN_SOCKET
    hd->daemon = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_SSL | MHD_USE_NO_LISTEN_SOCKET,
                                   0,
                                   &accept_cb, NULL,
                                   &create_response, hd,
                                   MHD_OPTION_CONNECTION_LIMIT,
                                   MHD_MAX_CONNECTIONS,
				   MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
				   MHD_OPTION_NOTIFY_COMPLETED, NULL, NULL,
				   MHD_OPTION_HTTPS_MEM_KEY, pgc->key,
				   MHD_OPTION_HTTPS_MEM_CERT, pgc->cert,
				   MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback,
				   NULL,
				   MHD_OPTION_END);
#else
    hd->daemon = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_SSL,
                                   4444 /* dummy port */,
                                   &accept_cb, NULL,
                                   &create_response, hd,
				   MHD_OPTION_LISTEN_SOCKET, GNUNET_NETWORK_get_fd (mhd_unix_socket),
                                   MHD_OPTION_CONNECTION_LIMIT,
                                   MHD_MAX_CONNECTIONS,
				   MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
				   MHD_OPTION_NOTIFY_COMPLETED, NULL, NULL,
				   MHD_OPTION_HTTPS_MEM_KEY, pgc->key,
				   MHD_OPTION_HTTPS_MEM_CERT, pgc->cert,
				   MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback,
				   NULL,
				   MHD_OPTION_END);
#endif
    GNUNET_assert (hd->daemon != NULL);
    hd->httpd_task = GNUNET_SCHEDULER_NO_TASK;
    
    GNUNET_CONTAINER_DLL_insert (mhd_httpd_head, mhd_httpd_tail, hd);
  }

  nh = GNUNET_malloc (sizeof (struct NetworkHandleList));
  nh->h = h;

  GNUNET_CONTAINER_DLL_insert (hd->socket_handles_head,
                               hd->socket_handles_tail,
                               nh);
  
  return add_handle_to_mhd (h, hd->daemon);
}


/**
 * Read data from incoming connection
 *
 * @param cls the closure
 * @param tc the scheduler context
 */
static void
do_read (void* cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct Socks5Request *s5r = cls;
  struct socks5_client_hello *c_hello;
  struct socks5_server_hello *s_hello;
  struct socks5_client_request *c_req;
  struct socks5_server_response *s_resp;
  int ret;
  char domain[256];
  uint8_t dom_len;
  uint16_t req_port;
  struct hostent *phost;
  uint32_t remote_ip;
  struct sockaddr_in remote_addr;
  struct in_addr *r_sin_addr;
  struct NetworkHandleList *nh;

  s5r->rtask = GNUNET_SCHEDULER_NO_TASK;

  if ((NULL != tc->write_ready) &&
      (GNUNET_NETWORK_fdset_isset (tc->read_ready, s5r->sock)) &&
      (s5r->rbuf_len = GNUNET_NETWORK_socket_recv (s5r->sock, s5r->rbuf,
                                         sizeof (s5r->rbuf))))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Successfully read %d bytes from socket\n",
                s5r->rbuf_len);
  }
  else
  {
    if (s5r->rbuf_len != 0)
      GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "read");
    else
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "client disco!\n");

    if (s5r->fwdrtask != GNUNET_SCHEDULER_NO_TASK)
      GNUNET_SCHEDULER_cancel (s5r->fwdrtask);
    if (s5r->wtask != GNUNET_SCHEDULER_NO_TASK)
      GNUNET_SCHEDULER_cancel (s5r->wtask);
    if (s5r->fwdwtask != GNUNET_SCHEDULER_NO_TASK)
      GNUNET_SCHEDULER_cancel (s5r->fwdwtask);
    GNUNET_NETWORK_socket_close (s5r->remote_sock);
    GNUNET_NETWORK_socket_close (s5r->sock);
    GNUNET_free(s5r);
    return;
  }

  if (s5r->state == SOCKS5_INIT)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "SOCKS5 init\n");
    c_hello = (struct socks5_client_hello*)&s5r->rbuf;

    GNUNET_assert (c_hello->version == SOCKS_VERSION_5);

    s_hello = (struct socks5_server_hello*)&s5r->wbuf;
    s5r->wbuf_len = sizeof( struct socks5_server_hello );

    s_hello->version = c_hello->version;
    s_hello->auth_method = SOCKS_AUTH_NONE;

    /* Write response to client */
    s5r->wtask = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                                s5r->sock,
                                                &do_write, s5r);

    s5r->rtask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                                s5r->sock,
                                                &do_read, s5r);

    s5r->state = SOCKS5_REQUEST;
    return;
  }

  if (s5r->state == SOCKS5_REQUEST)
  {
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Processing SOCKS5 request\n");
    c_req = (struct socks5_client_request*)&s5r->rbuf;
    s_resp = (struct socks5_server_response*)&s5r->wbuf;
    //Only 10byte for ipv4 response!
    s5r->wbuf_len = 10;//sizeof (struct socks5_server_response);

    GNUNET_assert (c_req->addr_type == 3);

    dom_len = *((uint8_t*)(&(c_req->addr_type) + 1));
    memset(domain, 0, sizeof(domain));
    strncpy(domain, (char*)(&(c_req->addr_type) + 2), dom_len);
    req_port = *((uint16_t*)(&(c_req->addr_type) + 2 + dom_len));

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Requested connection is %s:%d\n",
                domain,
                ntohs(req_port));

    if (is_tld (domain, GNUNET_GNS_TLD) ||
        is_tld (domain, GNUNET_GNS_TLD_ZKEY))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Requested connection is gnunet tld\n",
                  domain);
      
      ret = MHD_NO;
      if (ntohs(req_port) == HTTPS_PORT)
      {
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "Requested connection is HTTPS\n");
        ret = add_handle_to_ssl_mhd ( s5r->sock, domain );
      }
      else if (NULL != httpd)
      {
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "Requested connection is HTTP\n");
        nh = GNUNET_malloc (sizeof (struct NetworkHandleList));
        nh->h = s5r->sock;

        GNUNET_CONTAINER_DLL_insert (mhd_httpd_head->socket_handles_head,
                               mhd_httpd_head->socket_handles_tail,
                               nh);

        ret = add_handle_to_mhd ( s5r->sock, httpd );
      }

      if (ret != MHD_YES)
      {
        GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                    _("Failed to start HTTP server\n"));
        s_resp->version = 0x05;
        s_resp->reply = 0x01;
        s5r->cleanup = GNUNET_YES;
        s5r->cleanup_sock = GNUNET_YES;
        s5r->wtask = 
          GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                        s5r->sock,
                                        &do_write, s5r);
        return;
      }
      
      /* Signal success */
      s_resp->version = 0x05;
      s_resp->reply = 0x00;
      s_resp->reserved = 0x00;
      s_resp->addr_type = 0x01;
      
      s5r->cleanup = GNUNET_YES;
      s5r->cleanup_sock = GNUNET_NO;
      s5r->wtask =
        GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                        s5r->sock,
                                        &do_write, s5r);
      run_httpds ();
      return;
    }
    else
    {
      phost = (struct hostent*)gethostbyname (domain);
      if (phost == NULL)
      {
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "Resolve %s error!\n", domain );
        s_resp->version = 0x05;
        s_resp->reply = 0x01;
        s5r->cleanup = GNUNET_YES;
        s5r->cleanup_sock = GNUNET_YES;
        s5r->wtask = 
          GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                          s5r->sock,
                                          &do_write, s5r);
        return;
      }

      s5r->remote_sock = GNUNET_NETWORK_socket_create (AF_INET,
                                                       SOCK_STREAM,
                                                       0);
      r_sin_addr = (struct in_addr*)(phost->h_addr);
      remote_ip = r_sin_addr->s_addr;
      memset(&remote_addr, 0, sizeof(remote_addr));
      remote_addr.sin_family = AF_INET;
#if HAVE_SOCKADDR_IN_SIN_LEN
      remote_addr.sin_len = sizeof (remote_addr);
#endif
      remote_addr.sin_addr.s_addr = remote_ip;
      remote_addr.sin_port = req_port;
      
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "target server: %s:%u\n", inet_ntoa(remote_addr.sin_addr),
                  ntohs(req_port));

      if ((GNUNET_OK !=
          GNUNET_NETWORK_socket_connect ( s5r->remote_sock,
                                          (const struct sockaddr*)&remote_addr,
                                          sizeof (remote_addr)))
          && (errno != EINPROGRESS))
      {
        GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "connect");
        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                    "socket request error...\n");
        s_resp->version = 0x05;
        s_resp->reply = 0x01;
        s5r->wtask =
          GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                          s5r->sock,
                                          &do_write, s5r);
        //TODO see above
        return;
      }

      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "new remote connection\n");

      s_resp->version = 0x05;
      s_resp->reply = 0x00;
      s_resp->reserved = 0x00;
      s_resp->addr_type = 0x01;

      s5r->state = SOCKS5_DATA_TRANSFER;

      s5r->wtask =
        GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                        s5r->sock,
                                        &do_write, s5r);
      s5r->rtask =
        GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                       s5r->sock,
                                       &do_read, s5r);

    }
    return;
  }

  if (s5r->state == SOCKS5_DATA_TRANSFER)
  {
    if ((s5r->remote_sock == NULL) || (s5r->rbuf_len == 0))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Closing connection to client\n");
      if (s5r->rtask != GNUNET_SCHEDULER_NO_TASK)
        GNUNET_SCHEDULER_cancel (s5r->rtask);
      if (s5r->fwdwtask != GNUNET_SCHEDULER_NO_TASK)
        GNUNET_SCHEDULER_cancel (s5r->fwdwtask);
      if (s5r->fwdrtask != GNUNET_SCHEDULER_NO_TASK)
        GNUNET_SCHEDULER_cancel (s5r->fwdrtask);
      if (s5r->fwdrtask != GNUNET_SCHEDULER_NO_TASK)
        GNUNET_SCHEDULER_cancel (s5r->fwdrtask);
      
      if (s5r->remote_sock != NULL)
        GNUNET_NETWORK_socket_close (s5r->remote_sock);
      GNUNET_NETWORK_socket_close (s5r->sock);
      GNUNET_free(s5r);
      return;
    }

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "forwarding %d bytes from client\n", s5r->rbuf_len);

    s5r->fwdwtask =
      GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                      s5r->remote_sock,
                                      &do_write_remote, s5r);

    if (s5r->fwdrtask == GNUNET_SCHEDULER_NO_TASK)
    {
      s5r->fwdrtask =
        GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                       s5r->remote_sock,
                                       &do_read_remote, s5r);
    }
  }
}


/**
 * Accept new incoming connections
 *
 * @param cls the closure
 * @param tc the scheduler context
 */
static void
do_accept (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct GNUNET_NETWORK_Handle *s;
  struct Socks5Request *s5r;

  ltask = GNUNET_SCHEDULER_NO_TASK;
  if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
    return;

  ltask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                         lsock,
                                         &do_accept, NULL);

  s = GNUNET_NETWORK_socket_accept (lsock, NULL, NULL);

  if (NULL == s)
  {
    GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "accept");
    return;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Got an inbound connection, waiting for data\n");

  s5r = GNUNET_malloc (sizeof (struct Socks5Request));
  s5r->sock = s;
  s5r->state = SOCKS5_INIT;
  s5r->wtask = GNUNET_SCHEDULER_NO_TASK;
  s5r->fwdwtask = GNUNET_SCHEDULER_NO_TASK;
  s5r->fwdrtask = GNUNET_SCHEDULER_NO_TASK;
  s5r->rtask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                              s5r->sock,
                                              &do_read, s5r);
}


/**
 * Task run on shutdown
 *
 * @param cls closure
 * @param tc task context
 */
static void
do_shutdown (void *cls,
             const struct GNUNET_SCHEDULER_TaskContext *tc)
{
  struct MhdHttpList *hd;
  struct MhdHttpList *tmp_hd;
  struct NetworkHandleList *nh;
  struct NetworkHandleList *tmp_nh;
  struct ProxyCurlTask *ctask;
  struct ProxyCurlTask *ctask_tmp;
  struct ProxyUploadData *pdata;
  
  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
              "Shutting down...\n");
  if (NULL != local_gns_zone)
    GNUNET_free (local_gns_zone); 
  if (NULL != local_private_zone)
    GNUNET_free (local_private_zone);
  if (NULL != local_shorten_zone)
    GNUNET_free (local_shorten_zone);

  if (GNUNET_SCHEDULER_NO_TASK != curl_download_task)
  {
    GNUNET_SCHEDULER_cancel (curl_download_task);
    curl_download_task = GNUNET_SCHEDULER_NO_TASK;
  }

  for (hd = mhd_httpd_head; hd != NULL; hd = tmp_hd)
  {
    tmp_hd = hd->next;

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Stopping daemon\n");

    if (GNUNET_SCHEDULER_NO_TASK != hd->httpd_task)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Stopping select task %d\n",
                  hd->httpd_task);
      GNUNET_SCHEDULER_cancel (hd->httpd_task);
      hd->httpd_task = GNUNET_SCHEDULER_NO_TASK;
    }
    if (NULL != hd->daemon)
    {
      MHD_stop_daemon (hd->daemon);
      hd->daemon = NULL;
    }
    for (nh = hd->socket_handles_head; nh != NULL; nh = tmp_nh)
    {
      tmp_nh = nh->next;

      GNUNET_NETWORK_socket_close (nh->h);

      GNUNET_free (nh);
    }

    if (NULL != hd->proxy_cert)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                  "Free certificate\n");
      GNUNET_free (hd->proxy_cert);
    }

    GNUNET_free (hd);
  }

  for (ctask=ctasks_head; ctask != NULL; ctask=ctask_tmp)
  {
    ctask_tmp = ctask->next;

    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Cleaning up cURL task\n");

    if (ctask->curl != NULL)
      curl_easy_cleanup (ctask->curl);
    ctask->curl = NULL;
    if (NULL != ctask->headers)
      curl_slist_free_all (ctask->headers);
    if (NULL != ctask->resolver)
      curl_slist_free_all (ctask->resolver);

    if (NULL != ctask->response)
      MHD_destroy_response (ctask->response);

    pdata = ctask->upload_data_head;

    //FIXME free pdata here
    for (; pdata != NULL; pdata = ctask->upload_data_head)
    {
      GNUNET_CONTAINER_DLL_remove (ctask->upload_data_head,
                                   ctask->upload_data_tail,
                                   pdata);
      GNUNET_free_non_null (pdata->filename);
      GNUNET_free_non_null (pdata->content_type);
      GNUNET_free_non_null (pdata->key);
      GNUNET_free_non_null (pdata->value);
      GNUNET_free (pdata);
    }
    GNUNET_free (ctask);
  }
  curl_multi_cleanup (curl_multi);
  GNUNET_GNS_disconnect (gns_handle);
  gnutls_global_deinit ();
}


/**
 * Compiles a regex for us
 *
 * @param re ptr to re struct
 * @param rt the expression to compile
 * @return 0 on success
 */
static int
compile_regex (regex_t *re, const char* rt)
{
  int status;
  char err[1024];

  status = regcomp (re, rt, REG_EXTENDED|REG_NEWLINE);
  if (status)
  {
    regerror (status, re, err, 1024);
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Regex error compiling '%s': %s\n", rt, err);
    return 1;
  }
  return 0;
}


/**
 * Loads the users local zone key
 *
 * @return GNUNET_YES on success
 */
static int
load_local_zone_key (const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  char *keyfile;
  struct GNUNET_CRYPTO_EccPrivateKey *key;
  struct GNUNET_CRYPTO_EccPublicKey pkey;
  struct GNUNET_CRYPTO_ShortHashCode *zone;
  struct GNUNET_CRYPTO_ShortHashAsciiEncoded zonename;

  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
                                                            "ZONEKEY", &keyfile))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load zone key config value!\n");
    return GNUNET_NO;
  }

  if (GNUNET_NO == GNUNET_DISK_file_test (keyfile))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load zone key %s!\n", keyfile);
    GNUNET_free(keyfile);
    return GNUNET_NO;
  }

  key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
  GNUNET_CRYPTO_ecc_key_get_public (key, &pkey);
  local_gns_zone = GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_ShortHashCode));
  GNUNET_CRYPTO_short_hash (&pkey,
			    sizeof (struct GNUNET_CRYPTO_EccPublicKey),
			    local_gns_zone);
  zone = local_gns_zone;
  GNUNET_CRYPTO_short_hash_to_enc (zone, &zonename);
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Using zone: %s!\n", &zonename);
  GNUNET_free(key);
  GNUNET_free(keyfile);
  keyfile = NULL;

  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
                                                   "PRIVATE_ZONEKEY", &keyfile))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load private zone key config value!\n");
  }

  if ((NULL != keyfile) && (GNUNET_NO == GNUNET_DISK_file_test (keyfile)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load private zone key %s!\n", keyfile);
    GNUNET_free(keyfile);
  }
  else
  {
    key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
    GNUNET_CRYPTO_ecc_key_get_public (key, &pkey);
    local_private_zone = GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_ShortHashCode));
    GNUNET_CRYPTO_short_hash (&pkey,
			      sizeof (struct GNUNET_CRYPTO_EccPublicKey),
			      local_private_zone);
    GNUNET_CRYPTO_short_hash_to_enc (zone, &zonename);
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Using private zone: %s!\n", &zonename);
    GNUNET_free(key);
    GNUNET_free(keyfile);
  }
  keyfile = NULL;

  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
                                                   "SHORTEN_ZONEKEY", &keyfile))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load shorten zone key config value!\n");
  }

  if ((NULL != keyfile) && (GNUNET_NO == GNUNET_DISK_file_test (keyfile)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load shorten zone key %s!\n", keyfile);
    GNUNET_free(keyfile);
  }
  else
  {
    key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
    GNUNET_CRYPTO_ecc_key_get_public (key, &pkey);
    local_shorten_zone = GNUNET_malloc (sizeof (struct GNUNET_CRYPTO_ShortHashCode));
    GNUNET_CRYPTO_short_hash (&pkey,
			      sizeof(struct GNUNET_CRYPTO_EccPublicKey),
			      local_shorten_zone);
    GNUNET_CRYPTO_short_hash_to_enc (zone, &zonename);
    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
                "Using shorten zone: %s!\n", &zonename);
    GNUNET_free(key);
    GNUNET_free(keyfile);
  }

  return GNUNET_YES;
}


/**
 * Main function that will be run
 *
 * @param cls closure
 * @param args remaining command-line arguments
 * @param cfgfile name of the configuration file used (for saving, can be NULL!)
 * @param cfg configuration
 */
static void
run (void *cls, char *const *args, const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  struct sockaddr_in sa;
  struct MhdHttpList *hd;
  char* cafile_cfg = NULL;
  char* cafile;
#if !HAVE_MHD_NO_LISTEN_SOCKET
  size_t len;
  char* proxy_sockfile;
  struct sockaddr_un mhd_unix_sock_addr;
#endif

  if (NULL == (curl_multi = curl_multi_init ()))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Failed to create cURL multo handle!\n");
    return;
  }
  
  GNUNET_log (GNUNET_ERROR_TYPE_INFO,
              "Loading CA\n");
  cafile = cafile_opt;
  if (NULL == cafile)
  {
    if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns-proxy",
							      "PROXY_CACERT",
							      &cafile_cfg))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "Unable to load proxy CA config value!\n");
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                  "No proxy CA provided!\n");
      return;
    }
    cafile = cafile_cfg;
  }
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Using %s as CA\n", cafile);
  
  gnutls_global_init ();
  gnutls_x509_crt_init (&proxy_ca.cert);
  gnutls_x509_privkey_init (&proxy_ca.key);
  
  if ( (GNUNET_OK != load_cert_from_file (proxy_ca.cert, cafile)) ||
       (GNUNET_OK != load_key_from_file (proxy_ca.key, cafile)) )
  {
    // FIXME: release resources...
    return;
  }

  GNUNET_free_non_null (cafile_cfg);
  
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Loading Template\n");
  
  compile_regex (&re_dotplus, (char*) RE_A_HREF);

  if (NULL == (gns_handle = GNUNET_GNS_connect (cfg)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to connect to GNS!\n");
    return;
  }
  if (GNUNET_NO == load_local_zone_key (cfg))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to load zone!\n");
    return;
  }

  memset (&sa, 0, sizeof (sa));
  sa.sin_family = AF_INET;
  sa.sin_port = htons (port);
#if HAVE_SOCKADDR_IN_SIN_LEN
  sa.sin_len = sizeof (sa);
#endif

  lsock = GNUNET_NETWORK_socket_create (AF_INET,
                                        SOCK_STREAM,
                                        0);

  if ((NULL == lsock) ||
      (GNUNET_OK !=
       GNUNET_NETWORK_socket_bind (lsock, (const struct sockaddr *) &sa,
                                   sizeof (sa), 0)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Failed to create listen socket bound to `%s'",
                GNUNET_a2s ((const struct sockaddr *) &sa, sizeof (sa)));
    if (NULL != lsock)
      GNUNET_NETWORK_socket_close (lsock);
    return;
  }

  if (GNUNET_OK != GNUNET_NETWORK_socket_listen (lsock, 5))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Failed to listen on socket bound to `%s'",
                GNUNET_a2s ((const struct sockaddr *) &sa, sizeof (sa)));
    return;
  }
  ltask = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
                                         lsock, &do_accept, NULL);

  if (0 != curl_global_init (CURL_GLOBAL_WIN32))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "cURL global init failed!\n");
    return;
  }

  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
              "Proxy listens on port %u\n",
              port);
#if ! HAVE_MHD_NO_LISTEN_SOCKET
  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns-proxy",
                                                            "PROXY_UNIXPATH",
                                                            &proxy_sockfile))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Specify PROXY_UNIXPATH in gns-proxy config section!\n");
    return;
  }
  if (NULL == (mhd_unix_socket = GNUNET_NETWORK_socket_create (AF_UNIX,
							       SOCK_STREAM,
							       0)))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to create unix domain socket!\n");
    return;
  }

  mhd_unix_sock_addr.sun_family = AF_UNIX;
  strcpy (mhd_unix_sock_addr.sun_path, proxy_sockfile);

#if LINUX
  mhd_unix_sock_addr.sun_path[0] = '\0';
#endif
#if HAVE_SOCKADDR_IN_SIN_LEN
  mhd_unix_sock_addr.sun_len = (u_char) sizeof (struct sockaddr_un);
#endif

  len = strlen (proxy_sockfile) + sizeof(AF_UNIX);
  GNUNET_free (proxy_sockfile);

  if (GNUNET_OK != GNUNET_NETWORK_socket_bind (mhd_unix_socket,
                               (struct sockaddr*)&mhd_unix_sock_addr,
                               len, 0))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to bind unix domain socket!\n");
    return;
  }

  if (GNUNET_OK != GNUNET_NETWORK_socket_listen (mhd_unix_socket,
                                                 1))
  {
    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
                "Unable to listen on unix domain socket!\n");
    return;
  }
#endif

  hd = GNUNET_malloc (sizeof (struct MhdHttpList));
  hd->is_ssl = GNUNET_NO;
  strcpy (hd->domain, "");

#if HAVE_MHD_NO_LISTEN_SOCKET
  httpd = MHD_start_daemon (MHD_USE_DEBUG | MHD_USE_NO_LISTEN_SOCKET,
                            0,
			    &accept_cb, NULL,
			    &create_response, hd,
			    MHD_OPTION_CONNECTION_LIMIT, MHD_MAX_CONNECTIONS,
			    MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
			    MHD_OPTION_NOTIFY_COMPLETED,
			    NULL, NULL,
			    MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback, NULL,
			    MHD_OPTION_END);
#else
  httpd = MHD_start_daemon (MHD_USE_DEBUG,
			    4444 /* Dummy port */,
			    &accept_cb, NULL,
			    &create_response, hd,
			    MHD_OPTION_LISTEN_SOCKET, GNUNET_NETWORK_get_fd (mhd_unix_socket),
			    MHD_OPTION_CONNECTION_LIMIT, MHD_MAX_CONNECTIONS,
			    MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
			    MHD_OPTION_NOTIFY_COMPLETED,
			    NULL, NULL,
			    MHD_OPTION_URI_LOG_CALLBACK, &mhd_log_callback, NULL,
			    MHD_OPTION_END);
#endif
  GNUNET_break (httpd != NULL);
  hd->daemon = httpd;
  hd->httpd_task = GNUNET_SCHEDULER_NO_TASK;
  GNUNET_CONTAINER_DLL_insert (mhd_httpd_head, mhd_httpd_tail, hd);
  run_httpds ();
  GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
                                &do_shutdown, NULL);
}


/**
 * The main function for gnunet-gns-proxy.
 *
 * @param argc number of arguments from the command line
 * @param argv command line arguments
 * @return 0 ok, 1 on error
 */
int
main (int argc, char *const *argv)
{
  static const struct GNUNET_GETOPT_CommandLineOption options[] = {
    {'p', "port", NULL,
     gettext_noop ("listen on specified port (default: 7777)"), 1,
     &GNUNET_GETOPT_set_ulong, &port},
    {'a', "authority", NULL,
      gettext_noop ("pem file to use as CA"), 1,
      &GNUNET_GETOPT_set_string, &cafile_opt},
    GNUNET_GETOPT_OPTION_END
  };
  int ret;

  if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
    return 2;
  GNUNET_log_setup ("gnunet-gns-proxy", "WARNING", NULL);
  ret =
      (GNUNET_OK ==
       GNUNET_PROGRAM_run (argc, argv, "gnunet-gns-proxy",
                           _("GNUnet GNS proxy"),
                           options,
                           &run, NULL)) ? 0 : 1;
  GNUNET_free_non_null ((char *) argv);
  return ret;
}

/* end of gnunet-gns-proxy.c */