GVariant: refactor locking a bit more
[platform/upstream/glib.git] / glib / gvariant-core.c
1 /*
2  * Copyright © 2007, 2008 Ryan Lortie
3  * Copyright © 2010 Codethink Limited
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "config.h"
20
21 #include <glib/gvariant-core.h>
22
23 #include <glib/gvariant-serialiser.h>
24 #include <glib/gtestutils.h>
25 #include <glib/gbitlock.h>
26 #include <glib/gatomic.h>
27 #include <glib/gbytes.h>
28 #include <glib/gslice.h>
29 #include <glib/gmem.h>
30 #include <string.h>
31
32
33 /*
34  * This file includes the structure definition for GVariant and a small
35  * set of functions that are allowed to access the structure directly.
36  *
37  * This minimises the amount of code that can possibly touch a GVariant
38  * structure directly to a few simple fundamental operations.  These few
39  * operations are written to be completely threadsafe with respect to
40  * all possible outside access.  This means that we only need to be
41  * concerned about thread safety issues in this one small file.
42  *
43  * Most GVariant API functions are in gvariant.c.
44  */
45
46 /**
47  * GVariant:
48  *
49  * #GVariant is an opaque data structure and can only be accessed
50  * using the following functions.
51  *
52  * Since: 2.24
53  **/
54 struct _GVariant
55 /* see below for field member documentation */
56 {
57   GVariantTypeInfo *type_info;
58   gsize size;
59
60   union
61   {
62     struct
63     {
64       GBytes *bytes;
65       gconstpointer data;
66     } serialised;
67
68     struct
69     {
70       GVariant **children;
71       gsize n_children;
72     } tree;
73   } contents;
74
75   gint state;
76   gint ref_count;
77 };
78
79 /* struct GVariant:
80  *
81  * There are two primary forms of GVariant instances: "serialised form"
82  * and "tree form".
83  *
84  * "serialised form": A serialised GVariant instance stores its value in
85  *                    the GVariant serialisation format.  All
86  *                    basic-typed instances (ie: non-containers) are in
87  *                    serialised format, as are some containers.
88  *
89  * "tree form": Some containers are in "tree form".  In this case,
90  *              instead of containing the serialised data for the
91  *              container, the instance contains an array of pointers to
92  *              the child values of the container (thus forming a tree).
93  *
94  * It is possible for an instance to transition from tree form to
95  * serialised form.  This happens, implicitly, if the serialised data is
96  * requested (eg: via g_variant_get_data()).  Serialised form instances
97  * never transition into tree form.
98  *
99  *
100  * The fields of the structure are documented here:
101  *
102  * type_info: this is a reference to a GVariantTypeInfo describing the
103  *            type of the instance.  When the instance is freed, this
104  *            reference must be released with g_variant_type_info_unref().
105  *
106  *            The type_info field never changes during the life of the
107  *            instance, so it can be accessed without a lock.
108  *
109  * size: this is the size of the serialised form for the instance.  It
110  *       is known for serialised instances and also tree-form instances
111  *       (for which it is calculated at construction time, from the
112  *       known sizes of the children used).  After construction, it
113  *       never changes and therefore can be accessed without a lock.
114  *
115  * contents: a union containing either the information associated with
116  *           holding a value in serialised form or holding a value in
117  *           tree form.
118  *
119  *   .serialised: Only valid when the instance is in serialised form.
120  *
121  *                Since an instance can never transition away from
122  *                serialised form, once these fields are set, they will
123  *                never be changed.  It is therefore valid to access
124  *                them without holding a lock.
125  *
126  *     .bytes:  the #GBytes that contains the memory pointed to by
127  *              .data, or %NULL if .data is %NULL.  In the event that
128  *              the instance was deserialised from another instance,
129  *              then the bytes will be shared by both of them.  When
130  *              the instance is freed, this reference must be released
131  *              with g_bytes_unref().
132  *
133  *     .data: the serialised data (of size 'size') of the instance.
134  *            This pointer should not be freed or modified in any way.
135  *            #GBytes is responsible for memory management.
136  *
137  *            This pointer may be %NULL in two cases:
138  *
139  *              - if the serialised size of the instance is 0
140  *
141  *              - if the instance is of a fixed-sized type and was
142  *                deserialised out of a corrupted container such that
143  *                the container contains too few bytes to point to the
144  *                entire proper fixed-size of this instance.  In this
145  *                case, 'size' will still be equal to the proper fixed
146  *                size, but this pointer will be %NULL.  This is exactly
147  *                the reason that g_variant_get_data() sometimes returns
148  *                %NULL.  For all other calls, the effect should be as
149  *                if .data pointed to the appropriate number of nul
150  *                bytes.
151  *
152  *   .tree: Only valid when the instance is in tree form.
153  *
154  *          Note that accesses from other threads could result in
155  *          conversion of the instance from tree form to serialised form
156  *          at any time.  For this reason, the instance lock must always
157  *          be held while performing any operations on 'contents.tree'.
158  *
159  *     .children: the array of the child instances of this instance.
160  *                When the instance is freed (or converted to serialised
161  *                form) then each child must have g_variant_unref()
162  *                called on it and the array must be freed using
163  *                g_free().
164  *
165  *     .n_children: the number of items in the .children array.
166  *
167  * state: a bitfield describing the state of the instance.  It is a
168  *        bitwise-or of the following STATE_* constants:
169  *
170  *    STATE_LOCKED: the instance lock is held.  This is the bit used by
171  *                  g_bit_lock().
172  *
173  *    STATE_SERIALISED: the instance is in serialised form.  If this
174  *                      flag is not set then the instance is in tree
175  *                      form.
176  *
177  *    STATE_TRUSTED: for serialised form instances, this means that the
178  *                   serialised data is known to be in normal form (ie:
179  *                   not corrupted).
180  *
181  *                   For tree form instances, this means that all of the
182  *                   child instances in the contents.tree.children array
183  *                   are trusted.  This means that if the container is
184  *                   serialised then the resulting data will be in
185  *                   normal form.
186  *
187  *                   If this flag is unset it does not imply that the
188  *                   data is corrupted.  It merely means that we're not
189  *                   sure that it's valid.  See g_variant_is_trusted().
190  *
191  *    STATE_FLOATING: if this flag is set then the object has a floating
192  *                    reference.  See g_variant_ref_sink().
193  *
194  * ref_count: the reference count of the instance
195  */
196 #define STATE_LOCKED     1
197 #define STATE_SERIALISED 2
198 #define STATE_TRUSTED    4
199 #define STATE_FLOATING   8
200
201 /* -- private -- */
202 /* < private >
203  * g_variant_lock:
204  * @value: a #GVariant
205  *
206  * Locks @value for performing sensitive operations.
207  */
208 static void
209 g_variant_lock (GVariant *value)
210 {
211   g_bit_lock (&value->state, 0);
212 }
213
214 /* < private >
215  * g_variant_unlock:
216  * @value: a #GVariant
217  *
218  * Unlocks @value after performing sensitive operations.
219  */
220 static void
221 g_variant_unlock (GVariant *value)
222 {
223   g_bit_unlock (&value->state, 0);
224 }
225
226 /* < private >
227  * g_variant_release_children:
228  * @value: a #GVariant
229  *
230  * Releases the reference held on each child in the 'children' array of
231  * @value and frees the array itself.  @value must be in tree form.
232  *
233  * This is done when freeing a tree-form instance or converting it to
234  * serialised form.
235  *
236  * The current thread must hold the lock on @value.
237  */
238 static void
239 g_variant_release_children (GVariant *value)
240 {
241   gsize i;
242
243   g_assert (value->state & STATE_LOCKED);
244   g_assert (~value->state & STATE_SERIALISED);
245
246   for (i = 0; i < value->contents.tree.n_children; i++)
247     g_variant_unref (value->contents.tree.children[i]);
248
249   g_free (value->contents.tree.children);
250 }
251
252 /* < private >
253  * g_variant_lock_in_tree_form:
254  * @value: a #GVariant
255  *
256  * Locks @value if it is in tree form.
257  *
258  * Returns: %TRUE if @value is now in tree form with the lock acquired
259  */
260 static gboolean
261 g_variant_lock_in_tree_form (GVariant *value)
262 {
263   if (g_atomic_int_get (&value->state) & STATE_SERIALISED)
264     return FALSE;
265
266   g_variant_lock (value);
267
268   if (value->state & STATE_SERIALISED)
269     {
270       g_variant_unlock (value);
271       return FALSE;
272     }
273
274   return TRUE;
275 }
276
277 /* This begins the main body of the recursive serialiser.
278  *
279  * There are 3 functions here that work as a team with the serialiser to
280  * get things done.  g_variant_store() has a trivial role, but as a
281  * public API function, it has its definition elsewhere.
282  *
283  * Note that "serialisation" of an instance does not mean that the
284  * instance is converted to serialised form -- it means that the
285  * serialised form of an instance is written to an external buffer.
286  * g_variant_ensure_serialised() (which is not part of this set of
287  * functions) is the function that is responsible for converting an
288  * instance to serialised form.
289  *
290  * We are only concerned here with container types since non-container
291  * instances are always in serialised form.  For these instances,
292  * storing their serialised form merely involves a memcpy().
293  *
294  * Converting to serialised form:
295  *
296  *   The first step in the process of converting a GVariant to
297  *   serialised form is to allocate a buffer.  The size of the buffer is
298  *   always known because we computed at construction time of the
299  *   GVariant.
300  *
301  *   After the buffer has been allocated, g_variant_serialise() is
302  *   called on the container.  This invokes the serialiser code to write
303  *   the bytes to the container.  The serialiser is passed
304  *   g_variant_fill_gvs() as a callback.
305  *
306  *   At the time that g_variant_fill_gvs() is called for each child, the
307  *   child is given a pointer to a sub-region of the allocated buffer
308  *   where it should write its data.  This is done by calling
309  *   g_variant_store().  In the event that the instance is in serialised
310  *   form this means a memcpy() of the serialised data into the
311  *   allocated buffer.  In the event that the instance is in tree form
312  *   this means a recursive call back into g_variant_serialise().
313  *
314  *
315  * The forward declaration here allows corecursion via callback:
316  */
317 static void g_variant_fill_gvs (GVariantSerialised *, gpointer);
318
319 /* < private >
320  * g_variant_serialise:
321  * @value: a #GVariant
322  * @data: an appropriately-sized buffer
323  *
324  * Serialises @value into @data.  @value must be in tree form.
325  *
326  * No change is made to @value.
327  *
328  * The current thread must hold the lock on @value.
329  */
330 static void
331 g_variant_serialise (GVariant *value,
332                      gpointer  data)
333 {
334   GVariantSerialised serialised = { 0, };
335   gpointer *children;
336   gsize n_children;
337
338   g_assert (~value->state & STATE_SERIALISED);
339   g_assert (value->state & STATE_LOCKED);
340
341   serialised.type_info = value->type_info;
342   serialised.size = value->size;
343   serialised.data = data;
344
345   children = (gpointer *) value->contents.tree.children;
346   n_children = value->contents.tree.n_children;
347
348   g_variant_serialiser_serialise (serialised, g_variant_fill_gvs,
349                                   children, n_children);
350 }
351
352 /* < private >
353  * g_variant_fill_gvs:
354  * @serialised: a pointer to a #GVariantSerialised
355  * @data: a #GVariant instance
356  *
357  * This is the callback that is passed by a tree-form container instance
358  * to the serialiser.  This callback gets called on each child of the
359  * container.  Each child is responsible for performing the following
360  * actions:
361  *
362  *  - reporting its type
363  *
364  *  - reporting its serialised size
365  *
366  *  - possibly storing its serialised form into the provided buffer
367  *
368  * This callback is also used during g_variant_new_from_children() in
369  * order to discover the size and type of each child.
370  */
371 static void
372 g_variant_fill_gvs (GVariantSerialised *serialised,
373                     gpointer            data)
374 {
375   GVariant *value = data;
376
377   if (serialised->type_info == NULL)
378     serialised->type_info = value->type_info;
379   g_assert (serialised->type_info == value->type_info);
380
381   if (serialised->size == 0)
382     serialised->size = value->size;
383   g_assert (serialised->size == value->size);
384
385   if (serialised->data)
386     /* g_variant_store() is a public API, so it
387      * it will reacquire the lock if it needs to.
388      */
389     g_variant_store (value, serialised->data);
390 }
391
392 /* this ends the main body of the recursive serialiser */
393
394 /* < private >
395  * g_variant_ensure_serialised:
396  * @value: a #GVariant
397  *
398  * Ensures that @value is in serialised form.
399  *
400  * If @value is in tree form then this function allocates a buffer of
401  * that size and serialises the instance into the buffer.  The
402  * 'children' array is then released and the instance is set to
403  * serialised form based on the contents of the buffer.
404  */
405 static void
406 g_variant_ensure_serialised (GVariant *value)
407 {
408   if (g_variant_lock_in_tree_form (value))
409     {
410       GBytes *bytes;
411       gpointer data;
412
413       data = g_malloc (value->size);
414       g_variant_serialise (value, data);
415
416       g_variant_release_children (value);
417
418       bytes = g_bytes_new_take (data, value->size);
419       value->contents.serialised.data = g_bytes_get_data (bytes, NULL);
420       value->contents.serialised.bytes = bytes;
421       value->state |= STATE_SERIALISED;
422
423       g_variant_unlock (value);
424     }
425 }
426
427 /* < private >
428  * g_variant_alloc:
429  * @type: the type of the new instance
430  * @serialised: if the instance will be in serialised form
431  * @trusted: if the instance will be trusted
432  *
433  * Allocates a #GVariant instance and does some common work (such as
434  * looking up and filling in the type info), setting the state field,
435  * and setting the ref_count to 1.
436  *
437  * Returns: a new #GVariant with a floating reference
438  */
439 static GVariant *
440 g_variant_alloc (const GVariantType *type,
441                  gboolean            serialised,
442                  gboolean            trusted)
443 {
444   GVariant *value;
445
446   value = g_slice_new (GVariant);
447   value->type_info = g_variant_type_info_get (type);
448   value->state = (serialised ? STATE_SERIALISED : 0) |
449                  (trusted ? STATE_TRUSTED : 0) |
450                  STATE_FLOATING;
451   value->ref_count = 1;
452
453   return value;
454 }
455
456 /**
457  * g_variant_new_from_bytes:
458  * @type: a #GVariantType
459  * @bytes: a #GBytes
460  * @trusted: if the contents of @bytes are trusted
461  *
462  * Constructs a new serialised-mode #GVariant instance.  This is the
463  * inner interface for creation of new serialised values that gets
464  * called from various functions in gvariant.c.
465  *
466  * A reference is taken on @bytes.
467  *
468  * Returns: (transfer none): a new #GVariant with a floating reference
469  *
470  * Since: 2.36
471  */
472 GVariant *
473 g_variant_new_from_bytes (const GVariantType *type,
474                           GBytes             *bytes,
475                           gboolean            trusted)
476 {
477   GVariant *value;
478   guint alignment;
479   gsize size;
480
481   value = g_variant_alloc (type, TRUE, trusted);
482
483   value->contents.serialised.bytes = g_bytes_ref (bytes);
484
485   g_variant_type_info_query (value->type_info,
486                              &alignment, &size);
487
488   if (size && g_bytes_get_size (bytes) != size)
489     {
490       /* Creating a fixed-sized GVariant with a bytes of the wrong
491        * size.
492        *
493        * We should do the equivalent of pulling a fixed-sized child out
494        * of a brozen container (ie: data is NULL size is equal to the correct
495        * fixed size).
496        */
497       value->contents.serialised.data = NULL;
498       value->size = size;
499     }
500   else
501     {
502       value->contents.serialised.data = g_bytes_get_data (bytes, &value->size);
503     }
504
505   return value;
506 }
507
508 /* -- internal -- */
509
510 /* < internal >
511  * g_variant_new_from_children:
512  * @type: a #GVariantType
513  * @children: an array of #GVariant pointers.  Consumed.
514  * @n_children: the length of @children
515  * @trusted: %TRUE if every child in @children in trusted
516  *
517  * Constructs a new tree-mode #GVariant instance.  This is the inner
518  * interface for creation of new serialised values that gets called from
519  * various functions in gvariant.c.
520  *
521  * @children is consumed by this function.  g_free() will be called on
522  * it some time later.
523  *
524  * Returns: a new #GVariant with a floating reference
525  */
526 GVariant *
527 g_variant_new_from_children (const GVariantType  *type,
528                              GVariant           **children,
529                              gsize                n_children,
530                              gboolean             trusted)
531 {
532   GVariant *value;
533
534   value = g_variant_alloc (type, FALSE, trusted);
535   value->contents.tree.children = children;
536   value->contents.tree.n_children = n_children;
537   value->size = g_variant_serialiser_needed_size (value->type_info, g_variant_fill_gvs,
538                                                   (gpointer *) children, n_children);
539
540   return value;
541 }
542
543 /* < internal >
544  * g_variant_get_type_info:
545  * @value: a #GVariant
546  *
547  * Returns the #GVariantTypeInfo corresponding to the type of @value.  A
548  * reference is not added, so the return value is only good for the
549  * duration of the life of @value.
550  *
551  * Returns: the #GVariantTypeInfo for @value
552  */
553 GVariantTypeInfo *
554 g_variant_get_type_info (GVariant *value)
555 {
556   return value->type_info;
557 }
558
559 /* < internal >
560  * g_variant_is_trusted:
561  * @value: a #GVariant
562  *
563  * Determines if @value is trusted by #GVariant to contain only
564  * fully-valid data.  All values constructed solely via #GVariant APIs
565  * are trusted, but values containing data read in from other sources
566  * are usually not trusted.
567  *
568  * The main advantage of trusted data is that certain checks can be
569  * skipped.  For example, we don't need to check that a string is
570  * properly nul-terminated or that an object path is actually a
571  * properly-formatted object path.
572  *
573  * Returns: if @value is trusted
574  */
575 gboolean
576 g_variant_is_trusted (GVariant *value)
577 {
578   return (value->state & STATE_TRUSTED) != 0;
579 }
580
581 /* -- public -- */
582
583 /**
584  * g_variant_unref:
585  * @value: a #GVariant
586  *
587  * Decreases the reference count of @value.  When its reference count
588  * drops to 0, the memory used by the variant is freed.
589  *
590  * Since: 2.24
591  **/
592 void
593 g_variant_unref (GVariant *value)
594 {
595   g_return_if_fail (value != NULL);
596   g_return_if_fail (value->ref_count > 0);
597
598   if (g_atomic_int_dec_and_test (&value->ref_count))
599     {
600       if G_UNLIKELY (value->state & STATE_LOCKED)
601         g_critical ("attempting to free a locked GVariant instance.  "
602                     "This should never happen.");
603
604       value->state |= STATE_LOCKED;
605
606       g_variant_type_info_unref (value->type_info);
607
608       if (value->state & STATE_SERIALISED)
609         g_bytes_unref (value->contents.serialised.bytes);
610       else
611         g_variant_release_children (value);
612
613       memset (value, 0, sizeof (GVariant));
614       g_slice_free (GVariant, value);
615     }
616 }
617
618 /**
619  * g_variant_ref:
620  * @value: a #GVariant
621  *
622  * Increases the reference count of @value.
623  *
624  * Returns: the same @value
625  *
626  * Since: 2.24
627  **/
628 GVariant *
629 g_variant_ref (GVariant *value)
630 {
631   g_return_val_if_fail (value != NULL, NULL);
632   g_return_val_if_fail (value->ref_count > 0, NULL);
633
634   g_atomic_int_inc (&value->ref_count);
635
636   return value;
637 }
638
639 /**
640  * g_variant_ref_sink:
641  * @value: a #GVariant
642  *
643  * #GVariant uses a floating reference count system.  All functions with
644  * names starting with `g_variant_new_` return floating
645  * references.
646  *
647  * Calling g_variant_ref_sink() on a #GVariant with a floating reference
648  * will convert the floating reference into a full reference.  Calling
649  * g_variant_ref_sink() on a non-floating #GVariant results in an
650  * additional normal reference being added.
651  *
652  * In other words, if the @value is floating, then this call "assumes
653  * ownership" of the floating reference, converting it to a normal
654  * reference.  If the @value is not floating, then this call adds a
655  * new normal reference increasing the reference count by one.
656  *
657  * All calls that result in a #GVariant instance being inserted into a
658  * container will call g_variant_ref_sink() on the instance.  This means
659  * that if the value was just created (and has only its floating
660  * reference) then the container will assume sole ownership of the value
661  * at that point and the caller will not need to unreference it.  This
662  * makes certain common styles of programming much easier while still
663  * maintaining normal refcounting semantics in situations where values
664  * are not floating.
665  *
666  * Returns: the same @value
667  *
668  * Since: 2.24
669  **/
670 GVariant *
671 g_variant_ref_sink (GVariant *value)
672 {
673   g_return_val_if_fail (value != NULL, NULL);
674   g_return_val_if_fail (value->ref_count > 0, NULL);
675
676   g_variant_lock (value);
677
678   if (~value->state & STATE_FLOATING)
679     g_variant_ref (value);
680   else
681     value->state &= ~STATE_FLOATING;
682
683   g_variant_unlock (value);
684
685   return value;
686 }
687
688 /**
689  * g_variant_take_ref:
690  * @value: a #GVariant
691  *
692  * If @value is floating, sink it.  Otherwise, do nothing.
693  *
694  * Typically you want to use g_variant_ref_sink() in order to
695  * automatically do the correct thing with respect to floating or
696  * non-floating references, but there is one specific scenario where
697  * this function is helpful.
698  *
699  * The situation where this function is helpful is when creating an API
700  * that allows the user to provide a callback function that returns a
701  * #GVariant.  We certainly want to allow the user the flexibility to
702  * return a non-floating reference from this callback (for the case
703  * where the value that is being returned already exists).
704  *
705  * At the same time, the style of the #GVariant API makes it likely that
706  * for newly-created #GVariant instances, the user can be saved some
707  * typing if they are allowed to return a #GVariant with a floating
708  * reference.
709  *
710  * Using this function on the return value of the user's callback allows
711  * the user to do whichever is more convenient for them.  The caller
712  * will alway receives exactly one full reference to the value: either
713  * the one that was returned in the first place, or a floating reference
714  * that has been converted to a full reference.
715  *
716  * This function has an odd interaction when combined with
717  * g_variant_ref_sink() running at the same time in another thread on
718  * the same #GVariant instance.  If g_variant_ref_sink() runs first then
719  * the result will be that the floating reference is converted to a hard
720  * reference.  If g_variant_take_ref() runs first then the result will
721  * be that the floating reference is converted to a hard reference and
722  * an additional reference on top of that one is added.  It is best to
723  * avoid this situation.
724  *
725  * Returns: the same @value
726  **/
727 GVariant *
728 g_variant_take_ref (GVariant *value)
729 {
730   g_return_val_if_fail (value != NULL, NULL);
731   g_return_val_if_fail (value->ref_count > 0, NULL);
732
733   g_atomic_int_and (&value->state, ~STATE_FLOATING);
734
735   return value;
736 }
737
738 /**
739  * g_variant_is_floating:
740  * @value: a #GVariant
741  *
742  * Checks whether @value has a floating reference count.
743  *
744  * This function should only ever be used to assert that a given variant
745  * is or is not floating, or for debug purposes. To acquire a reference
746  * to a variant that might be floating, always use g_variant_ref_sink()
747  * or g_variant_take_ref().
748  *
749  * See g_variant_ref_sink() for more information about floating reference
750  * counts.
751  *
752  * Returns: whether @value is floating
753  *
754  * Since: 2.26
755  **/
756 gboolean
757 g_variant_is_floating (GVariant *value)
758 {
759   g_return_val_if_fail (value != NULL, FALSE);
760
761   return (value->state & STATE_FLOATING) != 0;
762 }
763
764 /**
765  * g_variant_get_size:
766  * @value: a #GVariant instance
767  *
768  * Determines the number of bytes that would be required to store @value
769  * with g_variant_store().
770  *
771  * If @value has a fixed-sized type then this function always returned
772  * that fixed size.
773  *
774  * In the case that @value is already in serialised form or the size has
775  * already been calculated (ie: this function has been called before)
776  * then this function is O(1).  Otherwise, the size is calculated, an
777  * operation which is approximately O(n) in the number of values
778  * involved.
779  *
780  * Returns: the serialised size of @value
781  *
782  * Since: 2.24
783  **/
784 gsize
785 g_variant_get_size (GVariant *value)
786 {
787   return value->size;
788 }
789
790 /**
791  * g_variant_get_data:
792  * @value: a #GVariant instance
793  *
794  * Returns a pointer to the serialised form of a #GVariant instance.
795  * The returned data may not be in fully-normalised form if read from an
796  * untrusted source.  The returned data must not be freed; it remains
797  * valid for as long as @value exists.
798  *
799  * If @value is a fixed-sized value that was deserialised from a
800  * corrupted serialised container then %NULL may be returned.  In this
801  * case, the proper thing to do is typically to use the appropriate
802  * number of nul bytes in place of @value.  If @value is not fixed-sized
803  * then %NULL is never returned.
804  *
805  * In the case that @value is already in serialised form, this function
806  * is O(1).  If the value is not already in serialised form,
807  * serialisation occurs implicitly and is approximately O(n) in the size
808  * of the result.
809  *
810  * To deserialise the data returned by this function, in addition to the
811  * serialised data, you must know the type of the #GVariant, and (if the
812  * machine might be different) the endianness of the machine that stored
813  * it. As a result, file formats or network messages that incorporate
814  * serialised #GVariants must include this information either
815  * implicitly (for instance "the file always contains a
816  * %G_VARIANT_TYPE_VARIANT and it is always in little-endian order") or
817  * explicitly (by storing the type and/or endianness in addition to the
818  * serialised data).
819  *
820  * Returns: (transfer none): the serialised form of @value, or %NULL
821  *
822  * Since: 2.24
823  **/
824 gconstpointer
825 g_variant_get_data (GVariant *value)
826 {
827   g_variant_ensure_serialised (value);
828
829   return value->contents.serialised.data;
830 }
831
832 /**
833  * g_variant_get_data_as_bytes:
834  * @value: a #GVariant
835  *
836  * Returns a pointer to the serialised form of a #GVariant instance.
837  * The semantics of this function are exactly the same as
838  * g_variant_get_data(), except that the returned #GBytes holds
839  * a reference to the variant data.
840  *
841  * Returns: (transfer full): A new #GBytes representing the variant data
842  *
843  * Since: 2.36
844  */ 
845 GBytes *
846 g_variant_get_data_as_bytes (GVariant *value)
847 {
848   const gchar *bytes_data;
849   const gchar *data;
850   gsize bytes_size;
851   gsize size;
852
853   g_variant_ensure_serialised (value);
854
855   bytes_data = g_bytes_get_data (value->contents.serialised.bytes, &bytes_size);
856   data = value->contents.serialised.data;
857   size = value->size;
858
859   if (data == bytes_data && size == bytes_size)
860     return g_bytes_ref (value->contents.serialised.bytes);
861   else
862     return g_bytes_new_from_bytes (value->contents.serialised.bytes,
863                                    data - bytes_data, size);
864 }
865
866
867 /**
868  * g_variant_n_children:
869  * @value: a container #GVariant
870  *
871  * Determines the number of children in a container #GVariant instance.
872  * This includes variants, maybes, arrays, tuples and dictionary
873  * entries.  It is an error to call this function on any other type of
874  * #GVariant.
875  *
876  * For variants, the return value is always 1.  For values with maybe
877  * types, it is always zero or one.  For arrays, it is the length of the
878  * array.  For tuples it is the number of tuple items (which depends
879  * only on the type).  For dictionary entries, it is always 2
880  *
881  * This function is O(1).
882  *
883  * Returns: the number of children in the container
884  *
885  * Since: 2.24
886  **/
887 gsize
888 g_variant_n_children (GVariant *value)
889 {
890   gsize n_children;
891
892   if (g_variant_lock_in_tree_form (value))
893     {
894       n_children = value->contents.tree.n_children;
895       g_variant_unlock (value);
896     }
897   else
898     {
899       GVariantSerialised serialised = {
900         value->type_info,
901         (gpointer) value->contents.serialised.data,
902         value->size
903       };
904
905       n_children = g_variant_serialised_n_children (serialised);
906     }
907
908   return n_children;
909 }
910
911 /**
912  * g_variant_get_child_value:
913  * @value: a container #GVariant
914  * @index_: the index of the child to fetch
915  *
916  * Reads a child item out of a container #GVariant instance.  This
917  * includes variants, maybes, arrays, tuples and dictionary
918  * entries.  It is an error to call this function on any other type of
919  * #GVariant.
920  *
921  * It is an error if @index_ is greater than the number of child items
922  * in the container.  See g_variant_n_children().
923  *
924  * The returned value is never floating.  You should free it with
925  * g_variant_unref() when you're done with it.
926  *
927  * This function is O(1).
928  *
929  * Returns: (transfer full): the child at the specified index
930  *
931  * Since: 2.24
932  **/
933 GVariant *
934 g_variant_get_child_value (GVariant *value,
935                            gsize     index_)
936 {
937   GVariant *child;
938
939   g_return_val_if_fail (index_ < g_variant_n_children (value), NULL);
940
941   if (g_variant_lock_in_tree_form (value))
942     {
943
944       child = g_variant_ref (value->contents.tree.children[index_]);
945       g_variant_unlock (value);
946     }
947   else
948     {
949       GVariantSerialised serialised = {
950         value->type_info,
951         (gpointer) value->contents.serialised.data,
952         value->size
953       };
954       GVariantSerialised s_child;
955
956       /* get the serialiser to extract the serialised data for the child
957        * from the serialised data for the container
958        */
959       s_child = g_variant_serialised_get_child (serialised, index_);
960
961       /* create a new serialised instance out of it */
962       child = g_slice_new (GVariant);
963       child->type_info = s_child.type_info;
964       child->state = (value->state & STATE_TRUSTED) |
965                      STATE_SERIALISED;
966       child->size = s_child.size;
967       child->ref_count = 1;
968       child->contents.serialised.bytes =
969         g_bytes_ref (value->contents.serialised.bytes);
970       child->contents.serialised.data = s_child.data;
971     }
972
973   return child;
974 }
975
976 /**
977  * g_variant_store:
978  * @value: the #GVariant to store
979  * @data: the location to store the serialised data at
980  *
981  * Stores the serialised form of @value at @data.  @data should be
982  * large enough.  See g_variant_get_size().
983  *
984  * The stored data is in machine native byte order but may not be in
985  * fully-normalised form if read from an untrusted source.  See
986  * g_variant_get_normal_form() for a solution.
987  *
988  * As with g_variant_get_data(), to be able to deserialise the
989  * serialised variant successfully, its type and (if the destination
990  * machine might be different) its endianness must also be available.
991  *
992  * This function is approximately O(n) in the size of @data.
993  *
994  * Since: 2.24
995  **/
996 void
997 g_variant_store (GVariant *value,
998                  gpointer  data)
999 {
1000   if (g_variant_lock_in_tree_form (value))
1001     {
1002       g_variant_serialise (value, data);
1003       g_variant_unlock (value);
1004     }
1005   else
1006     {
1007       if (value->contents.serialised.data != NULL)
1008         memcpy (data, value->contents.serialised.data, value->size);
1009       else
1010         memset (data, 0, value->size);
1011     }
1012 }
1013
1014 /**
1015  * g_variant_is_normal_form:
1016  * @value: a #GVariant instance
1017  *
1018  * Checks if @value is in normal form.
1019  *
1020  * The main reason to do this is to detect if a given chunk of
1021  * serialised data is in normal form: load the data into a #GVariant
1022  * using g_variant_new_from_data() and then use this function to
1023  * check.
1024  *
1025  * If @value is found to be in normal form then it will be marked as
1026  * being trusted.  If the value was already marked as being trusted then
1027  * this function will immediately return %TRUE.
1028  *
1029  * Returns: %TRUE if @value is in normal form
1030  *
1031  * Since: 2.24
1032  **/
1033 gboolean
1034 g_variant_is_normal_form (GVariant *value)
1035 {
1036   if (g_atomic_int_get (&value->state) & STATE_TRUSTED)
1037     return TRUE;
1038
1039   /* We always take the lock here because we expect to find that the
1040    * value is in normal form and in that case, we need to update the
1041    * state, which requires holding the lock.
1042    */
1043   g_variant_lock (value);
1044
1045   if (value->state & STATE_SERIALISED)
1046     {
1047       GVariantSerialised serialised = {
1048         value->type_info,
1049         (gpointer) value->contents.serialised.data,
1050         value->size
1051       };
1052
1053       if (g_variant_serialised_is_normal (serialised))
1054         value->state |= STATE_TRUSTED;
1055     }
1056   else
1057     {
1058       gboolean normal = TRUE;
1059       gsize i;
1060
1061       for (i = 0; i < value->contents.tree.n_children; i++)
1062         normal &= g_variant_is_normal_form (value->contents.tree.children[i]);
1063
1064       if (normal)
1065         value->state |= STATE_TRUSTED;
1066     }
1067
1068   g_variant_unlock (value);
1069
1070   return (value->state & STATE_TRUSTED) != 0;
1071 }