summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/chat.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1997-03-09 20:03:51 +0000
committerache <ache@FreeBSD.org>1997-03-09 20:03:51 +0000
commit6a6c22b3a83acd4b615a1314f94ccda2d0b98c25 (patch)
tree3e1de42035c2fc7ec5ee67c87d109ec857ffee2c /usr.sbin/ppp/chat.c
parent429cd71790eff90b41e3146fd493fb2300301835 (diff)
downloadFreeBSD-src-6a6c22b3a83acd4b615a1314f94ccda2d0b98c25.zip
FreeBSD-src-6a6c22b3a83acd4b615a1314f94ccda2d0b98c25.tar.gz
I remove pending signals completely, they are not useless, they are
dangerous! Signal handlers themself must be fixed to not call malloc, but no pended handlers, it will be correct fix. In finite case each signal handler can set some variable which will be analized later, but calling handler functions manually is too dangerous (f.e. signals not blocked while the handler or handlers switch executed in this case). Of course this code can be fixed instead of removing, but it not worth fixing in any case. Should go into 2.2 In addition sig.c code shows following dangerous fragments (there can be more, but I stop after two): This fragment if (fn == SIG_DFL || fn == SIG_IGN) { handler[sig-1] = (sig_type)0; <------------- here signal(sig,fn); } else { cause NULL pointer reference when signal comes "here", but more worse fragment is below: void handle_signals() { int sig; if (caused) for (sig=0; sig<__MAXSIG; sig++, caused>>=1) if (caused&1) (*handler[sig])(sig+1); } caused is bitmask which set corresponding bit on each signal coming. And now imagine, what happens when some signal comes (bit sets) while loop is executed (see caused>>=1 !!!) In this light carrier drop situation was (as gdb shows) 1. SIGSEGV in handle_signals because some junk called as *handler reference. 2. Since SIGSEGV was pended too (== never happens), it can cause various range of disasters.
Diffstat (limited to 'usr.sbin/ppp/chat.c')
-rw-r--r--usr.sbin/ppp/chat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ppp/chat.c b/usr.sbin/ppp/chat.c
index 5835de8..acb57c0 100644
--- a/usr.sbin/ppp/chat.c
+++ b/usr.sbin/ppp/chat.c
@@ -18,7 +18,7 @@
* Columbus, OH 43221
* (614)451-1883
*
- * $Id: chat.c,v 1.18 1997/03/08 10:04:11 ache Exp $
+ * $Id: chat.c,v 1.19 1997/03/08 12:15:58 ache Exp $
*
* TODO:
* o Support more UUCP compatible control sequences.
@@ -36,7 +36,6 @@
#include <errno.h>
#include <sys/cdefs.h>
#include <signal.h>
-#include "sig.h"
#include <sys/wait.h>
#include "timeout.h"
#include "vars.h"
OpenPOWER on IntegriCloud