Home | History | Annotate | Line # | Download | only in libprop
prop_data.c revision 1.16
      1  1.16  thorpej /*	$NetBSD: prop_data.c,v 1.16 2020/06/06 21:25:59 thorpej Exp $	*/
      2   1.1  thorpej 
      3   1.1  thorpej /*-
      4  1.16  thorpej  * Copyright (c) 2006, 2020 The NetBSD Foundation, Inc.
      5   1.1  thorpej  * All rights reserved.
      6   1.1  thorpej  *
      7   1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1  thorpej  * by Jason R. Thorpe.
      9   1.1  thorpej  *
     10   1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.1  thorpej  * modification, are permitted provided that the following conditions
     12   1.1  thorpej  * are met:
     13   1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.1  thorpej  *
     19   1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1  thorpej  */
     31   1.1  thorpej 
     32  1.15  thorpej #include "prop_object_impl.h"
     33   1.1  thorpej #include <prop/prop_data.h>
     34   1.1  thorpej 
     35   1.1  thorpej #if defined(_KERNEL)
     36   1.1  thorpej #include <sys/systm.h>
     37   1.1  thorpej #elif defined(_STANDALONE)
     38   1.1  thorpej #include <sys/param.h>
     39   1.1  thorpej #include <lib/libkern/libkern.h>
     40   1.1  thorpej #else
     41   1.1  thorpej #include <errno.h>
     42   1.1  thorpej #include <limits.h>
     43   1.1  thorpej #include <stdlib.h>
     44   1.1  thorpej #endif
     45   1.1  thorpej 
     46   1.1  thorpej struct _prop_data {
     47   1.1  thorpej 	struct _prop_object	pd_obj;
     48   1.1  thorpej 	union {
     49   1.1  thorpej 		void *		pdu_mutable;
     50   1.1  thorpej 		const void *	pdu_immutable;
     51   1.1  thorpej 	} pd_un;
     52   1.1  thorpej #define	pd_mutable		pd_un.pdu_mutable
     53   1.1  thorpej #define	pd_immutable		pd_un.pdu_immutable
     54   1.1  thorpej 	size_t			pd_size;
     55   1.1  thorpej 	int			pd_flags;
     56   1.1  thorpej };
     57   1.1  thorpej 
     58   1.1  thorpej #define	PD_F_NOCOPY		0x01
     59  1.16  thorpej #define	PD_F_MUTABLE		0x02
     60   1.1  thorpej 
     61   1.1  thorpej _PROP_POOL_INIT(_prop_data_pool, sizeof(struct _prop_data), "propdata")
     62   1.1  thorpej 
     63   1.1  thorpej _PROP_MALLOC_DEFINE(M_PROP_DATA, "prop data",
     64   1.1  thorpej 		    "property data container object")
     65   1.1  thorpej 
     66  1.13  thorpej static _prop_object_free_rv_t
     67  1.13  thorpej 		_prop_data_free(prop_stack_t, prop_object_t *);
     68   1.7  thorpej static bool	_prop_data_externalize(
     69   1.2  thorpej 				struct _prop_object_externalize_context *,
     70   1.2  thorpej 				void *);
     71  1.13  thorpej static _prop_object_equals_rv_t
     72  1.13  thorpej 		_prop_data_equals(prop_object_t, prop_object_t,
     73   1.9    joerg 				  void **, void **,
     74   1.9    joerg 				  prop_object_t *, prop_object_t *);
     75   1.2  thorpej 
     76   1.2  thorpej static const struct _prop_object_type _prop_object_type_data = {
     77   1.2  thorpej 	.pot_type	=	PROP_TYPE_DATA,
     78   1.2  thorpej 	.pot_free	=	_prop_data_free,
     79   1.2  thorpej 	.pot_extern	=	_prop_data_externalize,
     80   1.2  thorpej 	.pot_equals	=	_prop_data_equals,
     81   1.2  thorpej };
     82   1.2  thorpej 
     83   1.2  thorpej #define	prop_object_is_data(x)		\
     84   1.4  thorpej 	((x) != NULL && (x)->pd_obj.po_type == &_prop_object_type_data)
     85   1.1  thorpej 
     86   1.8    joerg /* ARGSUSED */
     87  1.13  thorpej static _prop_object_free_rv_t
     88   1.8    joerg _prop_data_free(prop_stack_t stack, prop_object_t *obj)
     89   1.1  thorpej {
     90   1.8    joerg 	prop_data_t pd = *obj;
     91   1.1  thorpej 
     92   1.1  thorpej 	if ((pd->pd_flags & PD_F_NOCOPY) == 0 && pd->pd_mutable != NULL)
     93   1.1  thorpej 	    	_PROP_FREE(pd->pd_mutable, M_PROP_DATA);
     94   1.8    joerg 	_PROP_POOL_PUT(_prop_data_pool, pd);
     95   1.8    joerg 
     96   1.8    joerg 	return (_PROP_OBJECT_FREE_DONE);
     97   1.1  thorpej }
     98   1.1  thorpej 
     99   1.1  thorpej static const char _prop_data_base64[] =
    100   1.1  thorpej     "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    101   1.1  thorpej static const char _prop_data_pad64 = '=';
    102   1.1  thorpej 
    103   1.7  thorpej static bool
    104   1.1  thorpej _prop_data_externalize(struct _prop_object_externalize_context *ctx, void *v)
    105   1.1  thorpej {
    106   1.1  thorpej 	prop_data_t pd = v;
    107   1.1  thorpej 	size_t i, srclen;
    108   1.1  thorpej 	const uint8_t *src;
    109   1.1  thorpej 	uint8_t output[4];
    110   1.1  thorpej 	uint8_t input[3];
    111   1.1  thorpej 
    112   1.1  thorpej 	if (pd->pd_size == 0)
    113   1.1  thorpej 		return (_prop_object_externalize_empty_tag(ctx, "data"));
    114   1.1  thorpej 
    115   1.7  thorpej 	if (_prop_object_externalize_start_tag(ctx, "data") == false)
    116   1.7  thorpej 		return (false);
    117   1.1  thorpej 
    118   1.1  thorpej 	for (src = pd->pd_immutable, srclen = pd->pd_size;
    119   1.1  thorpej 	     srclen > 2; srclen -= 3) {
    120   1.1  thorpej 		input[0] = *src++;
    121   1.1  thorpej 		input[1] = *src++;
    122   1.1  thorpej 		input[2] = *src++;
    123   1.1  thorpej 
    124   1.1  thorpej 		output[0] = (uint32_t)input[0] >> 2;
    125   1.1  thorpej 		output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
    126   1.1  thorpej 		    ((uint32_t)input[1] >> 4);
    127  1.10      apb 		output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
    128   1.1  thorpej 		    ((uint32_t)input[2] >> 6);
    129   1.1  thorpej 		output[3] = input[2] & 0x3f;
    130   1.1  thorpej 		_PROP_ASSERT(output[0] < 64);
    131   1.1  thorpej 		_PROP_ASSERT(output[1] < 64);
    132   1.1  thorpej 		_PROP_ASSERT(output[2] < 64);
    133   1.1  thorpej 		_PROP_ASSERT(output[3] < 64);
    134   1.1  thorpej 
    135   1.1  thorpej 		if (_prop_object_externalize_append_char(ctx,
    136   1.7  thorpej 				_prop_data_base64[output[0]]) == false ||
    137   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    138   1.7  thorpej 		    		_prop_data_base64[output[1]]) == false ||
    139   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    140   1.7  thorpej 		    		_prop_data_base64[output[2]]) == false ||
    141   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    142   1.7  thorpej 		    		_prop_data_base64[output[3]]) == false)
    143   1.7  thorpej 			return (false);
    144   1.1  thorpej 	}
    145   1.1  thorpej 
    146   1.1  thorpej 	if (srclen != 0) {
    147   1.1  thorpej 		input[0] = input[1] = input[2] = '\0';
    148   1.1  thorpej 		for (i = 0; i < srclen; i++)
    149   1.1  thorpej 			input[i] = *src++;
    150   1.1  thorpej 
    151   1.1  thorpej 		output[0] = (uint32_t)input[0] >> 2;
    152   1.1  thorpej 		output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
    153   1.1  thorpej 		    ((uint32_t)input[1] >> 4);
    154  1.10      apb 		output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
    155   1.1  thorpej 		    ((uint32_t)input[2] >> 6);
    156   1.1  thorpej 		_PROP_ASSERT(output[0] < 64);
    157   1.1  thorpej 		_PROP_ASSERT(output[1] < 64);
    158   1.1  thorpej 		_PROP_ASSERT(output[2] < 64);
    159   1.1  thorpej 
    160   1.1  thorpej 		if (_prop_object_externalize_append_char(ctx,
    161   1.7  thorpej 				_prop_data_base64[output[0]]) == false ||
    162   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    163   1.7  thorpej 		    		_prop_data_base64[output[1]]) == false ||
    164   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    165   1.1  thorpej 		    		srclen == 1 ? _prop_data_pad64
    166   1.7  thorpej 				: _prop_data_base64[output[2]]) == false ||
    167   1.1  thorpej 		    _prop_object_externalize_append_char(ctx,
    168   1.7  thorpej 		    		_prop_data_pad64) == false)
    169   1.7  thorpej 			return (false);
    170   1.1  thorpej 	}
    171   1.1  thorpej 
    172   1.7  thorpej 	if (_prop_object_externalize_end_tag(ctx, "data") == false)
    173   1.7  thorpej 		return (false);
    174   1.1  thorpej 
    175   1.7  thorpej 	return (true);
    176   1.1  thorpej }
    177   1.1  thorpej 
    178   1.9    joerg /* ARGSUSED */
    179  1.13  thorpej static _prop_object_equals_rv_t
    180   1.9    joerg _prop_data_equals(prop_object_t v1, prop_object_t v2,
    181   1.9    joerg     void **stored_pointer1, void **stored_pointer2,
    182   1.9    joerg     prop_object_t *next_obj1, prop_object_t *next_obj2)
    183   1.2  thorpej {
    184   1.2  thorpej 	prop_data_t pd1 = v1;
    185   1.2  thorpej 	prop_data_t pd2 = v2;
    186   1.2  thorpej 
    187   1.2  thorpej 	if (pd1 == pd2)
    188   1.9    joerg 		return (_PROP_OBJECT_EQUALS_TRUE);
    189   1.2  thorpej 	if (pd1->pd_size != pd2->pd_size)
    190   1.9    joerg 		return (_PROP_OBJECT_EQUALS_FALSE);
    191   1.2  thorpej 	if (pd1->pd_size == 0) {
    192   1.2  thorpej 		_PROP_ASSERT(pd1->pd_immutable == NULL);
    193   1.2  thorpej 		_PROP_ASSERT(pd2->pd_immutable == NULL);
    194   1.9    joerg 		return (_PROP_OBJECT_EQUALS_TRUE);
    195   1.2  thorpej 	}
    196   1.9    joerg 	if (memcmp(pd1->pd_immutable, pd2->pd_immutable, pd1->pd_size) == 0)
    197   1.9    joerg 		return _PROP_OBJECT_EQUALS_TRUE;
    198   1.9    joerg 	else
    199   1.9    joerg 		return _PROP_OBJECT_EQUALS_FALSE;
    200   1.2  thorpej }
    201   1.2  thorpej 
    202   1.1  thorpej static prop_data_t
    203  1.16  thorpej _prop_data_alloc(int const flags)
    204   1.1  thorpej {
    205   1.1  thorpej 	prop_data_t pd;
    206   1.1  thorpej 
    207   1.1  thorpej 	pd = _PROP_POOL_GET(_prop_data_pool);
    208   1.1  thorpej 	if (pd != NULL) {
    209   1.2  thorpej 		_prop_object_init(&pd->pd_obj, &_prop_object_type_data);
    210   1.1  thorpej 
    211   1.1  thorpej 		pd->pd_mutable = NULL;
    212   1.1  thorpej 		pd->pd_size = 0;
    213  1.16  thorpej 		pd->pd_flags = flags;
    214   1.1  thorpej 	}
    215   1.1  thorpej 
    216   1.1  thorpej 	return (pd);
    217   1.1  thorpej }
    218   1.1  thorpej 
    219  1.16  thorpej static prop_data_t
    220  1.16  thorpej _prop_data_instantiate(int const flags, const void * const data,
    221  1.16  thorpej     size_t const len)
    222  1.16  thorpej {
    223  1.16  thorpej 	prop_data_t pd;
    224  1.16  thorpej 
    225  1.16  thorpej 	pd = _prop_data_alloc(flags);
    226  1.16  thorpej 	if (pd != NULL) {
    227  1.16  thorpej 		pd->pd_immutable = data;
    228  1.16  thorpej 		pd->pd_size = len;
    229  1.16  thorpej 	}
    230  1.16  thorpej 
    231  1.16  thorpej 	return (pd);
    232  1.16  thorpej }
    233  1.16  thorpej 
    234  1.16  thorpej _PROP_DEPRECATED(prop_data_create_data,
    235  1.16  thorpej     "this program uses prop_data_create_data(); all functions "
    236  1.16  thorpej     "supporting mutable prop_data objects are deprecated.")
    237   1.1  thorpej prop_data_t
    238   1.1  thorpej prop_data_create_data(const void *v, size_t size)
    239   1.1  thorpej {
    240   1.1  thorpej 	prop_data_t pd;
    241   1.1  thorpej 	void *nv;
    242   1.1  thorpej 
    243  1.16  thorpej 	pd = _prop_data_alloc(PD_F_MUTABLE);
    244  1.12   dyoung 	if (pd != NULL && size != 0) {
    245   1.1  thorpej 		nv = _PROP_MALLOC(size, M_PROP_DATA);
    246   1.1  thorpej 		if (nv == NULL) {
    247   1.8    joerg 			prop_object_release(pd);
    248   1.1  thorpej 			return (NULL);
    249   1.1  thorpej 		}
    250   1.1  thorpej 		memcpy(nv, v, size);
    251   1.1  thorpej 		pd->pd_mutable = nv;
    252   1.1  thorpej 		pd->pd_size = size;
    253   1.1  thorpej 	}
    254   1.1  thorpej 	return (pd);
    255   1.1  thorpej }
    256   1.1  thorpej 
    257  1.16  thorpej _PROP_DEPRECATED(prop_data_create_data_nocopy,
    258  1.16  thorpej     "this program uses prop_data_create_data_nocopy(), "
    259  1.16  thorpej     "which is deprecated; use prop_data_create_nocopy() instead.")
    260  1.16  thorpej prop_data_t
    261  1.16  thorpej prop_data_create_data_nocopy(const void *v, size_t size)
    262  1.16  thorpej {
    263  1.16  thorpej 	return prop_data_create_nocopy(v, size);
    264  1.16  thorpej }
    265  1.16  thorpej 
    266   1.1  thorpej /*
    267  1.16  thorpej  * prop_data_create_copy --
    268  1.16  thorpej  *	Create a data object with a copy of the provided data.
    269   1.1  thorpej  */
    270   1.1  thorpej prop_data_t
    271  1.16  thorpej prop_data_create_copy(const void *v, size_t size)
    272   1.1  thorpej {
    273   1.1  thorpej 	prop_data_t pd;
    274  1.16  thorpej 	void *nv;
    275  1.16  thorpej 
    276  1.16  thorpej 	if (v == NULL || size == 0)
    277  1.16  thorpej 		return (NULL);
    278  1.16  thorpej 
    279  1.16  thorpej 	/* Tolerate the creation of empty data objects. */
    280  1.16  thorpej 	if (v != NULL && size != 0) {
    281  1.16  thorpej 		nv = _PROP_MALLOC(size, M_PROP_DATA);
    282  1.16  thorpej 		if (nv == NULL)
    283  1.16  thorpej 			return (NULL);
    284  1.16  thorpej 
    285  1.16  thorpej 		memcpy(nv, v, size);
    286  1.16  thorpej 	} else {
    287  1.16  thorpej 		nv = NULL;
    288  1.16  thorpej 		size = 0;
    289   1.1  thorpej 	}
    290  1.16  thorpej 
    291  1.16  thorpej 	pd = _prop_data_instantiate(0, nv, size);
    292  1.16  thorpej 	if (pd == NULL && nv == NULL)
    293  1.16  thorpej 		_PROP_FREE(nv, M_PROP_DATA);
    294  1.16  thorpej 
    295   1.1  thorpej 	return (pd);
    296   1.1  thorpej }
    297   1.1  thorpej 
    298   1.1  thorpej /*
    299  1.16  thorpej  * prop_data_create_nocopy --
    300  1.16  thorpej  *	Create a data object using the provided external data reference.
    301  1.16  thorpej  */
    302  1.16  thorpej prop_data_t
    303  1.16  thorpej prop_data_create_nocopy(const void *v, size_t size)
    304  1.16  thorpej {
    305  1.16  thorpej 
    306  1.16  thorpej 	/* Tolerate the creation of empty data objects. */
    307  1.16  thorpej 	if (v == NULL || size == 0) {
    308  1.16  thorpej 		v = NULL;
    309  1.16  thorpej 		size = 0;
    310  1.16  thorpej 	}
    311  1.16  thorpej 
    312  1.16  thorpej 	return _prop_data_instantiate(PD_F_NOCOPY, v, size);
    313  1.16  thorpej }
    314  1.16  thorpej 
    315  1.16  thorpej /*
    316   1.1  thorpej  * prop_data_copy --
    317   1.1  thorpej  *	Copy a data container.  If the original data is external, then
    318   1.1  thorpej  *	the copy is also references the same external data.
    319   1.1  thorpej  */
    320   1.1  thorpej prop_data_t
    321   1.1  thorpej prop_data_copy(prop_data_t opd)
    322   1.1  thorpej {
    323   1.1  thorpej 	prop_data_t pd;
    324   1.1  thorpej 
    325   1.3  thorpej 	if (! prop_object_is_data(opd))
    326   1.3  thorpej 		return (NULL);
    327   1.1  thorpej 
    328  1.16  thorpej 	if ((opd->pd_flags & PD_F_NOCOPY) != 0 ||
    329  1.16  thorpej 	    (opd->pd_flags & PD_F_MUTABLE) == 0) {
    330  1.16  thorpej 		/* Just retain and return the original. */
    331  1.16  thorpej 		prop_object_retain(opd);
    332  1.16  thorpej 		return (opd);
    333  1.16  thorpej 	}
    334  1.16  thorpej 
    335  1.16  thorpej 	pd = prop_data_create_copy(opd->pd_immutable, opd->pd_size);
    336   1.1  thorpej 	if (pd != NULL) {
    337  1.16  thorpej 		/* Preserve deprecated mutability semantics. */
    338  1.16  thorpej 		pd->pd_flags |= PD_F_MUTABLE;
    339   1.1  thorpej 	}
    340  1.16  thorpej 
    341   1.1  thorpej 	return (pd);
    342   1.1  thorpej }
    343   1.1  thorpej 
    344   1.1  thorpej /*
    345   1.1  thorpej  * prop_data_size --
    346   1.1  thorpej  *	Return the size of the data.
    347   1.1  thorpej  */
    348   1.1  thorpej size_t
    349   1.1  thorpej prop_data_size(prop_data_t pd)
    350   1.1  thorpej {
    351   1.1  thorpej 
    352   1.3  thorpej 	if (! prop_object_is_data(pd))
    353   1.3  thorpej 		return (0);
    354   1.3  thorpej 
    355   1.1  thorpej 	return (pd->pd_size);
    356   1.1  thorpej }
    357   1.1  thorpej 
    358   1.1  thorpej /*
    359  1.16  thorpej  * prop_data_value --
    360  1.16  thorpej  *	Returns a pointer to the data object's value.  This pointer
    361  1.16  thorpej  *	remains valid only as long as the data object.
    362  1.16  thorpej  */
    363  1.16  thorpej const void *
    364  1.16  thorpej prop_data_value(prop_data_t pd)
    365  1.16  thorpej {
    366  1.16  thorpej 
    367  1.16  thorpej 	if (! prop_object_is_data(pd))
    368  1.16  thorpej 		return (0);
    369  1.16  thorpej 
    370  1.16  thorpej 	return (pd->pd_immutable);
    371  1.16  thorpej }
    372  1.16  thorpej 
    373  1.16  thorpej /*
    374  1.16  thorpej  * prop_data_copy_value --
    375  1.16  thorpej  *	Copy the data object's value into the supplied buffer.
    376   1.1  thorpej  */
    377  1.16  thorpej bool
    378  1.16  thorpej prop_data_copy_value(prop_data_t pd, void *buf, size_t buflen)
    379  1.16  thorpej {
    380  1.16  thorpej 
    381  1.16  thorpej 	if (! prop_object_is_data(pd))
    382  1.16  thorpej 		return (false);
    383  1.16  thorpej 
    384  1.16  thorpej 	if (buf == NULL || buflen < pd->pd_size)
    385  1.16  thorpej 		return (false);
    386  1.16  thorpej 
    387  1.16  thorpej 	/* Tolerate empty data objects. */
    388  1.16  thorpej 	if (pd->pd_immutable == NULL || pd->pd_size == 0)
    389  1.16  thorpej 		return (false);
    390  1.16  thorpej 
    391  1.16  thorpej 	memcpy(buf, pd->pd_immutable, pd->pd_size);
    392  1.16  thorpej 
    393  1.16  thorpej 	return (true);
    394  1.16  thorpej }
    395  1.16  thorpej 
    396  1.16  thorpej _PROP_DEPRECATED(prop_data_data,
    397  1.16  thorpej     "this program uses prop_data_data(), "
    398  1.16  thorpej     "which is deprecated; use prop_data_copy_value() instead.")
    399   1.1  thorpej void *
    400   1.1  thorpej prop_data_data(prop_data_t pd)
    401   1.1  thorpej {
    402   1.1  thorpej 	void *v;
    403   1.1  thorpej 
    404   1.3  thorpej 	if (! prop_object_is_data(pd))
    405   1.3  thorpej 		return (NULL);
    406   1.1  thorpej 
    407   1.1  thorpej 	if (pd->pd_size == 0) {
    408   1.1  thorpej 		_PROP_ASSERT(pd->pd_immutable == NULL);
    409   1.1  thorpej 		return (NULL);
    410   1.1  thorpej 	}
    411   1.1  thorpej 
    412   1.1  thorpej 	_PROP_ASSERT(pd->pd_immutable != NULL);
    413   1.1  thorpej 
    414   1.1  thorpej 	v = _PROP_MALLOC(pd->pd_size, M_TEMP);
    415   1.1  thorpej 	if (v != NULL)
    416   1.1  thorpej 		memcpy(v, pd->pd_immutable, pd->pd_size);
    417   1.1  thorpej 
    418   1.1  thorpej 	return (v);
    419   1.1  thorpej }
    420   1.1  thorpej 
    421  1.16  thorpej _PROP_DEPRECATED(prop_data_data_nocopy,
    422  1.16  thorpej     "this program uses prop_data_data_nocopy(), "
    423  1.16  thorpej     "which is deprecated; use prop_data_value() instead.")
    424   1.1  thorpej const void *
    425   1.1  thorpej prop_data_data_nocopy(prop_data_t pd)
    426   1.1  thorpej {
    427  1.16  thorpej 	return prop_data_value(pd);
    428   1.1  thorpej }
    429   1.1  thorpej 
    430   1.1  thorpej /*
    431   1.1  thorpej  * prop_data_equals --
    432  1.16  thorpej  *	Return true if two data objects are equivalent.
    433   1.1  thorpej  */
    434   1.7  thorpej bool
    435   1.1  thorpej prop_data_equals(prop_data_t pd1, prop_data_t pd2)
    436   1.1  thorpej {
    437   1.9    joerg 	if (!prop_object_is_data(pd1) || !prop_object_is_data(pd2))
    438   1.9    joerg 		return (false);
    439   1.1  thorpej 
    440   1.9    joerg 	return (prop_object_equals(pd1, pd2));
    441   1.1  thorpej }
    442   1.1  thorpej 
    443   1.1  thorpej /*
    444   1.1  thorpej  * prop_data_equals_data --
    445   1.7  thorpej  *	Return true if the contained data is equivalent to the specified
    446   1.1  thorpej  *	external data.
    447   1.1  thorpej  */
    448   1.7  thorpej bool
    449   1.1  thorpej prop_data_equals_data(prop_data_t pd, const void *v, size_t size)
    450   1.1  thorpej {
    451   1.1  thorpej 
    452   1.3  thorpej 	if (! prop_object_is_data(pd))
    453   1.7  thorpej 		return (false);
    454   1.3  thorpej 
    455  1.16  thorpej 	if (pd->pd_size != size || v == NULL)
    456   1.7  thorpej 		return (false);
    457  1.16  thorpej 
    458   1.1  thorpej 	return (memcmp(pd->pd_immutable, v, size) == 0);
    459   1.1  thorpej }
    460   1.1  thorpej 
    461   1.7  thorpej static bool
    462   1.1  thorpej _prop_data_internalize_decode(struct _prop_object_internalize_context *ctx,
    463   1.1  thorpej 			     uint8_t *target, size_t targsize, size_t *sizep,
    464   1.1  thorpej 			     const char **cpp)
    465   1.1  thorpej {
    466   1.1  thorpej 	const char *src;
    467   1.1  thorpej 	size_t tarindex;
    468   1.1  thorpej 	int state, ch;
    469   1.1  thorpej 	const char *pos;
    470   1.1  thorpej 
    471   1.1  thorpej 	state = 0;
    472   1.1  thorpej 	tarindex = 0;
    473   1.1  thorpej 	src = ctx->poic_cp;
    474   1.1  thorpej 
    475   1.1  thorpej 	for (;;) {
    476   1.1  thorpej 		ch = (unsigned char) *src++;
    477   1.1  thorpej 		if (_PROP_EOF(ch))
    478   1.7  thorpej 			return (false);
    479   1.1  thorpej 		if (_PROP_ISSPACE(ch))
    480   1.1  thorpej 			continue;
    481   1.1  thorpej 		if (ch == '<') {
    482   1.1  thorpej 			src--;
    483   1.1  thorpej 			break;
    484   1.1  thorpej 		}
    485   1.1  thorpej 		if (ch == _prop_data_pad64)
    486   1.1  thorpej 			break;
    487   1.1  thorpej 
    488   1.1  thorpej 		pos = strchr(_prop_data_base64, ch);
    489   1.1  thorpej 		if (pos == NULL)
    490   1.7  thorpej 			return (false);
    491   1.1  thorpej 
    492   1.1  thorpej 		switch (state) {
    493   1.1  thorpej 		case 0:
    494   1.1  thorpej 			if (target) {
    495   1.1  thorpej 				if (tarindex >= targsize)
    496   1.7  thorpej 					return (false);
    497   1.1  thorpej 				target[tarindex] =
    498   1.5   martin 				    (uint8_t)((pos - _prop_data_base64) << 2);
    499   1.1  thorpej 			}
    500   1.1  thorpej 			state = 1;
    501   1.1  thorpej 			break;
    502   1.1  thorpej 
    503   1.1  thorpej 		case 1:
    504   1.1  thorpej 			if (target) {
    505   1.1  thorpej 				if (tarindex + 1 >= targsize)
    506   1.7  thorpej 					return (false);
    507   1.1  thorpej 				target[tarindex] |=
    508   1.1  thorpej 				    (uint32_t)(pos - _prop_data_base64) >> 4;
    509   1.1  thorpej 				target[tarindex + 1] =
    510   1.5   martin 				    (uint8_t)(((pos - _prop_data_base64) & 0xf)
    511   1.5   martin 				        << 4);
    512   1.1  thorpej 			}
    513   1.1  thorpej 			tarindex++;
    514   1.1  thorpej 			state = 2;
    515   1.1  thorpej 			break;
    516   1.1  thorpej 
    517   1.1  thorpej 		case 2:
    518   1.1  thorpej 			if (target) {
    519   1.1  thorpej 				if (tarindex + 1 >= targsize)
    520   1.7  thorpej 					return (false);
    521   1.1  thorpej 				target[tarindex] |=
    522   1.1  thorpej 				    (uint32_t)(pos - _prop_data_base64) >> 2;
    523   1.1  thorpej 				target[tarindex + 1] =
    524   1.5   martin 				    (uint8_t)(((pos - _prop_data_base64)
    525   1.5   martin 				        & 0x3) << 6);
    526   1.1  thorpej 			}
    527   1.1  thorpej 			tarindex++;
    528   1.1  thorpej 			state = 3;
    529   1.1  thorpej 			break;
    530   1.1  thorpej 
    531   1.1  thorpej 		case 3:
    532   1.1  thorpej 			if (target) {
    533   1.1  thorpej 				if (tarindex >= targsize)
    534   1.7  thorpej 					return (false);
    535   1.5   martin 				target[tarindex] |= (uint8_t)
    536   1.5   martin 				    (pos - _prop_data_base64);
    537   1.1  thorpej 			}
    538   1.1  thorpej 			tarindex++;
    539   1.1  thorpej 			state = 0;
    540   1.1  thorpej 			break;
    541   1.1  thorpej 
    542   1.1  thorpej 		default:
    543   1.1  thorpej 			_PROP_ASSERT(/*CONSTCOND*/0);
    544   1.1  thorpej 		}
    545   1.1  thorpej 	}
    546   1.1  thorpej 
    547   1.1  thorpej 	/*
    548   1.1  thorpej 	 * We are done decoding the Base64 characters.  Let's see if we
    549   1.1  thorpej 	 * ended up on a byte boundary and/or with unrecognized trailing
    550   1.1  thorpej 	 * characters.
    551   1.1  thorpej 	 */
    552   1.1  thorpej 	if (ch == _prop_data_pad64) {
    553   1.1  thorpej 		ch = (unsigned char) *src;	/* src already advanced */
    554   1.1  thorpej 		if (_PROP_EOF(ch))
    555   1.7  thorpej 			return (false);
    556   1.1  thorpej 		switch (state) {
    557   1.1  thorpej 		case 0:		/* Invalid = in first position */
    558   1.1  thorpej 		case 1:		/* Invalid = in second position */
    559   1.7  thorpej 			return (false);
    560   1.1  thorpej 
    561   1.1  thorpej 		case 2:		/* Valid, one byte of info */
    562   1.1  thorpej 			/* Skip whitespace */
    563   1.1  thorpej 			for (ch = (unsigned char) *src++;
    564   1.1  thorpej 			     ch != '<'; ch = (unsigned char) *src++) {
    565   1.1  thorpej 				if (_PROP_EOF(ch))
    566   1.7  thorpej 					return (false);
    567   1.1  thorpej 				if (!_PROP_ISSPACE(ch))
    568   1.1  thorpej 					break;
    569   1.1  thorpej 			}
    570   1.1  thorpej 			/* Make sure there is another trailing = */
    571   1.1  thorpej 			if (ch != _prop_data_pad64)
    572   1.7  thorpej 				return (false);
    573   1.1  thorpej 			ch = (unsigned char) *src;
    574   1.1  thorpej 			/* FALLTHROUGH */
    575   1.1  thorpej 
    576   1.1  thorpej 		case 3:		/* Valid, two bytes of info */
    577   1.1  thorpej 			/*
    578   1.1  thorpej 			 * We know this char is a =.  Is there anything but
    579   1.1  thorpej 			 * whitespace after it?
    580   1.1  thorpej 			 */
    581   1.6    dillo 			for (ch = (unsigned char) *src++;
    582   1.6    dillo 			     ch != '<'; ch = (unsigned char) *src++) {
    583   1.1  thorpej 				if (_PROP_EOF(ch))
    584   1.7  thorpej 					return (false);
    585   1.1  thorpej 				if (!_PROP_ISSPACE(ch))
    586   1.7  thorpej 					return (false);
    587   1.1  thorpej 			}
    588   1.6    dillo 			/* back up to '<' */
    589   1.6    dillo 			src--;
    590   1.1  thorpej 		}
    591   1.1  thorpej 	} else {
    592   1.1  thorpej 		/*
    593   1.1  thorpej 		 * We ended by seeing the end of the Base64 string.  Make
    594   1.1  thorpej 		 * sure there are no partial bytes lying around.
    595   1.1  thorpej 		 */
    596   1.1  thorpej 		if (state != 0)
    597   1.7  thorpej 			return (false);
    598   1.1  thorpej 	}
    599   1.1  thorpej 
    600   1.1  thorpej 	_PROP_ASSERT(*src == '<');
    601   1.1  thorpej 	if (sizep != NULL)
    602   1.1  thorpej 		*sizep = tarindex;
    603   1.1  thorpej 	if (cpp != NULL)
    604   1.1  thorpej 		*cpp = src;
    605   1.1  thorpej 
    606   1.7  thorpej 	return (true);
    607   1.1  thorpej }
    608   1.1  thorpej 
    609   1.1  thorpej /*
    610   1.1  thorpej  * _prop_data_internalize --
    611   1.1  thorpej  *	Parse a <data>...</data> and return the object created from the
    612   1.1  thorpej  *	external representation.
    613   1.1  thorpej  */
    614   1.8    joerg 
    615   1.8    joerg /* strtoul is used for parsing, enforce. */
    616   1.8    joerg typedef int PROP_DATA_ASSERT[/* CONSTCOND */sizeof(size_t) == sizeof(unsigned long) ? 1 : -1];
    617   1.8    joerg 
    618   1.8    joerg /* ARGSUSED */
    619   1.8    joerg bool
    620   1.8    joerg _prop_data_internalize(prop_stack_t stack, prop_object_t *obj,
    621   1.8    joerg     struct _prop_object_internalize_context *ctx)
    622   1.1  thorpej {
    623   1.1  thorpej 	prop_data_t data;
    624   1.1  thorpej 	uint8_t *buf;
    625   1.1  thorpej 	size_t len, alen;
    626   1.1  thorpej 
    627  1.14    cyber 	/*
    628  1.14    cyber 	 * We don't accept empty elements.
    629  1.14    cyber 	 * This actually only checks for the node to be <data/>
    630  1.14    cyber 	 * (Which actually causes another error if found.)
    631  1.14    cyber 	 */
    632   1.1  thorpej 	if (ctx->poic_is_empty_element)
    633   1.8    joerg 		return (true);
    634   1.8    joerg 
    635   1.1  thorpej 	/*
    636   1.1  thorpej 	 * If we got a "size" attribute, get the size of the data blob
    637   1.1  thorpej 	 * from that.  Otherwise, we have to figure it out from the base64.
    638   1.1  thorpej 	 */
    639   1.1  thorpej 	if (ctx->poic_tagattr != NULL) {
    640   1.1  thorpej 		char *cp;
    641   1.1  thorpej 
    642   1.1  thorpej 		if (!_PROP_TAGATTR_MATCH(ctx, "size") ||
    643   1.1  thorpej 		    ctx->poic_tagattrval_len == 0)
    644   1.8    joerg 			return (true);
    645   1.1  thorpej 
    646   1.1  thorpej #ifndef _KERNEL
    647   1.1  thorpej 		errno = 0;
    648   1.1  thorpej #endif
    649   1.1  thorpej 		len = strtoul(ctx->poic_tagattrval, &cp, 0);
    650   1.1  thorpej #ifndef _KERNEL		/* XXX can't check for ERANGE in the kernel */
    651   1.1  thorpej 		if (len == ULONG_MAX && errno == ERANGE)
    652   1.8    joerg 			return (true);
    653   1.1  thorpej #endif
    654   1.1  thorpej 		if (cp != ctx->poic_tagattrval + ctx->poic_tagattrval_len)
    655   1.8    joerg 			return (true);
    656   1.1  thorpej 		_PROP_ASSERT(*cp == '\"');
    657   1.1  thorpej 	} else if (_prop_data_internalize_decode(ctx, NULL, 0, &len,
    658   1.7  thorpej 						NULL) == false)
    659   1.8    joerg 		return (true);
    660   1.1  thorpej 
    661   1.1  thorpej 	/*
    662   1.1  thorpej 	 * Always allocate one extra in case we don't land on an even byte
    663   1.1  thorpej 	 * boundary during the decode.
    664   1.1  thorpej 	 */
    665   1.1  thorpej 	buf = _PROP_MALLOC(len + 1, M_PROP_DATA);
    666   1.1  thorpej 	if (buf == NULL)
    667   1.8    joerg 		return (true);
    668   1.1  thorpej 
    669   1.1  thorpej 	if (_prop_data_internalize_decode(ctx, buf, len + 1, &alen,
    670   1.7  thorpej 					  &ctx->poic_cp) == false) {
    671   1.1  thorpej 		_PROP_FREE(buf, M_PROP_DATA);
    672   1.8    joerg 		return (true);
    673   1.1  thorpej 	}
    674   1.1  thorpej 	if (alen != len) {
    675   1.1  thorpej 		_PROP_FREE(buf, M_PROP_DATA);
    676   1.8    joerg 		return (true);
    677   1.1  thorpej 	}
    678   1.1  thorpej 
    679   1.1  thorpej 	if (_prop_object_internalize_find_tag(ctx, "data",
    680   1.7  thorpej 					      _PROP_TAG_TYPE_END) == false) {
    681   1.1  thorpej 		_PROP_FREE(buf, M_PROP_DATA);
    682   1.8    joerg 		return (true);
    683   1.1  thorpej 	}
    684   1.1  thorpej 
    685  1.14    cyber 	/*
    686  1.14    cyber 	 * Handle alternate type of empty node.
    687  1.14    cyber 	 * XML document could contain open/close tags, yet still be empty.
    688  1.14    cyber 	 */
    689  1.14    cyber 	if (alen == 0) {
    690  1.14    cyber 		_PROP_FREE(buf, M_PROP_DATA);
    691  1.16  thorpej 		buf = NULL;
    692  1.14    cyber 	}
    693  1.16  thorpej 
    694  1.16  thorpej 	data = _prop_data_instantiate(0, buf, len);
    695  1.16  thorpej 	if (data == NULL && buf != NULL)
    696  1.16  thorpej 		_PROP_FREE(buf, M_PROP_DATA);
    697   1.1  thorpej 
    698   1.8    joerg 	*obj = data;
    699   1.8    joerg 	return (true);
    700   1.1  thorpej }
    701