replay-internal.h 5.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef REPLAY_INTERNAL_H
#define REPLAY_INTERNAL_H

/*
 * replay-internal.h
 *
 * Copyright (c) 2010-2015 Institute for System Programming
 *                         of the Russian Academy of Sciences.
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */


P
Pavel Dovgalyuk 已提交
16 17 18
enum ReplayEvents {
    /* for instruction event */
    EVENT_INSTRUCTION,
19 20 21 22
    /* for software interrupt */
    EVENT_INTERRUPT,
    /* for emulated exceptions */
    EVENT_EXCEPTION,
23 24
    /* for async events */
    EVENT_ASYNC,
25
    /* for shutdown requests, range allows recovery of ShutdownCause */
P
Pavel Dovgalyuk 已提交
26
    EVENT_SHUTDOWN,
27
    EVENT_SHUTDOWN_LAST = EVENT_SHUTDOWN + SHUTDOWN_CAUSE__MAX,
P
Pavel Dovgalyuk 已提交
28 29 30 31 32
    /* for character device write event */
    EVENT_CHAR_WRITE,
    /* for character device read all event */
    EVENT_CHAR_READ_ALL,
    EVENT_CHAR_READ_ALL_ERROR,
33 34 35 36
    /* for audio out event */
    EVENT_AUDIO_OUT,
    /* for audio in event */
    EVENT_AUDIO_IN,
37 38 39 40
    /* for clock read/writes */
    /* some of greater codes are reserved for clocks */
    EVENT_CLOCK,
    EVENT_CLOCK_LAST = EVENT_CLOCK + REPLAY_CLOCK_COUNT - 1,
P
Pavel Dovgalyuk 已提交
41 42 43 44
    /* for checkpoint event */
    /* some of greater codes are reserved for checkpoints */
    EVENT_CHECKPOINT,
    EVENT_CHECKPOINT_LAST = EVENT_CHECKPOINT + CHECKPOINT_COUNT - 1,
45 46
    /* end of log event */
    EVENT_END,
P
Pavel Dovgalyuk 已提交
47 48 49
    EVENT_COUNT
};

50 51 52
/* Asynchronous events IDs */

enum ReplayAsyncEventKind {
P
Pavel Dovgalyuk 已提交
53
    REPLAY_ASYNC_EVENT_BH,
54 55
    REPLAY_ASYNC_EVENT_INPUT,
    REPLAY_ASYNC_EVENT_INPUT_SYNC,
P
Pavel Dovgalyuk 已提交
56
    REPLAY_ASYNC_EVENT_CHAR_READ,
57
    REPLAY_ASYNC_EVENT_BLOCK,
58
    REPLAY_ASYNC_EVENT_NET,
59 60 61 62 63
    REPLAY_ASYNC_COUNT
};

typedef enum ReplayAsyncEventKind ReplayAsyncEventKind;

P
Pavel Dovgalyuk 已提交
64
typedef struct ReplayState {
65 66
    /*! Cached clock values. */
    int64_t cached_clock[REPLAY_CLOCK_COUNT];
P
Pavel Dovgalyuk 已提交
67 68 69 70
    /*! Current step - number of processed instructions and timer events. */
    uint64_t current_step;
    /*! Number of instructions to be executed before other events happen. */
    int instructions_count;
71 72 73 74
    /*! Type of the currently executed event. */
    unsigned int data_kind;
    /*! Flag which indicates that event is not processed yet. */
    unsigned int has_unread_data;
75 76
    /*! Temporary variable for saving current log offset. */
    uint64_t file_offset;
77 78 79 80
    /*! Next block operation id.
        This counter is global, because requests from different
        block devices should not get overlapping ids. */
    uint64_t block_request_id;
P
Pavel Dovgalyuk 已提交
81 82 83
} ReplayState;
extern ReplayState replay_state;

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/* File for replay writing */
extern FILE *replay_file;

void replay_put_byte(uint8_t byte);
void replay_put_event(uint8_t event);
void replay_put_word(uint16_t word);
void replay_put_dword(uint32_t dword);
void replay_put_qword(int64_t qword);
void replay_put_array(const uint8_t *buf, size_t size);

uint8_t replay_get_byte(void);
uint16_t replay_get_word(void);
uint32_t replay_get_dword(void);
int64_t replay_get_qword(void);
void replay_get_array(uint8_t *buf, size_t *size);
void replay_get_array_alloc(uint8_t **buf, size_t *size);

101 102 103 104 105 106 107
/* Mutex functions for protecting replay log file */

void replay_mutex_init(void);
void replay_mutex_destroy(void);
void replay_mutex_lock(void);
void replay_mutex_unlock(void);

108 109 110 111 112 113 114
/*! Checks error status of the file. */
void replay_check_error(void);

/*! Finishes processing of the replayed event and fetches
    the next event from the log. */
void replay_finish_event(void);
/*! Reads data type from the file and stores it in the
115
    data_kind variable. */
116 117
void replay_fetch_data_kind(void);

P
Pavel Dovgalyuk 已提交
118 119 120 121 122 123 124
/*! Saves queued events (like instructions and sound). */
void replay_save_instructions(void);

/*! Skips async events until some sync event will be found.
    \return true, if event was found */
bool replay_next_event_is(int event);

125 126 127 128 129
/*! Reads next clock value from the file.
    If clock kind read from the file is different from the parameter,
    the value is not used. */
void replay_read_next_clock(unsigned int kind);

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
/* Asynchronous events queue */

/*! Initializes events' processing internals */
void replay_init_events(void);
/*! Clears internal data structures for events handling */
void replay_finish_events(void);
/*! Flushes events queue */
void replay_flush_events(void);
/*! Clears events list before loading new VM state */
void replay_clear_events(void);
/*! Returns true if there are any unsaved events in the queue */
bool replay_has_events(void);
/*! Saves events from queue into the file */
void replay_save_events(int checkpoint);
/*! Read events from the file into the input queue */
void replay_read_events(int checkpoint);
P
Pavel Dovgalyuk 已提交
146 147 148
/*! Adds specified async event to the queue */
void replay_add_event(ReplayAsyncEventKind event_kind, void *opaque,
                      void *opaque2, uint64_t id);
149

150 151 152 153 154 155 156 157 158 159 160
/* Input events */

/*! Saves input event to the log */
void replay_save_input_event(InputEvent *evt);
/*! Reads input event from the log */
InputEvent *replay_read_input_event(void);
/*! Adds input event to the queue */
void replay_add_input_event(struct InputEvent *event);
/*! Adds input sync event to the queue */
void replay_add_input_sync_event(void);

P
Pavel Dovgalyuk 已提交
161 162 163 164 165 166 167 168 169
/* Character devices */

/*! Called to run char device read event. */
void replay_event_char_read_run(void *opaque);
/*! Writes char read event to the file. */
void replay_event_char_read_save(void *opaque);
/*! Reads char event read from the file. */
void *replay_event_char_read_load(void);

170 171 172 173 174 175 176 177 178
/* Network devices */

/*! Called to run network event. */
void replay_event_net_run(void *opaque);
/*! Writes network event to the file. */
void replay_event_net_save(void *opaque);
/*! Reads network from the file. */
void *replay_event_net_load(void);

179 180 181 182 183 184 185
/* VMState-related functions */

/* Registers replay VMState.
   Should be called before virtual devices initialization
   to make cached timers available for post_load functions. */
void replay_vmstate_register(void);

186
#endif