1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
/* @(#)handlecond.c 1.23 06/09/13 Copyright 1985-2004 J. Schilling */
/*
* setup/clear a condition handler for a software signal
*/
/*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the file CDDL.Schily.txt in this distribution for details.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file CDDL.Schily.txt from this distribution.
*/
/*
* A procedure frame is marked to have handlers if the
* previous freme pointer for this procedure is odd.
* The even base value, in this case actually points to a SIGBLK which
* holds the saved "real" frame pointer.
* The SIGBLK mentioned above may me the start of a chain of SIGBLK's,
* containing different handlers.
*
* This will work on processors which support a frame pointer chain
* on the stack.
* On a processor which doesn't support this I think of a method
* where handlecond() has an own chain of frames, holding chains of
* SIGBLK's.
* In this case, a parameter has to be added to handlecond() and
* unhandlecond(). This parameter will be an opaque cookie which is zero
* on the first call to handlecond() in a procedure.
* A new cookie will be returned by handlecond() which must be used on
* each subsequent call to handlecond() and unhandlecond() in the same
* procedure.
*
* Copyright (c) 1985-2004 J. Schilling
*/
#include <schily/mconfig.h>
#include <schily/sigblk.h>
#include <schily/standard.h>
#include <schily/stdlib.h>
#include <schily/string.h>
#include <avoffset.h>
#include <schily/utypes.h>
#include <schily/schily.h>
#if !defined(AV_OFFSET) || !defined(FP_INDIR)
# ifdef HAVE_SCANSTACK
# undef HAVE_SCANSTACK
# endif
#endif
#ifdef HAVE_SCANSTACK
#include <schily/stkframe.h>
#else
extern SIGBLK *__roothandle;
#endif /* HAVE_SCANSTACK */
#define is_even(p) ((((long)(p)) & 1) == 0)
#define even(p) (((long)(p)) & ~1L)
#if defined(__sun) && defined(__i386)
/*
* Solaris x86 has a broken frame.h which defines the frame ptr to int.
*/
#define odd(p) (((Intptr_t)(p)) | 1)
#else
#define odd(p) (void *)(((Intptr_t)(p)) | 1)
#endif
#ifdef __future__
#define even(p) (((long)(p)) - 1) /* will this work with 64 bit ?? */
#endif
EXPORT void starthandlecond __PR((SIGBLK *sp));
#ifdef PROTOTYPES
EXPORT void
handlecond(const char *signame,
register SIGBLK *sp,
int (*func)(const char *, long, long),
long arg1)
#else
EXPORT void
handlecond(signame, sp, func, arg1)
char *signame;
register SIGBLK *sp;
BOOL (*func)();
long arg1;
#endif
{
register SIGBLK *this;
register SIGBLK *last = (SIGBLK *)NULL;
#ifdef HAVE_SCANSTACK
struct frame *fp = (struct frame *)NULL;
#endif
int slen;
if (signame == NULL || (slen = strlen(signame)) == 0) {
raisecond("handle_bad_name", (long)signame);
abort();
}
#ifdef HAVE_SCANSTACK
fp = (struct frame *)getfp();
fp = (struct frame *)fp->fr_savfp; /* point to frame of caller */
if (is_even(fp->fr_savfp)) {
/*
* Easy case: no handlers yet
* save real framepointer in sp->sb_savfp
*/
sp->sb_savfp = (long **)fp->fr_savfp;
this = (SIGBLK *)NULL;
} else {
this = (SIGBLK *)even(fp->fr_savfp);
}
#else
this = __roothandle;
#endif
for (; this; this = this->sb_signext) {
if (this == sp) {
/*
* If a SIGBLK is reused, the name must not change.
*/
if (this->sb_signame != NULL &&
!streql(this->sb_signame, signame)) {
raisecond("handle_reused_block", (long)signame);
abort();
}
sp->sb_sigfun = func;
sp->sb_sigarg = arg1;
return;
}
if (this->sb_signame != NULL &&
streql(this->sb_signame, signame)) {
if (last == (SIGBLK *)NULL) {
/*
* 'this' is the first entry in chain
*/
if (this->sb_signext == (SIGBLK *)NULL) {
/*
* only 'this' entry is in chain, copy
* saved real frame pointer into new sp
*/
sp->sb_savfp = this->sb_savfp;
} else {
#ifdef HAVE_SCANSTACK
/*
* make second entry first link in chain
*/
this->sb_signext->sb_savfp =
this->sb_savfp;
fp->fr_savfp = odd(this->sb_signext);
#else
/*
* Cannot happen if scanning the stack
* is not possible...
*/
raisecond("handle_is_empty", (long)0);
abort();
#endif
}
continue; /* don't trash 'last' ptr */
} else {
last->sb_signext = this->sb_signext;
}
}
last = this;
}
sp->sb_signext = (SIGBLK *)NULL;
sp->sb_signame = signame;
sp->sb_siglen = slen;
sp->sb_sigfun = func;
sp->sb_sigarg = arg1;
/*
* If there is a chain append to end of the chain, else make it first
*/
if (last)
last->sb_signext = sp;
#ifdef HAVE_SCANSTACK
else
fp->fr_savfp = odd(sp);
#else
/*
* Cannot happen if scanning the stack is not possible...
*/
else {
raisecond("handle_is_empty", (long)0);
abort();
}
#endif
}
EXPORT void
starthandlecond(sp)
register SIGBLK *sp;
{
#ifdef HAVE_SCANSTACK
struct frame *fp = NULL;
/*
* As the SCO OpenServer C-Compiler has a bug that may cause
* the first function call to getfp() been done before the
* new stack frame is created, we call getfp() twice.
*/
(void) getfp();
#endif
sp->sb_signext = (SIGBLK *)NULL;
sp->sb_signame = NULL;
sp->sb_siglen = 0;
sp->sb_sigfun = (handlefunc_t)NULL;
sp->sb_sigarg = 0;
#ifdef HAVE_SCANSTACK
fp = (struct frame *)getfp();
fp = (struct frame *)fp->fr_savfp; /* point to frame of caller */
if (is_even(fp->fr_savfp)) {
/*
* Easy case: no handlers yet
* save real framepointer in sp
*/
sp->sb_savfp = (long **)fp->fr_savfp;
fp->fr_savfp = odd(sp);
} else {
raisecond("handle_not_empty", (long)0);
abort();
}
#else
sp->sb_savfp = (long **)__roothandle;
__roothandle = sp;
#endif
}
EXPORT void
unhandlecond(sp)
register SIGBLK *sp;
{
#ifdef HAVE_SCANSTACK
register struct frame *fp;
register SIGBLK *sps;
/*
* As the SCO OpenServer C-Compiler has a bug that may cause
* the first function call to getfp() been done before the
* new stack frame is created, we call getfp() twice.
*/
(void) getfp();
fp = (struct frame *)getfp();
fp = (struct frame *)fp->fr_savfp; /* point to frame of caller */
if (!is_even(fp->fr_savfp)) { /* if handlers */
sps = (SIGBLK *)even(fp->fr_savfp); /* point to SIGBLK */
/* real framepointer */
#if defined(__sun) && defined(__i386)
fp->fr_savfp = (intptr_t)sps->sb_savfp;
#else
fp->fr_savfp = (struct frame *)sps->sb_savfp;
#endif
}
#else
if (__roothandle == NULL) {
raisecond("handle_is_empty", (long)0);
abort();
}
/*
* Pop top level handler chain.
*/
__roothandle = (SIGBLK *)__roothandle->sb_savfp;
#endif
}
|