remove longjmp in signalhandler of prompter
authorPhilipp Takacs <philipp@bureaucracy.de>
Sat, 21 Feb 2015 10:05:43 +0000 (11:05 +0100)
committerPhilipp Takacs <philipp@bureaucracy.de>
Sun, 22 Feb 2015 22:12:15 +0000 (23:12 +0100)
to avoid undefined behavior use close(2) in the signal handler

uip/prompter.c

index 4d0ce86..e42e8df 100644 (file)
@@ -12,6 +12,7 @@
 #include <errno.h>
 #include <signal.h>
 #include <setjmp.h>
+#include <unistd.h>
 
 static struct swit switches[] = {
 #define PREPSW  0
@@ -34,8 +35,8 @@ static struct swit switches[] = {
 };
 
 
-static int wtuser = 0;
-static int sigint = 0;
+volatile sig_atomic_t wtuser = 0;
+volatile sig_atomic_t sigint = 0;
 static jmp_buf sigenv;
 
 /*
@@ -263,6 +264,7 @@ int
 getln(char *buffer, int n)
 {
        int c;
+       sig_atomic_t psigint;
        char *cp;
 
        cp = buffer;
@@ -271,15 +273,17 @@ getln(char *buffer, int n)
        switch (setjmp(sigenv)) {
        case 0:
                wtuser = 1;
+               psigint = sigint;
                break;
 
-       case DONE:
-               wtuser = 0;
-               return 0;
-
        default:
                wtuser = 0;
-               return NOTOK;
+               if (sigint == psigint) {
+                       return 0;
+               } else {
+                       sigint = psigint;
+                       return NOTOK;
+               }
        }
 
        for (;;) {
@@ -311,7 +315,8 @@ getln(char *buffer, int n)
 static void
 intrser(int i)
 {
-       if (wtuser)
-               longjmp(sigenv, NOTOK);
+       if (wtuser) {
+               close(STDIN_FILENO);
+       }
        sigint++;
 }