]> git.eshelyaron.com Git - emacs.git/commitdiff
Trim and explain set of safe forms for 'unsafep' (bug#44018)
authorMattias Engdegård <mattiase@acm.org>
Sat, 31 Oct 2020 10:35:06 +0000 (11:35 +0100)
committerMattias Engdegård <mattiase@acm.org>
Sat, 31 Oct 2020 12:42:07 +0000 (13:42 +0100)
* lisp/emacs-lisp/unsafep.el:
Add comment explaining the policy for which forms can be considered
'safe' in the sense of unsafep.  Remove ones that didn't make the cut:

 play-sound-file (large attack surface)
 catch, throw (alter program flow, inject data)
 replace-regexp-in-string (execute arbitary code)
 error, signal (deceptive messages)

* test/lisp/emacs-lisp/unsafep-tests.el (unsafep-tests--unsafe):
Add test cases.
* etc/NEWS: Announce the change.

etc/NEWS
lisp/emacs-lisp/unsafep.el
test/lisp/emacs-lisp/unsafep-tests.el

index 4cc66aef6bc01c4cdf69a98b63aa28ec3403232d..4435d0563bea7753d54adf6d041a170a04f4e3d8 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1835,6 +1835,11 @@ file can affect code in another.  For details, see the manual section
 ---
 ** 'unload-feature' now also tries to undo additions to buffer-local hooks.
 
+---
+** Some functions are no longer considered safe by 'unsafep':
+'replace-regexp-in-string', 'catch', 'throw', 'error', 'signal'
+and 'play-sound-file'.
+
 \f
 * Changes in Emacs 28.1 on Non-Free Operating Systems
 
index e7077140e5459771942de37b9c36be8d1e585a0a..c4db86a0db377cdae988f5faeb23604041a1cfb4 100644 (file)
 in the parse.")
 (put 'unsafep-vars 'risky-local-variable t)
 
-;;Other safe functions
+;; Other safe forms.
+;;
+;; A function, macro or special form may be put here only if all of
+;; the following statements are true:
+;;
+;; * It is not already marked `pure' or `side-effect-free', or handled
+;;   explicitly by `unsafep'.
+;;
+;; * It is not inherently unsafe; eg, would allow the execution of
+;;   arbitrary code, interact with the file system, network or other
+;;   processes, or otherwise exfiltrate information from the running
+;;   Emacs process or manipulate the user's environment.
+;;
+;; * It does not have side-effects that can make other code behave in
+;;   unsafe and/or unexpected ways; eg, set variables, mutate data, or
+;;   change control flow.
+;;   Any side effect must be innocuous; altering the match data is
+;;   explicitly permitted.
+;;
+;; * It does not allow Emacs to behave deceptively to the user; eg,
+;;   display arbitrary messages.
+;;
+;; * It does not present a potentially large attack surface; eg,
+;;   play arbitrary audio files.
+
 (dolist (x '(;;Special forms
-            and catch if or prog1 prog2 progn while unwind-protect
+            and if or prog1 prog2 progn while unwind-protect
             ;;Safe subrs that have some side-effects
-            ding error random signal sleep-for string-match throw
+            ding random sleep-for string-match
             ;;Defsubst functions from subr.el
             caar cadr cdar cddr
             ;;Macros from subr.el
             save-match-data unless when
             ;;Functions from subr.el that have side effects
-            split-string replace-regexp-in-string play-sound-file))
+            split-string))
   (put x 'safe-function t))
 
 ;;;###autoload
index dde0e0201d9c95c02be7f686da1fc8acd57ea9ca..06c40d28ca9601fbac5f0f26fc22e29ebfc7b9ac 100644 (file)
       . (variable (x)))
     ( (let (1) 2)
       . (variable 1))
+    ( (error "asdf")
+      . #'error)
+    ( (signal 'error "asdf")
+      . #'signal)
+    ( (throw 'asdf)
+      . #'throw)
+    ( (catch 'asdf 17)
+      . #'catch)
+    ( (play-sound-file "asdf")
+      . #'play-sound-file)
+    ( (replace-regexp-in-string "a" "b")
+      . #'replace-regexp-in-string)
     )
   "A-list of (FORM . REASON)... that `unsafep' should decide are unsafe.")