summaryrefslogtreecommitdiff
path: root/src/tet3/dtet2lib/sigsafe.c
blob: 798ae5a3d5d67ddddaae2693c30555d945f45699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
 *      SCCS:  @(#)sigsafe.c	1.6 (98/08/28) 
 *
 *	UniSoft Ltd., London, England
 *
 * (C) Copyright 1996 X/Open Company Limited
 *
 * All rights reserved.  No part of this source code may be reproduced,
 * stored in a retrieval system, or transmitted, in any form or by any
 * means, electronic, mechanical, photocopying, recording or otherwise,
 * except as stated in the end-user licence agreement, without the prior
 * permission of the copyright owners.
 * A copy of the end-user licence agreement is contained in the file
 * Licence which accompanies this distribution.
 * 
 * X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
 * the UK and other countries.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

/************************************************************************

SCCS:   	@(#)sigsafe.c	1.6 98/08/28 TETware release 3.3
NAME:		sigblock.c
PRODUCT:	TETware
AUTHOR:		Geoff Clare, UniSoft Ltd.
DATE CREATED:	September 1996

DESCRIPTION:
	functions for blocking all blockable signals during critical
	sections of code.

MODIFICATIONS:
	Andrew Dingwall, UniSoft Ltd., June 1997
	moved bit manipulation macros to bitset.h

	Andrew Dingwall, UniSoft Ltd., July 1997
	removed the sigsafe code on WIN32 platforms

	Andrew Dingwall, UniSoft Ltd., February 1998
	Use TETware-specific macros to access threads functions and
	data items.

	Andrew Dingwall, UniSoft Ltd., July 1998
	Added support for shared API libraries.

	Aaron Plattner, April 2010
	Fixed warnings when compiled with GCC's -Wall option.

************************************************************************/

#include <stdio.h>
#include <signal.h>
#include "dtmac.h"
#include "dtthr.h"
#include "error.h"
#include "sigsafe.h"


static int init_done = 0;

/*
** tet_init_blockable_sigs() - initialise set of blockable signals
*/

TET_IMPORT void tet_init_blockable_sigs()
{

	/* start with full set, and then remove signals that
	   should not be blocked */

	(void) sigfillset(&tet_blockable_sigs);

	/* the system won't allow these to be blocked */
	(void) sigdelset(&tet_blockable_sigs, SIGKILL);
	(void) sigdelset(&tet_blockable_sigs, SIGSTOP);

	/* blocking this could give problems, and it is unlikely
	   anyone would longjmp out of a SIGCHLD handler (no TET
	   code does), so it should be safe to leave it unblocked */
	(void) sigdelset(&tet_blockable_sigs, SIGCHLD);

	/* hardware signals that give undefined behaviour if blocked */
	(void) sigdelset(&tet_blockable_sigs, SIGSEGV);
	(void) sigdelset(&tet_blockable_sigs, SIGILL);
	(void) sigdelset(&tet_blockable_sigs, SIGFPE);
#  ifdef SIGBUS
	(void) sigdelset(&tet_blockable_sigs, SIGBUS);
#  endif


	init_done = 1;
}



/*
** tet_sigsafe_start() - block signals at start of critical code section
**
** The old signal mask is returned via the pointer argument.  This should
** be passed to tet_sigsafe_end().
**
** Return value is 0 for success, -1 on error.
*/

int tet_sigsafe_start(oldset)
sigset_t *oldset;
{
	ASSERT(init_done);

#  ifdef TET_THREADS
	return TET_THR_SIGSETMASK(SIG_BLOCK, &tet_blockable_sigs, oldset);
#  else
	return sigprocmask(SIG_BLOCK, &tet_blockable_sigs, oldset);
#  endif
}

/*
** tet_sigsafe_end() - restore signal mask at end of critical code section
**
** Return value is 0 for success, -1 on error.
*/

int tet_sigsafe_end(oldset)
sigset_t *oldset;
{
#  ifdef TET_THREADS
	return TET_THR_SIGSETMASK(SIG_SETMASK, oldset, (sigset_t *) 0);
#  else
	return sigprocmask(SIG_SETMASK, oldset, (sigset_t *)0);
#  endif
}