snapshot: don't need any snapshotting space for fork-based
[c11tester.git] / snapshot.cc
1 #include <inttypes.h>
2 #include <sys/mman.h>
3 #include <unistd.h>
4 #include <signal.h>
5 #include <stdlib.h>
6 #include "hashtable.h"
7 #include <cstring>
8 #include <cstdio>
9 #include "snapshot.h"
10 #include "snapshotimp.h"
11 #include "mymemory.h"
12 #include <fcntl.h>
13 #include <assert.h>
14 #include <pthread.h>
15 #include <semaphore.h>
16 #include <errno.h>
17 #include <sys/wait.h>
18 #include <ucontext.h>
19
20 #include "common.h"
21
22 #define FAILURE(mesg) { printf("failed in the API: %s with errno relative message: %s\n", mesg, strerror( errno ) ); exit(EXIT_FAILURE); }
23
24 #ifdef CONFIG_SSDEBUG
25 #define SSDEBUG         printf
26 #else
27 #define SSDEBUG(...)    do { } while (0)
28 #endif
29
30 /* extern declaration definition */
31 struct SnapShot * snapshotrecord = NULL;
32
33 #if !USE_MPROTECT_SNAPSHOT
34 /** @statics
35 *   These variables are necessary because the stack is shared region and
36 *   there exists a race between all processes executing the same function.
37 *   To avoid the problem above, we require variables allocated in 'safe' regions.
38 *   The bug was actually observed with the forkID, these variables below are
39 *   used to indicate the various contexts to which to switch to.
40 *
41 *   @savedSnapshotContext: contains the point to which takesnapshot() call should switch to.
42 *   @savedUserSnapshotContext: contains the point to which the process whose snapshotid is equal to the rollbackid should switch to
43 *   @snapshotid: it is a running counter for the various forked processes snapshotid. it is incremented and set in a persistently shared record
44 */
45 static ucontext_t savedSnapshotContext;
46 static ucontext_t savedUserSnapshotContext;
47 static snapshot_id snapshotid = 0;
48 #endif
49
50 /** PageAlignedAdressUpdate return a page aligned address for the
51  * address being added as a side effect the numBytes are also changed.
52  */
53 static void * PageAlignAddressUpward(void * addr) {
54         return (void *)((((uintptr_t)addr)+PAGESIZE-1)&~(PAGESIZE-1));
55 }
56
57 #if USE_MPROTECT_SNAPSHOT
58
59 /** ReturnPageAlignedAddress returns a page aligned address for the
60  * address being added as a side effect the numBytes are also changed.
61  */
62 static void * ReturnPageAlignedAddress(void * addr) {
63         return (void *)(((uintptr_t)addr)&~(PAGESIZE-1));
64 }
65
66 /** The initSnapShotRecord method initialized the snapshotting data
67  *  structures for the mprotect based snapshot.
68  */
69 static void initSnapShotRecord(unsigned int numbackingpages, unsigned int numsnapshots, unsigned int nummemoryregions) {
70         snapshotrecord=( struct SnapShot * )model_malloc(sizeof(struct SnapShot));
71         snapshotrecord->regionsToSnapShot=( struct MemoryRegion * )model_malloc(sizeof(struct MemoryRegion)*nummemoryregions);
72         snapshotrecord->backingStoreBasePtr= ( struct SnapShotPage * )model_malloc( sizeof( struct SnapShotPage ) * (numbackingpages + 1) );
73         //Page align the backingstorepages
74         snapshotrecord->backingStore=( struct SnapShotPage * )PageAlignAddressUpward(snapshotrecord->backingStoreBasePtr);
75         snapshotrecord->backingRecords=( struct BackingPageRecord * )model_malloc(sizeof(struct BackingPageRecord)*numbackingpages);
76         snapshotrecord->snapShots= ( struct SnapShotRecord * )model_malloc(sizeof(struct SnapShotRecord)*numsnapshots);
77         snapshotrecord->lastSnapShot=0;
78         snapshotrecord->lastBackingPage=0;
79         snapshotrecord->lastRegion=0;
80         snapshotrecord->maxRegions=nummemoryregions;
81         snapshotrecord->maxBackingPages=numbackingpages;
82         snapshotrecord->maxSnapShots=numsnapshots;
83 }
84
85 /** HandlePF is the page fault handler for mprotect based snapshotting
86  * algorithm.
87  */
88 static void HandlePF( int sig, siginfo_t *si, void * unused){
89         if( si->si_code == SEGV_MAPERR ){
90                 printf("Real Fault at %p\n", si->si_addr);
91                 print_trace();
92                 exit( EXIT_FAILURE );
93         }
94         void* addr = ReturnPageAlignedAddress(si->si_addr);
95
96         unsigned int backingpage=snapshotrecord->lastBackingPage++; //Could run out of pages...
97         if (backingpage==snapshotrecord->maxBackingPages) {
98                 printf("Out of backing pages at %p\n", si->si_addr);
99                 exit( EXIT_FAILURE );
100         }
101
102         //copy page
103         memcpy(&(snapshotrecord->backingStore[backingpage]), addr, sizeof(struct SnapShotPage));
104         //remember where to copy page back to
105         snapshotrecord->backingRecords[backingpage].basePtrOfPage=addr;
106         //set protection to read/write
107         if (mprotect( addr, sizeof(struct SnapShotPage), PROT_READ | PROT_WRITE )) {
108                 perror("mprotect");
109                 // Handle error by quitting?
110         }
111 }
112 #endif //nothing to handle for non snapshotting case.
113
114 #if !USE_MPROTECT_SNAPSHOT
115 void createSharedMemory(){
116         //step 1. create shared memory.
117         void * memMapBase = mmap( 0, SHARED_MEMORY_DEFAULT + STACK_SIZE_DEFAULT, PROT_READ | PROT_WRITE, MAP_SHARED|MAP_ANON, -1, 0 );
118         if( MAP_FAILED == memMapBase )
119                 FAILURE("mmap");
120
121         //Setup snapshot record at top of free region
122         snapshotrecord = ( struct SnapShot * )memMapBase;
123         snapshotrecord->mSharedMemoryBase = (void *)((uintptr_t)memMapBase + sizeof(struct SnapShot));
124         snapshotrecord->mStackBase = (void *)((uintptr_t)memMapBase + SHARED_MEMORY_DEFAULT);
125         snapshotrecord->mStackSize = STACK_SIZE_DEFAULT;
126         snapshotrecord->mIDToRollback = -1;
127         snapshotrecord->currSnapShotID = 0;
128 }
129 #endif
130
131
132 /** The initSnapshotLibrary function initializes the snapshot library.
133  *  @param entryPoint the function that should run the program.
134  */
135 #if USE_MPROTECT_SNAPSHOT
136
137 void initSnapshotLibrary(unsigned int numbackingpages,
138                 unsigned int numsnapshots, unsigned int nummemoryregions,
139                 unsigned int numheappages, VoidFuncPtr entryPoint) {
140         /* Setup a stack for our signal handler....  */
141         stack_t ss;
142         ss.ss_sp = PageAlignAddressUpward(model_malloc(SIGSTACKSIZE+PAGESIZE-1));
143         ss.ss_size = SIGSTACKSIZE;
144         ss.ss_flags = 0;
145         sigaltstack(&ss, NULL);
146
147         struct sigaction sa;
148         sa.sa_flags = SA_SIGINFO | SA_NODEFER | SA_RESTART | SA_ONSTACK;
149         sigemptyset( &sa.sa_mask );
150         sa.sa_sigaction = HandlePF;
151 #ifdef MAC
152         if( sigaction( SIGBUS, &sa, NULL ) == -1 ){
153                 printf("SIGACTION CANNOT BE INSTALLED\n");
154                 exit(EXIT_FAILURE);
155         }
156 #endif
157         if( sigaction( SIGSEGV, &sa, NULL ) == -1 ){
158                 printf("SIGACTION CANNOT BE INSTALLED\n");
159                 exit(EXIT_FAILURE);
160         }
161
162         initSnapShotRecord(numbackingpages, numsnapshots, nummemoryregions);
163
164         // EVIL HACK: We need to make sure that calls into the HandlePF method don't cause dynamic links
165         // The problem is that we end up protecting state in the dynamic linker...
166         // Solution is to call our signal handler before we start protecting stuff...
167
168         siginfo_t si;
169         memset(&si, 0, sizeof(si));
170         si.si_addr=ss.ss_sp;
171         HandlePF(SIGSEGV, &si, NULL);
172         snapshotrecord->lastBackingPage--; //remove the fake page we copied
173
174         void *basemySpace = model_malloc((numheappages+1)*PAGESIZE);
175         void * pagealignedbase=PageAlignAddressUpward(basemySpace);
176         snapshot_space = create_mspace_with_base(pagealignedbase, numheappages*PAGESIZE, 1 );
177         addMemoryRegionToSnapShot(pagealignedbase, numheappages);
178         entryPoint();
179 }
180 #else
181 void initSnapshotLibrary(unsigned int numbackingpages,
182                 unsigned int numsnapshots, unsigned int nummemoryregions,
183                 unsigned int numheappages, VoidFuncPtr entryPoint) {
184         if (!snapshotrecord)
185                 createSharedMemory();
186
187         //step 2 setup the stack context.
188         ucontext_t newContext;
189         getcontext( &newContext );
190         newContext.uc_stack.ss_sp = snapshotrecord->mStackBase;
191         newContext.uc_stack.ss_size = STACK_SIZE_DEFAULT;
192         makecontext( &newContext, entryPoint, 0 );
193         /* switch to a new entryPoint context, on a new stack */
194         swapcontext(&savedSnapshotContext, &newContext);
195
196         /* switch back here when takesnapshot is called */
197         pid_t forkedID = 0;
198         snapshotid = snapshotrecord->currSnapShotID;
199         /* This bool indicates that the current process's snapshotid is same
200                  as the id to which the rollback needs to occur */
201
202         bool rollback = false;
203         while( true ){
204                 snapshotrecord->currSnapShotID=snapshotid+1;
205                 forkedID = fork();
206
207                 if( 0 == forkedID ){
208                         /* If the rollback bool is set, switch to the context we need to
209                                  return to during a rollback. */
210                         if( rollback) {
211                                 setcontext( &( snapshotrecord->mContextToRollback ) );
212                         } else {
213                                 /*Child process which is forked as a result of takesnapshot
214                                         call should switch back to the takesnapshot context*/
215                                 setcontext( &savedUserSnapshotContext );
216                         }
217                 } else {
218                         int status;
219                         int retVal;
220
221                         SSDEBUG("The process id of child is %d and the process id of this process is %d and snapshot id is %d\n",
222                                 forkedID, getpid(), snapshotid );
223
224                         do {
225                                 retVal=waitpid( forkedID, &status, 0 );
226                         } while( -1 == retVal && errno == EINTR );
227
228                         if( snapshotrecord->mIDToRollback != snapshotid ) {
229                                 exit(EXIT_SUCCESS);
230                         }
231                         rollback = true;
232                 }
233         }
234 }
235 #endif
236
237 /** The addMemoryRegionToSnapShot function assumes that addr is page aligned.
238  */
239 void addMemoryRegionToSnapShot( void * addr, unsigned int numPages) {
240 #if USE_MPROTECT_SNAPSHOT
241         unsigned int memoryregion=snapshotrecord->lastRegion++;
242         if (memoryregion==snapshotrecord->maxRegions) {
243                 printf("Exceeded supported number of memory regions!\n");
244                 exit(EXIT_FAILURE);
245         }
246
247         snapshotrecord->regionsToSnapShot[ memoryregion ].basePtr=addr;
248         snapshotrecord->regionsToSnapShot[ memoryregion ].sizeInPages=numPages;
249 #endif //NOT REQUIRED IN THE CASE OF FORK BASED SNAPSHOTS.
250 }
251
252 /** The takeSnapshot function takes a snapshot.
253  * @return The snapshot identifier.
254  */
255 snapshot_id takeSnapshot( ){
256 #if USE_MPROTECT_SNAPSHOT
257         for(unsigned int region=0; region<snapshotrecord->lastRegion;region++) {
258                 if( mprotect(snapshotrecord->regionsToSnapShot[region].basePtr, snapshotrecord->regionsToSnapShot[region].sizeInPages*sizeof(struct SnapShotPage), PROT_READ ) == -1 ){
259                         perror("mprotect");
260                         printf("Failed to mprotect inside of takeSnapShot\n");
261                         exit(EXIT_FAILURE);
262                 }
263         }
264         unsigned int snapshot=snapshotrecord->lastSnapShot++;
265         if (snapshot==snapshotrecord->maxSnapShots) {
266                 printf("Out of snapshots\n");
267                 exit(EXIT_FAILURE);
268         }
269         snapshotrecord->snapShots[snapshot].firstBackingPage=snapshotrecord->lastBackingPage;
270
271         return snapshot;
272 #else
273         swapcontext( &savedUserSnapshotContext, &savedSnapshotContext );
274         SSDEBUG("TAKESNAPSHOT RETURN\n");
275         return snapshotid;
276 #endif
277 }
278
279 /** The rollBack function rollback to the given snapshot identifier.
280  *  @param theID is the snapshot identifier to rollback to.
281  */
282 void rollBack( snapshot_id theID ){
283 #if USE_MPROTECT_SNAPSHOT==2
284         if (snapshotrecord->lastSnapShot==(theID+1)) {
285                 for(unsigned int page=snapshotrecord->snapShots[theID].firstBackingPage; page<snapshotrecord->lastBackingPage; page++) {
286                         memcpy(snapshotrecord->backingRecords[page].basePtrOfPage, &snapshotrecord->backingStore[page], sizeof(struct SnapShotPage));
287                 }
288                 return;
289         }
290 #endif
291
292 #if USE_MPROTECT_SNAPSHOT
293         HashTable< void *, bool, uintptr_t, 4, model_malloc, model_calloc, model_free> duplicateMap;
294         for(unsigned int region=0; region<snapshotrecord->lastRegion;region++) {
295                 if( mprotect(snapshotrecord->regionsToSnapShot[region].basePtr, snapshotrecord->regionsToSnapShot[region].sizeInPages*sizeof(struct SnapShotPage), PROT_READ | PROT_WRITE ) == -1 ){
296                         perror("mprotect");
297                         printf("Failed to mprotect inside of takeSnapShot\n");
298                         exit(EXIT_FAILURE);
299                 }
300         }
301         for(unsigned int page=snapshotrecord->snapShots[theID].firstBackingPage; page<snapshotrecord->lastBackingPage; page++) {
302                 if( !duplicateMap.contains(snapshotrecord->backingRecords[page].basePtrOfPage )) {
303                         duplicateMap.put(snapshotrecord->backingRecords[page].basePtrOfPage, true);
304                         memcpy(snapshotrecord->backingRecords[page].basePtrOfPage, &snapshotrecord->backingStore[page], sizeof(struct SnapShotPage));
305                 }
306         }
307         snapshotrecord->lastSnapShot=theID;
308         snapshotrecord->lastBackingPage=snapshotrecord->snapShots[theID].firstBackingPage;
309         takeSnapshot(); //Make sure current snapshot is still good...All later ones are cleared
310 #else
311         snapshotrecord->mIDToRollback = theID;
312         volatile int sTemp = 0;
313         getcontext( &snapshotrecord->mContextToRollback );
314         /*
315          * This is used to quit the process on rollback, so that the process
316          * which needs to rollback can quit allowing the process whose
317          * snapshotid matches the rollbackid to switch to this context and
318          * continue....
319          */
320         if( !sTemp ){
321                 sTemp = 1;
322                 SSDEBUG("Invoked rollback\n");
323                 exit(EXIT_SUCCESS);
324         }
325         /*
326          * This fix obviates the need for a finalize call. hence less dependences for model-checker....
327          *
328          */
329         snapshotrecord->mIDToRollback = -1;
330 #endif
331 }
332