2019-08-14 10:47:11 +02:00
|
|
|
//===-- sanitizer_stacktrace.cpp ------------------------------------------===//
|
2012-11-12 16:53:47 +01:00
|
|
|
//
|
2019-08-14 10:47:11 +02:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2012-11-12 16:53:47 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file is shared between AddressSanitizer and ThreadSanitizer
|
|
|
|
// run-time libraries.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-10-16 10:03:04 +02:00
|
|
|
#include "sanitizer_stacktrace.h"
|
|
|
|
|
2012-11-12 16:53:47 +01:00
|
|
|
#include "sanitizer_common.h"
|
2013-12-05 10:18:38 +01:00
|
|
|
#include "sanitizer_flags.h"
|
2020-10-16 10:03:04 +02:00
|
|
|
#include "sanitizer_platform.h"
|
2021-05-12 14:37:22 +02:00
|
|
|
#include "sanitizer_ptrauth.h"
|
2012-11-12 16:53:47 +01:00
|
|
|
|
|
|
|
namespace __sanitizer {
|
|
|
|
|
2015-10-21 09:32:45 +02:00
|
|
|
uptr StackTrace::GetNextInstructionPc(uptr pc) {
|
2019-03-13 10:05:43 +01:00
|
|
|
#if defined(__sparc__) || defined(__mips__)
|
2015-10-21 09:32:45 +02:00
|
|
|
return pc + 8;
|
2021-09-27 19:43:33 +02:00
|
|
|
#elif defined(__powerpc__) || defined(__arm__) || defined(__aarch64__) || \
|
|
|
|
defined(__hexagon__)
|
2021-11-04 09:20:14 +01:00
|
|
|
return STRIP_PAC_PC((void *)pc) + 4;
|
2020-10-16 10:03:04 +02:00
|
|
|
#elif SANITIZER_RISCV64
|
|
|
|
// Current check order is 4 -> 2 -> 6 -> 8
|
|
|
|
u8 InsnByte = *(u8 *)(pc);
|
|
|
|
if (((InsnByte & 0x3) == 0x3) && ((InsnByte & 0x1c) != 0x1c)) {
|
|
|
|
// xxxxxxxxxxxbbb11 | 32 bit | bbb != 111
|
|
|
|
return pc + 4;
|
|
|
|
}
|
|
|
|
if ((InsnByte & 0x3) != 0x3) {
|
|
|
|
// xxxxxxxxxxxxxxaa | 16 bit | aa != 11
|
|
|
|
return pc + 2;
|
|
|
|
}
|
|
|
|
// RISC-V encoding allows instructions to be up to 8 bytes long
|
|
|
|
if ((InsnByte & 0x3f) == 0x1f) {
|
|
|
|
// xxxxxxxxxx011111 | 48 bit |
|
|
|
|
return pc + 6;
|
|
|
|
}
|
|
|
|
if ((InsnByte & 0x7f) == 0x3f) {
|
|
|
|
// xxxxxxxxx0111111 | 64 bit |
|
|
|
|
return pc + 8;
|
|
|
|
}
|
|
|
|
// bail-out if could not figure out the instruction size
|
|
|
|
return 0;
|
2012-11-23 15:46:25 +01:00
|
|
|
#else
|
2015-10-21 09:32:45 +02:00
|
|
|
return pc + 1;
|
2012-11-23 15:46:25 +01:00
|
|
|
#endif
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uptr StackTrace::GetCurrentPc() {
|
|
|
|
return GET_CALLER_PC();
|
|
|
|
}
|
|
|
|
|
2014-11-13 21:41:38 +01:00
|
|
|
void BufferedStackTrace::Init(const uptr *pcs, uptr cnt, uptr extra_top_pc) {
|
|
|
|
size = cnt + !!extra_top_pc;
|
|
|
|
CHECK_LE(size, kStackTraceMax);
|
|
|
|
internal_memcpy(trace_buffer, pcs, cnt * sizeof(trace_buffer[0]));
|
|
|
|
if (extra_top_pc)
|
|
|
|
trace_buffer[cnt] = extra_top_pc;
|
|
|
|
top_frame_bp = 0;
|
|
|
|
}
|
|
|
|
|
2021-09-27 19:43:33 +02:00
|
|
|
// Sparc implementation is in its own file.
|
2018-10-31 12:14:23 +01:00
|
|
|
#if !defined(__sparc__)
|
|
|
|
|
2014-09-23 19:59:53 +02:00
|
|
|
// In GCC on ARM bp points to saved lr, not fp, so we should check the next
|
|
|
|
// cell in stack to be a saved frame pointer. GetCanonicFrame returns the
|
|
|
|
// pointer to saved frame pointer in any case.
|
|
|
|
static inline uhwptr *GetCanonicFrame(uptr bp,
|
|
|
|
uptr stack_top,
|
|
|
|
uptr stack_bottom) {
|
2019-08-14 10:47:11 +02:00
|
|
|
CHECK_GT(stack_top, stack_bottom);
|
2014-09-23 19:59:53 +02:00
|
|
|
#ifdef __arm__
|
|
|
|
if (!IsValidFrame(bp, stack_top, stack_bottom)) return 0;
|
|
|
|
uhwptr *bp_prev = (uhwptr *)bp;
|
|
|
|
if (IsValidFrame((uptr)bp_prev[0], stack_top, stack_bottom)) return bp_prev;
|
2014-11-13 21:41:38 +01:00
|
|
|
// The next frame pointer does not look right. This could be a GCC frame, step
|
|
|
|
// back by 1 word and try again.
|
|
|
|
if (IsValidFrame((uptr)bp_prev[-1], stack_top, stack_bottom))
|
|
|
|
return bp_prev - 1;
|
|
|
|
// Nope, this does not look right either. This means the frame after next does
|
|
|
|
// not have a valid frame pointer, but we can still extract the caller PC.
|
|
|
|
// Unfortunately, there is no way to decide between GCC and LLVM frame
|
2021-07-20 19:46:51 +02:00
|
|
|
// layouts. Assume GCC.
|
|
|
|
return bp_prev - 1;
|
2014-09-23 19:59:53 +02:00
|
|
|
#else
|
|
|
|
return (uhwptr*)bp;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-08-14 10:47:11 +02:00
|
|
|
void BufferedStackTrace::UnwindFast(uptr pc, uptr bp, uptr stack_top,
|
|
|
|
uptr stack_bottom, u32 max_depth) {
|
|
|
|
// TODO(yln): add arg sanity check for stack_top/stack_bottom
|
2014-05-22 09:09:21 +02:00
|
|
|
CHECK_GE(max_depth, 2);
|
2019-08-14 10:47:11 +02:00
|
|
|
const uptr kPageSize = GetPageSizeCached();
|
2014-11-13 21:41:38 +01:00
|
|
|
trace_buffer[0] = pc;
|
2012-11-12 16:53:47 +01:00
|
|
|
size = 1;
|
2013-11-04 22:33:31 +01:00
|
|
|
if (stack_top < 4096) return; // Sanity check for stack top.
|
2014-09-23 19:59:53 +02:00
|
|
|
uhwptr *frame = GetCanonicFrame(bp, stack_top, stack_bottom);
|
2014-11-13 21:41:38 +01:00
|
|
|
// Lowest possible address that makes sense as the next frame pointer.
|
|
|
|
// Goes up as we walk the stack.
|
|
|
|
uptr bottom = stack_bottom;
|
2013-02-21 11:57:10 +01:00
|
|
|
// Avoid infinite loop when frame == frame[0] by using frame > prev_frame.
|
2014-11-13 21:41:38 +01:00
|
|
|
while (IsValidFrame((uptr)frame, stack_top, bottom) &&
|
2013-11-04 22:33:31 +01:00
|
|
|
IsAligned((uptr)frame, sizeof(*frame)) &&
|
2013-12-05 10:18:38 +01:00
|
|
|
size < max_depth) {
|
2015-07-29 05:33:10 +02:00
|
|
|
#ifdef __powerpc__
|
2021-07-20 19:46:51 +02:00
|
|
|
// PowerPC ABIs specify that the return address is saved on the
|
|
|
|
// *caller's* stack frame. Thus we must dereference the back chain
|
|
|
|
// to find the caller frame before extracting it.
|
2015-07-29 05:33:10 +02:00
|
|
|
uhwptr *caller_frame = (uhwptr*)frame[0];
|
|
|
|
if (!IsValidFrame((uptr)caller_frame, stack_top, bottom) ||
|
2015-10-21 09:32:45 +02:00
|
|
|
!IsAligned((uptr)caller_frame, sizeof(uhwptr)))
|
2015-07-29 05:33:10 +02:00
|
|
|
break;
|
2021-07-20 19:46:51 +02:00
|
|
|
// For most ABIs the offset where the return address is saved is two
|
|
|
|
// register sizes. The exception is the SVR4 ABI, which uses an
|
|
|
|
// offset of only one register size.
|
|
|
|
#ifdef _CALL_SYSV
|
|
|
|
uhwptr pc1 = caller_frame[1];
|
|
|
|
#else
|
2015-07-29 05:33:10 +02:00
|
|
|
uhwptr pc1 = caller_frame[2];
|
2021-07-20 19:46:51 +02:00
|
|
|
#endif
|
2016-11-08 23:04:09 +01:00
|
|
|
#elif defined(__s390__)
|
|
|
|
uhwptr pc1 = frame[14];
|
2020-10-16 10:03:04 +02:00
|
|
|
#elif defined(__riscv)
|
|
|
|
// frame[-1] contains the return address
|
|
|
|
uhwptr pc1 = frame[-1];
|
2015-07-29 05:33:10 +02:00
|
|
|
#else
|
2021-05-12 14:37:22 +02:00
|
|
|
uhwptr pc1 = STRIP_PAC_PC((void *)frame[1]);
|
2015-07-29 05:33:10 +02:00
|
|
|
#endif
|
2016-11-08 23:04:09 +01:00
|
|
|
// Let's assume that any pointer in the 0th page (i.e. <0x1000 on i386 and
|
|
|
|
// x86_64) is invalid and stop unwinding here. If we're adding support for
|
|
|
|
// a platform where this isn't true, we need to reconsider this check.
|
|
|
|
if (pc1 < kPageSize)
|
|
|
|
break;
|
2012-11-12 16:53:47 +01:00
|
|
|
if (pc1 != pc) {
|
2014-11-13 21:41:38 +01:00
|
|
|
trace_buffer[size++] = (uptr) pc1;
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
2014-11-13 21:41:38 +01:00
|
|
|
bottom = (uptr)frame;
|
2020-10-16 10:03:04 +02:00
|
|
|
#if defined(__riscv)
|
|
|
|
// frame[-2] contain fp of the previous frame
|
|
|
|
uptr new_bp = (uptr)frame[-2];
|
|
|
|
#else
|
|
|
|
uptr new_bp = (uptr)frame[0];
|
|
|
|
#endif
|
|
|
|
frame = GetCanonicFrame(new_bp, stack_top, bottom);
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 12:14:23 +01:00
|
|
|
#endif // !defined(__sparc__)
|
|
|
|
|
2014-11-13 21:41:38 +01:00
|
|
|
void BufferedStackTrace::PopStackFrames(uptr count) {
|
2014-05-22 09:09:21 +02:00
|
|
|
CHECK_LT(count, size);
|
2012-11-23 15:46:25 +01:00
|
|
|
size -= count;
|
2014-05-22 09:09:21 +02:00
|
|
|
for (uptr i = 0; i < size; ++i) {
|
2014-11-13 21:41:38 +01:00
|
|
|
trace_buffer[i] = trace_buffer[i + count];
|
2012-11-23 15:46:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins...
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
builtins, store max (log2 (align), 0) into uchar field instead of
align into uptr field.
(ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins,
store uchar 0 field instead of uptr 0 field.
(instrument_nonnull_return): Use _v1 suffixed nonnull return builtin,
instead of passing one address of struct with 2 locations pass
two addresses of structs with 1 location each.
* sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed.
(BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins.
* c-c++-common/ubsan/float-cast-overflow-1.c: Drop value keyword
from expected output regexps.
* c-c++-common/ubsan/float-cast-overflow-2.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-3.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-4.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-5.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-6.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-8.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-9.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-10.c: Likewise.
* g++.dg/ubsan/float-cast-overflow-bf.C: Likewise.
* gcc.dg/ubsan/float-cast-overflow-bf.c: Likewise.
* g++.dg/asan/default-options-1.C (__asan_default_options): Add
used attribute.
* g++.dg/asan/asan_test.C: Run with ASAN_OPTIONS=handle_segv=2
in the environment.
* All source files: Merge from upstream 315899.
* asan/Makefile.am (nodist_saninclude_HEADERS): Add
include/sanitizer/tsan_interface.h.
* asan/libtool-version: Bump the libasan SONAME.
* lsan/Makefile.am (sanitizer_lsan_files): Add lsan_common_mac.cc.
(lsan_files): Add lsan_linux.cc, lsan_mac.cc and lsan_malloc_mac.cc.
* sanitizer_common/Makefile.am (sanitizer_common_files): Add
sancov_flags.cc, sanitizer_allocator_checks.cc,
sanitizer_coverage_libcdep_new.cc, sanitizer_errno.cc,
sanitizer_file.cc, sanitizer_mac_libcdep.cc and
sanitizer_stoptheworld_mac.cc. Remove sanitizer_coverage_libcdep.cc
and sanitizer_coverage_mapping_libcdep.cc.
* tsan/Makefile.am (tsan_files): Add tsan_external.cc.
* ubsan/Makefile.am (DEFS): Add -DUBSAN_CAN_USE_CXXABI=1.
(ubsan_files): Add ubsan_init_standalone.cc and
ubsan_signals_standalone.cc.
* ubsan/libtool-version: Bump the libubsan SONAME.
* asan/Makefile.in: Regenerate.
* lsan/Makefile.in: Regenerate.
* sanitizer_common/Makefile.in: Regenerate.
* tsan/Makefile.in: Regenerate.
* ubsan/Makefile.in: Regenerate.
From-SVN: r253887
2017-10-19 13:23:59 +02:00
|
|
|
static uptr Distance(uptr a, uptr b) { return a < b ? b - a : a - b; }
|
|
|
|
|
2014-11-13 21:41:38 +01:00
|
|
|
uptr BufferedStackTrace::LocatePcInTrace(uptr pc) {
|
ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins...
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
builtins, store max (log2 (align), 0) into uchar field instead of
align into uptr field.
(ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins,
store uchar 0 field instead of uptr 0 field.
(instrument_nonnull_return): Use _v1 suffixed nonnull return builtin,
instead of passing one address of struct with 2 locations pass
two addresses of structs with 1 location each.
* sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed.
(BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins.
* c-c++-common/ubsan/float-cast-overflow-1.c: Drop value keyword
from expected output regexps.
* c-c++-common/ubsan/float-cast-overflow-2.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-3.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-4.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-5.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-6.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-8.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-9.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-10.c: Likewise.
* g++.dg/ubsan/float-cast-overflow-bf.C: Likewise.
* gcc.dg/ubsan/float-cast-overflow-bf.c: Likewise.
* g++.dg/asan/default-options-1.C (__asan_default_options): Add
used attribute.
* g++.dg/asan/asan_test.C: Run with ASAN_OPTIONS=handle_segv=2
in the environment.
* All source files: Merge from upstream 315899.
* asan/Makefile.am (nodist_saninclude_HEADERS): Add
include/sanitizer/tsan_interface.h.
* asan/libtool-version: Bump the libasan SONAME.
* lsan/Makefile.am (sanitizer_lsan_files): Add lsan_common_mac.cc.
(lsan_files): Add lsan_linux.cc, lsan_mac.cc and lsan_malloc_mac.cc.
* sanitizer_common/Makefile.am (sanitizer_common_files): Add
sancov_flags.cc, sanitizer_allocator_checks.cc,
sanitizer_coverage_libcdep_new.cc, sanitizer_errno.cc,
sanitizer_file.cc, sanitizer_mac_libcdep.cc and
sanitizer_stoptheworld_mac.cc. Remove sanitizer_coverage_libcdep.cc
and sanitizer_coverage_mapping_libcdep.cc.
* tsan/Makefile.am (tsan_files): Add tsan_external.cc.
* ubsan/Makefile.am (DEFS): Add -DUBSAN_CAN_USE_CXXABI=1.
(ubsan_files): Add ubsan_init_standalone.cc and
ubsan_signals_standalone.cc.
* ubsan/libtool-version: Bump the libubsan SONAME.
* asan/Makefile.in: Regenerate.
* lsan/Makefile.in: Regenerate.
* sanitizer_common/Makefile.in: Regenerate.
* tsan/Makefile.in: Regenerate.
* ubsan/Makefile.in: Regenerate.
From-SVN: r253887
2017-10-19 13:23:59 +02:00
|
|
|
uptr best = 0;
|
|
|
|
for (uptr i = 1; i < size; ++i) {
|
|
|
|
if (Distance(trace[i], pc) < Distance(trace[best], pc)) best = i;
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch builtins...
* ubsan.c (ubsan_expand_null_ifn): Use _v1 suffixed type mismatch
builtins, store max (log2 (align), 0) into uchar field instead of
align into uptr field.
(ubsan_expand_objsize_ifn): Use _v1 suffixed type mismatch builtins,
store uchar 0 field instead of uptr 0 field.
(instrument_nonnull_return): Use _v1 suffixed nonnull return builtin,
instead of passing one address of struct with 2 locations pass
two addresses of structs with 1 location each.
* sanitizer.def (BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_ABORT): Removed.
(BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1,
BUILT_IN_UBSAN_HANDLE_TYPE_MISMATCH_V1_ABORT,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1,
BUILT_IN_UBSAN_HANDLE_NONNULL_RETURN_V1_ABORT): New builtins.
* c-c++-common/ubsan/float-cast-overflow-1.c: Drop value keyword
from expected output regexps.
* c-c++-common/ubsan/float-cast-overflow-2.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-3.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-4.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-5.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-6.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-8.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-9.c: Likewise.
* c-c++-common/ubsan/float-cast-overflow-10.c: Likewise.
* g++.dg/ubsan/float-cast-overflow-bf.C: Likewise.
* gcc.dg/ubsan/float-cast-overflow-bf.c: Likewise.
* g++.dg/asan/default-options-1.C (__asan_default_options): Add
used attribute.
* g++.dg/asan/asan_test.C: Run with ASAN_OPTIONS=handle_segv=2
in the environment.
* All source files: Merge from upstream 315899.
* asan/Makefile.am (nodist_saninclude_HEADERS): Add
include/sanitizer/tsan_interface.h.
* asan/libtool-version: Bump the libasan SONAME.
* lsan/Makefile.am (sanitizer_lsan_files): Add lsan_common_mac.cc.
(lsan_files): Add lsan_linux.cc, lsan_mac.cc and lsan_malloc_mac.cc.
* sanitizer_common/Makefile.am (sanitizer_common_files): Add
sancov_flags.cc, sanitizer_allocator_checks.cc,
sanitizer_coverage_libcdep_new.cc, sanitizer_errno.cc,
sanitizer_file.cc, sanitizer_mac_libcdep.cc and
sanitizer_stoptheworld_mac.cc. Remove sanitizer_coverage_libcdep.cc
and sanitizer_coverage_mapping_libcdep.cc.
* tsan/Makefile.am (tsan_files): Add tsan_external.cc.
* ubsan/Makefile.am (DEFS): Add -DUBSAN_CAN_USE_CXXABI=1.
(ubsan_files): Add ubsan_init_standalone.cc and
ubsan_signals_standalone.cc.
* ubsan/libtool-version: Bump the libubsan SONAME.
* asan/Makefile.in: Regenerate.
* lsan/Makefile.in: Regenerate.
* sanitizer_common/Makefile.in: Regenerate.
* tsan/Makefile.in: Regenerate.
* ubsan/Makefile.in: Regenerate.
From-SVN: r253887
2017-10-19 13:23:59 +02:00
|
|
|
return best;
|
2012-11-12 16:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace __sanitizer
|