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

« back to all changes in this revision

Viewing changes to storage/tokudb/ft-index/portability/toku_crash.h

  • 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
 
 
91
#ifndef PORTABILITY_TOKU_CRASH_H
 
92
#define PORTABILITY_TOKU_CRASH_H
 
93
 
 
94
#include <stdio.h>
 
95
#include <stdlib.h>
 
96
#include <signal.h>
 
97
#include "toku_assert.h"
 
98
 
 
99
//Simulate as hard a crash as possible.
 
100
//Choices:
 
101
//  raise(SIGABRT)
 
102
//  kill -SIGKILL $pid
 
103
//  divide by 0
 
104
//  null dereference
 
105
//  abort()
 
106
//  assert(false) (from <assert.h>)
 
107
//  assert(false) (from <toku_assert.h>)
 
108
//
 
109
//Linux:
 
110
//  abort() and both assert(false) cause FILE buffers to be flushed and written to disk: Unacceptable
 
111
//Windows:
 
112
//  None of them cause file buffers to be flushed/written to disk, however
 
113
//  abort(), assert(false) <assert.h>, null dereference, and divide by 0 cause popups requiring user intervention during tests: Unacceptable
 
114
//
 
115
//kill -SIGKILL $pid is annoying (and so far untested)
 
116
//
 
117
//raise(SIGABRT) has the downside that perhaps it could be caught?
 
118
//I'm choosing raise(SIGABRT), followed by divide by 0, followed by null dereference, followed by all the others just in case one gets caught.
 
119
static void __attribute__((unused, noreturn))
 
120
toku_hard_crash_on_purpose(void) {
 
121
#if TOKU_WINDOWS
 
122
    TerminateProcess(GetCurrentProcess(), 137);
 
123
#else
 
124
    raise(SIGKILL); //Does not flush buffers on linux; cannot be caught.
 
125
#endif
 
126
    {
 
127
        int zero = 0;
 
128
        int infinity = 1/zero;
 
129
        fprintf(stderr, "Force use of %d\n", infinity);
 
130
        fflush(stderr); //Make certain the string is calculated.
 
131
    }
 
132
    {
 
133
        void * intothevoid = NULL;
 
134
        (*(int*)intothevoid)++;
 
135
        fprintf(stderr, "Force use of *(%p) = %d\n", intothevoid, *(int*)intothevoid);
 
136
        fflush(stderr);
 
137
    }
 
138
    abort();
 
139
    fprintf(stderr, "This line should never be printed\n");
 
140
    fflush(stderr);
 
141
}
 
142
 
 
143
// Similar to toku_hard_crash_on_purpose, but the goal isn't to crash hard, the primary goal is to get a corefile, the secondary goal is to terminate in any way possible.
 
144
// We don't really care if buffers get flushed etc, in fact they may as well flush since there may be useful output in stdout or stderr.
 
145
//
 
146
// By default, the following signals generate cores:
 
147
//  Linux, from signal(7):
 
148
//     SIGQUIT       3       Core
 
149
//     SIGILL        4       Core
 
150
//     SIGABRT       6       Core
 
151
//     SIGFPE        8       Core
 
152
//     SIGSEGV      11       Core
 
153
//
 
154
//  Darwin and FreeBSD, from signal(3):
 
155
//     3     SIGQUIT      create core image
 
156
//     4     SIGILL       create core image
 
157
//     5     SIGTRAP      create core image
 
158
//     6     SIGABRT      create core image
 
159
//     7     SIGEMT       create core image
 
160
//     8     SIGFPE       create core image
 
161
//     10    SIGBUS       create core image
 
162
//     11    SIGSEGV      create core image
 
163
//     12    SIGSYS       create core image
 
164
//
 
165
// We'll raise these in some sequence (common ones first), then try emulating the things that would cause these signals to be raised, then eventually just try to die normally and then loop like abort does.
 
166
// Start with a toku assert because that hopefully prints a stacktrace.
 
167
static void __attribute__((unused, noreturn))
 
168
toku_crash_and_dump_core_on_purpose(void) {
 
169
    assert(false);
 
170
    invariant(0);
 
171
    raise(SIGQUIT);
 
172
    raise(SIGILL);
 
173
    raise(SIGABRT);
 
174
    raise(SIGFPE);
 
175
    raise(SIGSEGV);
 
176
#if defined(__FreeBSD__) || defined(__APPLE__)
 
177
    raise(SIGTRAP);
 
178
    raise(SIGEMT);
 
179
    raise(SIGBUS);
 
180
    raise(SIGSYS);
 
181
#endif
 
182
    abort();
 
183
    {
 
184
        int zero = 0;
 
185
        int infinity = 1/zero;
 
186
        fprintf(stderr, "Force use of %d\n", infinity);
 
187
        fflush(stderr); //Make certain the string is calculated.
 
188
    }
 
189
    {
 
190
        void * intothevoid = NULL;
 
191
        (*(int*)intothevoid)++;
 
192
        fprintf(stderr, "Force use of *(%p) = %d\n", intothevoid, *(int*)intothevoid);
 
193
        fflush(stderr);
 
194
    }
 
195
    raise(SIGKILL);
 
196
    while (true) {
 
197
        // don't return
 
198
    }
 
199
}
 
200
 
 
201
void toku_try_gdb_stack_trace(const char *gdb_path);
 
202
 
 
203
#endif // PORTABILITY_TOKU_CRASH_H