opus/sys/network/telnet.lua

83 lines
1.9 KiB
Lua
Raw Normal View History

local Event = require('event')
2016-12-11 19:24:52 +00:00
local Socket = require('socket')
local Util = require('util')
2016-12-11 19:24:52 +00:00
2018-01-14 04:40:53 +00:00
local kernel = _G.kernel
local term = _G.term
local window = _G.window
2017-07-28 23:01:59 +00:00
2017-10-25 03:01:40 +00:00
local function telnetHost(socket)
2016-12-11 19:24:52 +00:00
local methods = { 'clear', 'clearLine', 'setCursorPos', 'write', 'blit',
'setTextColor', 'setTextColour', 'setBackgroundColor',
'setBackgroundColour', 'scroll', 'setCursorBlink', }
2017-08-03 05:46:39 +00:00
local termInfo = socket:read(5)
if not termInfo then
2018-01-06 11:07:49 +00:00
_G.printError('read failed')
2017-08-03 05:46:39 +00:00
return
end
2018-01-14 04:40:53 +00:00
local win = window.create(_G.device.terminal, 1, 1, termInfo.width, termInfo.height, false)
win.setCursorPos(table.unpack(termInfo.pos))
2016-12-11 19:24:52 +00:00
for _,k in pairs(methods) do
2018-01-14 04:40:53 +00:00
local fn = win[k]
win[k] = function(...)
2017-07-28 23:01:59 +00:00
2016-12-11 19:24:52 +00:00
if not socket.queue then
socket.queue = { }
2017-07-28 23:01:59 +00:00
Event.onTimeout(0, function()
socket:write(socket.queue)
socket.queue = nil
end)
2016-12-11 19:24:52 +00:00
end
2017-07-28 23:01:59 +00:00
2016-12-11 19:24:52 +00:00
table.insert(socket.queue, {
f = k,
args = { ... },
})
2018-01-14 04:40:53 +00:00
fn(...)
2016-12-11 19:24:52 +00:00
end
end
2018-01-14 04:40:53 +00:00
local shellThread = kernel.run({
terminal = win,
window = win,
title = 'Telnet client',
hidden = true,
co = coroutine.create(function()
Util.run(_ENV, 'sys/apps/shell', table.unpack(termInfo.program))
if socket.queue then
socket:write(socket.queue)
end
socket:close()
end)
})
2016-12-11 19:24:52 +00:00
2017-07-28 23:01:59 +00:00
Event.addRoutine(function()
2016-12-11 19:24:52 +00:00
while true do
local data = socket:read()
if not data then
2018-01-14 04:40:53 +00:00
shellThread:resume('terminate')
2016-12-11 19:24:52 +00:00
break
end
2018-01-14 04:40:53 +00:00
local previousTerm = term.current()
2017-07-28 23:01:59 +00:00
shellThread:resume(table.unpack(data))
2018-01-14 04:40:53 +00:00
term.redirect(previousTerm)
2016-12-11 19:24:52 +00:00
end
end)
end
2017-08-03 05:46:39 +00:00
Event.addRoutine(function()
2016-12-11 19:24:52 +00:00
print('telnet: listening on port 23')
while true do
local socket = Socket.server(23)
print('telnet: connection from ' .. socket.dhost)
2018-01-14 04:40:53 +00:00
Event.addRoutine(function()
telnetHost(socket)
end)
2016-12-11 19:24:52 +00:00
end
end)