1 /*-
2 * Copyright (c) 2017 Juniper Networks. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26 #include "namespace.h"
27 #include <sys/types.h>
28 #include <machine/atomic.h>
29 #include <errno.h>
30 #include <pthread.h>
31 #include <stddef.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <unistd.h>
35 #include "un-namespace.h"
36 #include "libc_private.h"
37
38 /*
39 * Rationale recommends allocating new memory each time.
40 */
41 static constraint_handler_t *_ch = NULL;
42 static pthread_mutex_t ch_lock = PTHREAD_MUTEX_INITIALIZER;
43
44 constraint_handler_t
set_constraint_handler_s(constraint_handler_t handler)45 set_constraint_handler_s(constraint_handler_t handler)
46 {
47 constraint_handler_t *new, *old, ret;
48
49 new = malloc(sizeof(constraint_handler_t));
50 if (new == NULL)
51 return (NULL);
52 *new = handler;
53 if (__isthreaded)
54 _pthread_mutex_lock(&ch_lock);
55 old = _ch;
56 _ch = new;
57 if (__isthreaded)
58 _pthread_mutex_unlock(&ch_lock);
59 if (old == NULL) {
60 ret = NULL;
61 } else {
62 ret = *old;
63 free(old);
64 }
65 return (ret);
66 }
67
68 void
__throw_constraint_handler_s(const char * restrict msg,errno_t error)69 __throw_constraint_handler_s(const char * restrict msg, errno_t error)
70 {
71 constraint_handler_t ch;
72
73 if (__isthreaded)
74 _pthread_mutex_lock(&ch_lock);
75 ch = _ch != NULL ? *_ch : NULL;
76 if (__isthreaded)
77 _pthread_mutex_unlock(&ch_lock);
78 if (ch != NULL)
79 ch(msg, NULL, error);
80 }
81
82 void
abort_handler_s(const char * restrict msg,void * restrict ptr __unused,errno_t error __unused)83 abort_handler_s(const char * restrict msg, void * restrict ptr __unused,
84 errno_t error __unused)
85 {
86 static const char ahs[] = "abort_handler_s : ";
87
88 (void) _write(STDERR_FILENO, ahs, sizeof(ahs) - 1);
89 (void) _write(STDERR_FILENO, msg, strlen(msg));
90 (void) _write(STDERR_FILENO, "\n", 1);
91 abort();
92 }
93
94 void
ignore_handler_s(const char * restrict msg __unused,void * restrict ptr __unused,errno_t error __unused)95 ignore_handler_s(const char * restrict msg __unused,
96 void * restrict ptr __unused, errno_t error __unused)
97 {
98 }
99