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
|
/*-
* Public Domain 2014-2015 MongoDB, Inc.
* Public Domain 2008-2014 WiredTiger, Inc.
*
* This is free and unencumbered software released into the public domain.
*
* Anyone is free to copy, modify, publish, use, compile, sell, or
* distribute this software, either in source code form or as a compiled
* binary, for any purpose, commercial or non-commercial, and by any
* means.
*
* In jurisdictions that recognize copyright laws, the author or authors
* of this software dedicate any and all copyright interest in the
* software to the public domain. We make this dedication for the benefit
* of the public at large and to the detriment of our heirs and
* successors. We intend this dedication to be an overt act of
* relinquishment in perpetuity of all present and future rights to this
* software under copyright law.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <sys/stat.h>
#ifndef _WIN32
#include <sys/time.h>
#endif
#include <sys/types.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#ifndef _WIN32
#include <pthread.h>
#endif
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef _WIN32
#include <unistd.h>
#endif
#include <time.h>
#include "test_util.i"
#ifdef BDB
#include <db.h>
#endif
#if defined(__GNUC__)
#define WT_GCC_ATTRIBUTE(x) __attribute__(x)
#else
#define WT_GCC_ATTRIBUTE(x)
#endif
extern WT_EXTENSION_API *wt_api;
#define EXTPATH "../../ext/" /* Extensions path */
#define BZIP_PATH \
EXTPATH "compressors/bzip2/.libs/libwiredtiger_bzip2.so"
#define LZ4_PATH \
EXTPATH "compressors/lz4/.libs/libwiredtiger_lz4.so"
#define SNAPPY_PATH \
EXTPATH "compressors/snappy/.libs/libwiredtiger_snappy.so"
#define ZLIB_PATH \
EXTPATH "compressors/zlib/.libs/libwiredtiger_zlib.so"
#define REVERSE_PATH \
EXTPATH "collators/reverse/.libs/libwiredtiger_reverse_collator.so"
#define ROTN_PATH \
EXTPATH "encryptors/rotn/.libs/libwiredtiger_rotn.so"
#define KVS_BDB_PATH \
EXTPATH "test/kvs_bdb/.libs/libwiredtiger_kvs_bdb.so"
#define HELIUM_PATH \
EXTPATH "datasources/helium/.libs/libwiredtiger_helium.so"
#define LZO_PATH ".libs/lzo_compress.so"
#undef M
#define M(v) ((v) * 1000000) /* Million */
#undef KILOBYTE
#define KILOBYTE(v) ((v) * 1024)
#undef MEGABYTE
#define MEGABYTE(v) ((v) * 1048576)
#undef GIGABYTE
#define GIGABYTE(v) ((v) * 1073741824ULL)
#define WT_NAME "wt" /* Object name */
#define DATASOURCE(v) (strcmp(v, g.c_data_source) == 0 ? 1 : 0)
#define SINGLETHREADED (g.c_threads == 1)
#define FORMAT_OPERATION_REPS 3 /* 3 thread operations sets */
#ifndef _WIN32
#define SIZET_FMT "%zu" /* size_t format string */
#else
#define SIZET_FMT "%Iu" /* size_t format string */
#endif
typedef struct {
char *progname; /* Program name */
char *home; /* Home directory */
char *home_backup; /* Hot-backup directory */
char *home_backup_init; /* Initialize backup command */
char *home_bdb; /* BDB directory */
char *home_config; /* Run CONFIG file path */
char *home_init; /* Initialize home command */
char *home_log; /* Operation log file path */
char *home_rand; /* RNG log file path */
char *home_salvage_copy; /* Salvage copy command */
char *home_stats; /* Statistics file path */
char *helium_mount; /* Helium volume */
#ifdef HAVE_BERKELEY_DB
void *bdb; /* BDB comparison handle */
void *dbc; /* BDB cursor handle */
#endif
WT_CONNECTION *wts_conn;
WT_EXTENSION_API *wt_api;
int rand_log_stop; /* Logging turned off */
FILE *randfp; /* Random number log */
uint32_t run_cnt; /* Run counter */
enum {
LOG_FILE=1, /* Use a log file */
LOG_OPS=2 /* Log all operations */
} logging;
FILE *logfp; /* Log file */
int replay; /* Replaying a run. */
int track; /* Track progress */
int workers_finished; /* Operations completed */
pthread_rwlock_t backup_lock; /* Hot backup running */
uint64_t rnd; /* Global RNG state */
/*
* We have a list of records that are appended, but not yet "resolved",
* that is, we haven't yet incremented the g.rows value to reflect the
* new records.
*/
uint64_t *append; /* Appended records */
size_t append_max; /* Maximum unresolved records */
size_t append_cnt; /* Current unresolved records */
pthread_rwlock_t append_lock; /* Single-thread resolution */
pthread_rwlock_t death_lock; /* Single-thread failure */
char *uri; /* Object name */
char *config_open; /* Command-line configuration */
uint32_t c_abort; /* Config values */
uint32_t c_auto_throttle;
uint32_t c_backups;
uint32_t c_bitcnt;
uint32_t c_bloom;
uint32_t c_bloom_bit_count;
uint32_t c_bloom_hash_count;
uint32_t c_bloom_oldest;
uint32_t c_cache;
uint32_t c_compact;
uint32_t c_checkpoints;
char *c_checksum;
uint32_t c_chunk_size;
char *c_compression;
char *c_encryption;
char *c_config_open;
uint32_t c_data_extend;
char *c_data_source;
uint32_t c_delete_pct;
uint32_t c_dictionary;
uint32_t c_evict_max;
uint32_t c_firstfit;
char *c_file_type;
uint32_t c_huffman_key;
uint32_t c_huffman_value;
uint32_t c_insert_pct;
uint32_t c_internal_key_truncation;
uint32_t c_intl_page_max;
char *c_isolation;
uint32_t c_key_gap;
uint32_t c_key_max;
uint32_t c_key_min;
uint32_t c_leaf_page_max;
uint32_t c_leak_memory;
uint32_t c_logging;
uint32_t c_logging_archive;
char *c_logging_compression;
uint32_t c_logging_prealloc;
uint32_t c_lsm_worker_threads;
uint32_t c_merge_max;
uint32_t c_mmap;
uint32_t c_ops;
uint32_t c_prefix_compression;
uint32_t c_prefix_compression_min;
uint32_t c_repeat_data_pct;
uint32_t c_reverse;
uint32_t c_rows;
uint32_t c_runs;
uint32_t c_split_pct;
uint32_t c_statistics;
uint32_t c_statistics_server;
uint32_t c_threads;
uint32_t c_timer;
uint32_t c_value_max;
uint32_t c_value_min;
uint32_t c_write_pct;
#define FIX 1
#define ROW 2
#define VAR 3
u_int type; /* File type's flag value */
#define CHECKSUM_OFF 1
#define CHECKSUM_ON 2
#define CHECKSUM_UNCOMPRESSED 3
u_int c_checksum_flag; /* Checksum flag value */
#define COMPRESS_NONE 1
#define COMPRESS_BZIP 2
#define COMPRESS_BZIP_RAW 3
#define COMPRESS_LZ4 4
#define COMPRESS_LZ4_NO_RAW 5
#define COMPRESS_LZO 6
#define COMPRESS_SNAPPY 7
#define COMPRESS_ZLIB 8
#define COMPRESS_ZLIB_NO_RAW 9
u_int c_compression_flag; /* Compression flag value */
u_int c_logging_compression_flag; /* Log compression flag value */
#define ENCRYPT_NONE 1
#define ENCRYPT_ROTN_7 2
u_int c_encryption_flag; /* Encryption flag value */
#define ISOLATION_RANDOM 1
#define ISOLATION_READ_UNCOMMITTED 2
#define ISOLATION_READ_COMMITTED 3
#define ISOLATION_SNAPSHOT 4
u_int c_isolation_flag; /* Isolation flag value */
uint64_t key_cnt; /* Keys loaded so far */
uint64_t rows; /* Total rows */
uint32_t key_rand_len[1031]; /* Key lengths */
} GLOBAL;
extern GLOBAL g;
typedef struct {
uint64_t rnd; /* thread RNG state */
uint64_t search; /* operations */
uint64_t insert;
uint64_t update;
uint64_t remove;
uint64_t ops;
uint64_t commit; /* transaction resolution */
uint64_t rollback;
uint64_t deadlock;
int id; /* simple thread ID */
pthread_t tid; /* thread ID */
int quit; /* thread should quit */
#define TINFO_RUNNING 1 /* Running */
#define TINFO_COMPLETE 2 /* Finished */
#define TINFO_JOINED 3 /* Resolved */
volatile int state; /* state */
} TINFO WT_GCC_ATTRIBUTE((aligned(WT_CACHE_LINE_ALIGNMENT)));
#ifdef HAVE_BERKELEY_DB
void bdb_close(void);
void bdb_insert(const void *, size_t, const void *, size_t);
void bdb_np(int, void *, size_t *, void *, size_t *, int *);
void bdb_open(void);
void bdb_read(uint64_t, void *, size_t *, int *);
void bdb_remove(uint64_t, int *);
void bdb_update(const void *, size_t, const void *, size_t, int *);
#endif
void *backup(void *);
void *compact(void *);
void config_clear(void);
void config_error(void);
void config_file(const char *);
void config_print(int);
void config_setup(void);
void config_single(const char *, int);
void fclose_and_clear(FILE **);
void key_gen(uint8_t *, size_t *, uint64_t);
void key_gen_insert(uint64_t *, uint8_t *, size_t *, uint64_t);
void key_gen_setup(uint8_t **);
void key_len_setup(void);
void path_setup(const char *);
uint32_t rng(uint64_t *);
void track(const char *, uint64_t, TINFO *);
void val_gen(uint64_t *, uint8_t *, size_t *, uint64_t);
void val_gen_setup(uint64_t *, uint8_t **);
void wts_close(void);
void wts_create(void);
void wts_dump(const char *, int);
void wts_load(void);
void wts_open(const char *, int, WT_CONNECTION **);
void wts_ops(int);
void wts_read_scan(void);
void wts_salvage(void);
void wts_stats(void);
void wts_verify(const char *);
void die(int, const char *, ...)
#if defined(__GNUC__)
__attribute__((__noreturn__))
#endif
;
/*
* mmrand --
* Return a random value between a min/max pair.
*/
static inline uint32_t
mmrand(uint64_t *rnd, u_int min, u_int max)
{
return (rng(rnd) % (((max) + 1) - (min)) + (min));
}
|