1
0
mirror of https://github.com/kepler155c/opus synced 2025-02-07 04:30:03 +00:00
opus/sys/network/telnet.lua

83 lines
1.8 KiB
Lua
Raw Normal View History

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