punchd/punchd.nim

105 lines
3.0 KiB
Nim
Raw Normal View History

2020-07-07 19:39:28 +02:00
import asyncdispatch, asyncnet, os, strformat, strutils
from nativesockets import Domain, SockType, Protocol
import asyncutils
import message
import tables
2020-10-22 00:22:11 +02:00
import tcp_syni_initiator
import tcp_syni_responder
import tcp_nutss_initiator
import tcp_nutss_responder
2020-07-07 19:39:28 +02:00
from strutils import format, join
from nativesockets import setSockOptInt
type
2020-08-22 12:34:12 +02:00
Punchd = ref object
unixSocket: AsyncSocket
initiators: Table[string, Initiator]
responders: Table[string, Responder]
2020-08-22 12:34:12 +02:00
Sigint = object of CatchableError
const PunchdSocket = "/tmp/punchd.socket"
2020-07-28 00:17:45 +02:00
proc handleSigint() {.noconv.} =
raise newException(Sigint, "received SIGINT")
proc sendToClient(unixSock: AsyncSocket, msg: string,
cmsgs: seq[ControlMessage] = @[]) {.async.} =
if not unixSock.isClosed():
let unixFd = unixSock.getFd.AsyncFD
await unixFd.asyncSendMsg(msg, cmsgs)
2020-08-22 12:34:12 +02:00
proc handleRequest(punchd: Punchd, line: string,
unixSock: AsyncSocket) {.async.} =
2020-07-07 19:39:28 +02:00
var id: string
var sock: AsyncSocket
try:
2020-10-22 00:22:11 +02:00
let args = line.parseArgs(4)
2020-07-07 19:39:28 +02:00
id = args[1]
2020-10-22 00:22:11 +02:00
2020-07-07 19:39:28 +02:00
case args[0]:
2020-10-22 00:22:11 +02:00
of "initiate":
proc progress(extraArgs: string) {.async.} =
let msg = &"progress|{id}|{args[2]}|{args[3]}|{extraArgs}\n"
await sendToClient(unixSock, msg)
sock = await punchd.initiators[args[2]].initiate(args[3], progress)
2020-10-22 00:22:11 +02:00
of "respond":
sock = await punchd.responders[args[2]].respond(args[3])
2020-10-22 00:22:11 +02:00
2020-07-07 19:39:28 +02:00
else:
raise newException(ValueError, "invalid request")
await sendToClient(unixSock, &"ok|{id}\n", @[fromFd(sock.getFd.AsyncFD)])
2020-10-07 00:31:04 +02:00
sock.close()
2020-07-07 19:39:28 +02:00
except PunchHoleError as e:
await sendToClient(unixSock, &"error|{id}|{e.msg}\n")
except KeyError, ValueError:
2020-07-07 19:39:28 +02:00
unixSock.close
2020-08-22 12:34:12 +02:00
proc handleRequests(punchd: Punchd, userSock: AsyncSocket) {.async.} =
2020-07-07 19:39:28 +02:00
while true:
if userSock.isClosed:
break
2020-07-07 19:39:28 +02:00
let line = await userSock.recvLine(maxLength = 400)
if line.len == 0:
2020-10-10 11:14:31 +02:00
userSock.close()
2020-07-07 19:39:28 +02:00
break
2020-08-22 12:34:12 +02:00
asyncCheck punchd.handleRequest(line, userSock)
2020-07-07 19:39:28 +02:00
2020-08-22 12:34:12 +02:00
proc handleUsers(punchd: Punchd) {.async.} =
2020-07-07 19:39:28 +02:00
while true:
2020-08-22 12:34:12 +02:00
let user = await punchd.unixSocket.accept()
asyncCheck punchd.handleRequests(user)
2020-07-07 19:39:28 +02:00
proc main() =
2020-07-28 00:17:45 +02:00
setControlCHook(handleSigint)
removeFile(PunchdSocket)
let unixSocket = newAsyncSocket(AF_UNIX, SOCK_STREAM, IPPROTO_IP)
unixSocket.bindUnix(PunchdSocket)
unixSocket.listen()
setFilePermissions(PunchdSocket,
{fpUserRead, fpUserWrite, fpGroupRead, fpGroupWrite,
fpOthersRead, fpOthersWrite})
let punchd = Punchd(unixSocket: unixSocket)
punchd.initiators["tcp-syni"] = initTcpSyniInitiator()
punchd.initiators["tcp-nutss"] = initTcpNutssInitiator()
punchd.responders["tcp-syni"] = initTcpSyniResponder()
punchd.responders["tcp-nutss"] = initTcpNutssResponder()
2020-08-22 12:34:12 +02:00
asyncCheck handleUsers(punchd)
2020-07-28 00:17:45 +02:00
try:
runForever()
except Sigint:
for i in punchd.initiators.values:
waitFor i.cleanup()
for r in punchd.responders.values:
waitFor r.cleanup()
punchd.unixSocket.close()
2020-07-28 00:17:45 +02:00
removeFile(PunchdSocket)
2020-07-07 19:39:28 +02:00
when isMainModule:
main()