secure ed, a little bit.

This commit is contained in:
2025-09-09 15:35:36 -07:00
parent 520a0c888f
commit 289e95280c

View File

@@ -8,17 +8,27 @@
(or/c char-numeric? char-alphabetic? (curry char=? #\-)) (or/c char-numeric? char-alphabetic? (curry char=? #\-))
(string->list call)))) (string->list call))))
(define (our-make-temporary-file)
;; when deployed as a systemd socket, this program is expected to be
;; ran with PrivateTmp. however, in case this is not true, we still
;; make our own directory. "red", the restricted version of "ed",
;; has no facility for getting outside of the directory we start it
;; in.
(make-temporary-file "red.~a" #:base-dir (make-temporary-directory)))
;; unfortunately, we cannot just exec red and let it take over the ;; unfortunately, we cannot just exec red and let it take over the
;; I/O. ed, being the standard text editor, only works with standard ;; I/O. ed, being the standard text editor, only works with standard
;; line endings, \n. telnet and BPQ, however, use \r\n. \r\n upsets ;; line endings, \n. telnet and BPQ, however, use \r\n. \r\n upsets
;; ed, the standard text editor. so we need to wrap the input and ;; ed, the standard text editor. so we need to wrap the input and
;; output ports ourselves in order to provide this translation. ;; output ports ourselves in order to provide this translation.
(define (ed) (define (ed [path (our-make-temporary-file)])
(match-define (match-define
(list stdout stdin pid stderr proc) (list stdout stdin pid stderr proc)
(process* "/usr/bin/red" (parameterize ([current-directory (path-only path)])
"-p*" (process* "/usr/bin/red"
#:set-pwd? #t)) "-p*"
(path->string (file-name-from-path path))
#:set-pwd? #t)))
(define buffer (make-bytes 128)) (define buffer (make-bytes 128))
@@ -45,9 +55,12 @@
;; either event may EOF, which means that ed has died. ;; either event may EOF, which means that ed has died.
[(eof-object? evt-result) [(eof-object? evt-result)
;; clean up ;; clean up
(close-output-port stdin) (close-output-port stdin)
(close-input-port stdout) (close-input-port stdout)
(close-input-port stderr) (close-input-port stderr)
(proc 'kill)]))) (proc 'kill)
path])))
(loop)) (loop))