/* Copyright (c) 2018. The YARA Authors. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include "util.h" #define BITMAP_SIZE 512 void assert_clear_all(YR_BITMASK* bitmask) { for (int i = 0; i < BITMAP_SIZE; i++) { if (yr_bitmask_is_set(bitmask, i)) { fprintf(stderr, "bit %d is set and should not\n", i); exit(EXIT_FAILURE); } } } void test_set_clear() { YR_BITMASK bitmask[YR_BITMASK_SIZE(BITMAP_SIZE)]; yr_bitmask_clear_all(bitmask); assert_clear_all(bitmask); yr_bitmask_set(bitmask, 0); if (yr_bitmask_is_not_set(bitmask, 0)) exit(EXIT_FAILURE); yr_bitmask_clear(bitmask, 0); if (yr_bitmask_is_set(bitmask, 0)) exit(EXIT_FAILURE); yr_bitmask_set(bitmask, BITMAP_SIZE - 1); if (yr_bitmask_is_not_set(bitmask, BITMAP_SIZE - 1)) exit(EXIT_FAILURE); yr_bitmask_clear(bitmask, BITMAP_SIZE - 1); if (yr_bitmask_is_set(bitmask, BITMAP_SIZE - 1)) exit(EXIT_FAILURE); yr_bitmask_set(bitmask, 31); yr_bitmask_set(bitmask, 32); yr_bitmask_set(bitmask, 33); yr_bitmask_set(bitmask, 63); yr_bitmask_set(bitmask, 64); yr_bitmask_set(bitmask, 65); if (yr_bitmask_is_not_set(bitmask, 31)) exit(EXIT_FAILURE); if (yr_bitmask_is_not_set(bitmask, 32)) exit(EXIT_FAILURE); if (yr_bitmask_is_not_set(bitmask, 33)) exit(EXIT_FAILURE); if (yr_bitmask_is_not_set(bitmask, 63)) exit(EXIT_FAILURE); if (yr_bitmask_is_not_set(bitmask, 64)) exit(EXIT_FAILURE); if (yr_bitmask_is_not_set(bitmask, 65)) exit(EXIT_FAILURE); yr_bitmask_clear(bitmask, 31); yr_bitmask_clear(bitmask, 32); yr_bitmask_clear(bitmask, 33); yr_bitmask_clear(bitmask, 63); yr_bitmask_clear(bitmask, 64); yr_bitmask_clear(bitmask, 65); assert_clear_all(bitmask); } void test_find_non_colliding_offsets_1() { uint32_t o = 0; YR_BITMASK a[YR_BITMASK_SIZE(18)]; YR_BITMASK b[YR_BITMASK_SIZE(13)]; yr_bitmask_clear_all(a); yr_bitmask_clear_all(b); // Set odd bits in B and odd bits in A. for (int i = 0; i < 13; i++) { if (i % 2 == 0) yr_bitmask_set(b, i); else yr_bitmask_set(a, i); } // Bitmask A can accommodate B at offset 0. if (yr_bitmask_find_non_colliding_offset(a, b, 18, 13, &o) != 0) exit(EXIT_FAILURE); yr_bitmask_clear_all(a); yr_bitmask_clear_all(b); // Set the following pattern in A: // 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 yr_bitmask_set(a, 0); yr_bitmask_set(a, 2); yr_bitmask_set(a, 7); yr_bitmask_set(a, 14); yr_bitmask_set(a, 15); // Set B to: // 1 1 0 0 0 0 0 1 0 1 0 0 1 yr_bitmask_set(b, 0); yr_bitmask_set(b, 1); yr_bitmask_set(b, 7); yr_bitmask_set(b, 9); yr_bitmask_set(b, 12); // Bitmask A can accommodate B at offset 4. if (yr_bitmask_find_non_colliding_offset(a, b, 18, 13, &o) != 4) exit(EXIT_FAILURE); // Set the A to: // 1 0 1 0 0 0 0 1 0 0 0 0 0 0 1 1 1 0 yr_bitmask_set(a, 16); // Bitmask A can accommodate B at offset 10. if (yr_bitmask_find_non_colliding_offset(a, b, 18, 13, &o) != 10) exit(EXIT_FAILURE); yr_bitmask_clear_all(a); yr_bitmask_clear_all(b); yr_bitmask_set(a, 0); yr_bitmask_set(a, 3); yr_bitmask_set(b, 0); yr_bitmask_set(b, 1); yr_bitmask_set(b, 3); // Bitmask 1001 can accommodate 1101 at offset 2. if (yr_bitmask_find_non_colliding_offset(a, b, 4, 4, &o) != 1) exit(EXIT_FAILURE); // Bitmask 1001 can accommodate 1001 at offset 1. if (yr_bitmask_find_non_colliding_offset(a, a, 4, 4, &o) != 1) exit(EXIT_FAILURE); yr_bitmask_clear(a, 0); // Bitmask 0001 can accommodate 1101 at offset 0. if (yr_bitmask_find_non_colliding_offset(a, b, 4, 4, &o) != 1) exit(EXIT_FAILURE); } void test_find_non_colliding_offsets_2() { uint32_t o = 0; YR_BITMASK a[YR_BITMASK_SIZE(140)]; YR_BITMASK b[YR_BITMASK_SIZE(200)]; yr_bitmask_clear_all(a); yr_bitmask_clear_all(b); // Set odds bits in A and even bits in B. for (int i = 0; i < 13; i++) { if (i % 2 == 0) yr_bitmask_set(b, i); else yr_bitmask_set(a, i); } // Bitmask A can accommodate B at offset 0. if (yr_bitmask_find_non_colliding_offset(a, b, 200, 140, &o) != 0) exit(EXIT_FAILURE); yr_bitmask_clear_all(a); yr_bitmask_clear_all(b); yr_bitmask_set(a, 130); yr_bitmask_set(b, 0); yr_bitmask_set(b, 130); if (yr_bitmask_find_non_colliding_offset(a, b, 200, 140, &o) != 1) exit(EXIT_FAILURE); } int main(int argc, char** argv) { int result = 0; YR_DEBUG_INITIALIZE(); YR_DEBUG_FPRINTF(1, stderr, "+ %s() { // in %s\n", __FUNCTION__, argv[0]); test_set_clear(); test_find_non_colliding_offsets_1(); test_find_non_colliding_offsets_2(); YR_DEBUG_FPRINTF( 1, stderr, "} = %d // %s() in %s\n", result, __FUNCTION__, argv[0]); return result; }