blob: f31337d70239e87aae24a42227f021508ae97dd1 [file] [log] [blame]
Mark Salyzyncfd5b082016-10-17 14:28:00 -07001/*
2 * Copyright 2006, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#define LOG_TAG "crasher"
18
Elliott Hughesda6b2e22014-04-23 14:57:32 -070019#include <assert.h>
Elliott Hughes400628a2016-12-14 17:33:46 -080020#include <dirent.h>
Elliott Hughesda6b2e22014-04-23 14:57:32 -070021#include <errno.h>
Josh Gao218f7fb2016-10-07 16:42:05 -070022#include <fcntl.h>
Elliott Hughesda6b2e22014-04-23 14:57:32 -070023#include <pthread.h>
Elliott Hughesda6b2e22014-04-23 14:57:32 -070024#include <signal.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Brigid Smith8606eaa2014-07-07 12:33:50 -070028#include <sys/mman.h>
Josh Gao91ad6532017-02-09 12:37:39 -080029#include <sys/prctl.h>
Elliott Hughesda6b2e22014-04-23 14:57:32 -070030#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080031
Elliott Hughes400628a2016-12-14 17:33:46 -080032// We test both kinds of logging.
Elliott Hughes400628a2016-12-14 17:33:46 -080033#include <android-base/logging.h>
Mark Salyzyn51c33b72017-01-12 15:44:06 -080034#include <log/log.h>
Mark Salyzynf1a8dfa2014-04-30 09:24:08 -070035
Elliott Hughes12b71292017-03-02 19:01:20 -080036#include "seccomp_policy.h"
37
Josh Gao9c02dc52016-06-15 17:29:00 -070038#if defined(STATIC_CRASHER)
Josh Gaocbe70cb2016-10-18 18:17:52 -070039#include "debuggerd/handler.h"
Josh Gao9c02dc52016-06-15 17:29:00 -070040#endif
41
Elliott Hughes0ba53592017-02-01 16:59:15 -080042#if defined(__arm__)
43// See https://www.kernel.org/doc/Documentation/arm/kernel_user_helpers.txt for details.
44#define __kuser_helper_version (*(int32_t*) 0xffff0ffc)
45typedef void * (__kuser_get_tls_t)(void);
46#define __kuser_get_tls (*(__kuser_get_tls_t*) 0xffff0fe0)
47typedef int (__kuser_cmpxchg_t)(int oldval, int newval, volatile int *ptr);
48#define __kuser_cmpxchg (*(__kuser_cmpxchg_t*) 0xffff0fc0)
49typedef void (__kuser_dmb_t)(void);
50#define __kuser_dmb (*(__kuser_dmb_t*) 0xffff0fa0)
51typedef int (__kuser_cmpxchg64_t)(const int64_t*, const int64_t*, volatile int64_t*);
52#define __kuser_cmpxchg64 (*(__kuser_cmpxchg64_t*) 0xffff0f60)
53#endif
54
Elliott Hughes400628a2016-12-14 17:33:46 -080055#define noinline __attribute__((__noinline__))
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
Elliott Hughes400628a2016-12-14 17:33:46 -080057// Avoid name mangling so that stacks are more readable.
58extern "C" {
Elliott Hughes3808c4e2013-04-23 17:14:56 -070059
Elliott Hughes400628a2016-12-14 17:33:46 -080060void crash1(void);
61void crashnostack(void);
Elliott Hughes23d1cad2016-05-10 13:29:58 -070062
Elliott Hughes400628a2016-12-14 17:33:46 -080063int do_action(const char* arg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064
Elliott Hughes400628a2016-12-14 17:33:46 -080065noinline void maybe_abort() {
Elliott Hughesda6b2e22014-04-23 14:57:32 -070066 if (time(0) != 42) {
Elliott Hughes6f40caf2013-06-12 14:04:34 -070067 abort();
68 }
69}
70
Elliott Hughes400628a2016-12-14 17:33:46 -080071char* smash_stack_dummy_buf;
72noinline void smash_stack_dummy_function(volatile int* plen) {
Yabin Cui2331b952014-12-11 17:46:33 -080073 smash_stack_dummy_buf[*plen] = 0;
74}
75
76// This must be marked with "__attribute__ ((noinline))", to ensure the
77// compiler generates the proper stack guards around this function.
78// Assign local array address to global variable to force stack guards.
79// Use another noinline function to corrupt the stack.
Elliott Hughes400628a2016-12-14 17:33:46 -080080noinline int smash_stack(volatile int* plen) {
81 printf("%s: deliberately corrupting stack...\n", getprogname());
Yabin Cui2331b952014-12-11 17:46:33 -080082
83 char buf[128];
84 smash_stack_dummy_buf = buf;
85 // This should corrupt stack guards and make process abort.
86 smash_stack_dummy_function(plen);
87 return 0;
Elliott Hughesdf4200e2013-02-14 14:41:57 -080088}
89
Stephen Hines18395cb2015-09-29 23:55:14 -070090#pragma clang diagnostic push
91#pragma clang diagnostic ignored "-Winfinite-recursion"
92
Elliott Hughes400628a2016-12-14 17:33:46 -080093void* global = 0; // So GCC doesn't optimize the tail recursion out of overflow_stack.
Elliott Hughesb1be27e2013-07-15 17:19:02 -070094
Elliott Hughes400628a2016-12-14 17:33:46 -080095noinline void overflow_stack(void* p) {
Elliott Hughes3808c4e2013-04-23 17:14:56 -070096 void* buf[1];
97 buf[0] = p;
Elliott Hughesb1be27e2013-07-15 17:19:02 -070098 global = buf;
Elliott Hughes3808c4e2013-04-23 17:14:56 -070099 overflow_stack(&buf);
100}
101
Stephen Hines18395cb2015-09-29 23:55:14 -0700102#pragma clang diagnostic pop
103
Elliott Hughes400628a2016-12-14 17:33:46 -0800104noinline void* thread_callback(void* raw_arg) {
105 const char* arg = reinterpret_cast<const char*>(raw_arg);
106 return reinterpret_cast<void*>(static_cast<uintptr_t>(do_action(arg)));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107}
108
Elliott Hughes400628a2016-12-14 17:33:46 -0800109noinline int do_action_on_thread(const char* arg) {
Elliott Hughesaa421302012-12-10 14:15:42 -0800110 pthread_t t;
Elliott Hughes400628a2016-12-14 17:33:46 -0800111 pthread_create(&t, nullptr, thread_callback, const_cast<char*>(arg));
112 void* result = nullptr;
Elliott Hughesaa421302012-12-10 14:15:42 -0800113 pthread_join(t, &result);
Elliott Hughes400628a2016-12-14 17:33:46 -0800114 return reinterpret_cast<uintptr_t>(result);
Elliott Hughesaa421302012-12-10 14:15:42 -0800115}
116
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700117noinline int crash_null() {
118 int (*null_func)() = nullptr;
119 return null_func();
120}
121
Elliott Hughes400628a2016-12-14 17:33:46 -0800122noinline int crash3(int a) {
123 *reinterpret_cast<int*>(0xdead) = a;
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700124 return a*4;
Pavel Chupinaf2cb362013-03-08 13:17:35 +0400125}
126
Elliott Hughes400628a2016-12-14 17:33:46 -0800127noinline int crash2(int a) {
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700128 a = crash3(a) + 2;
129 return a*3;
Pavel Chupinaf2cb362013-03-08 13:17:35 +0400130}
131
Elliott Hughes400628a2016-12-14 17:33:46 -0800132noinline int crash(int a) {
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700133 a = crash2(a) + 1;
134 return a*2;
Pavel Chupinaf2cb362013-03-08 13:17:35 +0400135}
136
Elliott Hughes400628a2016-12-14 17:33:46 -0800137noinline void abuse_heap() {
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700138 char buf[16];
Elliott Hughes400628a2016-12-14 17:33:46 -0800139 free(buf); // GCC is smart enough to warn about this, but we're doing it deliberately.
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700140}
141
Josh Gao399b4ee2017-06-30 12:46:31 -0700142noinline void leak() {
143 while (true) {
144 void* mapping =
145 mmap(nullptr, PAGE_SIZE, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
146 static_cast<volatile char*>(mapping)[0] = 'a';
147 }
148}
149
Elliott Hughes400628a2016-12-14 17:33:46 -0800150noinline void sigsegv_non_null() {
Brigid Smith7b2078e2014-06-17 14:55:47 -0700151 int* a = (int *)(&do_action);
152 *a = 42;
153}
154
Elliott Hughes400628a2016-12-14 17:33:46 -0800155noinline void fprintf_null() {
156 fprintf(nullptr, "oops");
157}
Elliott Hughes3808c4e2013-04-23 17:14:56 -0700158
Elliott Hughes400628a2016-12-14 17:33:46 -0800159noinline void readdir_null() {
160 readdir(nullptr);
161}
162
163noinline int strlen_null() {
164 char* sneaky_null = nullptr;
165 return strlen(sneaky_null);
166}
167
168static int usage() {
169 fprintf(stderr, "usage: %s KIND\n", getprogname());
170 fprintf(stderr, "\n");
171 fprintf(stderr, "where KIND is:\n");
172 fprintf(stderr, " smash-stack overwrite a -fstack-protector guard\n");
173 fprintf(stderr, " stack-overflow recurse until the stack overflows\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800174 fprintf(stderr, " nostack crash with a NULL stack pointer\n");
175 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800176 fprintf(stderr, " heap-usage cause a libc abort by abusing a heap function\n");
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700177 fprintf(stderr, " call-null cause a crash by calling through a nullptr\n");
Josh Gao399b4ee2017-06-30 12:46:31 -0700178 fprintf(stderr, " leak leak memory until we get OOM-killed\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800179 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800180 fprintf(stderr, " abort call abort()\n");
181 fprintf(stderr, " assert call assert() without a function\n");
182 fprintf(stderr, " assert2 call assert() with a function\n");
183 fprintf(stderr, " exit call exit(1)\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800184 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800185 fprintf(stderr, " fortify fail a _FORTIFY_SOURCE check\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800186 fprintf(stderr, " seccomp fail a seccomp check\n");
187#if defined(__arm__)
188 fprintf(stderr, " kuser_helper_version call kuser_helper_version\n");
189 fprintf(stderr, " kuser_get_tls call kuser_get_tls\n");
190 fprintf(stderr, " kuser_cmpxchg call kuser_cmpxchg\n");
191 fprintf(stderr, " kuser_memory_barrier call kuser_memory_barrier\n");
192 fprintf(stderr, " kuser_cmpxchg64 call kuser_cmpxchg64\n");
193#endif
194 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800195 fprintf(stderr, " LOG_ALWAYS_FATAL call liblog LOG_ALWAYS_FATAL\n");
196 fprintf(stderr, " LOG_ALWAYS_FATAL_IF call liblog LOG_ALWAYS_FATAL_IF\n");
197 fprintf(stderr, " LOG-FATAL call libbase LOG(FATAL)\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800198 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800199 fprintf(stderr, " SIGFPE cause a SIGFPE\n");
Elliott Hughes2baf4432018-05-30 12:55:04 -0700200 fprintf(stderr, " SIGILL cause a SIGILL\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800201 fprintf(stderr, " SIGSEGV cause a SIGSEGV at address 0x0 (synonym: crash)\n");
202 fprintf(stderr, " SIGSEGV-non-null cause a SIGSEGV at a non-zero address\n");
203 fprintf(stderr, " SIGSEGV-unmapped mmap/munmap a region of memory and then attempt to access it\n");
204 fprintf(stderr, " SIGTRAP cause a SIGTRAP\n");
Elliott Hughes0ba53592017-02-01 16:59:15 -0800205 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800206 fprintf(stderr, " fprintf-NULL pass a null pointer to fprintf\n");
207 fprintf(stderr, " readdir-NULL pass a null pointer to readdir\n");
208 fprintf(stderr, " strlen-NULL pass a null pointer to strlen\n");
Elliott Hughesda9e3952017-02-17 10:26:48 -0800209 fprintf(stderr, " pthread_join-NULL pass a null pointer to pthread_join\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800210 fprintf(stderr, "\n");
Josh Gao91ad6532017-02-09 12:37:39 -0800211 fprintf(stderr, " no_new_privs set PR_SET_NO_NEW_PRIVS and then abort\n");
212 fprintf(stderr, "\n");
Elliott Hughes400628a2016-12-14 17:33:46 -0800213 fprintf(stderr, "prefix any of the above with 'thread-' to run on a new thread\n");
214 fprintf(stderr, "prefix any of the above with 'exhaustfd-' to exhaust\n");
215 fprintf(stderr, "all available file descriptors before crashing.\n");
216 fprintf(stderr, "prefix any of the above with 'wait-' to wait until input is received on stdin\n");
217
218 return EXIT_FAILURE;
219}
220
221noinline int do_action(const char* arg) {
222 // Prefixes.
Josh Gao100ce392016-10-31 17:37:37 -0700223 if (!strncmp(arg, "wait-", strlen("wait-"))) {
224 char buf[1];
225 TEMP_FAILURE_RETRY(read(STDIN_FILENO, buf, sizeof(buf)));
226 return do_action(arg + strlen("wait-"));
227 } else if (!strncmp(arg, "exhaustfd-", strlen("exhaustfd-"))) {
Josh Gao218f7fb2016-10-07 16:42:05 -0700228 errno = 0;
229 while (errno != EMFILE) {
230 open("/dev/null", O_RDONLY);
231 }
232 return do_action(arg + strlen("exhaustfd-"));
233 } else if (!strncmp(arg, "thread-", strlen("thread-"))) {
Elliott Hughesaa421302012-12-10 14:15:42 -0800234 return do_action_on_thread(arg + strlen("thread-"));
Elliott Hughes400628a2016-12-14 17:33:46 -0800235 }
236
237 // Actions.
238 if (!strcasecmp(arg, "SIGSEGV-non-null")) {
Brigid Smith7b2078e2014-06-17 14:55:47 -0700239 sigsegv_non_null();
Elliott Hughes400628a2016-12-14 17:33:46 -0800240 } else if (!strcasecmp(arg, "smash-stack")) {
Yabin Cui2331b952014-12-11 17:46:33 -0800241 volatile int len = 128;
242 return smash_stack(&len);
Elliott Hughes400628a2016-12-14 17:33:46 -0800243 } else if (!strcasecmp(arg, "stack-overflow")) {
244 overflow_stack(nullptr);
245 } else if (!strcasecmp(arg, "nostack")) {
Elliott Hughes3808c4e2013-04-23 17:14:56 -0700246 crashnostack();
Elliott Hughes400628a2016-12-14 17:33:46 -0800247 } else if (!strcasecmp(arg, "exit")) {
Elliott Hughes3808c4e2013-04-23 17:14:56 -0700248 exit(1);
Christopher Ferrisb9de87f2017-09-20 13:37:24 -0700249 } else if (!strcasecmp(arg, "call-null")) {
250 return crash_null();
Elliott Hughes400628a2016-12-14 17:33:46 -0800251 } else if (!strcasecmp(arg, "crash") || !strcmp(arg, "SIGSEGV")) {
Elliott Hughes3808c4e2013-04-23 17:14:56 -0700252 return crash(42);
Elliott Hughes400628a2016-12-14 17:33:46 -0800253 } else if (!strcasecmp(arg, "abort")) {
Elliott Hughesda6b2e22014-04-23 14:57:32 -0700254 maybe_abort();
Elliott Hughes400628a2016-12-14 17:33:46 -0800255 } else if (!strcasecmp(arg, "assert")) {
Elliott Hughesda6b2e22014-04-23 14:57:32 -0700256 __assert("some_file.c", 123, "false");
Elliott Hughes400628a2016-12-14 17:33:46 -0800257 } else if (!strcasecmp(arg, "assert2")) {
Elliott Hughes3ecc4212014-07-15 11:38:47 -0700258 __assert2("some_file.c", 123, "some_function", "false");
Elliott Hughes400628a2016-12-14 17:33:46 -0800259 } else if (!strcasecmp(arg, "fortify")) {
Elliott Hughes23d1cad2016-05-10 13:29:58 -0700260 char buf[10];
261 __read_chk(-1, buf, 32, 10);
262 while (true) pause();
Elliott Hughes400628a2016-12-14 17:33:46 -0800263 } else if (!strcasecmp(arg, "LOG(FATAL)")) {
264 LOG(FATAL) << "hello " << 123;
265 } else if (!strcasecmp(arg, "LOG_ALWAYS_FATAL")) {
Elliott Hughesda6b2e22014-04-23 14:57:32 -0700266 LOG_ALWAYS_FATAL("hello %s", "world");
Elliott Hughes400628a2016-12-14 17:33:46 -0800267 } else if (!strcasecmp(arg, "LOG_ALWAYS_FATAL_IF")) {
Elliott Hughesda6b2e22014-04-23 14:57:32 -0700268 LOG_ALWAYS_FATAL_IF(true, "hello %s", "world");
Elliott Hughes400628a2016-12-14 17:33:46 -0800269 } else if (!strcasecmp(arg, "SIGFPE")) {
Elliott Hughes3ecc4212014-07-15 11:38:47 -0700270 raise(SIGFPE);
271 return EXIT_SUCCESS;
Elliott Hughes2baf4432018-05-30 12:55:04 -0700272 } else if (!strcasecmp(arg, "SIGILL")) {
273#if defined(__aarch64__)
274 __asm__ volatile(".word 0\n");
275#elif defined(__arm__)
276 __asm__ volatile(".word 0xe7f0def0\n");
277#elif defined(__i386__) || defined(__x86_64__)
278 __asm__ volatile("ud2\n");
279#else
280#error
281#endif
Elliott Hughes400628a2016-12-14 17:33:46 -0800282 } else if (!strcasecmp(arg, "SIGTRAP")) {
Elliott Hughes7e35ae82014-05-16 17:05:19 -0700283 raise(SIGTRAP);
284 return EXIT_SUCCESS;
Elliott Hughes400628a2016-12-14 17:33:46 -0800285 } else if (!strcasecmp(arg, "fprintf-NULL")) {
286 fprintf_null();
287 } else if (!strcasecmp(arg, "readdir-NULL")) {
288 readdir_null();
289 } else if (!strcasecmp(arg, "strlen-NULL")) {
290 return strlen_null();
Elliott Hughesda9e3952017-02-17 10:26:48 -0800291 } else if (!strcasecmp(arg, "pthread_join-NULL")) {
292 return pthread_join(0, nullptr);
Elliott Hughes400628a2016-12-14 17:33:46 -0800293 } else if (!strcasecmp(arg, "heap-usage")) {
Elliott Hughes6f40caf2013-06-12 14:04:34 -0700294 abuse_heap();
Josh Gao399b4ee2017-06-30 12:46:31 -0700295 } else if (!strcasecmp(arg, "leak")) {
296 leak();
Elliott Hughes400628a2016-12-14 17:33:46 -0800297 } else if (!strcasecmp(arg, "SIGSEGV-unmapped")) {
298 char* map = reinterpret_cast<char*>(mmap(nullptr, sizeof(int), PROT_READ | PROT_WRITE,
299 MAP_SHARED | MAP_ANONYMOUS, -1, 0));
Brigid Smith8606eaa2014-07-07 12:33:50 -0700300 munmap(map, sizeof(int));
301 map[0] = '8';
Elliott Hughes0ba53592017-02-01 16:59:15 -0800302 } else if (!strcasecmp(arg, "seccomp")) {
Victor Hsieh9a0e12d2017-12-22 14:35:28 -0800303 set_system_seccomp_filter();
Elliott Hughes0ba53592017-02-01 16:59:15 -0800304 syscall(99999);
305#if defined(__arm__)
306 } else if (!strcasecmp(arg, "kuser_helper_version")) {
307 return __kuser_helper_version;
308 } else if (!strcasecmp(arg, "kuser_get_tls")) {
309 return !__kuser_get_tls();
310 } else if (!strcasecmp(arg, "kuser_cmpxchg")) {
311 return __kuser_cmpxchg(0, 0, 0);
312 } else if (!strcasecmp(arg, "kuser_memory_barrier")) {
313 __kuser_dmb();
314 } else if (!strcasecmp(arg, "kuser_cmpxchg64")) {
315 return __kuser_cmpxchg64(0, 0, 0);
316#endif
Josh Gao91ad6532017-02-09 12:37:39 -0800317 } else if (!strcasecmp(arg, "no_new_privs")) {
318 if (prctl(PR_SET_NO_NEW_PRIVS, 1) != 0) {
319 fprintf(stderr, "prctl(PR_SET_NO_NEW_PRIVS, 1) failed: %s\n", strerror(errno));
320 return EXIT_SUCCESS;
321 }
322 abort();
Elliott Hughes400628a2016-12-14 17:33:46 -0800323 } else {
324 return usage();
Elliott Hughesaa421302012-12-10 14:15:42 -0800325 }
326
Elliott Hughes400628a2016-12-14 17:33:46 -0800327 fprintf(stderr, "%s: exiting normally!\n", getprogname());
Elliott Hughes3808c4e2013-04-23 17:14:56 -0700328 return EXIT_SUCCESS;
Elliott Hughesaa421302012-12-10 14:15:42 -0800329}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800330
Elliott Hughes400628a2016-12-14 17:33:46 -0800331int main(int argc, char** argv) {
Josh Gao9c02dc52016-06-15 17:29:00 -0700332#if defined(STATIC_CRASHER)
333 debuggerd_callbacks_t callbacks = {
334 .get_abort_message = []() {
335 static struct {
336 size_t size;
337 char msg[32];
338 } msg;
339
340 msg.size = strlen("dummy abort message");
341 memcpy(msg.msg, "dummy abort message", strlen("dummy abort message"));
342 return reinterpret_cast<abort_msg_t*>(&msg);
343 },
344 .post_dump = nullptr
345 };
346 debuggerd_init(&callbacks);
347#endif
348
Elliott Hughes400628a2016-12-14 17:33:46 -0800349 if (argc == 1) crash1();
350 else if (argc == 2) return do_action(argv[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800351
Elliott Hughes400628a2016-12-14 17:33:46 -0800352 return usage();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800353}
Elliott Hughes400628a2016-12-14 17:33:46 -0800354
355};