Be more clear that g_return_if_fail is undefined behaviour
[platform/upstream/glib.git] / glib / gerror.c
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /*
19  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
20  * file for a list of people on the GLib Team.  See the ChangeLog
21  * files for a list of changes.  These files are distributed with
22  * GLib at ftp://ftp.gtk.org/pub/gtk/.
23  */
24
25 /**
26  * SECTION:error_reporting
27  * @Title: Error Reporting
28  * @Short_description: a system for reporting errors
29  *
30  * GLib provides a standard method of reporting errors from a called
31  * function to the calling code. (This is the same problem solved by
32  * exceptions in other languages.) It's important to understand that
33  * this method is both a data type (the #GError struct) and a set of
34  * rules. If you use #GError incorrectly, then your code will not
35  * properly interoperate with other code that uses #GError, and users
36  * of your API will probably get confused.
37  *
38  * First and foremost: #GError should only be used to report recoverable
39  * runtime errors, never to report programming errors. If the programmer
40  * has screwed up, then you should use g_warning(), g_return_if_fail(),
41  * g_assert(), g_error(), or some similar facility. (Incidentally,
42  * remember that the g_error() function should only be used for
43  * programming errors, it should not be used to print any error
44  * reportable via #GError.)
45  *
46  * Examples of recoverable runtime errors are "file not found" or
47  * "failed to parse input." Examples of programming errors are "NULL
48  * passed to strcmp()" or "attempted to free the same pointer twice."
49  * These two kinds of errors are fundamentally different: runtime errors
50  * should be handled or reported to the user, programming errors should
51  * be eliminated by fixing the bug in the program. This is why most
52  * functions in GLib and GTK+ do not use the #GError facility.
53  *
54  * Functions that can fail take a return location for a #GError as their
55  * last argument. For example:
56  * |[<!-- language="C" -->
57  * gboolean g_file_get_contents (const gchar  *filename,
58  *                               gchar       **contents,
59  *                               gsize        *length,
60  *                               GError      **error);
61  * ]|
62  * If you pass a non-%NULL value for the `error` argument, it should
63  * point to a location where an error can be placed. For example:
64  * |[<!-- language="C" -->
65  * gchar *contents;
66  * GError *err = NULL;
67  *
68  * g_file_get_contents ("foo.txt", &contents, NULL, &err);
69  * g_assert ((contents == NULL && err != NULL) || (contents != NULL && err == NULL));
70  * if (err != NULL)
71  *   {
72  *     /&ast; Report error to user, and free error &ast;/
73  *     g_assert (contents == NULL);
74  *     fprintf (stderr, "Unable to read file: %s\n", err->message);
75  *     g_error_free (err);
76  *   }
77  * else
78  *   {
79  *     /&ast; Use file contents &ast;/
80  *     g_assert (contents != NULL);
81  *   }
82  * ]|
83  * Note that `err != NULL` in this example is a reliable indicator
84  * of whether g_file_get_contents() failed. Additionally,
85  * g_file_get_contents() returns a boolean which
86  * indicates whether it was successful.
87  *
88  * Because g_file_get_contents() returns %FALSE on failure, if you
89  * are only interested in whether it failed and don't need to display
90  * an error message, you can pass %NULL for the @error argument:
91  * |[<!-- language="C" -->
92  * if (g_file_get_contents ("foo.txt", &contents, NULL, NULL)) /&ast; ignore errors &ast;/
93  *   /&ast; no error occurred &ast;/ ;
94  * else
95  *   /&ast; error &ast;/ ;
96  * ]|
97  *
98  * The #GError object contains three fields: @domain indicates the module
99  * the error-reporting function is located in, @code indicates the specific
100  * error that occurred, and @message is a user-readable error message with
101  * as many details as possible. Several functions are provided to deal
102  * with an error received from a called function: g_error_matches()
103  * returns %TRUE if the error matches a given domain and code,
104  * g_propagate_error() copies an error into an error location (so the
105  * calling function will receive it), and g_clear_error() clears an
106  * error location by freeing the error and resetting the location to
107  * %NULL. To display an error to the user, simply display the @message,
108  * perhaps along with additional context known only to the calling
109  * function (the file being opened, or whatever - though in the
110  * g_file_get_contents() case, the @message already contains a filename).
111  *
112  * When implementing a function that can report errors, the basic
113  * tool is g_set_error(). Typically, if a fatal error occurs you
114  * want to g_set_error(), then return immediately. g_set_error()
115  * does nothing if the error location passed to it is %NULL.
116  * Here's an example:
117  * |[<!-- language="C" -->
118  * gint
119  * foo_open_file (GError **error)
120  * {
121  *   gint fd;
122  *
123  *   fd = open ("file.txt", O_RDONLY);
124  *
125  *   if (fd < 0)
126  *     {
127  *       g_set_error (error,
128  *                    FOO_ERROR,                 /&ast; error domain &ast;/
129  *                    FOO_ERROR_BLAH,            /&ast; error code &ast;/
130  *                    "Failed to open file: %s", /&ast; error message format string &ast;/
131  *                    g_strerror (errno));
132  *       return -1;
133  *     }
134  *   else
135  *     return fd;
136  * }
137  * ]|
138  *
139  * Things are somewhat more complicated if you yourself call another
140  * function that can report a #GError. If the sub-function indicates
141  * fatal errors in some way other than reporting a #GError, such as
142  * by returning %TRUE on success, you can simply do the following:
143  * |[<!-- language="C" -->
144  * gboolean
145  * my_function_that_can_fail (GError **err)
146  * {
147  *   g_return_val_if_fail (err == NULL || *err == NULL, FALSE);
148  *
149  *   if (!sub_function_that_can_fail (err))
150  *     {
151  *       /&ast; assert that error was set by the sub-function &ast;/
152  *       g_assert (err == NULL || *err != NULL);
153  *       return FALSE;
154  *     }
155  *
156  *   /&ast; otherwise continue, no error occurred &ast;/
157  *   g_assert (err == NULL || *err == NULL);
158  * }
159  * ]|
160  *
161  * If the sub-function does not indicate errors other than by
162  * reporting a #GError, you need to create a temporary #GError
163  * since the passed-in one may be %NULL. g_propagate_error() is
164  * intended for use in this case.
165  * |[<!-- language="C" -->
166  * gboolean
167  * my_function_that_can_fail (GError **err)
168  * {
169  *   GError *tmp_error;
170  *
171  *   g_return_val_if_fail (err == NULL || *err == NULL, FALSE);
172  *
173  *   tmp_error = NULL;
174  *   sub_function_that_can_fail (&tmp_error);
175  *
176  *   if (tmp_error != NULL)
177  *     {
178  *       /&ast; store tmp_error in err, if err != NULL,
179  *        &ast; otherwise call g_error_free() on tmp_error
180  *        &ast;/
181  *       g_propagate_error (err, tmp_error);
182  *       return FALSE;
183  *     }
184  *
185  *   /&ast; otherwise continue, no error occurred &ast;/
186  * }
187  * ]|
188  *
189  * Error pileups are always a bug. For example, this code is incorrect:
190  * |[<!-- language="C" -->
191  * gboolean
192  * my_function_that_can_fail (GError **err)
193  * {
194  *   GError *tmp_error;
195  *
196  *   g_return_val_if_fail (err == NULL || *err == NULL, FALSE);
197  *
198  *   tmp_error = NULL;
199  *   sub_function_that_can_fail (&tmp_error);
200  *   other_function_that_can_fail (&tmp_error);
201  *
202  *   if (tmp_error != NULL)
203  *     {
204  *       g_propagate_error (err, tmp_error);
205  *       return FALSE;
206  *     }
207  * }
208  * ]|
209  * @tmp_error should be checked immediately after sub_function_that_can_fail(),
210  * and either cleared or propagated upward. The rule is: after each error,
211  * you must either handle the error, or return it to the calling function.
212  *
213  * Note that passing %NULL for the error location is the equivalent
214  * of handling an error by always doing nothing about it. So the
215  * following code is fine, assuming errors in sub_function_that_can_fail()
216  * are not fatal to my_function_that_can_fail():
217  * |[<!-- language="C" -->
218  * gboolean
219  * my_function_that_can_fail (GError **err)
220  * {
221  *   GError *tmp_error;
222  *
223  *   g_return_val_if_fail (err == NULL || *err == NULL, FALSE);
224  *
225  *   sub_function_that_can_fail (NULL); /&ast; ignore errors &ast;/
226  *
227  *   tmp_error = NULL;
228  *   other_function_that_can_fail (&tmp_error);
229  *
230  *   if (tmp_error != NULL)
231  *     {
232  *       g_propagate_error (err, tmp_error);
233  *       return FALSE;
234  *     }
235  * }
236  * ]|
237  *
238  * Note that passing %NULL for the error location ignores errors;
239  * it's equivalent to
240  * `try { sub_function_that_can_fail (); } catch (...) {}`
241  * in C++. It does not mean to leave errors unhandled; it means
242  * to handle them by doing nothing.
243  *
244  * Error domains and codes are conventionally named as follows:
245  *
246  * - The error domain is called <NAMESPACE>_<MODULE>_ERROR,
247  *   for example %G_SPAWN_ERROR or %G_THREAD_ERROR:
248  *   |[<!-- language="C" -->
249  *   #define G_SPAWN_ERROR g_spawn_error_quark ()
250  *
251  *   GQuark
252  *   g_spawn_error_quark (void)
253  *   {
254  *       return g_quark_from_static_string ("g-spawn-error-quark");
255  *   }
256  *   ]|
257  *
258  * - The quark function for the error domain is called
259  *   <namespace>_<module>_error_quark,
260  *   for example g_spawn_error_quark() or g_thread_error_quark().
261  *
262  * - The error codes are in an enumeration called
263  *   <Namespace><Module>Error;
264  *   for example, #GThreadError or #GSpawnError.
265  *
266  * - Members of the error code enumeration are called
267  *   <NAMESPACE>_<MODULE>_ERROR_<CODE>,
268  *   for example %G_SPAWN_ERROR_FORK or %G_THREAD_ERROR_AGAIN.
269  *
270  * - If there's a "generic" or "unknown" error code for unrecoverable
271  *   errors it doesn't make sense to distinguish with specific codes,
272  *   it should be called <NAMESPACE>_<MODULE>_ERROR_FAILED,
273  *   for example %G_SPAWN_ERROR_FAILED.
274  *
275  * Summary of rules for use of #GError:
276  *
277  * - Do not report programming errors via #GError.
278  * 
279  * - The last argument of a function that returns an error should
280  *   be a location where a #GError can be placed (i.e. "#GError** error").
281  *   If #GError is used with varargs, the #GError** should be the last
282  *   argument before the "...".
283  *
284  * - The caller may pass %NULL for the #GError** if they are not interested
285  *   in details of the exact error that occurred.
286  *
287  * - If %NULL is passed for the #GError** argument, then errors should
288  *   not be returned to the caller, but your function should still
289  *   abort and return if an error occurs. That is, control flow should
290  *   not be affected by whether the caller wants to get a #GError.
291  *
292  * - If a #GError is reported, then your function by definition had a
293  *   fatal failure and did not complete whatever it was supposed to do.
294  *   If the failure was not fatal, then you handled it and you should not
295  *   report it. If it was fatal, then you must report it and discontinue
296  *   whatever you were doing immediately.
297  *
298  * - If a #GError is reported, out parameters are not guaranteed to
299  *   be set to any defined value.
300  *
301  * - A #GError* must be initialized to %NULL before passing its address
302  *   to a function that can report errors.
303  *
304  * - "Piling up" errors is always a bug. That is, if you assign a
305  *   new #GError to a #GError* that is non-%NULL, thus overwriting
306  *   the previous error, it indicates that you should have aborted
307  *   the operation instead of continuing. If you were able to continue,
308  *   you should have cleared the previous error with g_clear_error().
309  *   g_set_error() will complain if you pile up errors.
310  *
311  * - By convention, if you return a boolean value indicating success
312  *   then %TRUE means success and %FALSE means failure.
313  *   <footnote><para>Avoid creating functions which have a boolean
314  *   return value and a GError parameter, but where the boolean does
315  *   something other than signal whether the GError is set.  Among other
316  *   problems, it requires C callers to allocate a temporary error.  Instead,
317  *   provide a "gboolean *" out parameter. There are functions in GLib
318  *   itself such as g_key_file_has_key() that are deprecated because of this.
319  *   </para></footnote>
320  *   If %FALSE is
321  *   returned, the error must be set to a non-%NULL value.
322  *   <footnote><para>One exception to this is that in situations that are
323  *   already considered to be undefined behaviour (such as when a
324  *   g_return_val_if_fail() check fails), the error need not be set.
325  *   Instead of checking separately whether the error is set, callers
326  *   should ensure that they do not provoke undefined behaviour, then
327  *   assume that the error will be set on failure.</para></footnote>
328  *
329  * - A %NULL return value is also frequently used to mean that an error
330  *   occurred. You should make clear in your documentation whether %NULL
331  *   is a valid return value in non-error cases; if %NULL is a valid value,
332  *   then users must check whether an error was returned to see if the
333  *   function succeeded.
334  *
335  * - When implementing a function that can report errors, you may want
336  *   to add a check at the top of your function that the error return
337  *   location is either %NULL or contains a %NULL error (e.g.
338  *   `g_return_if_fail (error == NULL || *error == NULL);`).
339  */
340
341 #include "config.h"
342
343 #include "gerror.h"
344
345 #include "gslice.h"
346 #include "gstrfuncs.h"
347 #include "gtestutils.h"
348
349 /**
350  * g_error_new_valist:
351  * @domain: error domain
352  * @code: error code
353  * @format: printf()-style format for error message
354  * @args: #va_list of parameters for the message format
355  *
356  * Creates a new #GError with the given @domain and @code,
357  * and a message formatted with @format.
358  *
359  * Returns: a new #GError
360  *
361  * Since: 2.22
362  */
363 GError*
364 g_error_new_valist (GQuark       domain,
365                     gint         code,
366                     const gchar *format,
367                     va_list      args)
368 {
369   GError *error;
370
371   /* Historically, GError allowed this (although it was never meant to work),
372    * and it has significant use in the wild, which g_return_val_if_fail
373    * would break. It should maybe g_return_val_if_fail in GLib 4.
374    * (GNOME#660371, GNOME#560482)
375    */
376   g_warn_if_fail (domain != 0);
377   g_warn_if_fail (format != NULL);
378
379   error = g_slice_new (GError);
380
381   error->domain = domain;
382   error->code = code;
383   error->message = g_strdup_vprintf (format, args);
384
385   return error;
386 }
387
388 /**
389  * g_error_new:
390  * @domain: error domain
391  * @code: error code
392  * @format: printf()-style format for error message
393  * @...: parameters for message format
394  *
395  * Creates a new #GError with the given @domain and @code,
396  * and a message formatted with @format.
397  *
398  * Return value: a new #GError
399  */
400 GError*
401 g_error_new (GQuark       domain,
402              gint         code,
403              const gchar *format,
404              ...)
405 {
406   GError* error;
407   va_list args;
408
409   g_return_val_if_fail (format != NULL, NULL);
410   g_return_val_if_fail (domain != 0, NULL);
411
412   va_start (args, format);
413   error = g_error_new_valist (domain, code, format, args);
414   va_end (args);
415
416   return error;
417 }
418
419 /**
420  * g_error_new_literal:
421  * @domain: error domain
422  * @code: error code
423  * @message: error message
424  *
425  * Creates a new #GError; unlike g_error_new(), @message is
426  * not a printf()-style format string. Use this function if
427  * @message contains text you don't have control over,
428  * that could include printf() escape sequences.
429  *
430  * Return value: a new #GError
431  **/
432 GError*
433 g_error_new_literal (GQuark         domain,
434                      gint           code,
435                      const gchar   *message)
436 {
437   GError* err;
438
439   g_return_val_if_fail (message != NULL, NULL);
440   g_return_val_if_fail (domain != 0, NULL);
441
442   err = g_slice_new (GError);
443
444   err->domain = domain;
445   err->code = code;
446   err->message = g_strdup (message);
447
448   return err;
449 }
450
451 /**
452  * g_error_free:
453  * @error: a #GError
454  *
455  * Frees a #GError and associated resources.
456  */
457 void
458 g_error_free (GError *error)
459 {
460   g_return_if_fail (error != NULL);
461
462   g_free (error->message);
463
464   g_slice_free (GError, error);
465 }
466
467 /**
468  * g_error_copy:
469  * @error: a #GError
470  *
471  * Makes a copy of @error.
472  *
473  * Return value: a new #GError
474  */
475 GError*
476 g_error_copy (const GError *error)
477 {
478   GError *copy;
479  
480   g_return_val_if_fail (error != NULL, NULL);
481   /* See g_error_new_valist for why these don't return */
482   g_warn_if_fail (error->domain != 0);
483   g_warn_if_fail (error->message != NULL);
484
485   copy = g_slice_new (GError);
486
487   *copy = *error;
488
489   copy->message = g_strdup (error->message);
490
491   return copy;
492 }
493
494 /**
495  * g_error_matches:
496  * @error: (allow-none): a #GError or %NULL
497  * @domain: an error domain
498  * @code: an error code
499  *
500  * Returns %TRUE if @error matches @domain and @code, %FALSE
501  * otherwise. In particular, when @error is %NULL, %FALSE will
502  * be returned.
503  *
504  * Return value: whether @error has @domain and @code
505  */
506 gboolean
507 g_error_matches (const GError *error,
508                  GQuark        domain,
509                  gint          code)
510 {
511   return error &&
512     error->domain == domain &&
513     error->code == code;
514 }
515
516 #define ERROR_OVERWRITTEN_WARNING "GError set over the top of a previous GError or uninitialized memory.\n" \
517                "This indicates a bug in someone's code. You must ensure an error is NULL before it's set.\n" \
518                "The overwriting error message was: %s"
519
520 /**
521  * g_set_error:
522  * @err: (allow-none): a return location for a #GError, or %NULL
523  * @domain: error domain
524  * @code: error code
525  * @format: printf()-style format
526  * @...: args for @format
527  *
528  * Does nothing if @err is %NULL; if @err is non-%NULL, then *@err
529  * must be %NULL. A new #GError is created and assigned to *@err.
530  */
531 void
532 g_set_error (GError      **err,
533              GQuark        domain,
534              gint          code,
535              const gchar  *format,
536              ...)
537 {
538   GError *new;
539
540   va_list args;
541
542   if (err == NULL)
543     return;
544
545   va_start (args, format);
546   new = g_error_new_valist (domain, code, format, args);
547   va_end (args);
548
549   if (*err == NULL)
550     *err = new;
551   else
552     {
553       g_warning (ERROR_OVERWRITTEN_WARNING, new->message);
554       g_error_free (new);
555     }
556 }
557
558 /**
559  * g_set_error_literal:
560  * @err: (allow-none): a return location for a #GError, or %NULL
561  * @domain: error domain
562  * @code: error code
563  * @message: error message
564  *
565  * Does nothing if @err is %NULL; if @err is non-%NULL, then *@err
566  * must be %NULL. A new #GError is created and assigned to *@err.
567  * Unlike g_set_error(), @message is not a printf()-style format string.
568  * Use this function if @message contains text you don't have control over,
569  * that could include printf() escape sequences.
570  *
571  * Since: 2.18
572  */
573 void
574 g_set_error_literal (GError      **err,
575                      GQuark        domain,
576                      gint          code,
577                      const gchar  *message)
578 {
579   if (err == NULL)
580     return;
581
582   if (*err == NULL)
583     *err = g_error_new_literal (domain, code, message);
584   else
585     g_warning (ERROR_OVERWRITTEN_WARNING, message);
586 }
587
588 /**
589  * g_propagate_error:
590  * @dest: error return location
591  * @src: error to move into the return location
592  *
593  * If @dest is %NULL, free @src; otherwise, moves @src into *@dest.
594  * The error variable @dest points to must be %NULL.
595  */
596 void
597 g_propagate_error (GError **dest,
598                    GError  *src)
599 {
600   g_return_if_fail (src != NULL);
601  
602   if (dest == NULL)
603     {
604       if (src)
605         g_error_free (src);
606       return;
607     }
608   else
609     {
610       if (*dest != NULL)
611         {
612           g_warning (ERROR_OVERWRITTEN_WARNING, src->message);
613           g_error_free (src);
614         }
615       else
616         *dest = src;
617     }
618 }
619
620 /**
621  * g_clear_error:
622  * @err: a #GError return location
623  *
624  * If @err is %NULL, does nothing. If @err is non-%NULL,
625  * calls g_error_free() on *@err and sets *@err to %NULL.
626  */
627 void
628 g_clear_error (GError **err)
629 {
630   if (err && *err)
631     {
632       g_error_free (*err);
633       *err = NULL;
634     }
635 }
636
637 G_GNUC_PRINTF(2, 0)
638 static void
639 g_error_add_prefix (gchar       **string,
640                     const gchar  *format,
641                     va_list       ap)
642 {
643   gchar *oldstring;
644   gchar *prefix;
645
646   prefix = g_strdup_vprintf (format, ap);
647   oldstring = *string;
648   *string = g_strconcat (prefix, oldstring, NULL);
649   g_free (oldstring);
650   g_free (prefix);
651 }
652
653 /**
654  * g_prefix_error:
655  * @err: (allow-none): a return location for a #GError, or %NULL
656  * @format: printf()-style format string
657  * @...: arguments to @format
658  *
659  * Formats a string according to @format and prefix it to an existing
660  * error message. If @err is %NULL (ie: no error variable) then do
661  * nothing.
662  *
663  * If *@err is %NULL (ie: an error variable is present but there is no
664  * error condition) then also do nothing. Whether or not it makes sense
665  * to take advantage of this feature is up to you.
666  *
667  * Since: 2.16
668  */
669 void
670 g_prefix_error (GError      **err,
671                 const gchar  *format,
672                 ...)
673 {
674   if (err && *err)
675     {
676       va_list ap;
677
678       va_start (ap, format);
679       g_error_add_prefix (&(*err)->message, format, ap);
680       va_end (ap);
681     }
682 }
683
684 /**
685  * g_propagate_prefixed_error:
686  * @dest: error return location
687  * @src: error to move into the return location
688  * @format: printf()-style format string
689  * @...: arguments to @format
690  *
691  * If @dest is %NULL, free @src; otherwise, moves @src into *@dest.
692  * *@dest must be %NULL. After the move, add a prefix as with
693  * g_prefix_error().
694  *
695  * Since: 2.16
696  **/
697 void
698 g_propagate_prefixed_error (GError      **dest,
699                             GError       *src,
700                             const gchar  *format,
701                             ...)
702 {
703   g_propagate_error (dest, src);
704
705   if (dest && *dest)
706     {
707       va_list ap;
708
709       va_start (ap, format);
710       g_error_add_prefix (&(*dest)->message, format, ap);
711       va_end (ap);
712     }
713 }