taliaferro

taliaferro

SSH server: How can I get raw input from the client?

Good morning folks,
I’m new to Elixir and have a project I’d like to build, but I think I might be a little out of my depth.
I want to make an SSH server which, instead of presenting a command prompt, presents a simple game in the terminal.

I’ve found jbenden/esshd and a couple of small examples of Erlang’s own :ssh module. However, all the examples I can find seem to accept input line by line. The user types a command then the user presses enter, then the full line they typed is sent to the server and my code can read it and do something with it.

I’m wondering if this is a gap in my knowledge about how SSH works. With a normal command-line application, I know there are arcane escape sequences I can send to any given terminal emulator that will put it into raw/non-canonical mode; all nicely abstracted away behind ncurses so I don’t have to think about them.
But in this application, there is no terminal, at least not one I’m aware of.
By what mechanism can I signal to an SSH client that as soon as the user presses an arrow key, I want to hear about it?

Most Liked

marcin

marcin

Hi!

Not exaclty grasping if you really want to run your ssh server or you just want to run a custom shell, but it will be probably worth reading on:

  • terminal emulator
  • shell (eg bash)
  • ANSI escape codes

It seems that you just need to run standard ssh but have a different shell (then bash) set for a user.

The special codes that are sent by the shell app are interpreted by you ur terminal emulator (eg gnome terminal) and the SSH server just passes them through as strings.

Last Post!

taliaferro

taliaferro

Hi Marcin! Thanks for your suggestion.
I should clarify – for the sake of security, and the simplicity of the design, I don’t want to just make a custom shell and put it behind sshd.
I want to use the SSH daemon module included with OTP; that way the server and all the application logic can be part of the same application, and I could handle many concurrent clients in parallel as separate processes.

I have looked at ANSI escape codes, but to the best of my knowledge there’s no way to put a terminal into non-canonical mode using escape sequences alone. The thing that seems to do what I need is termios, but I’m not sure how that’d work over SSH, or how I could interface with it from Elixir.

Where Next?

Popular in Questions Top

electic
Hi, I am new to Elixir. I am trying to use the DateTime component to insert a date into MySQL however the there seems to be no way to fo...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
alice
Hey, Just curious what are the main benefits of Elixir compared to Clojure? When is Elixir more useful than Clojure and vice versa? Th...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID<0.412.0> terminating ** (Postgrex.Error) FATAL...
New
JorisKok
I have a server on AWS, and was running a load test using artillery. When looking at the Phoenix dashboard I see the Ports going to 100% ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
openscript
Hello! Sorry for this astonishing simple question, but I’m really stuck. I try to set up the intellij-elixir plugin, but I don’t know ho...
New
nsuchy
Hi. I’ve noticed that Windows Powershell has it’s own IEX command and you cannot access Elixir’s IEX due to the conflict. This isn’t a cr...
New
greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New

We're in Beta

About us Mission Statement