Cleanup of configuration options
[platform/upstream/glibc.git] / assert / assert.c
1 /* Copyright (C) 1991,1994-1996,1998,2001,2002,2005,2009,2011
2    Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4
5    The GNU C 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.1 of the License, or (at your option) any later version.
9
10    The GNU C 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 the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
19
20 #include <assert.h>
21 #include <atomic.h>
22 #include <ldsodefs.h>
23 #include <libintl.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <sysdep.h>
27 #include <unistd.h>
28 #include <sys/mman.h>
29
30
31 extern const char *__progname;
32
33 #include <wchar.h>
34 #include <libio/iolibio.h>
35 #define fflush(s) INTUSE(_IO_fflush) (s)
36
37 /* This function, when passed a string containing an asserted
38    expression, a filename, and a line number, prints a message
39    on the standard error stream of the form:
40         a.c:10: foobar: Assertion `a == b' failed.
41    It then aborts program execution via a call to `abort'.  */
42
43 #ifdef FATAL_PREPARE_INCLUDE
44 # include FATAL_PREPARE_INCLUDE
45 #endif
46
47
48 void
49 __assert_fail_base (const char *fmt, const char *assertion, const char *file,
50                     unsigned int line, const char *function)
51 {
52   char *str;
53
54 #ifdef FATAL_PREPARE
55   FATAL_PREPARE;
56 #endif
57
58   int total;
59   if (__asprintf (&str, fmt,
60                   __progname, __progname[0] ? ": " : "",
61                   file, line,
62                   function ? function : "", function ? ": " : "",
63                   assertion, &total) >= 0)
64     {
65       /* Print the message.  */
66       (void) __fxprintf (NULL, "%s", str);
67       (void) fflush (stderr);
68
69       total = (total + 1 + GLRO(dl_pagesize) - 1) & ~(GLRO(dl_pagesize) - 1);
70       struct abort_msg_s *buf = __mmap (NULL, total, PROT_READ | PROT_WRITE,
71                                         MAP_ANON | MAP_PRIVATE, -1, 0);
72       if (__builtin_expect (buf != MAP_FAILED, 1))
73         {
74           buf->size = total;
75           strcpy (buf->msg, str);
76
77           /* We have to free the old buffer since the application might
78              catch the SIGABRT signal.  */
79           struct abort_msg_s *old = atomic_exchange_acq (&__abort_msg, buf);
80
81           if (old != NULL)
82             __munmap (old, old->size);
83         }
84
85       free (str);
86     }
87   else
88     {
89       /* At least print a minimal message.  */
90       static const char errstr[] = "Unexpected error.\n";
91       __libc_write (STDERR_FILENO, errstr, sizeof (errstr) - 1);
92     }
93
94   abort ();
95 }
96
97
98 #undef __assert_fail
99 void
100 __assert_fail (const char *assertion, const char *file, unsigned int line,
101                const char *function)
102 {
103   __assert_fail_base (_("%s%s%s:%u: %s%sAssertion `%s' failed.\n%n"),
104                       assertion, file, line, function);
105 }
106 hidden_def(__assert_fail)