/* * Copyright (C) 2007,2008,2009,2010 Red Hat, Inc. * * This is part of HarfBuzz, a text shaping library. * * 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 */ #ifndef HB_OPEN_TYPES_PRIVATE_HH #define HB_OPEN_TYPES_PRIVATE_HH #include "hb-private.h" #include "hb-blob.h" /* Table/script/language-system/feature/... not found */ #define NO_INDEX ((unsigned int) 0xFFFF) /* * Casts */ /* Cast to "const char *" and "char *" */ template inline const char * CharP (const Type* X) { return reinterpret_cast(X); } template inline char * CharP (Type* X) { return reinterpret_cast(X); } /* Cast to struct T, reference to reference */ template inline const Type& CastR(const TObject &X) { return reinterpret_cast (X); } template inline Type& CastR(TObject &X) { return reinterpret_cast (X); } /* Cast to struct T, pointer to pointer */ template inline const Type* CastP(const TObject *X) { return reinterpret_cast (X); } template inline Type* CastP(TObject *X) { return reinterpret_cast (X); } /* StructAtOffset(X,Ofs) returns the struct T& that is placed at memory * location of X plus Ofs bytes. */ template inline const Type& StructAtOffset(const TObject &X, unsigned int offset) { return * reinterpret_cast (CharP(&X) + offset); } template inline Type& StructAtOffset(TObject &X, unsigned int offset) { return * reinterpret_cast (CharP(&X) + offset); } /* StructAfter(X) returns the struct T& that is placed after X. * Works with X of variable size also. X must implement get_size() */ template inline const Type& StructAfter(const TObject &X) { return StructAtOffset(X, X.get_size()); } template inline Type& StructAfter(TObject &X) { return StructAtOffset(X, X.get_size()); } /* * Size checking */ #define DEFINE_SIZE_STATIC(size) \ inline void _size_assertion (void) const \ { ASSERT_STATIC (sizeof (*this) == (size)); } \ static inline unsigned int get_size (void) { return (size); } \ static const unsigned int static_size = (size); \ static const unsigned int min_size = (size) #define DEFINE_SIZE_VAR(size, _var_type) \ inline void _size_assertion (void) const \ { ASSERT_STATIC (sizeof (*this) == (size) + VAR0 * sizeof (_var_type)); } \ static const unsigned int min_size = (size) #define DEFINE_SIZE_VAR2(size, _var_type1, _var_type2) \ inline void _size_assertion (void) const \ { ASSERT_STATIC (sizeof (*this) == (size) + VAR0 * sizeof (_var_type1) + VAR0 * sizeof (_var_type2)); } \ static const unsigned int min_size = (size) /* * Null objects */ /* Global nul-content Null pool. Enlarge as necessary. */ static const void *_NullPool[32 / sizeof (void *)]; /* Generic template for nul-content sizeof-sized Null objects. */ template static inline const Type& Null () { ASSERT_STATIC (sizeof (Type) <= sizeof (_NullPool)); return *CastP (_NullPool); } /* Specializaiton for arbitrary-content arbitrary-sized Null objects. */ #define DEFINE_NULL_DATA(Type, data) \ static const char _Null##Type[Type::min_size + 1] = data; /* +1 is for nul-termination in data */ \ template <> \ inline const Type& Null () { \ return *CastP (_Null##Type); \ } /* The following line really exists such that we end in a place needing semicolon */ \ ASSERT_STATIC (sizeof (Type) + 1 <= sizeof (_Null##Type)) /* Accessor macro. */ #define Null(Type) Null() /* * Trace */ template struct hb_trace_t { explicit hb_trace_t (unsigned int *pdepth) : pdepth(pdepth) { if (max_depth) ++*pdepth; } ~hb_trace_t (void) { if (max_depth) --*pdepth; } inline void log (const char *what, const char *function, const void *obj) { if (*pdepth < max_depth) fprintf (stderr, "%s(%p) %-*d-> %s\n", what, obj, *pdepth, *pdepth, function); } private: unsigned int *pdepth; }; template <> /* Optimize when tracing is disabled */ struct hb_trace_t<0> { explicit hb_trace_t (unsigned int *p) {} inline void log (const char *what, const char *function, const void *obj) {}; }; /* * Sanitize */ #ifndef HB_DEBUG_SANITIZE #define HB_DEBUG_SANITIZE HB_DEBUG+0 #endif #define TRACE_SANITIZE() \ hb_trace_t trace (&context->debug_depth); \ trace.log ("SANITIZE", HB_FUNC, this); struct hb_sanitize_context_t { 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; this->debug_depth = 0; if (HB_DEBUG_SANITIZE) fprintf (stderr, "sanitize %p init [%p..%p] (%u bytes)\n", this->blob, this->start, this->end, this->end - this->start); } 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); hb_blob_unlock (this->blob); hb_blob_destroy (this->blob); this->blob = NULL; this->start = this->end = NULL; } inline bool check_range (const void *base, unsigned int len) const { bool ret = this->start <= base && base <= this->end && (unsigned int) (this->end - CharP(base)) >= len; if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE) \ fprintf (stderr, "SANITIZE(%p) %-*d-> range [%p..%p] (%d bytes) in [%p..%p] -> %s\n", \ base, this->debug_depth, this->debug_depth, base, CharP(base)+len, len, this->start, this->end, ret ? "pass" : "FAIL"); return likely (ret); } inline bool check_array (const void *base, unsigned int record_size, unsigned int len) const { bool overflows = len >= ((unsigned int) -1) / record_size; if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE) fprintf (stderr, "SANITIZE(%p) %-*d-> array [%p..%p] (%d*%d=%ld bytes) in [%p..%p] -> %s\n", \ base, this->debug_depth, this->debug_depth, base, CharP(base) + (record_size * len), record_size, len, (unsigned long) record_size * len, this->start, this->end, !overflows ? "does not overflow" : "OVERFLOWS FAIL"); return likely (!overflows && this->check_range (base, record_size * len)); } template inline bool check_struct (const Type *obj) const { return likely (this->check_range (obj, sizeof (*obj))); } inline bool can_edit (const char *base HB_UNUSED, unsigned int len HB_UNUSED) { this->edit_count++; if (HB_DEBUG_SANITIZE && (int) this->debug_depth < (int) HB_DEBUG_SANITIZE) fprintf (stderr, "SANITIZE(%p) %-*d-> edit(%u) [%p..%p] (%d bytes) in [%p..%p] -> %s\n", \ base, this->debug_depth, this->debug_depth, this->edit_count, base, base+len, len, this->start, this->end, this->writable ? "granted" : "REJECTED"); return this->writable; } unsigned int debug_depth; const char *start, *end; bool writable; unsigned int edit_count; hb_blob_t *blob; }; /* Template to sanitize an object. */ template struct Sanitizer { static hb_blob_t *sanitize (hb_blob_t *blob) { hb_sanitize_context_t context[1] = {{0}}; bool sane; /* TODO is_sane() stuff */ retry: if (HB_DEBUG_SANITIZE) fprintf (stderr, "Sanitizer %p start %s\n", blob, HB_FUNC); context->init (blob); Type *t = CastP (const_cast (context->start)); sane = t->sanitize (context); if (sane) { if (context->edit_count) { if (HB_DEBUG_SANITIZE) fprintf (stderr, "Sanitizer %p passed first round with %d edits; doing a second round %s\n", blob, context->edit_count, HB_FUNC); /* sanitize again to ensure no toe-stepping */ context->edit_count = 0; sane = t->sanitize (context); if (context->edit_count) { if (HB_DEBUG_SANITIZE) fprintf (stderr, "Sanitizer %p requested %d edits in second round; FAILLING %s\n", blob, context->edit_count, HB_FUNC); sane = false; } } context->finish (); } else { unsigned int edit_count = context->edit_count; context->finish (); if (edit_count && !hb_blob_is_writable (blob) && hb_blob_try_writable (blob)) { /* ok, we made it writable by relocating. try again */ if (HB_DEBUG_SANITIZE) fprintf (stderr, "Sanitizer %p retry %s\n", blob, HB_FUNC); goto retry; } } if (HB_DEBUG_SANITIZE) fprintf (stderr, "Sanitizer %p %s %s\n", blob, sane ? "passed" : "FAILED", HB_FUNC); if (sane) return blob; else { hb_blob_destroy (blob); return hb_blob_create_empty (); } } }; /* * * The OpenType Font File: Data Types */ /* "The following data types are used in the OpenType font file. * All OpenType fonts use Motorola-style byte ordering (Big Endian):" */ /* * Int types */ template class BEInt; /* LONGTERMTODO: On machines allowing unaligned access, we can make the * following tighter by using byteswap instructions on ints directly. */ template class BEInt { public: inline class BEInt& 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& o) const { return hb_be_uint16_cmp (v, o.v); } inline bool operator != (const BEInt& o) const { return !(*this == o); } private: uint8_t v[2]; }; template class BEInt { public: inline class BEInt& 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& o) const { return hb_be_uint32_cmp (v, o.v); } inline bool operator != (const BEInt& o) const { return !(*this == o); } private: uint8_t v[4]; }; /* Integer types in big-endian order and no alignment requirement */ template struct IntType { inline void set (Type i) { v = i; } inline operator Type(void) const { return v; } inline bool operator == (const IntType &o) const { return v == o.v; } inline bool operator != (const IntType &o) const { return v != o.v; } inline bool sanitize (hb_sanitize_context_t *context) { TRACE_SANITIZE (); return context->check_struct (this); } private: BEInt v; public: DEFINE_SIZE_STATIC (sizeof (Type)); }; typedef IntType USHORT; /* 16-bit unsigned integer. */ typedef IntType SHORT; /* 16-bit signed integer. */ typedef IntType ULONG; /* 32-bit unsigned integer. */ typedef IntType LONG; /* 32-bit signed integer. */ /* Array of four uint8s (length = 32 bits) used to identify a script, language * system, feature, or baseline */ struct Tag : ULONG { /* What the char* converters return is NOT nul-terminated. Print using "%.4s" */ inline operator const char* (void) const { return CharP(this); } inline operator char* (void) { return CharP(this); } }; ASSERT_SIZE (Tag, 4); DEFINE_NULL_DATA (Tag, " "); /* Glyph index number, same as uint16 (length = 16 bits) */ typedef USHORT GlyphID; /* Offset to a table, same as uint16 (length = 16 bits), Null offset = 0x0000 */ typedef USHORT Offset; /* LongOffset to a table, same as uint32 (length = 32 bits), Null offset = 0x00000000 */ typedef ULONG LongOffset; /* CheckSum */ struct CheckSum : ULONG { static uint32_t CalcTableChecksum (ULONG *Table, uint32_t Length) { uint32_t Sum = 0L; ULONG *EndPtr = Table+((Length+3) & ~3) / ULONG::static_size; while (Table < EndPtr) Sum += *Table++; return Sum; } }; ASSERT_SIZE (CheckSum, 4); /* * Version Numbers */ struct FixedVersion { inline operator uint32_t (void) const { return (major << 16) + minor; } inline bool sanitize (hb_sanitize_context_t *context) { TRACE_SANITIZE (); return context->check_struct (this); } USHORT major; USHORT minor; }; ASSERT_SIZE (FixedVersion, 4); /* * Template subclasses of Offset and LongOffset that do the dereferencing. * Use: (base+offset) */ template struct GenericOffsetTo : OffsetType { inline const Type& operator () (const void *base) const { unsigned int offset = *this; if (unlikely (!offset)) return Null(Type); return StructAtOffset (*CharP(base), offset); } inline bool sanitize (hb_sanitize_context_t *context, void *base) { TRACE_SANITIZE (); if (!context->check_struct (this)) return false; unsigned int offset = *this; if (unlikely (!offset)) return true; Type &obj = StructAtOffset (*CharP(base), offset); return likely (obj.sanitize (context)) || neuter (context); } template inline bool sanitize (hb_sanitize_context_t *context, void *base, T user_data) { TRACE_SANITIZE (); if (!context->check_struct (this)) return false; unsigned int offset = *this; if (unlikely (!offset)) return true; Type &obj = StructAtOffset (*CharP(base), offset); return likely (obj.sanitize (context, user_data)) || neuter (context); } private: /* Set the offset to Null */ inline bool neuter (hb_sanitize_context_t *context) { if (context->can_edit (CharP(this), this->static_size)) { this->set (0); /* 0 is Null offset */ return true; } return false; } }; template inline const Type& operator + (const Base &base, GenericOffsetTo offset) { return offset (base); } template struct OffsetTo : GenericOffsetTo {}; template struct LongOffsetTo : GenericOffsetTo {}; /* * Array Types */ template struct GenericArrayOf { const Type *array(void) const { return &StructAfter (len); } Type *array(void) { return &StructAfter (len); } const Type *sub_array (unsigned int start_offset, unsigned int *pcount /* IN/OUT */) const { unsigned int count = len; if (unlikely (start_offset > count)) count = 0; else count -= start_offset; count = MIN (count, *pcount); *pcount = count; return array() + start_offset; } inline const Type& operator [] (unsigned int i) const { if (unlikely (i >= len)) return Null(Type); return array()[i]; } inline unsigned int get_size () const { return len.static_size + len * Type::static_size; } inline bool sanitize (hb_sanitize_context_t *context) { TRACE_SANITIZE (); if (!likely (sanitize_shallow (context))) return false; /* 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. */ return true; /* 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. */ unsigned int count = len; for (unsigned int i = 0; i < count; i++) if (array()[i].sanitize (context)) return false; return true; } inline bool sanitize (hb_sanitize_context_t *context, void *base) { TRACE_SANITIZE (); if (!likely (sanitize_shallow (context))) return false; unsigned int count = len; for (unsigned int i = 0; i < count; i++) if (!array()[i].sanitize (context, base)) return false; return true; } template inline bool sanitize (hb_sanitize_context_t *context, void *base, T user_data) { TRACE_SANITIZE (); if (!likely (sanitize_shallow (context))) return false; unsigned int count = len; for (unsigned int i = 0; i < count; i++) if (!array()[i].sanitize (context, base, user_data)) return false; return true; } private: inline bool sanitize_shallow (hb_sanitize_context_t *context) { TRACE_SANITIZE (); return context->check_struct (this) && context->check_array (this, Type::static_size, len); } public: LenType len; /*Type array[VAR];*/ }; /* An array with a USHORT number of elements. */ template struct ArrayOf : GenericArrayOf {}; /* An array with a ULONG number of elements. */ template struct LongArrayOf : GenericArrayOf {}; /* Array of Offset's */ template struct OffsetArrayOf : ArrayOf > {}; /* Array of LongOffset's */ template struct LongOffsetArrayOf : ArrayOf > {}; /* LongArray of LongOffset's */ template struct LongOffsetLongArrayOf : LongArrayOf > {}; /* Array of offsets relative to the beginning of the array itself. */ template struct OffsetListOf : OffsetArrayOf { inline const Type& operator [] (unsigned int i) const { if (unlikely (i >= this->len)) return Null(Type); return this+this->array()[i]; } inline bool sanitize (hb_sanitize_context_t *context) { TRACE_SANITIZE (); return OffsetArrayOf::sanitize (context, CharP(this)); } template inline bool sanitize (hb_sanitize_context_t *context, T user_data) { TRACE_SANITIZE (); return OffsetArrayOf::sanitize (context, CharP(this), user_data); } }; /* An array with a USHORT number of elements, * starting at second element. */ template struct HeadlessArrayOf { const Type *array(void) const { return &StructAfter (len); } Type *array(void) { return &StructAfter (len); } inline const Type& operator [] (unsigned int i) const { if (unlikely (i >= len || !i)) return Null(Type); return array()[i-1]; } inline unsigned int get_size () const { return len.static_size + (len ? len - 1 : 0) * Type::static_size; } inline bool sanitize_shallow (hb_sanitize_context_t *context) { return context->check_struct (this) && context->check_array (this, Type::static_size, len); } inline bool sanitize (hb_sanitize_context_t *context) { TRACE_SANITIZE (); if (!likely (sanitize_shallow (context))) return false; /* 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. */ return true; /* 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. */ unsigned int count = len ? len - 1 : 0; Type *a = array(); for (unsigned int i = 0; i < count; i++) if (!a[i].sanitize (context)) return false; return true; } USHORT len; /*Type array[VAR];*/ }; #endif /* HB_OPEN_TYPE_PRIVATE_HH */