2008-01-23 22:14:38 +01:00
|
|
|
/*
|
2010-04-20 21:51:53 +02:00
|
|
|
* Copyright (C) 2007,2008,2009,2010 Red Hat, Inc.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2010-06-09 12:32:56 +02:00
|
|
|
#ifndef HB_OPEN_TYPE_PRIVATE_HH
|
|
|
|
#define HB_OPEN_TYPE_PRIVATE_HH
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2009-08-03 01:57:00 +02:00
|
|
|
#include "hb-private.h"
|
2006-12-28 12:10:59 +01:00
|
|
|
|
2009-08-04 06:58:28 +02:00
|
|
|
#include "hb-blob.h"
|
|
|
|
|
2008-01-23 23:01:55 +01:00
|
|
|
|
2010-04-23 00:29:09 +02:00
|
|
|
|
2009-08-04 17:04:32 +02:00
|
|
|
/*
|
|
|
|
* Casts
|
|
|
|
*/
|
|
|
|
|
2010-04-23 22:35:01 +02:00
|
|
|
/* Cast to struct T, reference to reference */
|
2010-04-23 00:29:09 +02:00
|
|
|
template<typename Type, typename TObject>
|
2010-04-23 22:35:01 +02:00
|
|
|
inline const Type& CastR(const TObject &X)
|
2010-04-23 00:29:09 +02:00
|
|
|
{ return reinterpret_cast<const Type&> (X); }
|
|
|
|
template<typename Type, typename TObject>
|
2010-04-23 22:35:01 +02:00
|
|
|
inline Type& CastR(TObject &X)
|
2010-04-23 00:29:09 +02:00
|
|
|
{ return reinterpret_cast<Type&> (X); }
|
2009-08-04 17:04:32 +02:00
|
|
|
|
2010-04-23 22:35:01 +02:00
|
|
|
/* Cast to struct T, pointer to pointer */
|
|
|
|
template<typename Type, typename TObject>
|
|
|
|
inline const Type* CastP(const TObject *X)
|
|
|
|
{ return reinterpret_cast<const Type*> (X); }
|
|
|
|
template<typename Type, typename TObject>
|
|
|
|
inline Type* CastP(TObject *X)
|
|
|
|
{ return reinterpret_cast<Type*> (X); }
|
|
|
|
|
2010-05-10 23:36:03 +02:00
|
|
|
/* StructAtOffset<T>(P,Ofs) returns the struct T& that is placed at memory
|
|
|
|
* location pointed to by P plus Ofs bytes. */
|
|
|
|
template<typename Type>
|
|
|
|
inline const Type& StructAtOffset(const void *P, unsigned int offset)
|
2010-05-10 23:55:03 +02:00
|
|
|
{ return * reinterpret_cast<const Type*> ((const char *) P + offset); }
|
2010-05-10 23:36:03 +02:00
|
|
|
template<typename Type>
|
|
|
|
inline Type& StructAtOffset(void *P, unsigned int offset)
|
2010-05-10 23:55:03 +02:00
|
|
|
{ return * reinterpret_cast<Type*> ((char *) P + offset); }
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-04-22 04:30:36 +02:00
|
|
|
/* StructAfter<T>(X) returns the struct T& that is placed after X.
|
2010-04-22 05:01:00 +02:00
|
|
|
* Works with X of variable size also. X must implement get_size() */
|
2010-04-21 21:56:11 +02:00
|
|
|
template<typename Type, typename TObject>
|
|
|
|
inline const Type& StructAfter(const TObject &X)
|
2010-05-10 23:36:03 +02:00
|
|
|
{ return StructAtOffset<Type>(&X, X.get_size()); }
|
2010-04-21 21:56:11 +02:00
|
|
|
template<typename Type, typename TObject>
|
|
|
|
inline Type& StructAfter(TObject &X)
|
2010-05-10 23:36:03 +02:00
|
|
|
{ return StructAtOffset<Type>(&X, X.get_size()); }
|
2010-04-23 00:29:09 +02:00
|
|
|
|
2010-04-21 21:56:11 +02:00
|
|
|
|
2009-11-03 16:47:29 +01:00
|
|
|
|
2010-05-07 01:33:31 +02:00
|
|
|
/*
|
|
|
|
* Size checking
|
|
|
|
*/
|
|
|
|
|
2010-05-13 19:34:17 +02:00
|
|
|
/* Check _assertion in a method environment */
|
2010-05-11 00:47:48 +02:00
|
|
|
#define _DEFINE_SIZE_ASSERTION(_assertion) \
|
2010-05-11 00:35:02 +02:00
|
|
|
inline void _size_assertion (void) const \
|
2010-05-11 00:47:48 +02:00
|
|
|
{ ASSERT_STATIC (_assertion); }
|
2010-05-13 19:34:17 +02:00
|
|
|
/* Check that _code compiles in a method environment */
|
|
|
|
#define _DEFINE_COMPILES_ASSERTION(_code) \
|
|
|
|
inline void _compiles_assertion (void) const \
|
|
|
|
{ _code; }
|
2010-05-10 23:04:20 +02:00
|
|
|
|
|
|
|
|
2010-05-07 01:33:31 +02:00
|
|
|
#define DEFINE_SIZE_STATIC(size) \
|
2010-05-11 00:47:48 +02:00
|
|
|
_DEFINE_SIZE_ASSERTION (sizeof (*this) == (size)); \
|
2010-05-07 01:33:31 +02:00
|
|
|
static const unsigned int static_size = (size); \
|
|
|
|
static const unsigned int min_size = (size)
|
|
|
|
|
2010-05-10 22:57:29 +02:00
|
|
|
/* Size signifying variable-sized array */
|
|
|
|
#define VAR 1
|
|
|
|
|
2010-05-11 00:47:48 +02:00
|
|
|
#define DEFINE_SIZE_UNION(size, _member) \
|
|
|
|
_DEFINE_SIZE_ASSERTION (this->u._member.static_size == (size)); \
|
|
|
|
static const unsigned int min_size = (size)
|
|
|
|
|
2010-05-10 23:28:16 +02:00
|
|
|
#define DEFINE_SIZE_MIN(size) \
|
2010-05-11 00:47:48 +02:00
|
|
|
_DEFINE_SIZE_ASSERTION (sizeof (*this) >= (size)); \
|
2010-05-10 22:57:29 +02:00
|
|
|
static const unsigned int min_size = (size)
|
|
|
|
|
2010-05-11 01:01:17 +02:00
|
|
|
#define DEFINE_SIZE_ARRAY(size, array) \
|
2010-05-13 19:34:17 +02:00
|
|
|
_DEFINE_SIZE_ASSERTION (sizeof (*this) == (size) + sizeof (array[0])); \
|
|
|
|
_DEFINE_COMPILES_ASSERTION ((void) array[0].static_size) \
|
2010-05-07 01:33:31 +02:00
|
|
|
static const unsigned int min_size = (size)
|
|
|
|
|
2010-05-11 01:01:17 +02:00
|
|
|
#define DEFINE_SIZE_ARRAY2(size, array1, array2) \
|
2010-05-13 19:34:17 +02:00
|
|
|
_DEFINE_SIZE_ASSERTION (sizeof (*this) == (size) + sizeof (this->array1[0]) + sizeof (this->array2[0])); \
|
|
|
|
_DEFINE_COMPILES_ASSERTION ((void) array1[0].static_size; (void) array2[0].static_size) \
|
2010-05-07 01:33:31 +02:00
|
|
|
static const unsigned int min_size = (size)
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-01-23 08:01:37 +01:00
|
|
|
/*
|
2010-05-03 00:14:25 +02:00
|
|
|
* Null objects
|
2008-01-23 08:01:37 +01:00
|
|
|
*/
|
|
|
|
|
2009-05-17 04:48:14 +02:00
|
|
|
/* Global nul-content Null pool. Enlarge as necessary. */
|
2010-05-19 18:03:35 +02:00
|
|
|
static const void *_NullPool[64 / sizeof (void *)];
|
2009-05-17 04:48:14 +02:00
|
|
|
|
2010-05-11 01:58:25 +02:00
|
|
|
/* Generic nul-content Null objects. */
|
2009-05-17 04:48:14 +02:00
|
|
|
template <typename Type>
|
2010-04-21 06:32:47 +02:00
|
|
|
static inline const Type& Null () {
|
2010-05-11 00:08:46 +02:00
|
|
|
ASSERT_STATIC (Type::min_size <= sizeof (_NullPool));
|
2010-04-23 22:35:01 +02:00
|
|
|
return *CastP<Type> (_NullPool);
|
2010-04-21 06:32:47 +02:00
|
|
|
}
|
2009-05-17 04:48:14 +02:00
|
|
|
|
|
|
|
/* Specializaiton for arbitrary-content arbitrary-sized Null objects. */
|
2010-05-07 01:35:19 +02:00
|
|
|
#define DEFINE_NULL_DATA(Type, data) \
|
|
|
|
static const char _Null##Type[Type::min_size + 1] = data; /* +1 is for nul-termination in data */ \
|
2009-05-17 04:48:14 +02:00
|
|
|
template <> \
|
2010-04-21 06:32:47 +02:00
|
|
|
inline const Type& Null<Type> () { \
|
2010-04-23 22:35:01 +02:00
|
|
|
return *CastP<Type> (_Null##Type); \
|
2010-04-22 16:26:35 +02:00
|
|
|
} /* The following line really exists such that we end in a place needing semicolon */ \
|
2010-05-10 23:28:16 +02:00
|
|
|
ASSERT_STATIC (Type::min_size + 1 <= sizeof (_Null##Type))
|
2009-05-17 04:48:14 +02:00
|
|
|
|
|
|
|
/* Accessor macro. */
|
2010-04-21 06:32:47 +02:00
|
|
|
#define Null(Type) Null<Type>()
|
2009-05-17 04:48:14 +02:00
|
|
|
|
|
|
|
|
2010-05-05 05:21:57 +02:00
|
|
|
/*
|
2010-05-05 06:19:46 +02:00
|
|
|
* Trace
|
2010-05-05 05:21:57 +02:00
|
|
|
*/
|
|
|
|
|
2010-05-05 06:19:46 +02:00
|
|
|
|
|
|
|
template <int max_depth>
|
|
|
|
struct hb_trace_t {
|
2010-05-11 03:11:35 +02:00
|
|
|
explicit hb_trace_t (unsigned int *pdepth, const char *what, const char *function, const void *obj) : pdepth(pdepth) {
|
2010-05-05 06:19:46 +02:00
|
|
|
if (*pdepth < max_depth)
|
|
|
|
fprintf (stderr, "%s(%p) %-*d-> %s\n", what, obj, *pdepth, *pdepth, function);
|
2010-05-11 03:11:35 +02:00
|
|
|
if (max_depth) ++*pdepth;
|
2010-05-05 06:19:46 +02:00
|
|
|
}
|
2010-05-11 03:11:35 +02:00
|
|
|
~hb_trace_t (void) { if (max_depth) --*pdepth; }
|
2010-05-05 05:21:57 +02:00
|
|
|
|
|
|
|
private:
|
2010-05-05 06:19:46 +02:00
|
|
|
unsigned int *pdepth;
|
2010-05-05 05:21:57 +02:00
|
|
|
};
|
2010-05-05 06:19:46 +02:00
|
|
|
template <> /* Optimize when tracing is disabled */
|
|
|
|
struct hb_trace_t<0> {
|
2010-05-11 05:44:51 +02:00
|
|
|
explicit hb_trace_t (unsigned int *pdepth HB_UNUSED, const char *what HB_UNUSED, const char *function HB_UNUSED, const void *obj HB_UNUSED) {}
|
2010-05-05 05:21:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-23 08:01:37 +01:00
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
/*
|
|
|
|
* Sanitize
|
|
|
|
*/
|
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#ifndef HB_DEBUG_SANITIZE
|
2010-04-29 02:25:22 +02:00
|
|
|
#define HB_DEBUG_SANITIZE HB_DEBUG+0
|
2009-08-28 22:31:20 +02:00
|
|
|
#endif
|
|
|
|
|
2010-05-05 05:21:57 +02:00
|
|
|
|
2010-04-29 07:40:26 +02:00
|
|
|
#define TRACE_SANITIZE() \
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_trace_t<HB_DEBUG_SANITIZE> trace (&c->debug_depth, "SANITIZE", HB_FUNC, this); \
|
2010-04-29 02:25:22 +02:00
|
|
|
|
2009-08-05 04:35:36 +02:00
|
|
|
|
2010-04-29 08:19:21 +02:00
|
|
|
struct hb_sanitize_context_t
|
2009-08-05 01:31:02 +02:00
|
|
|
{
|
2010-05-05 04:42:49 +02:00
|
|
|
inline void init (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
this->blob = hb_blob_reference (blob);
|
|
|
|
this->start = hb_blob_lock (blob);
|
|
|
|
this->end = this->start + hb_blob_get_length (blob);
|
|
|
|
this->writable = hb_blob_is_writable (blob);
|
|
|
|
this->edit_count = 0;
|
2010-05-05 05:21:57 +02:00
|
|
|
this->debug_depth = 0;
|
2009-08-05 01:31:02 +02:00
|
|
|
|
2010-05-05 04:42:49 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
|
|
|
fprintf (stderr, "sanitize %p init [%p..%p] (%u bytes)\n",
|
|
|
|
this->blob, this->start, this->end, this->end - this->start);
|
|
|
|
}
|
2010-04-29 08:19:21 +02:00
|
|
|
|
2010-05-05 04:42:49 +02:00
|
|
|
inline void finish (void)
|
|
|
|
{
|
|
|
|
if (HB_DEBUG_SANITIZE)
|
|
|
|
fprintf (stderr, "sanitize %p fini [%p..%p] %u edit requests\n",
|
|
|
|
this->blob, this->start, this->end, this->edit_count);
|
2009-08-05 01:31:02 +02:00
|
|
|
|
2010-05-05 04:42:49 +02:00
|
|
|
hb_blob_unlock (this->blob);
|
|
|
|
hb_blob_destroy (this->blob);
|
|
|
|
this->blob = NULL;
|
|
|
|
this->start = this->end = NULL;
|
|
|
|
}
|
2009-08-05 05:01:23 +02:00
|
|
|
|
2010-05-06 15:24:24 +02:00
|
|
|
inline bool check_range (const void *base, unsigned int len) const
|
2010-05-05 04:42:49 +02:00
|
|
|
{
|
2010-05-10 23:55:03 +02:00
|
|
|
const char *p = (const char *) base;
|
|
|
|
bool ret = this->start <= p &&
|
|
|
|
p <= this->end &&
|
|
|
|
(unsigned int) (this->end - p) >= len;
|
2010-05-05 04:42:49 +02:00
|
|
|
|
2010-05-05 05:21:57 +02:00
|
|
|
if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE) \
|
2010-05-06 15:24:24 +02:00
|
|
|
fprintf (stderr, "SANITIZE(%p) %-*d-> range [%p..%p] (%d bytes) in [%p..%p] -> %s\n", \
|
2010-05-10 23:55:03 +02:00
|
|
|
p,
|
2010-05-05 05:21:57 +02:00
|
|
|
this->debug_depth, this->debug_depth,
|
2010-05-10 23:55:03 +02:00
|
|
|
p, p + len, len,
|
2010-05-05 04:42:49 +02:00
|
|
|
this->start, this->end,
|
|
|
|
ret ? "pass" : "FAIL");
|
|
|
|
|
2010-05-05 06:26:16 +02:00
|
|
|
return likely (ret);
|
2010-05-05 04:42:49 +02:00
|
|
|
}
|
2009-08-05 01:31:02 +02:00
|
|
|
|
2010-05-06 02:15:14 +02:00
|
|
|
inline bool check_array (const void *base, unsigned int record_size, unsigned int len) const
|
2010-05-05 04:42:49 +02:00
|
|
|
{
|
2010-05-10 23:55:03 +02:00
|
|
|
const char *p = (const char *) base;
|
2010-05-05 04:42:49 +02:00
|
|
|
bool overflows = len >= ((unsigned int) -1) / record_size;
|
2009-08-14 22:25:33 +02:00
|
|
|
|
2010-05-05 05:21:57 +02:00
|
|
|
if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE)
|
2010-05-05 04:42:49 +02:00
|
|
|
fprintf (stderr, "SANITIZE(%p) %-*d-> array [%p..%p] (%d*%d=%ld bytes) in [%p..%p] -> %s\n", \
|
2010-05-10 23:55:03 +02:00
|
|
|
p,
|
2010-05-05 05:21:57 +02:00
|
|
|
this->debug_depth, this->debug_depth,
|
2010-05-10 23:55:03 +02:00
|
|
|
p, p + (record_size * len), record_size, len, (unsigned long) record_size * len,
|
2010-05-05 04:42:49 +02:00
|
|
|
this->start, this->end,
|
|
|
|
!overflows ? "does not overflow" : "OVERFLOWS FAIL");
|
2010-04-29 19:48:26 +02:00
|
|
|
|
2010-05-06 15:24:24 +02:00
|
|
|
return likely (!overflows && this->check_range (base, record_size * len));
|
2010-05-05 04:42:49 +02:00
|
|
|
}
|
2010-04-23 19:57:10 +02:00
|
|
|
|
2010-05-06 20:48:27 +02:00
|
|
|
template <typename Type>
|
|
|
|
inline bool check_struct (const Type *obj) const
|
|
|
|
{
|
2010-05-11 00:13:32 +02:00
|
|
|
return likely (this->check_range (obj, obj->min_size));
|
2010-05-06 20:48:27 +02:00
|
|
|
}
|
|
|
|
|
2010-05-10 23:47:22 +02:00
|
|
|
inline bool can_edit (const void *base HB_UNUSED, unsigned int len HB_UNUSED)
|
2010-05-05 04:42:49 +02:00
|
|
|
{
|
2010-05-10 23:55:03 +02:00
|
|
|
const char *p = (const char *) base;
|
2010-05-05 04:42:49 +02:00
|
|
|
this->edit_count++;
|
|
|
|
|
2010-05-05 05:21:57 +02:00
|
|
|
if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE)
|
2010-05-05 04:42:49 +02:00
|
|
|
fprintf (stderr, "SANITIZE(%p) %-*d-> edit(%u) [%p..%p] (%d bytes) in [%p..%p] -> %s\n", \
|
2010-05-10 23:55:03 +02:00
|
|
|
p,
|
2010-05-05 05:21:57 +02:00
|
|
|
this->debug_depth, this->debug_depth,
|
2010-05-05 04:42:49 +02:00
|
|
|
this->edit_count,
|
2010-05-10 23:55:03 +02:00
|
|
|
p, p + len, len,
|
2010-05-05 04:42:49 +02:00
|
|
|
this->start, this->end,
|
|
|
|
this->writable ? "granted" : "REJECTED");
|
|
|
|
|
|
|
|
return this->writable;
|
|
|
|
}
|
|
|
|
|
2010-05-05 07:40:25 +02:00
|
|
|
unsigned int debug_depth;
|
2010-05-05 04:42:49 +02:00
|
|
|
const char *start, *end;
|
|
|
|
bool writable;
|
|
|
|
unsigned int edit_count;
|
|
|
|
hb_blob_t *blob;
|
|
|
|
};
|
2009-08-14 23:31:16 +02:00
|
|
|
|
2009-08-05 01:31:02 +02:00
|
|
|
|
|
|
|
|
2009-08-05 02:52:47 +02:00
|
|
|
/* Template to sanitize an object. */
|
|
|
|
template <typename Type>
|
|
|
|
struct Sanitizer
|
|
|
|
{
|
|
|
|
static hb_blob_t *sanitize (hb_blob_t *blob) {
|
2010-05-13 20:18:49 +02:00
|
|
|
hb_sanitize_context_t c[1] = {{0}};
|
2009-08-05 02:52:47 +02:00
|
|
|
bool sane;
|
|
|
|
|
2009-08-07 00:34:47 +02:00
|
|
|
/* TODO is_sane() stuff */
|
2009-08-05 02:52:47 +02:00
|
|
|
|
2010-05-20 19:33:35 +02:00
|
|
|
if (!blob)
|
|
|
|
return hb_blob_create_empty ();
|
|
|
|
|
2009-08-05 02:52:47 +02:00
|
|
|
retry:
|
2010-04-29 19:48:26 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
2010-04-29 19:54:01 +02:00
|
|
|
fprintf (stderr, "Sanitizer %p start %s\n", blob, HB_FUNC);
|
2009-08-05 05:01:23 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
c->init (blob);
|
2009-08-05 02:52:47 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!c->start)) {
|
|
|
|
c->finish ();
|
2010-05-11 02:07:56 +02:00
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
Type *t = CastP<Type> (const_cast<char *> (c->start));
|
2009-08-05 02:52:47 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
sane = t->sanitize (c);
|
2009-08-05 02:52:47 +02:00
|
|
|
if (sane) {
|
2010-05-13 20:18:49 +02:00
|
|
|
if (c->edit_count) {
|
2010-04-29 19:48:26 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
|
|
|
fprintf (stderr, "Sanitizer %p passed first round with %d edits; doing a second round %s\n",
|
2010-05-13 20:18:49 +02:00
|
|
|
blob, c->edit_count, HB_FUNC);
|
2010-04-29 19:48:26 +02:00
|
|
|
|
2009-08-20 00:16:50 +02:00
|
|
|
/* sanitize again to ensure no toe-stepping */
|
2010-05-13 20:18:49 +02:00
|
|
|
c->edit_count = 0;
|
|
|
|
sane = t->sanitize (c);
|
|
|
|
if (c->edit_count) {
|
2010-04-29 19:48:26 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
|
|
|
fprintf (stderr, "Sanitizer %p requested %d edits in second round; FAILLING %s\n",
|
2010-05-13 20:18:49 +02:00
|
|
|
blob, c->edit_count, HB_FUNC);
|
2009-08-05 02:52:47 +02:00
|
|
|
sane = false;
|
|
|
|
}
|
|
|
|
}
|
2010-05-13 20:18:49 +02:00
|
|
|
c->finish ();
|
2009-08-05 02:52:47 +02:00
|
|
|
} else {
|
2010-05-13 20:18:49 +02:00
|
|
|
unsigned int edit_count = c->edit_count;
|
|
|
|
c->finish ();
|
2009-08-19 22:17:24 +02:00
|
|
|
if (edit_count && !hb_blob_is_writable (blob) && hb_blob_try_writable (blob)) {
|
|
|
|
/* ok, we made it writable by relocating. try again */
|
2010-04-29 19:48:26 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
2010-04-29 19:54:01 +02:00
|
|
|
fprintf (stderr, "Sanitizer %p retry %s\n", blob, HB_FUNC);
|
2009-08-05 02:52:47 +02:00
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-29 19:48:26 +02:00
|
|
|
if (HB_DEBUG_SANITIZE)
|
2010-04-29 19:54:01 +02:00
|
|
|
fprintf (stderr, "Sanitizer %p %s %s\n", blob, sane ? "passed" : "FAILED", HB_FUNC);
|
2009-08-05 02:52:47 +02:00
|
|
|
if (sane)
|
|
|
|
return blob;
|
|
|
|
else {
|
|
|
|
hb_blob_destroy (blob);
|
|
|
|
return hb_blob_create_empty ();
|
|
|
|
}
|
|
|
|
}
|
2010-05-11 01:51:57 +02:00
|
|
|
|
|
|
|
static const Type* lock_instance (hb_blob_t *blob) {
|
|
|
|
const char *base = hb_blob_lock (blob);
|
|
|
|
return unlikely (!base) ? &Null(Type) : CastP<Type> (base);
|
|
|
|
}
|
2009-08-05 02:52:47 +02:00
|
|
|
};
|
|
|
|
|
2009-04-16 01:50:16 +02:00
|
|
|
|
2010-05-03 00:14:25 +02:00
|
|
|
|
|
|
|
|
2006-12-22 08:21:55 +01:00
|
|
|
/*
|
|
|
|
*
|
2009-08-08 01:46:30 +02:00
|
|
|
* The OpenType Font File: Data Types
|
2006-12-22 08:21:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* "The following data types are used in the OpenType font file.
|
|
|
|
* All OpenType fonts use Motorola-style byte ordering (Big Endian):" */
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
/*
|
|
|
|
* Int types
|
|
|
|
*/
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2010-04-21 09:11:46 +02:00
|
|
|
template <typename Type, int Bytes> class BEInt;
|
|
|
|
|
2010-04-23 21:19:50 +02:00
|
|
|
/* LONGTERMTODO: On machines allowing unaligned access, we can make the
|
|
|
|
* following tighter by using byteswap instructions on ints directly. */
|
2010-04-21 09:11:46 +02:00
|
|
|
template <typename Type>
|
|
|
|
class BEInt<Type, 2>
|
|
|
|
{
|
|
|
|
public:
|
2010-04-22 04:49:56 +02:00
|
|
|
inline class BEInt<Type,2>& operator = (Type i) { hb_be_uint16_put (v,i); return *this; }
|
|
|
|
inline operator Type () const { return hb_be_uint16_get (v); }
|
|
|
|
inline bool operator == (const BEInt<Type, 2>& o) const { return hb_be_uint16_cmp (v, o.v); }
|
|
|
|
inline bool operator != (const BEInt<Type, 2>& o) const { return !(*this == o); }
|
2010-04-21 09:11:46 +02:00
|
|
|
private: uint8_t v[2];
|
|
|
|
};
|
|
|
|
template <typename Type>
|
|
|
|
class BEInt<Type, 4>
|
|
|
|
{
|
|
|
|
public:
|
2010-04-22 04:49:56 +02:00
|
|
|
inline class BEInt<Type,4>& operator = (Type i) { hb_be_uint32_put (v,i); return *this; }
|
|
|
|
inline operator Type () const { return hb_be_uint32_get (v); }
|
|
|
|
inline bool operator == (const BEInt<Type, 4>& o) const { return hb_be_uint32_cmp (v, o.v); }
|
|
|
|
inline bool operator != (const BEInt<Type, 4>& o) const { return !(*this == o); }
|
2010-04-21 09:11:46 +02:00
|
|
|
private: uint8_t v[4];
|
|
|
|
};
|
|
|
|
|
2010-04-22 05:11:45 +02:00
|
|
|
/* Integer types in big-endian order and no alignment requirement */
|
2010-04-21 09:11:46 +02:00
|
|
|
template <typename Type>
|
|
|
|
struct IntType
|
|
|
|
{
|
2010-04-22 04:49:56 +02:00
|
|
|
inline void set (Type i) { v = i; }
|
|
|
|
inline operator Type(void) const { return v; }
|
|
|
|
inline bool operator == (const IntType<Type> &o) const { return v == o.v; }
|
|
|
|
inline bool operator != (const IntType<Type> &o) const { return v != o.v; }
|
2010-07-08 06:40:04 +02:00
|
|
|
inline int cmp (Type b) const { Type a = v; return b < a ? -1 : b == a ? 0 : +1; }
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2010-04-21 09:11:46 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return likely (c->check_struct (this));
|
2010-04-21 09:11:46 +02:00
|
|
|
}
|
2010-05-10 23:55:03 +02:00
|
|
|
protected:
|
2010-05-10 22:38:32 +02:00
|
|
|
BEInt<Type, sizeof (Type)> v;
|
|
|
|
public:
|
2010-05-07 01:33:31 +02:00
|
|
|
DEFINE_SIZE_STATIC (sizeof (Type));
|
2010-04-21 09:11:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef IntType<uint16_t> USHORT; /* 16-bit unsigned integer. */
|
|
|
|
typedef IntType<int16_t> SHORT; /* 16-bit signed integer. */
|
|
|
|
typedef IntType<uint32_t> ULONG; /* 32-bit unsigned integer. */
|
|
|
|
typedef IntType<int32_t> LONG; /* 32-bit signed integer. */
|
|
|
|
|
2010-05-19 17:47:17 +02:00
|
|
|
/* Date represented in number of seconds since 12:00 midnight, January 1,
|
|
|
|
* 1904. The value is represented as a signed 64-bit integer. */
|
|
|
|
struct LONGDATETIME
|
|
|
|
{
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
|
|
|
TRACE_SANITIZE ();
|
|
|
|
return likely (c->check_struct (this));
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
LONG major;
|
|
|
|
ULONG minor;
|
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (8);
|
|
|
|
};
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
/* Array of four uint8s (length = 32 bits) used to identify a script, language
|
|
|
|
* system, feature, or baseline */
|
2009-05-25 08:41:49 +02:00
|
|
|
struct Tag : ULONG
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2006-12-25 15:14:52 +01:00
|
|
|
/* What the char* converters return is NOT nul-terminated. Print using "%.4s" */
|
2010-05-10 23:55:03 +02:00
|
|
|
inline operator const char* (void) const { return reinterpret_cast<const char *> (&this->v); }
|
|
|
|
inline operator char* (void) { return reinterpret_cast<char *> (&this->v); }
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
2010-05-07 01:35:19 +02:00
|
|
|
DEFINE_NULL_DATA (Tag, " ");
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
/* Glyph index number, same as uint16 (length = 16 bits) */
|
2009-05-25 08:27:29 +02:00
|
|
|
typedef USHORT GlyphID;
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2010-05-11 04:22:22 +02:00
|
|
|
/* Script/language-system/feature index */
|
|
|
|
struct Index : USHORT {
|
|
|
|
static const unsigned int NOT_FOUND_INDEX = 0xFFFF;
|
|
|
|
};
|
|
|
|
DEFINE_NULL_DATA (Index, "\xff\xff");
|
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/* Offset to a table, same as uint16 (length = 16 bits), Null offset = 0x0000 */
|
2009-05-25 08:27:29 +02:00
|
|
|
typedef USHORT Offset;
|
|
|
|
|
|
|
|
/* LongOffset to a table, same as uint32 (length = 32 bits), Null offset = 0x00000000 */
|
|
|
|
typedef ULONG LongOffset;
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
/* CheckSum */
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CheckSum : ULONG
|
|
|
|
{
|
|
|
|
static uint32_t CalcTableChecksum (ULONG *Table, uint32_t Length)
|
|
|
|
{
|
2006-12-22 04:31:10 +01:00
|
|
|
uint32_t Sum = 0L;
|
2010-05-07 01:33:31 +02:00
|
|
|
ULONG *EndPtr = Table+((Length+3) & ~3) / ULONG::static_size;
|
2006-12-22 04:31:10 +01:00
|
|
|
|
|
|
|
while (Table < EndPtr)
|
|
|
|
Sum += *Table++;
|
|
|
|
return Sum;
|
|
|
|
}
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Version Numbers
|
|
|
|
*/
|
|
|
|
|
2009-05-24 07:03:24 +02:00
|
|
|
struct FixedVersion
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-27 01:48:16 +02:00
|
|
|
inline operator uint32_t (void) const { return (major << 16) + minor; }
|
2009-05-24 18:30:40 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this);
|
2009-08-04 08:09:34 +02:00
|
|
|
}
|
|
|
|
|
2009-05-25 08:27:29 +02:00
|
|
|
USHORT major;
|
2009-05-24 07:03:24 +02:00
|
|
|
USHORT minor;
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2006-12-22 04:31:10 +01:00
|
|
|
};
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
/*
|
2009-08-04 16:41:32 +02:00
|
|
|
* Template subclasses of Offset and LongOffset that do the dereferencing.
|
2010-05-03 00:14:25 +02:00
|
|
|
* Use: (base+offset)
|
2009-05-17 06:54:25 +02:00
|
|
|
*/
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
template <typename OffsetType, typename Type>
|
|
|
|
struct GenericOffsetTo : OffsetType
|
|
|
|
{
|
2010-04-21 05:50:45 +02:00
|
|
|
inline const Type& operator () (const void *base) const
|
2009-08-04 16:41:32 +02:00
|
|
|
{
|
|
|
|
unsigned int offset = *this;
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!offset)) return Null(Type);
|
2010-05-10 23:36:03 +02:00
|
|
|
return StructAtOffset<Type> (base, offset);
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, void *base) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!c->check_struct (this))) return false;
|
2009-08-04 16:41:32 +02:00
|
|
|
unsigned int offset = *this;
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!offset)) return true;
|
2010-05-10 23:36:03 +02:00
|
|
|
Type &obj = StructAtOffset<Type> (base, offset);
|
2010-05-13 20:18:49 +02:00
|
|
|
return likely (obj.sanitize (c)) || neuter (c);
|
2009-08-04 16:41:32 +02:00
|
|
|
}
|
2010-05-05 04:46:21 +02:00
|
|
|
template <typename T>
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, void *base, T user_data) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!c->check_struct (this))) return false;
|
2009-08-04 19:30:49 +02:00
|
|
|
unsigned int offset = *this;
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (!offset)) return true;
|
2010-05-10 23:36:03 +02:00
|
|
|
Type &obj = StructAtOffset<Type> (base, offset);
|
2010-05-13 20:18:49 +02:00
|
|
|
return likely (obj.sanitize (c, user_data)) || neuter (c);
|
2010-05-04 20:38:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/* Set the offset to Null */
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool neuter (hb_sanitize_context_t *c) {
|
|
|
|
if (c->can_edit (this, this->static_size)) {
|
2010-05-04 20:38:08 +02:00
|
|
|
this->set (0); /* 0 is Null offset */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2009-08-04 16:41:32 +02:00
|
|
|
};
|
|
|
|
template <typename Base, typename OffsetType, typename Type>
|
|
|
|
inline const Type& operator + (const Base &base, GenericOffsetTo<OffsetType, Type> offset) { return offset (base); }
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
template <typename Type>
|
2009-08-04 16:41:32 +02:00
|
|
|
struct OffsetTo : GenericOffsetTo<Offset, Type> {};
|
|
|
|
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetTo : GenericOffsetTo<LongOffset, Type> {};
|
2009-08-08 01:46:30 +02:00
|
|
|
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
/*
|
|
|
|
* Array Types
|
|
|
|
*/
|
|
|
|
|
|
|
|
template <typename LenType, typename Type>
|
|
|
|
struct GenericArrayOf
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-04-22 06:27:39 +02:00
|
|
|
const Type *sub_array (unsigned int start_offset, unsigned int *pcount /* IN/OUT */) const
|
2009-11-04 22:59:50 +01:00
|
|
|
{
|
|
|
|
unsigned int count = len;
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (start_offset > count))
|
2009-11-04 22:59:50 +01:00
|
|
|
count = 0;
|
|
|
|
else
|
|
|
|
count -= start_offset;
|
|
|
|
count = MIN (count, *pcount);
|
|
|
|
*pcount = count;
|
2010-05-11 00:20:54 +02:00
|
|
|
return array + start_offset;
|
2009-11-04 22:59:50 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (i >= len)) return Null(Type);
|
2010-05-11 00:20:54 +02:00
|
|
|
return array[i];
|
2009-05-17 06:54:25 +02:00
|
|
|
}
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_size () const
|
2010-05-07 01:33:31 +02:00
|
|
|
{ return len.static_size + len * Type::static_size; }
|
2009-05-18 08:03:58 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return false;
|
2010-04-21 06:49:40 +02:00
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
|
|
|
* a bound check on the aggregate array size, hence the return.
|
|
|
|
*/
|
2009-08-15 00:32:56 +02:00
|
|
|
return true;
|
2010-04-21 06:49:40 +02:00
|
|
|
/* We do keep this code though to make sure the structs pointed
|
|
|
|
* to do have a simple sanitize(), ie. they do not reference
|
|
|
|
* other structs. */
|
2009-08-04 06:58:28 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (array[i].sanitize (c))
|
2009-08-04 06:58:28 +02:00
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, void *base) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return false;
|
2009-08-04 16:23:01 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!array[i].sanitize (c, base)))
|
2009-08-04 16:23:01 +02:00
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 16:23:01 +02:00
|
|
|
}
|
2010-05-05 04:46:21 +02:00
|
|
|
template <typename T>
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, void *base, T user_data) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return false;
|
2009-08-04 19:30:49 +02:00
|
|
|
unsigned int count = len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!array[i].sanitize (c, base, user_data)))
|
2009-08-04 19:30:49 +02:00
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 19:30:49 +02:00
|
|
|
}
|
2009-08-04 06:58:28 +02:00
|
|
|
|
2010-05-04 20:28:18 +02:00
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) {
|
2010-05-04 20:28:18 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this)
|
|
|
|
&& c->check_array (this, Type::static_size, len);
|
2010-05-04 20:28:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2009-08-04 16:41:32 +02:00
|
|
|
LenType len;
|
2010-05-11 00:20:54 +02:00
|
|
|
Type array[VAR];
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (sizeof (LenType), array);
|
2009-05-18 08:03:58 +02:00
|
|
|
};
|
|
|
|
|
2009-08-04 16:41:32 +02:00
|
|
|
/* An array with a USHORT number of elements. */
|
|
|
|
template <typename Type>
|
|
|
|
struct ArrayOf : GenericArrayOf<USHORT, Type> {};
|
|
|
|
|
|
|
|
/* An array with a ULONG number of elements. */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongArrayOf : GenericArrayOf<ULONG, Type> {};
|
|
|
|
|
|
|
|
/* Array of Offset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct OffsetArrayOf : ArrayOf<OffsetTo<Type> > {};
|
|
|
|
|
|
|
|
/* Array of LongOffset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetArrayOf : ArrayOf<LongOffsetTo<Type> > {};
|
|
|
|
|
|
|
|
/* LongArray of LongOffset's */
|
|
|
|
template <typename Type>
|
|
|
|
struct LongOffsetLongArrayOf : LongArrayOf<LongOffsetTo<Type> > {};
|
|
|
|
|
2009-08-15 00:40:56 +02:00
|
|
|
/* Array of offsets relative to the beginning of the array itself. */
|
|
|
|
template <typename Type>
|
|
|
|
struct OffsetListOf : OffsetArrayOf<Type>
|
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (i >= this->len)) return Null(Type);
|
2010-05-11 00:20:54 +02:00
|
|
|
return this+this->array[i];
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return OffsetArrayOf<Type>::sanitize (c, this);
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
2010-05-05 04:46:21 +02:00
|
|
|
template <typename T>
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, T user_data) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return OffsetArrayOf<Type>::sanitize (c, this, user_data);
|
2009-08-15 00:40:56 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-05-18 08:03:58 +02:00
|
|
|
/* An array with a USHORT number of elements,
|
|
|
|
* starting at second element. */
|
|
|
|
template <typename Type>
|
2009-05-20 05:58:54 +02:00
|
|
|
struct HeadlessArrayOf
|
|
|
|
{
|
|
|
|
inline const Type& operator [] (unsigned int i) const
|
|
|
|
{
|
2010-05-04 04:51:19 +02:00
|
|
|
if (unlikely (i >= len || !i)) return Null(Type);
|
2010-05-11 00:20:54 +02:00
|
|
|
return array[i-1];
|
2009-05-18 08:03:58 +02:00
|
|
|
}
|
2009-05-20 05:58:54 +02:00
|
|
|
inline unsigned int get_size () const
|
2010-05-07 01:33:31 +02:00
|
|
|
{ return len.static_size + (len ? len - 1 : 0) * Type::static_size; }
|
2009-05-17 06:54:25 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize_shallow (hb_sanitize_context_t *c) {
|
|
|
|
return c->check_struct (this)
|
|
|
|
&& c->check_array (this, Type::static_size, len);
|
2010-04-22 06:45:42 +02:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!sanitize_shallow (c))) return false;
|
2010-04-21 06:49:40 +02:00
|
|
|
/* Note: for structs that do not reference other structs,
|
|
|
|
* we do not need to call their sanitize() as we already did
|
|
|
|
* a bound check on the aggregate array size, hence the return.
|
|
|
|
*/
|
2009-08-15 00:32:56 +02:00
|
|
|
return true;
|
2010-04-21 06:49:40 +02:00
|
|
|
/* We do keep this code though to make sure the structs pointed
|
|
|
|
* to do have a simple sanitize(), ie. they do not reference
|
|
|
|
* other structs. */
|
2009-08-04 19:57:41 +02:00
|
|
|
unsigned int count = len ? len - 1 : 0;
|
2010-05-11 00:20:54 +02:00
|
|
|
Type *a = array;
|
2009-08-04 06:58:28 +02:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
if (unlikely (!a[i].sanitize (c)))
|
2009-08-04 06:58:28 +02:00
|
|
|
return false;
|
2009-08-05 03:42:23 +02:00
|
|
|
return true;
|
2009-08-04 06:58:28 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 06:54:25 +02:00
|
|
|
USHORT len;
|
2010-05-11 00:20:54 +02:00
|
|
|
Type array[VAR];
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (sizeof (USHORT), array);
|
2009-05-17 06:54:25 +02:00
|
|
|
};
|
|
|
|
|
2006-12-22 04:31:10 +01:00
|
|
|
|
2010-07-08 06:40:04 +02:00
|
|
|
/* An array with sorted elements. Supports binary searching. */
|
|
|
|
template <typename Type>
|
|
|
|
struct SortedArrayOf : ArrayOf<Type> {
|
|
|
|
|
|
|
|
template <typename SearchType>
|
|
|
|
inline int search (const SearchType &x) const {
|
|
|
|
class Cmp {
|
|
|
|
public: static int cmp (const void *p1, const void *p2) {
|
|
|
|
const SearchType *a = (const SearchType *) p1;
|
|
|
|
const Type *b = (const Type *) p2;
|
|
|
|
return b->cmp (*a);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const Type *p = (const Type *) bsearch (&x, this->array, this->len, sizeof (this->array[0]), Cmp::cmp);
|
|
|
|
return p ? p - this->array : -1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-11-05 00:12:09 +01:00
|
|
|
#endif /* HB_OPEN_TYPE_PRIVATE_HH */
|