~ubuntu-branches/ubuntu/trusty/mariadb-5.5/trusty-proposed

« back to all changes in this revision

Viewing changes to storage/tokudb/ft-index/src/tests/recover-update_aborts_before_close.cc

  • Committer: Package Import Robot
  • Author(s): James Page, Otto Kekäläinen
  • Date: 2014-02-17 16:51:52 UTC
  • mfrom: (2.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140217165152-k315d3175g865kkx
Tags: 5.5.35-1
[ Otto Kekäläinen ]
* New upstream release, fixing the following security issues:
  - Buffer overflow in client/mysql.cc (Closes: #737597).
    - CVE-2014-0001
  - http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
    - CVE-2013-5891
    - CVE-2013-5908
    - CVE-2014-0386
    - CVE-2014-0393
    - CVE-2014-0401
    - CVE-2014-0402
    - CVE-2014-0412
    - CVE-2014-0420
    - CVE-2014-0437
* Upstream https://mariadb.atlassian.net/browse/MDEV-4902
  fixes compatibility with Bison 3.0 (Closes: #733002)
* Updated Russian debconf translation (Closes: #734426)
* Updated Japanese debconf translation (Closes: #735284)
* Updated French debconf translation (Closes: #736480)
* Renamed SONAME properly (Closes: #732967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
 
2
// vim: ft=cpp:expandtab:ts=8:sw=4:softtabstop=4:
 
3
#ident "$Id$"
 
4
/*
 
5
COPYING CONDITIONS NOTICE:
 
6
 
 
7
  This program is free software; you can redistribute it and/or modify
 
8
  it under the terms of version 2 of the GNU General Public License as
 
9
  published by the Free Software Foundation, and provided that the
 
10
  following conditions are met:
 
11
 
 
12
      * Redistributions of source code must retain this COPYING
 
13
        CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
 
14
        DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
 
15
        PATENT MARKING NOTICE (below), and the PATENT RIGHTS
 
16
        GRANT (below).
 
17
 
 
18
      * Redistributions in binary form must reproduce this COPYING
 
19
        CONDITIONS NOTICE, the COPYRIGHT NOTICE (below), the
 
20
        DISCLAIMER (below), the UNIVERSITY PATENT NOTICE (below), the
 
21
        PATENT MARKING NOTICE (below), and the PATENT RIGHTS
 
22
        GRANT (below) in the documentation and/or other materials
 
23
        provided with the distribution.
 
24
 
 
25
  You should have received a copy of the GNU General Public License
 
26
  along with this program; if not, write to the Free Software
 
27
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
28
  02110-1301, USA.
 
29
 
 
30
COPYRIGHT NOTICE:
 
31
 
 
32
  TokuDB, Tokutek Fractal Tree Indexing Library.
 
33
  Copyright (C) 2007-2013 Tokutek, Inc.
 
34
 
 
35
DISCLAIMER:
 
36
 
 
37
  This program is distributed in the hope that it will be useful, but
 
38
  WITHOUT ANY WARRANTY; without even the implied warranty of
 
39
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
40
  General Public License for more details.
 
41
 
 
42
UNIVERSITY PATENT NOTICE:
 
43
 
 
44
  The technology is licensed by the Massachusetts Institute of
 
45
  Technology, Rutgers State University of New Jersey, and the Research
 
46
  Foundation of State University of New York at Stony Brook under
 
47
  United States of America Serial No. 11/760379 and to the patents
 
48
  and/or patent applications resulting from it.
 
49
 
 
50
PATENT MARKING NOTICE:
 
51
 
 
52
  This software is covered by US Patent No. 8,185,551.
 
53
  This software is covered by US Patent No. 8,489,638.
 
54
 
 
55
PATENT RIGHTS GRANT:
 
56
 
 
57
  "THIS IMPLEMENTATION" means the copyrightable works distributed by
 
58
  Tokutek as part of the Fractal Tree project.
 
59
 
 
60
  "PATENT CLAIMS" means the claims of patents that are owned or
 
61
  licensable by Tokutek, both currently or in the future; and that in
 
62
  the absence of this license would be infringed by THIS
 
63
  IMPLEMENTATION or by using or running THIS IMPLEMENTATION.
 
64
 
 
65
  "PATENT CHALLENGE" shall mean a challenge to the validity,
 
66
  patentability, enforceability and/or non-infringement of any of the
 
67
  PATENT CLAIMS or otherwise opposing any of the PATENT CLAIMS.
 
68
 
 
69
  Tokutek hereby grants to you, for the term and geographical scope of
 
70
  the PATENT CLAIMS, a non-exclusive, no-charge, royalty-free,
 
71
  irrevocable (except as stated in this section) patent license to
 
72
  make, have made, use, offer to sell, sell, import, transfer, and
 
73
  otherwise run, modify, and propagate the contents of THIS
 
74
  IMPLEMENTATION, where such license applies only to the PATENT
 
75
  CLAIMS.  This grant does not include claims that would be infringed
 
76
  only as a consequence of further modifications of THIS
 
77
  IMPLEMENTATION.  If you or your agent or licensee institute or order
 
78
  or agree to the institution of patent litigation against any entity
 
79
  (including a cross-claim or counterclaim in a lawsuit) alleging that
 
80
  THIS IMPLEMENTATION constitutes direct or contributory patent
 
81
  infringement, or inducement of patent infringement, then any rights
 
82
  granted to you under this License shall terminate as of the date
 
83
  such litigation is filed.  If you or your agent or exclusive
 
84
  licensee institute or order or agree to the institution of a PATENT
 
85
  CHALLENGE, then Tokutek may terminate any rights granted to you
 
86
  under this License.
 
87
*/
 
88
 
 
89
#ident "Copyright (c) 2007-2013 Tokutek Inc.  All rights reserved."
 
90
#ident "The technology is licensed by the Massachusetts Institute of Technology, Rutgers State University of New Jersey, and the Research Foundation of State University of New York at Stony Brook under United States of America Serial No. 11/760379 and to the patents and/or patent applications resulting from it."
 
91
#include "test.h"
 
92
 
 
93
// verify recovery of an update log entry which changes values at keys
 
94
 
 
95
static const int envflags = DB_INIT_MPOOL|DB_CREATE|DB_THREAD|DB_INIT_LOCK|DB_INIT_LOG|DB_INIT_TXN|DB_PRIVATE;
 
96
static const unsigned int NUM_KEYS = 100;
 
97
 
 
98
static inline bool should_update(const unsigned int k) { return k % 3 == 0; }
 
99
 
 
100
static inline unsigned int _v(const unsigned int k) { return 10 - k; }
 
101
static inline unsigned int _e(const unsigned int k) { return k + 4; }
 
102
static inline unsigned int _u(const unsigned int v, const unsigned int e) { return v * v * e; }
 
103
 
 
104
static int update_fun(DB *UU(db),
 
105
                      const DBT *key,
 
106
                      const DBT *old_val, const DBT *extra,
 
107
                      void (*set_val)(const DBT *new_val,
 
108
                                      void *set_extra),
 
109
                      void *set_extra)
 
110
{
 
111
    unsigned int *k, *ov, *e, v;
 
112
    assert(key->size == sizeof(*k));
 
113
    CAST_FROM_VOIDP(k, key->data);
 
114
    assert(old_val->size == sizeof(*ov));
 
115
    CAST_FROM_VOIDP(ov, old_val->data);
 
116
    assert(extra->size == sizeof(*e));
 
117
    CAST_FROM_VOIDP(e, extra->data);
 
118
    v = _u(*ov, *e);
 
119
 
 
120
    {
 
121
        DBT newval;
 
122
        set_val(dbt_init(&newval, &v, sizeof(v)), set_extra);
 
123
    }
 
124
 
 
125
    return 0;
 
126
}
 
127
 
 
128
static int do_inserts(DB_TXN *txn, DB *db)
 
129
{
 
130
    int r = 0;
 
131
    DBT key, val;
 
132
    unsigned int i, v;
 
133
    DBT *keyp = dbt_init(&key, &i, sizeof(i));
 
134
    DBT *valp = dbt_init(&val, &v, sizeof(v));
 
135
    for (i = 0; i < NUM_KEYS; ++i) {
 
136
        v = _v(i);
 
137
        r = db->put(db, txn, keyp, valp, 0);
 
138
        CKERR(r);
 
139
    }
 
140
    return r;
 
141
}
 
142
 
 
143
static int do_updates(DB_TXN *txn, DB *db) {
 
144
    int r = 0;
 
145
    DBT key, extra;
 
146
    unsigned int i, e;
 
147
    DBT *keyp = dbt_init(&key, &i, sizeof(i));
 
148
    DBT *extrap = dbt_init(&extra, &e, sizeof(e));
 
149
    for (i = 0; i < NUM_KEYS; ++i) {
 
150
        if (should_update(i)) {
 
151
            e = _e(i);
 
152
            r = db->update(db, txn, keyp, extrap, 0);
 
153
            CKERR(r);
 
154
        }
 
155
    }
 
156
    return r;
 
157
}
 
158
 
 
159
static void run_test(void)
 
160
{
 
161
    DB_ENV *env;
 
162
    DB *db;
 
163
 
 
164
    toku_os_recursive_delete(TOKU_TEST_FILENAME);
 
165
    { int chk_r = toku_os_mkdir(TOKU_TEST_FILENAME, S_IRWXU+S_IRWXG+S_IRWXO); CKERR(chk_r); }
 
166
    { int chk_r = db_env_create(&env, 0); CKERR(chk_r); }
 
167
    env->set_errfile(env, stderr);
 
168
    env->set_update(env, update_fun);
 
169
    { int chk_r = env->open(env, TOKU_TEST_FILENAME, envflags, S_IRWXU+S_IRWXG+S_IRWXO); CKERR(chk_r); }
 
170
 
 
171
    IN_TXN_COMMIT(env, NULL, txn_1, 0, {
 
172
            { int chk_r = db_create(&db, env, 0); CKERR(chk_r); }
 
173
            { int chk_r = db->open(db, txn_1, "foo.db", NULL, DB_BTREE, DB_CREATE, 0666); CKERR(chk_r); }
 
174
 
 
175
            { int chk_r = do_inserts(txn_1, db); CKERR(chk_r); }
 
176
        });
 
177
 
 
178
    IN_TXN_ABORT(env, NULL, txn_2, 0, {
 
179
            { int chk_r = do_updates(txn_2, db); CKERR(chk_r); }
 
180
        });
 
181
 
 
182
    { int chk_r = db->close(db,0); CKERR(chk_r); }
 
183
 
 
184
    toku_hard_crash_on_purpose();
 
185
}
 
186
 
 
187
static int verify_unchanged(DB_ENV *env, DB *db)
 
188
{
 
189
    int r = 0;
 
190
    DBT key, val;
 
191
    unsigned int i, *vp;
 
192
    DBT *keyp = dbt_init(&key, &i, sizeof(i));
 
193
    DBT *valp = dbt_init(&val, NULL, 0);
 
194
 
 
195
    IN_TXN_COMMIT(env, NULL, txn_1, 0, {
 
196
            for (i = 0; i < NUM_KEYS; ++i) {
 
197
                r = db->get(db, txn_1, keyp, valp, 0);
 
198
                CKERR(r);
 
199
                assert(val.size == sizeof(*vp));
 
200
                CAST_FROM_VOIDP(vp, val.data);
 
201
                assert(*vp == _v(i));
 
202
            }
 
203
        });
 
204
 
 
205
    return r;
 
206
}
 
207
 
 
208
static void run_recover(void)
 
209
{
 
210
    DB_ENV *env;
 
211
    DB *db;
 
212
 
 
213
    { int chk_r = db_env_create(&env, 0); CKERR(chk_r); }
 
214
    env->set_errfile(env, stderr);
 
215
    env->set_update(env, update_fun);
 
216
    { int chk_r = env->open(env, TOKU_TEST_FILENAME, envflags|DB_RECOVER, S_IRWXU+S_IRWXG+S_IRWXO); CKERR(chk_r); }
 
217
    { int chk_r = db_create(&db, env, 0); CKERR(chk_r); }
 
218
    { int chk_r = db->open(db, NULL, "foo.db", NULL, DB_BTREE, DB_AUTO_COMMIT, 0666); CKERR(chk_r); }
 
219
    { int chk_r = verify_unchanged(env, db); CKERR(chk_r); }
 
220
    { int chk_r = db->close(db, 0); CKERR(chk_r); }
 
221
    { int chk_r = env->close(env, 0); CKERR(chk_r); }
 
222
}
 
223
 
 
224
static int usage(void)
 
225
{
 
226
    return 1;
 
227
}
 
228
 
 
229
int test_main(int argc, char * const argv[])
 
230
{
 
231
    bool do_test = false;
 
232
    bool do_recover = false;
 
233
 
 
234
    for (int i = 1; i < argc; i++) {
 
235
        char * const arg = argv[i];
 
236
        if (strcmp(arg, "-v") == 0) {
 
237
            verbose++;
 
238
            continue;
 
239
        }
 
240
        if (strcmp(arg, "-q") == 0) {
 
241
            verbose--;
 
242
            if (verbose < 0)
 
243
                verbose = 0;
 
244
            continue;
 
245
        }
 
246
        if (strcmp(arg, "--test") == 0) {
 
247
            do_test = true;
 
248
            continue;
 
249
        }
 
250
        if (strcmp(arg, "--recover") == 0) {
 
251
            do_recover = true;
 
252
            continue;
 
253
        }
 
254
        if (strcmp(arg, "--help") == 0) {
 
255
            return usage();
 
256
        }
 
257
    }
 
258
 
 
259
    if (do_test) {
 
260
        run_test();
 
261
    }
 
262
    if (do_recover) {
 
263
        run_recover();
 
264
    }
 
265
 
 
266
    return 0;
 
267
}