2009-07-30 21:33:57 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, an OpenType Layout engine 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hb-private.h"
|
|
|
|
|
|
|
|
#include "hb-blob.h"
|
|
|
|
|
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
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#ifndef HB_DEBUG_BLOB
|
|
|
|
#define HB_DEBUG_BLOB HB_DEBUG
|
|
|
|
#endif
|
|
|
|
|
2009-11-05 22:16:06 +01:00
|
|
|
#if HB_DEBUG_BLOB
|
|
|
|
#include <stdio.h>
|
2009-11-06 01:54:23 +01:00
|
|
|
#include <errno.h>
|
2009-11-05 22:16:06 +01:00
|
|
|
#endif
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
struct _hb_blob_t {
|
2009-08-02 01:05:44 +02:00
|
|
|
hb_reference_count_t ref_count;
|
|
|
|
|
2009-08-03 23:53:29 +02:00
|
|
|
unsigned int length;
|
2009-08-06 19:33:51 +02:00
|
|
|
|
|
|
|
hb_mutex_t lock;
|
|
|
|
/* the rest are protected by lock */
|
|
|
|
|
|
|
|
unsigned int lock_count;
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_memory_mode_t mode;
|
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
const char *data;
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_destroy_func_t destroy;
|
|
|
|
void *user_data;
|
|
|
|
};
|
|
|
|
static hb_blob_t _hb_blob_nil = {
|
2009-08-02 01:30:31 +02:00
|
|
|
HB_REFERENCE_COUNT_INVALID, /* ref_count */
|
2009-08-02 01:05:44 +02:00
|
|
|
|
2009-08-03 23:53:29 +02:00
|
|
|
0, /* length */
|
2009-08-06 19:33:51 +02:00
|
|
|
|
|
|
|
HB_MUTEX_INIT, /* lock */
|
|
|
|
|
|
|
|
0, /* lock_count */
|
2009-08-19 22:45:41 +02:00
|
|
|
HB_MEMORY_MODE_READONLY, /* mode */
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
NULL, /* data */
|
|
|
|
|
2009-08-02 01:30:31 +02:00
|
|
|
NULL, /* destroy */
|
|
|
|
NULL /* user_data */
|
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->destroy = NULL;
|
|
|
|
blob->user_data = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-03 23:53:29 +02:00
|
|
|
static void
|
2009-08-04 03:27:08 +02:00
|
|
|
_hb_blob_unlock_and_destroy (hb_blob_t *blob)
|
2009-08-03 23:53:29 +02:00
|
|
|
{
|
2009-08-04 03:27:08 +02:00
|
|
|
hb_blob_unlock (blob);
|
|
|
|
hb_blob_destroy (blob);
|
2009-08-03 23:53:29 +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,
|
|
|
|
hb_destroy_func_t destroy,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
hb_blob_t *blob;
|
|
|
|
|
2009-08-04 04:43:02 +02:00
|
|
|
if (!length || !HB_OBJECT_DO_CREATE (hb_blob_t, blob)) {
|
2009-07-30 21:33:57 +02:00
|
|
|
if (destroy)
|
|
|
|
destroy (user_data);
|
|
|
|
return &_hb_blob_nil;
|
|
|
|
}
|
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_mutex_init (blob->lock);
|
|
|
|
blob->lock_count = 0;
|
2009-08-04 03:27:08 +02:00
|
|
|
|
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->destroy = destroy;
|
|
|
|
blob->user_data = user_data;
|
|
|
|
|
|
|
|
if (blob->mode == HB_MEMORY_MODE_DUPLICATE) {
|
|
|
|
blob->mode = HB_MEMORY_MODE_READONLY;
|
2009-08-19 22:17:24 +02:00
|
|
|
if (!hb_blob_try_writable (blob)) {
|
2009-08-04 03:27:08 +02:00
|
|
|
hb_blob_destroy (blob);
|
|
|
|
return &_hb_blob_nil;
|
|
|
|
}
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
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;
|
2009-08-04 03:27:08 +02:00
|
|
|
const char *pdata;
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2009-08-04 04:43:02 +02:00
|
|
|
if (!length || offset >= parent->length || !HB_OBJECT_DO_CREATE (hb_blob_t, blob))
|
2009-08-03 23:53:29 +02:00
|
|
|
return &_hb_blob_nil;
|
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
pdata = hb_blob_lock (parent);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
blob->data = pdata + offset;
|
|
|
|
blob->length = MIN (length, parent->length - offset);
|
2009-08-06 19:33:51 +02:00
|
|
|
|
|
|
|
hb_mutex_lock (parent->lock);
|
2009-08-03 23:53:29 +02:00
|
|
|
blob->mode = parent->mode;
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_mutex_unlock (parent->lock);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
blob->destroy = (hb_destroy_func_t) _hb_blob_unlock_and_destroy;
|
2009-08-03 23:53:29 +02:00
|
|
|
blob->user_data = hb_blob_reference (parent);
|
|
|
|
|
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_create_empty (void)
|
|
|
|
{
|
|
|
|
return &_hb_blob_nil;
|
|
|
|
}
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_blob_t *
|
|
|
|
hb_blob_reference (hb_blob_t *blob)
|
|
|
|
{
|
2009-08-02 01:54:49 +02:00
|
|
|
HB_OBJECT_DO_REFERENCE (blob);
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2009-08-02 03:36:15 +02:00
|
|
|
unsigned int
|
|
|
|
hb_blob_get_reference_count (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
HB_OBJECT_DO_GET_REFERENCE_COUNT (blob);
|
|
|
|
}
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
void
|
|
|
|
hb_blob_destroy (hb_blob_t *blob)
|
|
|
|
{
|
2009-08-02 01:54:49 +02:00
|
|
|
HB_OBJECT_DO_DESTROY (blob);
|
2009-07-30 21:33:57 +02:00
|
|
|
|
|
|
|
_hb_blob_destroy_user_data (blob);
|
|
|
|
|
|
|
|
free (blob);
|
|
|
|
}
|
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
unsigned int
|
|
|
|
hb_blob_get_length (hb_blob_t *blob)
|
|
|
|
{
|
|
|
|
return blob->length;
|
|
|
|
}
|
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
const char *
|
2009-08-04 03:27:08 +02:00
|
|
|
hb_blob_lock (hb_blob_t *blob)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2009-08-06 19:33:51 +02:00
|
|
|
if (HB_OBJECT_IS_INERT (blob))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
hb_mutex_lock (blob->lock);
|
2009-08-03 23:53:29 +02:00
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-06 19:33:51 +02:00
|
|
|
fprintf (stderr, "%p %s (%d) -> %p\n", blob, __FUNCTION__,
|
|
|
|
blob->lock_count, blob->data);
|
2009-08-05 21:20:34 +02:00
|
|
|
#endif
|
|
|
|
|
2009-11-06 02:08:17 +01:00
|
|
|
blob->lock_count++;
|
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_mutex_unlock (blob->lock);
|
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
return blob->data;
|
|
|
|
}
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
void
|
|
|
|
hb_blob_unlock (hb_blob_t *blob)
|
|
|
|
{
|
2009-08-06 19:33:51 +02:00
|
|
|
if (HB_OBJECT_IS_INERT (blob))
|
|
|
|
return;
|
|
|
|
|
|
|
|
hb_mutex_lock (blob->lock);
|
2009-08-05 21:20:34 +02:00
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-06 19:33:51 +02:00
|
|
|
fprintf (stderr, "%p %s (%d) -> %p\n", blob, __FUNCTION__,
|
2009-11-06 02:08:17 +01:00
|
|
|
blob->lock_count, blob->data);
|
2009-08-05 21:20:34 +02:00
|
|
|
#endif
|
2009-08-06 19:33:51 +02:00
|
|
|
|
2009-11-06 02:08:17 +01:00
|
|
|
assert (blob->lock_count > 0);
|
|
|
|
blob->lock_count--;
|
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_mutex_unlock (blob->lock);
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
hb_bool_t
|
2009-08-19 22:17:24 +02:00
|
|
|
hb_blob_is_writable (hb_blob_t *blob)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_memory_mode_t mode;
|
|
|
|
|
|
|
|
if (HB_OBJECT_IS_INERT (blob))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
hb_mutex_lock (blob->lock);
|
|
|
|
|
|
|
|
mode = blob->mode;
|
|
|
|
|
|
|
|
hb_mutex_unlock (blob->lock);
|
|
|
|
|
2009-08-19 22:17:24 +02:00
|
|
|
return mode == HB_MEMORY_MODE_WRITABLE;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2009-08-18 21:49:23 +02:00
|
|
|
|
|
|
|
static hb_bool_t
|
2009-08-19 22:17:24 +02:00
|
|
|
_try_make_writable_inplace_unix_locked (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) {
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-18 21:49:23 +02:00
|
|
|
fprintf (stderr, "%p %s: failed to get pagesize: %s\n", blob, __FUNCTION__, strerror (errno));
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
}
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-18 21:49:23 +02:00
|
|
|
fprintf (stderr, "%p %s: pagesize is %u\n", blob, __FUNCTION__, pagesize);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
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;
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-18 21:49:23 +02:00
|
|
|
fprintf (stderr, "%p %s: calling mprotect on [%p..%p] (%d bytes)\n",
|
|
|
|
blob, __FUNCTION__,
|
|
|
|
addr, addr+length, length);
|
|
|
|
#endif
|
|
|
|
if (-1 == mprotect ((void *) addr, length, PROT_READ | PROT_WRITE)) {
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-18 21:49:23 +02:00
|
|
|
fprintf (stderr, "%p %s: %s\n", blob, __FUNCTION__, strerror (errno));
|
|
|
|
#endif
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-19 22:17:24 +02:00
|
|
|
fprintf (stderr, "%p %s: successfully made [%p..%p] (%d bytes) writable\n",
|
2009-08-18 21:49:23 +02:00
|
|
|
blob, __FUNCTION__,
|
|
|
|
addr, addr+length, length);
|
|
|
|
#endif
|
|
|
|
return TRUE;
|
|
|
|
#else
|
|
|
|
return FALSE;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2009-08-19 22:45:41 +02:00
|
|
|
static void
|
|
|
|
_try_writable_inplace_locked (hb_blob_t *blob)
|
|
|
|
{
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-19 22:45:41 +02:00
|
|
|
fprintf (stderr, "%p %s: making writable\n", blob, __FUNCTION__);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (_try_make_writable_inplace_unix_locked (blob)) {
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-27 06:21:04 +02:00
|
|
|
fprintf (stderr, "%p %s: making writable -> succeeded\n", blob, __FUNCTION__);
|
2009-08-19 22:45:41 +02:00
|
|
|
#endif
|
|
|
|
blob->mode = HB_MEMORY_MODE_WRITABLE;
|
|
|
|
} else {
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-27 06:21:04 +02:00
|
|
|
fprintf (stderr, "%p %s: making writable -> FAILED\n", blob, __FUNCTION__);
|
2009-08-19 22:45:41 +02:00
|
|
|
#endif
|
|
|
|
/* Failed to make writable inplace, mark that */
|
|
|
|
blob->mode = HB_MEMORY_MODE_READONLY;
|
|
|
|
}
|
|
|
|
}
|
2009-08-18 21:49:23 +02:00
|
|
|
|
2009-07-30 21:33:57 +02:00
|
|
|
hb_bool_t
|
2009-08-19 22:17:24 +02:00
|
|
|
hb_blob_try_writable_inplace (hb_blob_t *blob)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_memory_mode_t mode;
|
|
|
|
|
|
|
|
if (HB_OBJECT_IS_INERT (blob))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
hb_mutex_lock (blob->lock);
|
|
|
|
|
2009-08-19 22:45:41 +02:00
|
|
|
if (blob->mode == HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE)
|
|
|
|
_try_writable_inplace_locked (blob);
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
mode = blob->mode;
|
|
|
|
|
|
|
|
hb_mutex_unlock (blob->lock);
|
|
|
|
|
2009-08-19 22:17:24 +02:00
|
|
|
return mode == HB_MEMORY_MODE_WRITABLE;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
hb_bool_t
|
2009-08-19 22:17:24 +02:00
|
|
|
hb_blob_try_writable (hb_blob_t *blob)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_memory_mode_t mode;
|
|
|
|
|
|
|
|
if (HB_OBJECT_IS_INERT (blob))
|
2009-08-04 03:27:08 +02:00
|
|
|
return FALSE;
|
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
hb_mutex_lock (blob->lock);
|
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
if (blob->mode == HB_MEMORY_MODE_READONLY)
|
2009-07-30 21:33:57 +02:00
|
|
|
{
|
|
|
|
char *new_data;
|
|
|
|
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-06 19:33:51 +02:00
|
|
|
fprintf (stderr, "%p %s (%d) -> %p\n", blob, __FUNCTION__,
|
|
|
|
blob->lock_count, blob->data);
|
2009-08-05 21:20:34 +02:00
|
|
|
#endif
|
2009-08-06 19:33:51 +02:00
|
|
|
|
|
|
|
if (blob->lock_count)
|
|
|
|
goto done;
|
2009-07-30 21:33:57 +02:00
|
|
|
|
2009-08-04 03:27:08 +02:00
|
|
|
new_data = malloc (blob->length);
|
|
|
|
if (new_data) {
|
2009-08-28 22:31:20 +02:00
|
|
|
#if HB_DEBUG_BLOB
|
2009-08-05 21:20:34 +02:00
|
|
|
fprintf (stderr, "%p %s: dupped successfully -> %p\n", blob, __FUNCTION__, blob->data);
|
|
|
|
#endif
|
2009-08-04 03:27:08 +02:00
|
|
|
memcpy (new_data, blob->data, blob->length);
|
2009-08-03 23:53:29 +02:00
|
|
|
_hb_blob_destroy_user_data (blob);
|
2010-03-27 22:00:19 +01:00
|
|
|
blob->mode = HB_MEMORY_MODE_WRITABLE;
|
|
|
|
blob->data = new_data;
|
|
|
|
blob->destroy = free;
|
|
|
|
blob->user_data = new_data;
|
2009-08-06 19:33:51 +02:00
|
|
|
}
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|
2009-08-19 22:45:41 +02:00
|
|
|
else if (blob->mode == HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE)
|
|
|
|
_try_writable_inplace_locked (blob);
|
2009-08-04 03:27:08 +02:00
|
|
|
|
2009-08-06 19:33:51 +02:00
|
|
|
done:
|
|
|
|
mode = blob->mode;
|
|
|
|
|
|
|
|
hb_mutex_unlock (blob->lock);
|
|
|
|
|
2009-08-19 22:17:24 +02:00
|
|
|
return mode == HB_MEMORY_MODE_WRITABLE;
|
2009-07-30 21:33:57 +02:00
|
|
|
}
|