2009-07-30 21:33:57 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009 Red Hat, Inc.
|
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
|
2013-01-14 20:51:46 +01:00
|
|
|
#define _POSIX_C_SOURCE 199309L
|
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"
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2011-05-05 01:27:37 +02:00
|
|
|
#include "hb-object-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>
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#ifndef HB_DEBUG_BLOB
|
2010-11-03 20:11:04 +01:00
|
|
|
#define HB_DEBUG_BLOB (HB_DEBUG+0)
|
2009-08-28 22:31:20 +02:00
|
|
|
#endif
|
|
|
|
|
2011-05-05 01:27:37 +02:00
|
|
|
|
2012-06-16 21:21:55 +02:00
|
|
|
struct hb_blob_t {
|
2011-05-05 01:27:37 +02:00
|
|
|
hb_object_header_t header;
|
2012-06-06 09:30:09 +02:00
|
|
|
ASSERT_POD ();
|
2011-05-05 01:27:37 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
bool immutable;
|
2011-05-05 01:27:37 +02:00
|
|
|
|
|
|
|
const char *data;
|
2011-05-07 04:28:26 +02:00
|
|
|
unsigned int length;
|
|
|
|
hb_memory_mode_t mode;
|
2011-05-05 01:27:37 +02:00
|
|
|
|
|
|
|
void *user_data;
|
|
|
|
hb_destroy_func_t destroy;
|
|
|
|
};
|
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
|
|
|
|
static bool _try_writable (hb_blob_t *blob);
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
static void
|
|
|
|
_hb_blob_destroy_user_data (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
if (blob->destroy) {
|
|
|
|
blob->destroy (blob->user_data);
|
|
|
|
blob->user_data = NULL;
|
2011-04-20 08:59:28 +02:00
|
|
|
blob->destroy = NULL;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-05 00:28:39 +02:00
|
|
|
/**
|
2013-09-12 23:14:33 +02:00
|
|
|
* hb_blob_create: (Xconstructor)
|
2015-01-06 23:05:26 +01:00
|
|
|
* @data: (array length=length) (element-type uint8_t) (closure user_data) (destroy destroy) (scope notified) (transfer none): 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 00:43:14 +01:00
|
|
|
* @user_data: (nullable): Data parameter to pass to @destroy.
|
|
|
|
* @destroy: (nullable): 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().
|
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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 ||
|
|
|
|
data + length < data /* overflows */ ||
|
|
|
|
!(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;
|
2011-05-07 04:28:26 +02:00
|
|
|
if (!_try_writable (blob)) {
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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),
|
2011-05-07 04:28:26 +02:00
|
|
|
(hb_destroy_func_t) hb_blob_destroy);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
|
|
|
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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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
|
|
|
|
|
|
|
NULL, /* data */
|
|
|
|
0, /* length */
|
|
|
|
HB_MEMORY_MODE_READONLY, /* mode */
|
|
|
|
|
|
|
|
NULL, /* user_data */
|
|
|
|
NULL /* destroy */
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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.
|
|
|
|
*
|
|
|
|
* Descreases the reference count on @blob, and if it reaches zero, destroys
|
|
|
|
* @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.
|
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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
|
|
|
|
|
|
|
_hb_blob_destroy_user_data (blob);
|
|
|
|
|
|
|
|
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.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value:
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Return value: (transfer none):
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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.
|
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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.
|
|
|
|
*
|
2013-09-06 21:40:22 +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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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.
|
|
|
|
*
|
2013-09-06 21:40:22 +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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
*
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
2013-09-06 21:40:22 +02:00
|
|
|
* Returns: (transfer none) (array length=length):
|
2013-09-05 00:28:39 +02:00
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
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
|
|
|
*
|
|
|
|
* Since: 1.0
|
|
|
|
**/
|
2011-05-07 04:28:26 +02:00
|
|
|
char *
|
|
|
|
hb_blob_get_data_writable (hb_blob_t *blob, unsigned int *length)
|
|
|
|
{
|
|
|
|
if (!_try_writable (blob)) {
|
|
|
|
if (length)
|
|
|
|
*length = 0;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
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
|
|
|
|
|
|
|
static hb_bool_t
|
2011-05-07 04:28:26 +02:00
|
|
|
_try_make_writable_inplace_unix (hb_blob_t *blob)
|
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) {
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "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
|
|
|
}
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "pagesize is %lu", (unsigned long) pagesize);
|
2009-08-18 21:49:23 +02:00
|
|
|
|
|
|
|
mask = ~(pagesize-1);
|
2010-02-23 22:47:51 +01:00
|
|
|
addr = (const char *) (((uintptr_t) blob->data) & mask);
|
|
|
|
length = (const char *) (((uintptr_t) blob->data + blob->length + pagesize-1) & mask) - addr;
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob,
|
|
|
|
"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)) {
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "mprotect failed: %s", strerror (errno));
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-18 21:49:23 +02:00
|
|
|
}
|
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
blob->mode = HB_MEMORY_MODE_WRITABLE;
|
|
|
|
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob,
|
|
|
|
"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
|
|
|
|
}
|
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
static bool
|
|
|
|
_try_writable_inplace (hb_blob_t *blob)
|
2009-08-19 22:45:41 +02:00
|
|
|
{
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "making writable inplace\n");
|
2009-08-19 22:45:41 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
if (_try_make_writable_inplace_unix (blob))
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2011-05-07 04:28:26 +02:00
|
|
|
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "making writable -> FAILED\n");
|
2011-05-07 04:28:26 +02:00
|
|
|
|
|
|
|
/* Failed to make writable inplace, mark that */
|
|
|
|
blob->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
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
static bool
|
|
|
|
_try_writable (hb_blob_t *blob)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2011-05-07 04:28:26 +02:00
|
|
|
if (blob->immutable)
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-04 03:27:08 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
if (blob->mode == HB_MEMORY_MODE_WRITABLE)
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
if (blob->mode == HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE && _try_writable_inplace (blob))
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2010-04-23 19:48:06 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
if (blob->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
|
|
|
|
2012-03-02 02:30:29 +01:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "current data is -> %p\n", blob->data);
|
2011-05-07 04:28:26 +02:00
|
|
|
|
|
|
|
char *new_data;
|
|
|
|
|
|
|
|
new_data = (char *) malloc (blob->length);
|
|
|
|
if (unlikely (!new_data))
|
2012-06-06 02:35:40 +02:00
|
|
|
return false;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-07-26 02:25:44 +02:00
|
|
|
DEBUG_MSG_FUNC (BLOB, blob, "dupped successfully -> %p\n", blob->data);
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2011-05-07 04:28:26 +02:00
|
|
|
memcpy (new_data, blob->data, blob->length);
|
|
|
|
_hb_blob_destroy_user_data (blob);
|
|
|
|
blob->mode = HB_MEMORY_MODE_WRITABLE;
|
|
|
|
blob->data = new_data;
|
|
|
|
blob->user_data = new_data;
|
|
|
|
blob->destroy = free;
|
|
|
|
|
2012-06-06 02:35:40 +02:00
|
|
|
return true;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|