about summary refs log tree commit diff stats
path: root/src/lcurses
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-12-21 15:47:55 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-12-21 15:47:55 -0800
commit41bf615f4388076ce6256e694aa18926c08d3775 (patch)
tree4baeef08faa3a86215bd26f52cd2903870bb4949 /src/lcurses
parent609730071ef7589d1417d1b805824e8e4119240e (diff)
downloadteliva-41bf615f4388076ce6256e694aa18926c08d3775.tar.gz
nail down trusted Teliva channels a little more
In each session, Teliva has to bootstrap a trusted channel with the
computer owner while running arbitrarily untrusted code. So let's get
really, really precise about what the trusted channel consists of:
  - the bottom-most row of screen containing the menu
  - the keystrokes the owner types in
  - ncurses COLOR_PAIR slots 254 (menu) and 255 (error)

One reason the menu colors are important: we don't want people to get
used to apps that hide the menu colors by setting default
foreground/background to invisible and then drawing their own menu one
row up.

The error COLOR_PAIR I don't see any reason to carve out right now, but
it seems like a good idea for Teliva the framework to not get into the
habit of apps doing some things for it.

I'm not sure how realistic all this is (I feel quite ill-equipped to
think about security), but it seems worthwhile to err on the side of
paranoia. Teliva will be paranoid so people don't have to be.
Diffstat (limited to 'src/lcurses')
-rw-r--r--src/lcurses/window.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lcurses/window.c b/src/lcurses/window.c
index 66820de..452f8b2 100644
--- a/src/lcurses/window.c
+++ b/src/lcurses/window.c
@@ -309,12 +309,12 @@ Refresh the window terminal display from the virtual screen.
 @see curses.doupdate
 @see noutrefresh
 */
-extern void draw_menu (lua_State *L);
+extern void render_trusted_teliva_data (lua_State *L);
 static int
 Wrefresh(lua_State *L)
 {
 	int result = wrefresh(checkwin(L, 1));
-	draw_menu(L);
+	render_trusted_teliva_data(L);
 	return pushokresult(result);
 }
 
@@ -1307,9 +1307,9 @@ static int
 Wgetch(lua_State *L)
 {
 	WINDOW *w = checkwin(L, 1);
-	draw_menu(L);  /* Apps can draw what they want on screen,
-	                * but Teliva's menu is always visible when
-	                * asking the user to make a decision. */
+	render_trusted_teliva_data(L);  /* Apps can draw what they want on screen,
+	                                 * but Teliva's UI is always visible when
+	                                 * asking the user to make a decision. */
 	int c = wgetch(w);
 
 	if (c == ERR)