-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdenopip.js
132 lines (108 loc) · 3.42 KB
/
denopip.js
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
import { serve } from "https://deno.land/std@0.177.0/http/server.ts";
const r400 = new Response(null, { status: 400 });
const r500 = new Response(null, { status: 500 });
const enc = new TextEncoder();
// echo tcp server
// echo "hello" | nc midway.fly.dev 5001
const addr = { hostname: "midway.fly.dev", port: 5001 };
const hdr = {
"Content-Type": "application/octet-stream",
"Cache-Control": "no-cache",
};
async function handle(req) {
const u = new URL(req.url);
if (u.pathname.startsWith("/chunk")) {
return chunk(req); // ok
} else if (u.pathname.startsWith("/fixed")) {
return fixed(req); // ok
} else if (u.pathname.startsWith("/pipe2")) {
return pipe2(req.body, addr); // ok
} else if (u.pathname.startsWith("/pipe")) {
return pipe(req); // ok
} else if (u.pathname.startsWith("/p")) {
const p = u.pathname.split("/");
const ingress = req.body;
if (p.length < 3) return pipe2(ingress, addr);
const dst = p[2];
if (!dst) return pipe2(ingress, addr);
const dstport = p[3] || "443";
const proto = p[4] || "tcp";
const uaddr = { hostname: dst, port: dstport, transport: proto };
return pipe2(ingress, uaddr);
}
console.log("/chunk (bad), /fixed (ok), /empty1 (bad), /empty2 (bad)");
return r400;
}
// read ingress chunk by chunk and write it to socket, then cancel ingress
// and close socket writable.
export async function chunk(req) {
const ingress = req.body;
if (ingress == null) return r400;
try {
console.debug("chunk: connect", addr);
const egress = await Deno.connect(addr);
const rdr = ingress.getReader();
const wtr = egress.writable.getWriter();
let ok = true;
while (ok) {
const q = await rdr.read();
console.debug("chunk: read done?", q.done, "v", q.value);
ok = !q.done;
if (ok) {
await wtr.ready;
await wtr.write(q.value);
console.debug("chunk: write done");
}
}
rdr.releaseLock();
wtr.releaseLock();
return new Response(egress.readable, { headers: hdr });
} catch (ex) {
console.error("chunk: err", ex);
return r500;
}
}
// hardcode payload to socket
export async function fixed(req) {
try {
console.log("fixed: connect", addr);
const socket = await Deno.connect(addr);
const writer = socket.writable.getWriter();
const u8 = enc.encode("GET IPADDR\r\n");
await writer.write(u8);
console.log("fixed: write done");
return new Response(socket.readable, { headers: hdr });
} catch (ex) {
console.error("fixed: err", ex);
return r500;
}
}
// pipe request to socket w preventClose=true
// never works
export async function pipe(req) {
const ingress = req.body;
if (ingress == null) return r400;
try {
console.debug("pipe: connect", addr);
const egress = await Deno.connect(addr);
ingress.pipeTo(egress.writable, { preventClose: true} );
return new Response(egress.readable, { headers: hdr });
} catch (ex) {
console.error("pipe: err", ex);
return r500;
}
}
// pipe2 request to socket(addr) w preventClose=true
async function pipe2(ingress, addr) {
try {
console.debug("pipe2: connect", addr);
// Deno.connect is limited on free plans
const egress = await Deno.connect(addr);
ingress.pipeTo(egress.writable, { preventClose: true });
return new Response(egress.readable, { headers: hdr });
} catch (ex) {
console.error("pipe2: err", ex);
return r500;
}
}
serve(handle);