# stop: dependency-injected wrapper around the exit() syscall # # We'd like to be able to write tests for functions that call exit(), and to # make assertions about whether they exit() or not in a given situation. To # achieve this we'll call exit() via a smarter wrapper called 'stop'. # # In the context of a test, calling a function X that calls 'stop' (directly # or through further intervening calls) will unwind the stack until X returns, # so that we can say check any further assertions after the execution of X. To # achieve this end, we'll pass the return address of X as a 'target' argument # into X, plumbing it through to 'stop'. When 'stop' gets a non-null target it # unwinds the stack until the target. If it gets a null target it calls # exit(). # # We'd also like to get the exit status out of 'stop', so we'll combine the # input target with an output status parameter into a type called 'exit-descriptor'. # # So the exit-descriptor looks like this: # target : address # return address for 'stop' to unwind to # value : int # exit status stop was called with # # 'stop' thus takes two parameters: an exit-descriptor and the exit status. # # 'stop' won't bother cleaning up any other processor state besides the stack, # such as registers. Only ESP will have a well-defined value after 'stop' # returns. (This is a poor man's setjmp/longjmp, if you know what that is.) # # Before you can call any function that may call 'stop', you need to pass in an # exit-descriptor to it. To create an exit-descriptor use 'tailor-exit-descriptor' # below. It's not the most pleasant abstraction in the world. # # An exit-descriptor's target is its input, computed during 'tailor-exit-descriptor'. # Its value is its output, computed during stop and available to the test. == code # instruction effective address register displacement immediate # . op subop mod rm32 base index scale r32 # . 1-3 bytes 3 bits 2 bits 3 bits 3 bits 3 bits 2 bits 2 bits 0/1/2/4 bytes 0/1/2/4 bytes # Configure an exit-descriptor for a call pushing 'nbytes' bytes of args to # the stack. # Ugly that we need to know the size of args, but so it goes. tailor-exit-descriptor: # ed : (address exit-descriptor), nbytes : int -> # . prolog 55/push-EBP 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP # . save registers 50/push-EAX 51/push-ECX # EAX = nbytes 8b/copy 1/mod/*+disp8 5/rm32/EBP . . . 0/r32/EAX 0xc/disp8 . # copy *(EBP+12) to EAX # Let X be the value of ESP in the caller, before the call to tailor-exit-descriptor. # The return address for a call in the caller's body will be at: # X-8 if the caller takes 4 bytes of args for the exit-descriptor (add 4 bytes for the return address) # X-12 if the caller takes 8 bytes of args # ..and so on # That's the value we need to return: X-nbytes-4 # # However, we also need to account for the perturbance to ESP caused by the # call to tailor-exit-descriptor. It pushes 8 bytes of args followed by 4 # bytes for the return address and 4 bytes to push EBP above. # So EBP at this point
#!/bin/sh

set -eu

# This script determines what to do if the build failed.
# Below is an example of uploading the output.txt to an ftp server.
ftp -in <<EOF
open 192.168.1.5
user username password
mkdir $DSCIP_NAME
cd $DSCIP_NAME
mkdir $CURRENT_COMMIT
cd $CURRENT_COMMIT
mkdir $(uname)
cd $(uname)
put $WORKING_DIRECTORY/output.txt output-failed.txt
close
bye
EOF
*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call _test-stop-2/disp32 # should never get past this point $_test-stop-1:dead-end: # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 4/imm32 # add to ESP # signal test failed: check-ints-equal(1, 0, msg) # . . push args 68/push "F - test-stop-skips-returns-on-exit"/imm32 68/push 0/imm32 68/push 1/imm32 # . . call e8/call check-ints-equal/disp32 # . . discard args 81 0/subop/add 3/mod/direct 4/rm32/ESP . . . . . 0xc/imm32 # add to ESP # . epilog 89/copy 3/mod/direct 4/rm32/ESP . . . 5/r32/EBP . . # copy EBP to ESP 5d/pop-to-EBP c3/return _test-stop-2: # ed : (address exit-descriptor) # . prolog 55/push-EBP 89/copy 3/mod/direct 5/rm32/EBP . . . 4/r32/ESP . . # copy ESP to EBP # . stop(ed, 1) # . . push args 68/push 1/imm32 ff 6/subop/push 1/mod/*+disp8 5/rm32/EBP . . . . 8/disp8 . # push *(EBP+8) # . . call e8/call stop/disp32 # should never get past this point $_test-stop-2:dead-end: # . epilog 89/copy 3/mod/direct 4/rm32/ESP . . . 5/r32/EBP . . # copy EBP to ESP 5d/pop-to-EBP c3/return # . . vim:nowrap:textwidth=0