2013-07-09 14:47:16 -04:00
|
|
|
/*
|
2016-06-27 00:56:38 -04:00
|
|
|
* Copyright (C) 2013, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
|
2013-07-09 14:47:16 -04:00
|
|
|
*
|
2016-06-27 00:56:38 -04:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2013-07-09 14:47:16 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include <isc/safe.h>
|
|
|
|
|
#include <isc/util.h>
|
|
|
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
#pragma optimize("", off)
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
isc_boolean_t
|
2015-08-17 21:26:44 -04:00
|
|
|
isc_safe_memequal(const void *s1, const void *s2, size_t n) {
|
2013-07-09 14:47:16 -04:00
|
|
|
isc_uint8_t acc = 0;
|
|
|
|
|
|
2013-07-10 12:15:51 -04:00
|
|
|
if (n != 0U) {
|
2013-07-09 14:47:16 -04:00
|
|
|
const isc_uint8_t *p1 = s1, *p2 = s2;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
acc |= *p1++ ^ *p2++;
|
2013-07-10 12:15:51 -04:00
|
|
|
} while (--n != 0U);
|
2013-07-09 14:47:16 -04:00
|
|
|
}
|
|
|
|
|
return (ISC_TF(acc == 0));
|
|
|
|
|
}
|
2015-08-17 21:26:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
isc_safe_memcompare(const void *b1, const void *b2, size_t len) {
|
2015-08-19 19:45:23 -04:00
|
|
|
const unsigned char *p1 = b1, *p2 = b2;
|
|
|
|
|
size_t i;
|
|
|
|
|
int res = 0, done = 0;
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
|
/* lt is -1 if p1[i] < p2[i]; else 0. */
|
|
|
|
|
int lt = (p1[i] - p2[i]) >> CHAR_BIT;
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
/* gt is -1 if p1[i] > p2[i]; else 0. */
|
|
|
|
|
int gt = (p2[i] - p1[i]) >> CHAR_BIT;
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
/* cmp is 1 if p1[i] > p2[i]; -1 if p1[i] < p2[i]; else 0. */
|
|
|
|
|
int cmp = lt - gt;
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
/* set res = cmp if !done. */
|
|
|
|
|
res |= cmp & ~done;
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
/* set done if p1[i] != p2[i]. */
|
|
|
|
|
done |= lt | gt;
|
|
|
|
|
}
|
2015-08-17 21:26:44 -04:00
|
|
|
|
2015-08-19 19:45:23 -04:00
|
|
|
return (res);
|
2015-08-17 21:26:44 -04:00
|
|
|
}
|