2009-07-30 21:33:57 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009 Red Hat, Inc.
|
2018-05-11 11:10:33 +02:00
|
|
|
* Copyright © 2018 Ebrahim Byagowi
|
2009-07-30 21:33:57 +02:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-07-30 21:33:57 +02: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
|
|
|
|
*/
|
|
|
|
|
2013-01-14 07:33:58 +01:00
|
|
|
/* http://www.oracle.com/technetwork/articles/servers-storage-dev/standardheaderfiles-453865.html */
|
2014-07-09 23:17:18 +02:00
|
|
|
#ifndef _POSIX_C_SOURCE
|
2018-01-12 08:33:16 +01:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
2014-07-09 23:17:18 +02:00
|
|
|
#endif
|
2013-01-14 07:33:58 +01:00
|
|
|
|
2011-04-21 00:50:27 +02:00
|
|
|
#include "hb-private.hh"
|
2017-11-03 21:57:30 +01:00
|
|
|
#include "hb-debug.hh"
|
2018-05-04 03:10:57 +02:00
|
|
|
#include "hb-blob-private.hh"
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-13 11:25:23 +02:00
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
2009-08-13 01:36:29 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2009-08-03 23:53:29 +02:00
|
|
|
#include <unistd.h>
|
2009-08-13 01:36:29 +02:00
|
|
|
#endif /* HAVE_UNISTD_H */
|
2009-08-03 23:53:29 +02:00
|
|
|
#include <sys/mman.h>
|
2009-08-13 11:25:23 +02:00
|
|
|
#endif /* HAVE_SYS_MMAN_H */
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2018-04-20 07:59:06 +02:00
|
|
|
#include <stdlib.h>
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2015-01-07 04:16:38 +01:00
|
|
|
* hb_blob_create: (skip)
|
|
|
|
* @data: Pointer to blob data.
|
2013-09-05 00:28:39 +02:00
|
|
|
* @length: Length of @data in bytes.
|
|
|
|
* @mode: Memory mode for @data.
|
2015-01-07 04:16:38 +01:00
|
|
|
* @user_data: Data parameter to pass to @destroy.
|
|
|
|
* @destroy: Callback to call when @data is not needed anymore.
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
* Creates a new "blob" object wrapping @data. The @mode parameter is used
|
|
|
|
* to negotiate ownership and lifecycle of @data.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: New blob, or the empty blob if something failed or if @length is
|
2013-09-05 00:28:39 +02:00
|
|
|
* zero. Destroy with hb_blob_destroy().
|
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_create (const char *data,
|
2009-08-03 23:53:29 +02:00
|
|
|
unsigned int length,
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_memory_mode_t mode,
|
2011-04-20 08:59:28 +02:00
|
|
|
void *user_data,
|
|
|
|
hb_destroy_func_t destroy)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
|
|
|
hb_blob_t *blob;
|
|
|
|
|
2014-12-19 03:22:21 +01:00
|
|
|
if (!length ||
|
|
|
|
length >= 1u << 31 ||
|
|
|
|
!(blob = hb_object_create<hb_blob_t> ())) {
|
2009-07-30 21:33:57 +02:00
|
|
|
if (destroy)
|
|
|
|
destroy (user_data);
|
2012-06-05 18:31:51 +02:00
|
|
|
return hb_blob_get_empty ();
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
blob->data = data;
|
2009-08-03 23:53:29 +02:00
|
|
|
blob->length = length;
|
2009-07-30 21:33:57 +02:00
|
|
|
blob->mode = mode;
|
|
|
|
|
|
|
|
blob->user_data = user_data;
|
2011-04-20 08:59:28 +02:00
|
|
|
blob->destroy = destroy;
|
2009-07-30 21:33:57 +02:00
|
|
|
|
|
|
|
if (blob->mode == HB_MEMORY_MODE_DUPLICATE) {
|
|
|
|
blob->mode = HB_MEMORY_MODE_READONLY;
|
2018-05-04 04:14:54 +02:00
|
|
|
if (!blob->try_make_writable ()) {
|
2009-08-04 03:27:08 +02:00
|
|
|
hb_blob_destroy (blob);
|
2012-06-05 18:31:51 +02:00
|
|
|
return hb_blob_get_empty ();
|
2009-08-04 03:27:08 +02:00
|
|
|
}
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2017-10-11 15:51:31 +02:00
|
|
|
static void
|
|
|
|
_hb_blob_destroy (void *data)
|
|
|
|
{
|
|
|
|
hb_blob_destroy ((hb_blob_t *) data);
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_create_sub_blob:
|
|
|
|
* @parent: Parent blob.
|
|
|
|
* @offset: Start offset of sub-blob within @parent, in bytes.
|
|
|
|
* @length: Length of sub-blob.
|
|
|
|
*
|
|
|
|
* Returns a blob that represents a range of bytes in @parent. The new
|
|
|
|
* blob is always created with %HB_MEMORY_MODE_READONLY, meaning that it
|
|
|
|
* will never modify data in the parent blob. The parent data is not
|
|
|
|
* expected to be modified, and will result in undefined behavior if it
|
|
|
|
* is.
|
|
|
|
*
|
|
|
|
* Makes @parent immutable.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: New blob, or the empty blob if something failed or if
|
|
|
|
* @length is zero or @offset is beyond the end of @parent's data. Destroy
|
|
|
|
* with hb_blob_destroy().
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-08-03 23:53:29 +02:00
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_create_sub_blob (hb_blob_t *parent,
|
|
|
|
unsigned int offset,
|
|
|
|
unsigned int length)
|
|
|
|
{
|
|
|
|
hb_blob_t *blob;
|
|
|
|
|
2011-05-11 20:30:56 +02:00
|
|
|
if (!length || offset >= parent->length)
|
2012-06-05 18:31:51 +02:00
|
|
|
return hb_blob_get_empty ();
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
hb_blob_make_immutable (parent);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
blob = hb_blob_create (parent->data + offset,
|
2011-05-03 06:19:18 +02:00
|
|
|
MIN (length, parent->length - offset),
|
2013-02-25 23:06:35 +01:00
|
|
|
HB_MEMORY_MODE_READONLY,
|
2011-05-03 06:19:18 +02:00
|
|
|
hb_blob_reference (parent),
|
2017-10-11 15:51:31 +02:00
|
|
|
_hb_blob_destroy);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2018-02-14 07:12:36 +01:00
|
|
|
/**
|
|
|
|
* hb_blob_copy_writable_or_fail:
|
|
|
|
* @blob: A blob.
|
|
|
|
*
|
|
|
|
* Makes a writable copy of @blob.
|
|
|
|
*
|
|
|
|
* Return value: New blob, or nullptr if allocation failed.
|
|
|
|
*
|
|
|
|
* Since: 1.8.0
|
|
|
|
**/
|
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_copy_writable_or_fail (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
blob = hb_blob_create (blob->data,
|
|
|
|
blob->length,
|
|
|
|
HB_MEMORY_MODE_DUPLICATE,
|
|
|
|
nullptr,
|
|
|
|
nullptr);
|
|
|
|
|
|
|
|
if (unlikely (blob == hb_blob_get_empty ()))
|
|
|
|
blob = nullptr;
|
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_get_empty:
|
|
|
|
*
|
|
|
|
* Returns the singleton empty blob.
|
|
|
|
*
|
|
|
|
* See TODO:link object types for more information.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: (transfer full): the empty blob.
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-08-03 23:53:29 +02:00
|
|
|
hb_blob_t *
|
2011-05-03 01:36:39 +02:00
|
|
|
hb_blob_get_empty (void)
|
2009-08-03 23:53:29 +02:00
|
|
|
{
|
2012-06-05 18:31:51 +02:00
|
|
|
static const hb_blob_t _hb_blob_nil = {
|
|
|
|
HB_OBJECT_HEADER_STATIC,
|
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
true, /* immutable */
|
2012-06-05 18:31:51 +02:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
nullptr, /* data */
|
2012-06-05 18:31:51 +02:00
|
|
|
0, /* length */
|
|
|
|
HB_MEMORY_MODE_READONLY, /* mode */
|
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
nullptr, /* user_data */
|
|
|
|
nullptr /* destroy */
|
2012-06-05 18:31:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
return const_cast<hb_blob_t *> (&_hb_blob_nil);
|
2009-08-03 23:53:29 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2013-09-06 21:40:22 +02:00
|
|
|
* hb_blob_reference: (skip)
|
2013-09-05 00:28:39 +02:00
|
|
|
* @blob: a blob.
|
|
|
|
*
|
|
|
|
* Increases the reference count on @blob.
|
|
|
|
*
|
|
|
|
* See TODO:link object types for more information.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: @blob.
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_reference (hb_blob_t *blob)
|
|
|
|
{
|
2011-04-27 22:38:03 +02:00
|
|
|
return hb_object_reference (blob);
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2013-09-06 21:40:22 +02:00
|
|
|
* hb_blob_destroy: (skip)
|
2013-09-05 00:28:39 +02:00
|
|
|
* @blob: a blob.
|
|
|
|
*
|
2018-01-31 14:44:45 +01:00
|
|
|
* Decreases the reference count on @blob, and if it reaches zero, destroys
|
2013-09-05 00:28:39 +02:00
|
|
|
* @blob, freeing all memory, possibly calling the destroy-callback the blob
|
|
|
|
* was created for if it has not been called already.
|
|
|
|
*
|
|
|
|
* See TODO:link object types for more information.
|
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-07-30 21:33:57 +02:00
|
|
|
void
|
|
|
|
hb_blob_destroy (hb_blob_t *blob)
|
|
|
|
{
|
2011-04-27 22:38:03 +02:00
|
|
|
if (!hb_object_destroy (blob)) return;
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
blob->fini_shallow ();
|
2009-07-30 21:33:57 +02:00
|
|
|
|
|
|
|
free (blob);
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2013-09-06 21:40:22 +02:00
|
|
|
* hb_blob_set_user_data: (skip)
|
2013-09-05 00:28:39 +02:00
|
|
|
* @blob: a blob.
|
|
|
|
* @key: key for data to set.
|
|
|
|
* @data: data to set.
|
|
|
|
* @destroy: callback to call when @data is not needed anymore.
|
|
|
|
* @replace: whether to replace an existing data with the same key.
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
* Return value:
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-04-28 03:46:01 +02:00
|
|
|
hb_bool_t
|
|
|
|
hb_blob_set_user_data (hb_blob_t *blob,
|
|
|
|
hb_user_data_key_t *key,
|
|
|
|
void * data,
|
2011-08-09 00:43:24 +02:00
|
|
|
hb_destroy_func_t destroy,
|
|
|
|
hb_bool_t replace)
|
2011-04-28 03:46:01 +02:00
|
|
|
{
|
2011-08-09 00:43:24 +02:00
|
|
|
return hb_object_set_user_data (blob, key, data, destroy, replace);
|
2011-04-28 03:46:01 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2013-09-06 21:40:22 +02:00
|
|
|
* hb_blob_get_user_data: (skip)
|
2013-09-05 00:28:39 +02:00
|
|
|
* @blob: a blob.
|
|
|
|
* @key: key for data to get.
|
|
|
|
*
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
*
|
|
|
|
* Return value: (transfer none):
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-04-28 03:46:01 +02:00
|
|
|
void *
|
|
|
|
hb_blob_get_user_data (hb_blob_t *blob,
|
|
|
|
hb_user_data_key_t *key)
|
|
|
|
{
|
|
|
|
return hb_object_get_user_data (blob, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_make_immutable:
|
|
|
|
* @blob: a blob.
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2009-08-04 03:27:08 +02:00
|
|
|
void
|
2011-05-07 04:28:26 +02:00
|
|
|
hb_blob_make_immutable (hb_blob_t *blob)
|
2009-08-04 03:27:08 +02:00
|
|
|
{
|
2011-04-27 22:38:03 +02:00
|
|
|
if (hb_object_is_inert (blob))
|
2009-08-06 19:33:51 +02:00
|
|
|
return;
|
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
blob->immutable = true;
|
2011-05-07 04:28:26 +02:00
|
|
|
}
|
2009-08-05 21:20:34 +02:00
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_is_immutable:
|
|
|
|
* @blob: a blob.
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: TODO
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-05-07 04:28:26 +02:00
|
|
|
hb_bool_t
|
|
|
|
hb_blob_is_immutable (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
return blob->immutable;
|
|
|
|
}
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2009-11-06 02:08:17 +01:00
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_get_length:
|
|
|
|
* @blob: a blob.
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: the length of blob data in bytes.
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-05-07 04:28:26 +02:00
|
|
|
unsigned int
|
|
|
|
hb_blob_get_length (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
return blob->length;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_get_data:
|
|
|
|
* @blob: a blob.
|
2013-09-06 21:40:22 +02:00
|
|
|
* @length: (out):
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
*
|
2018-04-20 07:59:06 +02:00
|
|
|
*
|
|
|
|
* Returns: (transfer none) (array length=length):
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-05-07 04:28:26 +02:00
|
|
|
const char *
|
|
|
|
hb_blob_get_data (hb_blob_t *blob, unsigned int *length)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2011-05-07 04:28:26 +02:00
|
|
|
if (length)
|
|
|
|
*length = blob->length;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
return blob->data;
|
|
|
|
}
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
|
|
|
* hb_blob_get_data_writable:
|
|
|
|
* @blob: a blob.
|
|
|
|
* @length: (out): output length of the writable data.
|
|
|
|
*
|
|
|
|
* Tries to make blob data writable (possibly copying it) and
|
|
|
|
* return pointer to data.
|
|
|
|
*
|
|
|
|
* Fails if blob has been made immutable, or if memory allocation
|
|
|
|
* fails.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Returns: (transfer none) (array length=length): Writable blob data,
|
|
|
|
* or %NULL if failed.
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2015-09-03 13:23:22 +02:00
|
|
|
* Since: 0.9.2
|
2013-09-05 00:28:39 +02:00
|
|
|
**/
|
2011-05-07 04:28:26 +02:00
|
|
|
char *
|
|
|
|
hb_blob_get_data_writable (hb_blob_t *blob, unsigned int *length)
|
|
|
|
{
|
2018-05-04 04:14:54 +02:00
|
|
|
if (!blob->try_make_writable ()) {
|
2011-05-07 04:28:26 +02:00
|
|
|
if (length)
|
|
|
|
*length = 0;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2017-10-15 12:11:08 +02:00
|
|
|
return nullptr;
|
2011-05-07 04:28:26 +02:00
|
|
|
}
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
if (length)
|
|
|
|
*length = blob->length;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
return const_cast<char *> (blob->data);
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2009-08-18 21:49:23 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
bool
|
|
|
|
hb_blob_t::try_make_writable_inplace_unix (void)
|
2009-08-18 21:49:23 +02:00
|
|
|
{
|
|
|
|
#if defined(HAVE_SYS_MMAN_H) && defined(HAVE_MPROTECT)
|
2010-02-23 22:47:51 +01:00
|
|
|
uintptr_t pagesize = -1, mask, length;
|
2009-08-18 21:49:23 +02:00
|
|
|
const char *addr;
|
|
|
|
|
|
|
|
#if defined(HAVE_SYSCONF) && defined(_SC_PAGE_SIZE)
|
2010-02-23 22:47:51 +01:00
|
|
|
pagesize = (uintptr_t) sysconf (_SC_PAGE_SIZE);
|
2009-08-18 21:49:23 +02:00
|
|
|
#elif defined(HAVE_SYSCONF) && defined(_SC_PAGESIZE)
|
2010-02-23 22:47:51 +01:00
|
|
|
pagesize = (uintptr_t) sysconf (_SC_PAGESIZE);
|
2009-08-18 21:49:23 +02:00
|
|
|
#elif defined(HAVE_GETPAGESIZE)
|
2010-02-23 22:47:51 +01:00
|
|
|
pagesize = (uintptr_t) getpagesize ();
|
2009-08-18 21:49:23 +02:00
|
|
|
#endif
|
|
|
|
|
2010-02-23 22:47:51 +01:00
|
|
|
if ((uintptr_t) -1L == pagesize) {
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "failed to get pagesize: %s", strerror (errno));
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-18 21:49:23 +02:00
|
|
|
}
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "pagesize is %lu", (unsigned long) pagesize);
|
2009-08-18 21:49:23 +02:00
|
|
|
|
|
|
|
mask = ~(pagesize-1);
|
2018-05-04 04:14:54 +02:00
|
|
|
addr = (const char *) (((uintptr_t) this->data) & mask);
|
|
|
|
length = (const char *) (((uintptr_t) this->data + this->length + pagesize-1) & mask) - addr;
|
|
|
|
DEBUG_MSG_FUNC (BLOB, this,
|
2011-07-26 02:25:44 +02:00
|
|
|
"calling mprotect on [%p..%p] (%lu bytes)",
|
|
|
|
addr, addr+length, (unsigned long) length);
|
2009-08-18 21:49:23 +02:00
|
|
|
if (-1 == mprotect ((void *) addr, length, PROT_READ | PROT_WRITE)) {
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "mprotect failed: %s", strerror (errno));
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-18 21:49:23 +02:00
|
|
|
}
|
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
this->mode = HB_MEMORY_MODE_WRITABLE;
|
2011-05-07 04:28:26 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this,
|
2011-07-26 02:25:44 +02:00
|
|
|
"successfully made [%p..%p] (%lu bytes) writable\n",
|
|
|
|
addr, addr+length, (unsigned long) length);
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-08-18 21:49:23 +02:00
|
|
|
#else
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-18 21:49:23 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
bool
|
|
|
|
hb_blob_t::try_make_writable_inplace (void)
|
2009-08-19 22:45:41 +02:00
|
|
|
{
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "making writable inplace\n");
|
2009-08-19 22:45:41 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
if (this->try_make_writable_inplace_unix ())
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2011-05-07 04:28:26 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "making writable -> FAILED\n");
|
2011-05-07 04:28:26 +02:00
|
|
|
|
|
|
|
/* Failed to make writable inplace, mark that */
|
2018-05-04 04:14:54 +02:00
|
|
|
this->mode = HB_MEMORY_MODE_READONLY;
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-19 22:45:41 +02:00
|
|
|
}
|
2009-08-18 21:49:23 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
bool
|
|
|
|
hb_blob_t::try_make_writable (void)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2018-05-04 04:14:54 +02:00
|
|
|
if (this->immutable)
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-04 03:27:08 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
if (this->mode == HB_MEMORY_MODE_WRITABLE)
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
if (this->mode == HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE && this->try_make_writable_inplace ())
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2010-04-23 19:48:06 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
if (this->mode == HB_MEMORY_MODE_WRITABLE)
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "current data is -> %p\n", this->data);
|
2011-05-07 04:28:26 +02:00
|
|
|
|
|
|
|
char *new_data;
|
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
new_data = (char *) malloc (this->length);
|
2011-05-07 04:28:26 +02:00
|
|
|
if (unlikely (!new_data))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, this, "dupped successfully -> %p\n", this->data);
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2018-05-04 04:14:54 +02:00
|
|
|
memcpy (new_data, this->data, this->length);
|
|
|
|
this->destroy_user_data ();
|
|
|
|
this->mode = HB_MEMORY_MODE_WRITABLE;
|
|
|
|
this->data = new_data;
|
|
|
|
this->user_data = new_data;
|
|
|
|
this->destroy = free;
|
2011-05-07 04:28:26 +02:00
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
2018-04-20 07:59:06 +02:00
|
|
|
|
2018-05-04 03:10:57 +02:00
|
|
|
/*
|
|
|
|
* Mmap
|
|
|
|
*/
|
|
|
|
|
2018-05-11 11:10:33 +02:00
|
|
|
#ifdef HAVE_MMAP
|
2018-05-11 12:06:41 +02:00
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <fcntl.h>
|
2018-05-11 11:10:33 +02:00
|
|
|
#endif
|
|
|
|
|
2018-04-20 07:59:06 +02:00
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
2018-05-11 12:06:41 +02:00
|
|
|
# include <windows.h>
|
2018-06-27 11:43:26 +02:00
|
|
|
#else
|
|
|
|
# ifndef _O_BINARY
|
|
|
|
# define _O_BINARY 0
|
|
|
|
# endif
|
2018-04-20 07:59:06 +02:00
|
|
|
#endif
|
|
|
|
|
2018-05-26 21:20:10 +02:00
|
|
|
#ifndef MAP_NORESERVE
|
|
|
|
# define MAP_NORESERVE 0
|
|
|
|
#endif
|
|
|
|
|
2018-04-20 07:59:06 +02:00
|
|
|
struct hb_mapped_file_t
|
|
|
|
{
|
|
|
|
char *contents;
|
|
|
|
unsigned long length;
|
|
|
|
#if defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
HANDLE mapping;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
_hb_mapped_file_destroy (hb_mapped_file_t *file)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
munmap (file->contents, file->length);
|
|
|
|
#elif defined(_WIN32) || defined(__CYGWIN__)
|
|
|
|
UnmapViewOfFile (file->contents);
|
|
|
|
CloseHandle (file->mapping);
|
|
|
|
#else
|
2018-06-25 19:53:43 +02:00
|
|
|
assert (0); // If we don't have mmap we shouldn't reach here
|
2018-04-20 07:59:06 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
free (file);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* hb_blob_create_from_file:
|
|
|
|
* @file_name: font filename.
|
|
|
|
*
|
|
|
|
* Returns: A hb_blob_t pointer with the content of the file
|
|
|
|
*
|
2018-06-06 00:17:39 +02:00
|
|
|
* Since: 1.7.7
|
2018-04-20 07:59:06 +02:00
|
|
|
**/
|
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_create_from_file (const char *file_name)
|
|
|
|
{
|
|
|
|
// Adopted from glib's gmappedfile.c with Matthias Clasen and
|
2018-05-11 11:10:33 +02:00
|
|
|
// Allison Lortie permission but changed a lot to suit our need.
|
2018-06-25 19:53:43 +02:00
|
|
|
#if defined(HAVE_MMAP) && !defined(NOMMAPFILEREADER)
|
2018-05-11 11:10:33 +02:00
|
|
|
hb_mapped_file_t *file = (hb_mapped_file_t *) calloc (1, sizeof (hb_mapped_file_t));
|
|
|
|
if (unlikely (!file)) return hb_blob_get_empty ();
|
2018-04-20 07:59:06 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
int fd = open (file_name, O_RDONLY | _O_BINARY, 0);
|
2018-05-11 11:10:33 +02:00
|
|
|
if (unlikely (fd == -1)) goto fail_without_close;
|
2018-04-20 07:59:06 +02:00
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
if (unlikely (fstat (fd, &st) == -1)) goto fail;
|
|
|
|
|
|
|
|
file->length = (unsigned long) st.st_size;
|
2018-06-25 19:53:43 +02:00
|
|
|
file->contents = (char *) mmap (nullptr, file->length, PROT_READ,
|
2018-05-26 21:20:10 +02:00
|
|
|
MAP_PRIVATE | MAP_NORESERVE, fd, 0);
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
if (unlikely (file->contents == MAP_FAILED)) goto fail;
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
close (fd);
|
|
|
|
|
|
|
|
return hb_blob_create (file->contents, file->length,
|
|
|
|
HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE, (void *) file,
|
|
|
|
(hb_destroy_func_t) _hb_mapped_file_destroy);
|
|
|
|
|
|
|
|
fail:
|
|
|
|
close (fd);
|
|
|
|
fail_without_close:
|
|
|
|
free (file);
|
|
|
|
|
|
|
|
#elif (defined(_WIN32) || defined(__CYGWIN__)) && !defined(NOMMAPFILEREADER)
|
|
|
|
hb_mapped_file_t *file = (hb_mapped_file_t *) calloc (1, sizeof (hb_mapped_file_t));
|
|
|
|
if (unlikely (!file)) return hb_blob_get_empty ();
|
|
|
|
|
|
|
|
HANDLE fd = CreateFile (file_name, GENERIC_READ, FILE_SHARE_READ, nullptr,
|
|
|
|
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL|FILE_FLAG_OVERLAPPED,
|
|
|
|
nullptr);
|
2018-05-11 11:10:33 +02:00
|
|
|
|
|
|
|
if (unlikely (fd == INVALID_HANDLE_VALUE)) goto fail_without_close;
|
|
|
|
|
|
|
|
file->length = (unsigned long) GetFileSize (fd, nullptr);
|
2018-06-25 19:53:43 +02:00
|
|
|
file->mapping = CreateFileMapping (fd, nullptr, PAGE_READONLY, 0, 0, nullptr);
|
2018-04-20 07:59:06 +02:00
|
|
|
if (unlikely (file->mapping == nullptr)) goto fail;
|
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
file->contents = (char *) MapViewOfFile (file->mapping, FILE_MAP_READ, 0, 0, 0);
|
2018-05-11 11:10:33 +02:00
|
|
|
if (unlikely (file->contents == nullptr)) goto fail;
|
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
CloseHandle (fd);
|
|
|
|
return hb_blob_create (file->contents, file->length,
|
|
|
|
HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE, (void *) file,
|
|
|
|
(hb_destroy_func_t) _hb_mapped_file_destroy);
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
fail:
|
|
|
|
CloseHandle (fd);
|
|
|
|
fail_without_close:
|
|
|
|
free (file);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// The following tries to read a file without knowing its size beforehand
|
|
|
|
// It's used for systems without mmap concept or to read from pipes
|
2018-06-27 11:43:26 +02:00
|
|
|
unsigned long len = 0, allocated = BUFSIZ * 16;
|
2018-06-25 19:53:43 +02:00
|
|
|
char *blob = (char *) malloc (allocated);
|
2018-06-26 08:16:10 +02:00
|
|
|
if (unlikely (blob == nullptr)) return hb_blob_get_empty ();
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
FILE *fp = fopen (file_name, "rb");
|
|
|
|
if (unlikely (fp == nullptr)) goto fread_fail_without_close;
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
while (!feof (fp))
|
|
|
|
{
|
|
|
|
if (allocated - len < BUFSIZ)
|
|
|
|
{
|
|
|
|
allocated *= 2;
|
2018-06-27 11:43:26 +02:00
|
|
|
// Don't allocate and go more than ~536MB, our mmap reader still
|
2018-06-25 19:53:43 +02:00
|
|
|
// can cover files like that but lets limit our fallback reader
|
2018-06-27 11:43:26 +02:00
|
|
|
if (unlikely (allocated > (2 << 28))) goto fread_fail;
|
2018-06-25 19:53:43 +02:00
|
|
|
char *new_blob = (char *) realloc (blob, allocated);
|
2018-06-26 08:16:10 +02:00
|
|
|
if (unlikely (new_blob == nullptr)) goto fread_fail;
|
2018-06-25 19:53:43 +02:00
|
|
|
blob = new_blob;
|
|
|
|
}
|
2018-05-11 11:10:33 +02:00
|
|
|
|
2018-06-27 11:43:26 +02:00
|
|
|
unsigned long addition = fread (blob + len, 1, allocated - len, fp);
|
|
|
|
|
|
|
|
int err = ferror (fp);
|
|
|
|
if (unlikely (err == EINTR)) continue;
|
2018-06-25 19:53:43 +02:00
|
|
|
if (unlikely (ferror (fp))) goto fread_fail;
|
2018-06-27 11:43:26 +02:00
|
|
|
|
|
|
|
len += addition;
|
2018-06-25 19:53:43 +02:00
|
|
|
}
|
2018-04-20 07:59:06 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
return hb_blob_create (blob, len, HB_MEMORY_MODE_WRITABLE, blob,
|
|
|
|
(hb_destroy_func_t) free);
|
2018-04-20 07:59:06 +02:00
|
|
|
|
2018-06-25 19:53:43 +02:00
|
|
|
fread_fail:
|
|
|
|
fclose (fp);
|
|
|
|
fread_fail_without_close:
|
|
|
|
free (blob);
|
2018-04-20 07:59:06 +02:00
|
|
|
return hb_blob_get_empty ();
|
|
|
|
}
|