2020-10-11 04:18:53 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ Permission to use, copy, modify, and/or 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. │
|
2020-10-11 04:18:53 +00:00
|
|
|
│ │
|
2020-12-28 01:18:44 +00:00
|
|
|
│ 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. │
|
2020-10-11 04:18:53 +00:00
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "libc/calls/calls.h"
|
2022-08-13 20:11:56 +00:00
|
|
|
#include "libc/errno.h"
|
2020-10-11 04:18:53 +00:00
|
|
|
#include "libc/str/thompike.h"
|
|
|
|
#include "libc/sysv/errfuns.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads single keystroke or control sequence from character device.
|
|
|
|
*
|
|
|
|
* When reading ANSI UTF-8 text streams, characters and control codes
|
|
|
|
* are oftentimes encoded as multi-byte sequences. This function knows
|
|
|
|
* how long each sequence is, so that each read consumes a single thing
|
|
|
|
* from the underlying file descriptor, e.g.
|
|
|
|
*
|
2020-12-26 10:09:07 +00:00
|
|
|
* "a" ALFA
|
|
|
|
* "\316\261" ALPHA
|
2021-09-12 05:30:37 +00:00
|
|
|
* "\e[38;5;202m" ORANGERED
|
|
|
|
* "\e[A" UP
|
|
|
|
* "\e\e[A" ALT-UP
|
|
|
|
* "\001" CTRL-ALFA
|
|
|
|
* "\e\001" ALT-CTRL-ALFA
|
2020-12-26 10:09:07 +00:00
|
|
|
* "\eOP" PF1
|
2021-09-12 05:30:37 +00:00
|
|
|
* "\000" NUL
|
|
|
|
* "\e]rm -rf /\e\\" OSC
|
|
|
|
* "\302\233A" UP
|
|
|
|
* "\300\200" NUL
|
2020-10-11 04:18:53 +00:00
|
|
|
*
|
|
|
|
* This routine generalizes to ascii, utf-8, chorded modifier keys,
|
|
|
|
* function keys, color codes, c0/c1 control codes, cursor movement,
|
|
|
|
* mouse movement, etc.
|
|
|
|
*
|
|
|
|
* Userspace buffering isn't required, since ANSI escape sequences and
|
|
|
|
* UTF-8 are decoded without peeking. Noncanonical overlong encodings
|
|
|
|
* can cause the stream to go out of sync. This function recovers such
|
|
|
|
* events by ignoring continuation bytes at the beginning of each read.
|
|
|
|
*
|
2021-09-12 05:30:37 +00:00
|
|
|
* @param p is guaranteed to receive a NUL terminator if n>0
|
2020-10-11 04:18:53 +00:00
|
|
|
* @return number of bytes read (helps differentiate "\0" vs. "")
|
|
|
|
* @see examples/ttyinfo.c
|
|
|
|
* @see ANSI X3.64-1979
|
|
|
|
* @see ISO/IEC 6429
|
|
|
|
* @see FIPS-86
|
|
|
|
* @see ECMA-48
|
|
|
|
*/
|
2021-09-12 05:30:37 +00:00
|
|
|
ssize_t readansi(int fd, char *p, size_t n) {
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
wint_t x;
|
2021-09-12 05:30:37 +00:00
|
|
|
ssize_t rc;
|
|
|
|
int e, i, j;
|
|
|
|
unsigned char c;
|
|
|
|
enum { kAscii, kUtf8, kEsc, kCsi1, kCsi2, kSs, kNf, kStr, kStr2, kDone } t;
|
|
|
|
e = errno;
|
|
|
|
t = kAscii;
|
|
|
|
x = i = j = 0;
|
|
|
|
if (n) p[0] = 0;
|
|
|
|
do {
|
|
|
|
for (;;) {
|
|
|
|
if (n) {
|
|
|
|
rc = read(fd, &c, 1);
|
|
|
|
} else {
|
|
|
|
rc = read(fd, 0, 0);
|
|
|
|
}
|
|
|
|
if (rc == -1 && errno == EINTR) {
|
|
|
|
if (!i) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
} else if (rc == -1) {
|
|
|
|
return -1;
|
|
|
|
} else if (!rc) {
|
|
|
|
if (!i) {
|
|
|
|
errno = e;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return eilseq();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i + 1 < n) {
|
|
|
|
p[i] = c;
|
|
|
|
p[i + 1] = 0;
|
|
|
|
} else if (i < n) {
|
|
|
|
p[i] = 0;
|
|
|
|
}
|
|
|
|
++i;
|
2020-10-11 04:18:53 +00:00
|
|
|
switch (t) {
|
2021-09-12 05:30:37 +00:00
|
|
|
Whoopsie:
|
|
|
|
if (n) p[0] = c;
|
|
|
|
t = kAscii;
|
|
|
|
i = 1;
|
|
|
|
/* fallthrough */
|
2020-10-11 04:18:53 +00:00
|
|
|
case kAscii:
|
|
|
|
if (c < 0200) {
|
|
|
|
if (c == '\e') {
|
|
|
|
t = kEsc;
|
|
|
|
} else {
|
2021-09-12 05:30:37 +00:00
|
|
|
t = kDone;
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|
|
|
|
} else if (c >= 0300) {
|
|
|
|
t = kUtf8;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
x = ThomPikeByte(c);
|
2020-10-11 04:18:53 +00:00
|
|
|
j = ThomPikeLen(c) - 1;
|
2021-09-12 05:30:37 +00:00
|
|
|
} else {
|
|
|
|
/* ignore overlong sequences */
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kUtf8:
|
2021-09-12 05:30:37 +00:00
|
|
|
if ((c & 0300) == 0200) {
|
|
|
|
x = ThomPikeMerge(x, c);
|
|
|
|
if (!--j) {
|
|
|
|
switch (x) {
|
|
|
|
case '\e':
|
|
|
|
t = kEsc; /* parsed but not canonicalized */
|
|
|
|
break;
|
|
|
|
case 0x9b:
|
|
|
|
t = kCsi1; /* unusual but legal */
|
|
|
|
break;
|
|
|
|
case 0x8e:
|
|
|
|
case 0x8f:
|
|
|
|
t = kSs; /* unusual but legal */
|
|
|
|
break;
|
|
|
|
case 0x90: /* DCS (Device Control String) */
|
|
|
|
case 0x98: /* SOS (Start of String) */
|
|
|
|
case 0x9d: /* OSC (Operating System Command) */
|
|
|
|
case 0x9e: /* PM (Privacy Message) */
|
|
|
|
case 0x9f: /* APC (Application Program Command) */
|
|
|
|
t = kStr;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
t = kDone;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
goto Whoopsie; /* ignore underlong sequences if not eof */
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kEsc:
|
2021-10-14 00:27:13 +00:00
|
|
|
if (0x20 <= c && c <= 0x2f) { /* Nf */
|
|
|
|
/*
|
|
|
|
* Almost no one uses ANSI Nf sequences
|
|
|
|
* They overlaps with alt+graphic keystrokes
|
|
|
|
* We care more about being able to type alt-/
|
|
|
|
*/
|
|
|
|
if (c == ' ' || c == '#') {
|
|
|
|
t = kNf;
|
|
|
|
} else {
|
|
|
|
t = kDone;
|
|
|
|
}
|
2021-09-12 05:30:37 +00:00
|
|
|
} else if (0x30 <= c && c <= 0x3f) { /* Fp */
|
|
|
|
t = kDone;
|
|
|
|
} else if (0x20 <= c && c <= 0x5F) { /* Fe */
|
|
|
|
switch (c) {
|
|
|
|
case '[':
|
|
|
|
t = kCsi1;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
break;
|
2021-09-12 05:30:37 +00:00
|
|
|
case 'N': /* SS2 */
|
|
|
|
case 'O': /* SS3 */
|
|
|
|
t = kSs;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
break;
|
2021-09-12 05:30:37 +00:00
|
|
|
case 'P': /* DCS (Device Control String) */
|
|
|
|
case 'X': /* SOS (Start of String) */
|
|
|
|
case ']': /* DCS (Operating System Command) */
|
|
|
|
case '^': /* PM (Privacy Message) */
|
|
|
|
case '_': /* DCS (Application Program Command) */
|
|
|
|
t = kStr;
|
|
|
|
break;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
default:
|
2021-09-12 05:30:37 +00:00
|
|
|
t = kDone;
|
|
|
|
break;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
}
|
2021-09-12 05:30:37 +00:00
|
|
|
} else if (0x60 <= c && c <= 0x7e) { /* Fs */
|
|
|
|
t = kDone;
|
|
|
|
} else if (c == '\e') {
|
|
|
|
if (i < 3) {
|
|
|
|
t = kEsc; /* alt chording */
|
|
|
|
} else {
|
|
|
|
t = kDone; /* esc mashing */
|
|
|
|
i = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
t = kDone;
|
Improve ZIP filesystem and change its prefix
The ZIP filesystem has a breaking change. You now need to use /zip/ to
open() / opendir() / etc. assets within the ZIP structure of your APE
binary, instead of the previous convention of using zip: or zip! URIs.
This is needed because Python likes to use absolute paths, and having
ZIP paths encoded like URIs simply broke too many things.
Many more system calls have been updated to be able to operate on ZIP
files and file descriptors. In particular fcntl() and ioctl() since
Python would do things like ask if a ZIP file is a terminal and get
confused when the old implementation mistakenly said yes, because the
fastest way to guarantee native file descriptors is to dup(2). This
change also improves the async signal safety of zipos and ensures it
doesn't maintain any open file descriptors beyond that which the user
has opened.
This change makes a lot of progress towards adding magic numbers that
are specific to platforms other than Linux. The philosophy here is that,
if you use an operating system like FreeBSD, then you should be able to
take advantage of FreeBSD exclusive features, even if we don't polyfill
them on other platforms. For example, you can now open() a file with the
O_VERIFY flag. If your program runs on other platforms, then Cosmo will
automatically set O_VERIFY to zero. This lets you safely use it without
the need for #ifdef or ifstatements which detract from readability.
One of the blindspots of the ASAN memory hardening we use to offer Rust
like assurances has always been that memory passed to the kernel via
system calls (e.g. writev) can't be checked automatically since the
kernel wasn't built with MODE=asan. This change makes more progress
ensuring that each system call will verify the soundness of memory
before it's passed to the kernel. The code for doing these checks is
fast, particularly for buffers, where it can verify 64 bytes a cycle.
- Correct O_LOOP definition on NT
- Introduce program_executable_name
- Add ASAN guards to more system calls
- Improve termios compatibility with BSDs
- Fix bug in Windows auxiliary value encoding
- Add BSD and XNU specific errnos and open flags
- Add check to ensure build doesn't talk to internet
2021-08-22 08:04:18 +00:00
|
|
|
}
|
2020-10-11 04:18:53 +00:00
|
|
|
break;
|
2021-09-12 05:30:37 +00:00
|
|
|
case kSs:
|
|
|
|
t = kDone;
|
|
|
|
break;
|
|
|
|
case kNf:
|
|
|
|
if (0x30 <= c && c <= 0x7e) {
|
|
|
|
t = kDone;
|
|
|
|
} else if (!(0x20 <= c && c <= 0x2f)) {
|
|
|
|
goto Whoopsie;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kCsi1:
|
|
|
|
if (0x20 <= c && c <= 0x2f) {
|
|
|
|
t = kCsi2;
|
2021-09-28 05:58:51 +00:00
|
|
|
} else if (c == '[' && (i == 3 || (i == 4 && p[1] == '\e'))) {
|
2021-09-12 05:30:37 +00:00
|
|
|
/* linux function keys */
|
|
|
|
} else if (0x40 <= c && c <= 0x7e) {
|
|
|
|
t = kDone;
|
|
|
|
} else if (!(0x30 <= c && c <= 0x3f)) {
|
|
|
|
goto Whoopsie;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kCsi2:
|
|
|
|
if (0x40 <= c && c <= 0x7e) {
|
|
|
|
t = kDone;
|
|
|
|
} else if (!(0x20 <= c && c <= 0x2f)) {
|
|
|
|
goto Whoopsie;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case kStr:
|
2020-10-11 04:18:53 +00:00
|
|
|
switch (c) {
|
2021-09-12 05:30:37 +00:00
|
|
|
case '\a':
|
|
|
|
t = kDone;
|
2020-10-11 04:18:53 +00:00
|
|
|
break;
|
2021-09-12 05:30:37 +00:00
|
|
|
case '\e': /* ESC */
|
|
|
|
case 0302: /* C1 (UTF-8) */
|
|
|
|
t = kStr2;
|
2020-10-11 04:18:53 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-09-12 05:30:37 +00:00
|
|
|
break;
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|
|
|
|
break;
|
2021-09-12 05:30:37 +00:00
|
|
|
case kStr2:
|
2020-10-11 04:18:53 +00:00
|
|
|
switch (c) {
|
2021-09-12 05:30:37 +00:00
|
|
|
case '\a':
|
|
|
|
t = kDone;
|
|
|
|
break;
|
|
|
|
case '\\': /* ST (ASCII) */
|
|
|
|
case 0234: /* ST (UTF-8) */
|
|
|
|
t = kDone;
|
2020-10-11 04:18:53 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-09-12 05:30:37 +00:00
|
|
|
t = kStr;
|
|
|
|
break;
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
unreachable;
|
|
|
|
}
|
2021-09-12 05:30:37 +00:00
|
|
|
} while (t != kDone);
|
|
|
|
errno = e;
|
|
|
|
return i;
|
2020-10-11 04:18:53 +00:00
|
|
|
}
|