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 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
|
/*--------------------------------------------------------------------*/
/*--- Create/destroy signal delivery frames. ---*/
/*--- sigframe-mips32-linux.c ---*/
/*--------------------------------------------------------------------*/
/*
This file is part of Valgrind, a dynamic binary instrumentation
framework.
Copyright (C) 2010-2017 RT-RK
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
The GNU General Public License is contained in the file COPYING.
*/
#if defined(VGP_mips32_linux)
#include "pub_core_basics.h"
#include "pub_core_vki.h"
#include "pub_core_vkiscnums.h"
#include "pub_core_threadstate.h"
#include "pub_core_aspacemgr.h"
#include "pub_core_libcbase.h"
#include "pub_core_libcassert.h"
#include "pub_core_libcprint.h"
#include "pub_core_machine.h"
#include "pub_core_options.h"
#include "pub_core_sigframe.h"
#include "pub_core_signals.h"
#include "pub_core_tooliface.h"
#include "pub_core_trampoline.h"
#include "priv_sigframe.h"
struct vg_sig_private
{
UInt magicPI;
UInt sigNo_private;
VexGuestMIPS32State vex_shadow1;
VexGuestMIPS32State vex_shadow2;
};
struct sigframe
{
UInt sf_ass[4]; /* argument save space for o32 */
UInt sf_pad[2]; /* Was: signal trampoline */
struct vki_sigcontext sf_sc;
vki_sigset_t sf_mask;
struct vg_sig_private priv;
};
struct rt_sigframe
{
UInt rs_ass[4]; /* argument save space for o32 */
UInt rs_pad[2]; /* Was: signal trampoline */
vki_siginfo_t rs_info;
struct vki_ucontext rs_uc;
struct vg_sig_private priv;
};
static
void setup_sigcontext2 ( ThreadState* tst, struct vki_sigcontext **sc1,
const vki_siginfo_t *si)
{
struct vki_sigcontext *sc = *sc1;
VG_TRACK( pre_mem_write, Vg_CoreSignal, tst->tid, "signal frame mcontext",
(Addr)sc, sizeof(unsigned long long)*34 );
sc->sc_regs[1] = tst->arch.vex.guest_r1;
sc->sc_regs[2] = tst->arch.vex.guest_r2;
sc->sc_regs[3] = tst->arch.vex.guest_r3;
sc->sc_regs[4] = tst->arch.vex.guest_r4;
sc->sc_regs[5] = tst->arch.vex.guest_r5;
sc->sc_regs[6] = tst->arch.vex.guest_r6;
sc->sc_regs[7] = tst->arch.vex.guest_r7;
sc->sc_regs[8] = tst->arch.vex.guest_r8;
sc->sc_regs[9] = tst->arch.vex.guest_r9;
sc->sc_regs[10] = tst->arch.vex.guest_r10;
sc->sc_regs[11] = tst->arch.vex.guest_r11;
sc->sc_regs[12] = tst->arch.vex.guest_r12;
sc->sc_regs[13] = tst->arch.vex.guest_r13;
sc->sc_regs[14] = tst->arch.vex.guest_r14;
sc->sc_regs[15] = tst->arch.vex.guest_r15;
sc->sc_regs[16] = tst->arch.vex.guest_r16;
sc->sc_regs[17] = tst->arch.vex.guest_r17;
sc->sc_regs[18] = tst->arch.vex.guest_r18;
sc->sc_regs[19] = tst->arch.vex.guest_r19;
sc->sc_regs[20] = tst->arch.vex.guest_r20;
sc->sc_regs[21] = tst->arch.vex.guest_r21;
sc->sc_regs[22] = tst->arch.vex.guest_r22;
sc->sc_regs[23] = tst->arch.vex.guest_r23;
sc->sc_regs[24] = tst->arch.vex.guest_r24;
sc->sc_regs[25] = tst->arch.vex.guest_r25;
sc->sc_regs[26] = tst->arch.vex.guest_r26;
sc->sc_regs[27] = tst->arch.vex.guest_r27;
sc->sc_regs[28] = tst->arch.vex.guest_r28;
sc->sc_regs[29] = tst->arch.vex.guest_r29;
sc->sc_regs[30] = tst->arch.vex.guest_r30;
sc->sc_regs[31] = tst->arch.vex.guest_r31;
sc->sc_pc = tst->arch.vex.guest_PC;
sc->sc_mdhi = tst->arch.vex.guest_HI;
sc->sc_mdlo = tst->arch.vex.guest_LO;
}
/* EXPORTED */
void VG_(sigframe_create)( ThreadId tid,
Bool on_altstack,
Addr sp_top_of_frame,
const vki_siginfo_t *siginfo,
const struct vki_ucontext *siguc,
void *handler,
UInt flags,
const vki_sigset_t *mask,
void *restorer )
{
Addr sp;
ThreadState* tst = VG_(get_ThreadState)(tid);
Int sigNo = siginfo->si_signo;
struct vg_sig_private *priv;
/* Stack must be 8-byte aligned */
sp_top_of_frame &= ~0xf;
if (flags & VKI_SA_SIGINFO)
{
sp = sp_top_of_frame - sizeof(struct rt_sigframe);
}
else
{
sp = sp_top_of_frame - sizeof(struct sigframe);
}
tst = VG_(get_ThreadState)(tid);
if (! ML_(sf_maybe_extend_stack)(tst, sp, sp_top_of_frame - sp, flags))
return;
vg_assert(VG_IS_8_ALIGNED(sp));
if (flags & VKI_SA_SIGINFO)
{
struct rt_sigframe *frame = (struct rt_sigframe *) sp;
struct vki_ucontext *ucp = &frame->rs_uc;
if (VG_(clo_trace_signals))
VG_(printf)("rt_sigframe\n");
/* Create siginfo. */
VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame siginfo",
(Addr)&frame->rs_info, sizeof(frame->rs_info) );
VG_(memcpy)(&frame->rs_info, siginfo, sizeof(*siginfo));
VG_TRACK( post_mem_write, Vg_CoreSignal, tid,
(Addr)&frame->rs_info, sizeof(frame->rs_info) );
/* Create the ucontext. */
VG_TRACK( pre_mem_write, Vg_CoreSignal, tid, "signal frame ucontext",
(Addr)ucp, offsetof(struct vki_ucontext, uc_mcontext) );
ucp->uc_flags = 0;
ucp->uc_link = 0;
ucp->uc_stack = tst->altstack;
VG_TRACK( post_mem_write, Vg_CoreSignal, tid, (Addr)ucp,
offsetof(struct vki_ucontext, uc_mcontext) );
struct vki_sigcontext *scp = &(frame->rs_uc.uc_mcontext);
setup_sigcontext2(tst, &(scp), siginfo);
ucp->uc_sigmask = tst->sig_mask;
priv = &frame->priv;
/*
* Arguments to signal handler:
*
* a0 = signal number
* a1 = 0 (should be cause)
* a2 = pointer to ucontext
*
* $25 and c0_epc point to the signal handler, $29 points to
* the struct rt_sigframe.
*/
tst->arch.vex.guest_r4 = siginfo->si_signo;
tst->arch.vex.guest_r5 = (Addr) &frame->rs_info;
tst->arch.vex.guest_r6 = (Addr) &frame->rs_uc;
tst->arch.vex.guest_r29 = (Addr) frame;
tst->arch.vex.guest_r25 = (Addr) handler;
if (flags & VKI_SA_RESTORER)
{
tst->arch.vex.guest_r31 = (Addr) restorer;
}
else
{
tst->arch.vex.guest_r31 = (Addr)&VG_(mips32_linux_SUBST_FOR_rt_sigreturn);
}
}
else
{
if (VG_(clo_trace_signals))
VG_(printf)("sigframe\n");
struct sigframe *frame = (struct sigframe *) sp;
struct vki_sigcontext *scp = &(frame->sf_sc);
setup_sigcontext2(tst, &(scp), siginfo);
frame->sf_mask = tst->sig_mask;
priv = &frame->priv;
/*
* Arguments to signal handler:
*
* a0 = signal number
* a1 = 0 (should be cause)
* a2 = pointer to struct sigcontext
*
* $25 and c0_epc point to the signal handler, $29 points to the
* struct sigframe.
*/
tst->arch.vex.guest_r4 = siginfo->si_signo;
tst->arch.vex.guest_r5 = 0;
tst->arch.vex.guest_r6 = (Addr) &frame->sf_sc;
tst->arch.vex.guest_r29 = (Addr) frame;
tst->arch.vex.guest_r25 = (Addr) handler;
if (flags & VKI_SA_RESTORER)
{
tst->arch.vex.guest_r31 = (Addr) restorer;
}
else
{
tst->arch.vex.guest_r31 = (Addr)&VG_(mips32_linux_SUBST_FOR_sigreturn);
}
}
priv->magicPI = 0x31415927;
priv->sigNo_private = sigNo;
priv->vex_shadow1 = tst->arch.vex_shadow1;
priv->vex_shadow2 = tst->arch.vex_shadow2;
/* Set the thread so it will next run the handler. */
/* tst->m_sp = sp; also notify the tool we've updated SP */
VG_TRACK( post_reg_write, Vg_CoreSignal, tid, VG_O_STACK_PTR, sizeof(Addr));
if (VG_(clo_trace_signals))
VG_(printf)("handler = %p\n", handler);
tst->arch.vex.guest_PC = (Addr) handler;
/* This thread needs to be marked runnable, but we leave that the
caller to do. */
}
/* EXPORTED */
void VG_(sigframe_destroy)( ThreadId tid, Bool isRT )
{
ThreadState *tst;
struct vg_sig_private *priv1;
Addr sp;
UInt frame_size;
struct vki_sigcontext *mc;
Int sigNo;
Bool has_siginfo = isRT;
vg_assert(VG_(is_valid_tid)(tid));
tst = VG_(get_ThreadState)(tid);
sp = tst->arch.vex.guest_r29;
if (has_siginfo)
{
struct rt_sigframe *frame = (struct rt_sigframe *)sp;
struct vki_ucontext *ucp = &frame->rs_uc;
frame_size = sizeof(*frame);
mc = &ucp->uc_mcontext;
priv1 = &frame->priv;
vg_assert(priv1->magicPI == 0x31415927);
sigNo = priv1->sigNo_private;
}
else
{
struct sigframe *frame = (struct sigframe *)sp;
frame_size = sizeof(*frame);
mc = &(frame->sf_sc);
priv1 = &frame->priv;
vg_assert(priv1->magicPI == 0x31415927);
tst->sig_mask = frame->sf_mask;
tst->tmp_sig_mask = tst->sig_mask;
sigNo = priv1->sigNo_private;
}
//restore regs
tst->arch.vex.guest_r1 = mc->sc_regs[1];
tst->arch.vex.guest_r2 = mc->sc_regs[2];
tst->arch.vex.guest_r3 = mc->sc_regs[3];
tst->arch.vex.guest_r4 = mc->sc_regs[4];
tst->arch.vex.guest_r5 = mc->sc_regs[5];
tst->arch.vex.guest_r6 = mc->sc_regs[6];
tst->arch.vex.guest_r7 = mc->sc_regs[7];
tst->arch.vex.guest_r8 = mc->sc_regs[8];
tst->arch.vex.guest_r9 = mc->sc_regs[9];
tst->arch.vex.guest_r10 = mc->sc_regs[10];
tst->arch.vex.guest_r11 = mc->sc_regs[11];
tst->arch.vex.guest_r12 = mc->sc_regs[12];
tst->arch.vex.guest_r13= mc->sc_regs[13];
tst->arch.vex.guest_r14 = mc->sc_regs[14];
tst->arch.vex.guest_r15 = mc->sc_regs[15];
tst->arch.vex.guest_r16 = mc->sc_regs[16];
tst->arch.vex.guest_r17 = mc->sc_regs[17];
tst->arch.vex.guest_r18 = mc->sc_regs[18];
tst->arch.vex.guest_r19 = mc->sc_regs[19];
tst->arch.vex.guest_r20 = mc->sc_regs[20];
tst->arch.vex.guest_r21 = mc->sc_regs[21];
tst->arch.vex.guest_r22 = mc->sc_regs[22];
tst->arch.vex.guest_r23 = mc->sc_regs[23];
tst->arch.vex.guest_r24 = mc->sc_regs[24];
tst->arch.vex.guest_r25 = mc->sc_regs[25];
tst->arch.vex.guest_r26 = mc->sc_regs[26];
tst->arch.vex.guest_r27 = mc->sc_regs[27];
tst->arch.vex.guest_r28 = mc->sc_regs[28];
tst->arch.vex.guest_r30 = mc->sc_regs[30];
tst->arch.vex.guest_PC = mc->sc_pc;
tst->arch.vex.guest_r31 = mc->sc_regs[31];
tst->arch.vex.guest_r29 = mc->sc_regs[29];
tst->arch.vex.guest_HI = mc->sc_mdhi;
tst->arch.vex.guest_LO = mc->sc_mdlo;
tst->arch.vex_shadow1 = priv1->vex_shadow1;
tst->arch.vex_shadow2 = priv1->vex_shadow2;
VG_TRACK(die_mem_stack_signal, sp, frame_size);
if (VG_(clo_trace_signals))
VG_(message)( Vg_DebugMsg,
"VG_(signal_return) (thread %u): isRT=%d valid magic; EIP=%#x\n",
tid, isRT, tst->arch.vex.guest_PC);
/* tell the tools */
VG_TRACK( post_deliver_signal, tid, sigNo );
}
#endif // defined(VGP_mips32_linux)
/*--------------------------------------------------------------------*/
/*--- end sigframe-mips32-linux.c ---*/
/*--------------------------------------------------------------------*/
|