Implement com(4) interrupt support for receiving data. Add termios terminal support to the com(4) driver with tcsetattr(2) support for configuring the hardware serial settings. Add kernel(7) --console option which can be used to initialize the com(4) driver early for the kernel console with the specified serial settings and window size. Add kernel(7) --text option for overriding the TERM environment variable. Add kernel(7) --disable-logo option for disabling writing the the operating system logo to the console on boot. Add advanced bootloader option to select booting to a serial console on com1. Add bootloader variables and hooks to customize this behavior. Add tix-iso-bootconfig(8) --console, --grub-serial, --serial, and --serial-console options as a convenince to opt into booting to the serial console by default. Add tix-iso-bootconfig(8) --kernel-options option for forwarding additional options to the kernel. The logterminal driver used for tty1 currently assumes that it controls the kernel log, which is not true when com(4) is used as the console, therefore the tty1 driver is currently disabled if a serial console is selected, as a temporary workaround.
118 lines
3.4 KiB
C++
118 lines
3.4 KiB
C++
/*
|
|
* Copyright (c) 2012, 2014, 2015, 2016, 2024 Jonas 'Sortie' Termansen.
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* tty.h
|
|
* Terminal line discipline.
|
|
*/
|
|
|
|
#ifndef SORTIX_TTY_H
|
|
#define SORTIX_TTY_H
|
|
|
|
#include <string.h>
|
|
#include <wchar.h>
|
|
|
|
#if !defined(TTY_NAME_MAX)
|
|
#include <sortix/limits.h>
|
|
#endif
|
|
#include <sortix/termios.h>
|
|
|
|
#include <sortix/kernel/kthread.h>
|
|
#include <sortix/kernel/inode.h>
|
|
#include <sortix/kernel/keyboard.h>
|
|
#include <sortix/kernel/poll.h>
|
|
|
|
#include "kb/kblayout.h"
|
|
|
|
#include "linebuffer.h"
|
|
|
|
namespace Sortix {
|
|
|
|
class DevTTY : public AbstractInode
|
|
{
|
|
public:
|
|
DevTTY(dev_t dev, mode_t mode, uid_t owner, gid_t group);
|
|
virtual ~DevTTY();
|
|
|
|
public:
|
|
virtual Ref<Inode> factory(ioctx_t* ctx, const char* filename, int flags,
|
|
mode_t mode);
|
|
|
|
};
|
|
|
|
class TTY : public AbstractInode
|
|
{
|
|
public:
|
|
TTY(dev_t dev, ino_t ino, mode_t mode, uid_t owner, gid_t group,
|
|
const char* name);
|
|
virtual ~TTY();
|
|
|
|
public:
|
|
virtual ssize_t read(ioctx_t* ctx, uint8_t* buf, size_t count);
|
|
virtual ssize_t write(ioctx_t* ctx, const uint8_t* buf, size_t count);
|
|
virtual int tcgetwincurpos(ioctx_t* ctx, struct wincurpos* wcp);
|
|
virtual int tcsetpgrp(ioctx_t* ctx, pid_t pgid);
|
|
virtual pid_t tcgetpgrp(ioctx_t* ctx);
|
|
virtual int settermmode(ioctx_t* ctx, unsigned termmode);
|
|
virtual int gettermmode(ioctx_t* ctx, unsigned* termmode);
|
|
virtual int poll(ioctx_t* ctx, PollNode* node);
|
|
virtual int tcdrain(ioctx_t* ctx);
|
|
virtual int tcflow(ioctx_t* ctx, int action);
|
|
virtual int tcflush(ioctx_t* ctx, int queue_selector);
|
|
virtual int tcgetattr(ioctx_t* ctx, struct termios* tio);
|
|
virtual pid_t tcgetsid(ioctx_t* ctx);
|
|
virtual int tcsendbreak(ioctx_t* ctx, int duration);
|
|
virtual int tcsetattr(ioctx_t* ctx, int actions, const struct termios* tio);
|
|
virtual int ioctl(ioctx_t* ctx, int cmd, uintptr_t arg);
|
|
|
|
public:
|
|
void hup();
|
|
void winch();
|
|
|
|
protected:
|
|
void tty_output(const char* str)
|
|
{
|
|
tty_output((const unsigned char*) str, strlen(str));
|
|
}
|
|
virtual void tty_output(const unsigned char* buffer, size_t length) = 0;
|
|
virtual bool Reconfigure(const struct termios* new_tio) = 0;
|
|
|
|
protected:
|
|
void ProcessUnicode(uint32_t unicode);
|
|
void ProcessByte(unsigned char byte, uint32_t control_unicode = 0);
|
|
void CommitLineBuffer();
|
|
short PollEventStatus();
|
|
bool CheckForeground();
|
|
bool RequireForeground(int sig);
|
|
bool RequireForegroundUnlocked(int sig);
|
|
bool CheckHandledByte(tcflag_t lflags, unsigned char key, unsigned char byte);
|
|
|
|
protected:
|
|
PollChannel poll_channel;
|
|
kthread_mutex_t termlock;
|
|
kthread_cond_t datacond;
|
|
mbstate_t read_ps;
|
|
size_t numeofs;
|
|
LineBuffer linebuffer;
|
|
struct termios tio;
|
|
pid_t foreground_pgid;
|
|
pid_t sid;
|
|
bool hungup;
|
|
char ttyname[TTY_NAME_MAX-5+1];
|
|
|
|
};
|
|
|
|
} // namespace Sortix
|
|
|
|
#endif
|