Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you haven't received our response, please do the following:
check your Spam/Junk folder and click the "Not Spam" button for our message.
This way, you won't miss messages from our team in the future.

>
>
>
Things to keep in mind when working wit…

Things to keep in mind when working with POSIX signals

Jun 01 2022
Author:

Like any other tool, POSIX signals have their own rules on how to use them wisely, securely, and safely. Programming language standards, man pages and the POSIX standard itself have described POSIX signals long ago. However, I often encounter crucial bugs related to POSIX signals even in skilled developers' code. These bugs may be found in both commercial and open source projects. So let's talk about the important stuff once again. (By the way, to newbies in the world of software development: committing to open source projects to fix obvious bugs in POSIX signal handlers is a great way to sharpen your skills in open-source projects and add cases to your portfolio. Fortunately, there are a lot of projects with similar bugs).

0950_POSIX_signals/image1.png

We published and translated this article with the copyright holder's permission. The author is Zheluddd (email — zheluddd22@gmail.com). The article was originally [RU] published on Habr.

1. The set of available calls from the signal handler is strictly limited

Well, first things first. What happens when a process receives a signal? The signal handler can be called in any of the threads of the process for which this specific signal (for example, SIGINT) is not marked as blocked. If there are several such threads, the kernel chooses one of the thread. Most often, it'll be the main thread of the program, however, this is not guaranteed, and you should not count on it. The kernel creates a special frame on the stack for the signal handler. This frame stores the information required for the process to continue working. This information includes: the program counter register (the address from which code should be executed), architecture-specific registers that are necessary for resuming the interrupted program, the thread's current signal mask, etc. After that, the signal handler function is called directly in this thread.

What does this mean? It means that the execution of any thread (which is not blocked for processing our signal) can be interrupted at any time. At absolutely any moment. It can be interrupted even in the middle of any function performing, any system call. Now, let's assume that if this call has some kind of static, global or thread-local internal state, for example, a buffer, some flags, mutex, or something else, calling the function again when it has not finished working yet may lead to completely unpredictable results. In computer science, such a function is called non-reentrant.

Let's use some function from stdio.h. For example, the well-known printf(). It uses a statically allocated data buffer inside, along with counters and indexes that store the amount of data and the current position in the buffer. All this isn't updated atomically. And if suddenly at the time of printf() execution, we catch the signal and run its handler in some thread, and this handler also call printf(), this function will work with an incorrect internal state. At best, it will simply lead to an incorrect result. At worst, the segmentation fault of the entire program will occur.

Another example: malloc() and free() are non-reentrant on most platforms because they use a static data structure inside that stores which memory blocks are free. The problem is compounded by the fact that malloc()/free() can be implicitly used in the depths of other library functions, and you may not even know about it.

Therefore, there is such a thing as async-signal-safety. Namely, the POSIX standard explicitly describes the strictly limited function set in signal handlers, and nothing more.

List of functions allowed:

  • abort() - Added in POSIX.1-001 TC1
  • accept()
  • access()
  • aio_error()
  • aio_return()
  • aio_suspend()
  • alarm()
  • bind()
  • cfgetispeed()
  • cfgetospeed()
  • cfsetispeed()
  • cfsetospeed()
  • chdir()
  • chmod()
  • chown()
  • clock_gettime()
  • close()
  • connect()
  • creat()
  • dup()
  • dup()
  • execl() - Added in POSIX.1-008;
  • execle()
  • execv() - Added in POSIX.1-008
  • execve()
  • _exit()
  • _Exit()
  • faccessat() - Added in POSIX.1-008
  • fchdir() - Added in POSIX.1-008 TC1
  • fchmod()
  • fchmodat() - Added in POSIX.1-008
  • fchown()
  • fchownat() - Added in POSIX.1-008
  • fcntl()
  • fdatasync()
  • fexecve() - Added in POSIX.1-008
  • ffs() - Added in POSIX.1-008 TC
  • fork()
  • fstat()
  • fstatat() - Added in POSIX.1-008
  • fsync()
  • ftruncate()
  • futimens() - Added in POSIX.1-008
  • getegid()
  • geteuid()
  • getgid()
  • getgroups()
  • getpeername()
  • getpgrp()
  • getpid()
  • getppid()
  • getsockname()
  • getsockopt()
  • getuid()
  • htonl() - Added in POSIX.1-008 TC
  • htons() - Added in POSIX.1-008 TC
  • kill()
  • link()
  • linkat() - Added in POSIX.1-008
  • listen()
  • longjmp() - Added in POSIX.1-008 TC;
  • lseek()
  • lstat()
  • memccpy() - Added in POSIX.1-008 TC
  • memchr() - Added in POSIX.1-008 TC
  • memcmp() - Added in POSIX.1-008 TC
  • memcpy() - Added in POSIX.1-008 TC
  • memmove() - Added in POSIX.1-008 TC
  • memset() - Added in POSIX.1-008 TC
  • mkdir() - Added in POSIX.1-008 TC
  • mkdirat() - Added in POSIX.1-008
  • mkfifo()
  • mkfifoat() - Added in POSIX.1-008
  • mknod() - Added in POSIX.1-008
  • mknodat() - Added in POSIX.1-008
  • ntohl() - Added in POSIX.1-008 TC
  • ntohs() - Added in POSIX.1-008 TC
  • open()
  • openat() - Added in POSIX.1-008
  • pause()
  • pipe()
  • poll()
  • posix_trace_event()
  • pselect()
  • pthread_kill() - Added in POSIX.1-008 TC1
  • pthread_self() - Added in POSIX.1-008 TC1
  • pthread_sigmask() - Added in POSIX.1-008 TC1
  • raise()
  • read()
  • readlink()
  • readlinkat() - Added in POSIX.1-008
  • recv()
  • recvfrom()
  • recvmsg()
  • rename()
  • renameat() - Added in POSIX.1-008
  • rmdir()
  • select()
  • sem_post()
  • send()
  • sendmsg()
  • sendto()
  • setgid()
  • setpgid()
  • setsid()
  • setsockopt()
  • setuid()
  • shutdown()
  • sigaction()
  • sigaddset()
  • sigdelset()
  • sigemptyset()
  • sigfillset()
  • sigismember()
  • siglongjmp() - Added in POSIX.1-008 TC;
  • signal()
  • sigpause()
  • sigpending()
  • sigprocmask()
  • sigqueue()
  • sigset()
  • sigsuspend()
  • sleep()
  • sockatmark() - Added in POSIX.1-001 TC
  • socket()
  • socketpair()
  • stat()
  • stpcpy() - Added in POSIX.1-008 TC
  • stpncpy() - Added in POSIX.1-008 TC
  • strcat() - Added in POSIX.1-008 TC
  • strchr() - Added in POSIX.1-008 TC
  • strcmp() - Added in POSIX.1-008 TC
  • strcpy() - Added in POSIX.1-008 TC
  • strcspn() - Added in POSIX.1-008 TC
  • strlen() - Added in POSIX.1-008 TC
  • strncat() - Added in POSIX.1-008 TC
  • strncmp() - Added in POSIX.1-008 TC
  • strncpy() - Added in POSIX.1-008 TC
  • strnlen() - Added in POSIX.1-008 TC
  • strpbrk() - Added in POSIX.1-008 TC
  • strrchr() - Added in POSIX.1-008 TC
  • strspn() - Added in POSIX.1-008 TC
  • strstr() - Added in POSIX.1-008 TC
  • strtok_r() - Added in POSIX.1-008 TC
  • symlink()
  • symlinkat() - Added in POSIX.1-008
  • tcdrain()
  • tcflow()
  • tcflush()
  • tcgetattr()
  • tcgetpgrp()
  • tcsendbreak()
  • tcsetattr()
  • tcsetpgrp()
  • time()
  • timer_getoverrun()
  • timer_gettime()
  • timer_settime()
  • times()
  • umask()
  • uname()
  • unlink()
  • unlinkat() - Added in POSIX.1-008
  • utime()
  • utimensat() - Added in POSIX.1-008
  • utimes() - Added in POSIX.1-008
  • wait()
  • waitpid()
  • wcpcpy() - Added in POSIX.1-008 TC
  • wcpncpy() - Added in POSIX.1-008 TC
  • wcscat() - Added in POSIX.1-008 TC
  • wcschr() - Added in POSIX.1-008 TC
  • wcscmp() - Added in POSIX.1-008 TC
  • wcscpy() - Added in POSIX.1-008 TC
  • wcscspn() - Added in POSIX.1-008 TC
  • wcslen() - Added in POSIX.1-008 TC
  • wcsncat() - Added in POSIX.1-008 TC
  • wcsncmp() - Added in POSIX.1-008 TC
  • wcsncpy() - Added in POSIX.1-008 TC
  • wcsnlen() - Added in POSIX.1-008 TC
  • wcspbrk() - Added in POSIX.1-008 TC
  • wcsrchr() - Added in POSIX.1-008 TC
  • wcsspn() - Added in POSIX.1-008 TC
  • wcsstr() - Added in POSIX.1-008 TC
  • wcstok() - Added in POSIX.1-008 TC
  • wmemchr() - Added in POSIX.1-008 TC
  • wmemcmp() - Added in POSIX.1-008 TC
  • wmemcpy() - Added in POSIX.1-008 TC
  • wmemmove() - Added in POSIX.1-008 TC
  • wmemset() - Added in POSIX.1-008 TC
  • write()

Note that the function list varies between different POSIX standard versions, and changes can occur in two directions. For example, fpathconf(), pathconf(), and sysconf() were considered safe in the 2001 standard. In the 2008 standard they are not safe anymore. fork() is still a safe function. However, for a number of reasons, there are plans to remove it from the list in future versions of the standard.

And now the most important thing. An attentive eye may notice that this list doesn't contain printf(), syslog(), malloc() functions. So you can't use these functions in a signal handler and, in theory, you can't use everything that have this functions inside. You can't write to std::cout and std::cerr in C++. These operations are non-reentrant as well.

Among the C standard library functions, there are many functions that are also non-reentrant. For example, almost all functions from <stdio.h>, many functions from <string.h>, the number of functions from <stdlib.h> (however, some of them are in the allowed list). However, the C language standard clearly prohibits calling almost everything in signal handlers from the standard library, except abort(), _Exit(), quick_exit() and signal() itself:

ISO/IEC 9899:2011 §7.14.1.1 The signal function

5. If the signal occurs other than as the result of calling the abort or raise function, the behavior is undefined if ... the signal handler calls any function in the standard library other than the abort function, the _Exit function, the quick_exit function, or the signal function with the first argument equal to the signal number corresponding to the signal that caused the invocation of the handler.

So, if you really want to output something to the console from the signal handler, you can do it with the old-fashioned method:

#include <unistd.h> 
 ...
write(1,"Hello World!", 12);

But it may be good practice (by the way, it's explicitly recommended in the libc documentation) to make signal handlers as simple and short as possible. For example, you can do write() to pipe, and in another thread (or in the main event loop of your program) you can do select() for this pipe. You can generally wait for and process signals in a specially dedicated thread (through sigwait(), you can take care of the correct mask in advance). Or the simplest option: the signal handler will generally be reduced to setting a flag variable that will be processed in the main program loop. However, variable flags is not that simple either. That's sort of what the next paragraph is about.

2. Use only volatile sig_atomic_t or atomic-types as flags

Let's look at the same item from the C language standard:

ISO/IEC 9899:2011 §7.14.1.1 The signal function

5. If the signal occurs other than as the result of calling the abort or raise function, the behavior is undefined if the signal handler refers to any object with static or thread storage duration that is not a lock-free atomic object other than by assigning a value to an object declared as volatile sig_atomic_t

Modern C++ standards tell the same thing. The logic here is exactly the same as in the previous paragraph. Since the signal handler can be called at absolutely any moment, it's important that the non-local variables that you are dealing with in the handler are updated atomically. Otherwise, if interrupted at the wrong moment, you may get incorrect content in the variables. Secondly, since from the point of view of the function being performed, variables are changed by "something else". It's important that accesses to these variables are not optimized out by the compiler. Otherwise, the compiler may decide that it's impossible to change the variable value between iterations of the cycle and will leave out this check altogether or will put a variable in the processor register for optimization. Therefore, as static/global flags, you can use either atomic types that can be changed from the signal handler (if they are exactly lock-free on your platform), or the sig_atomic_t type with the volatile specifier specially created for this purpose.

And God forbid you block some mutex in the signal handler. The same mutex that is used in the other part of the program or in handlers of other signal. This is the direct way to deadlock. Therefore, you can also forget about conditional variables as flags.

3. Save errno

It's simple. If you call any function in the signal handler that can theoretically change the errno global variable, save the current errno value at the beginning of the signal handler somewhere, and restore it back at the end. Otherwise, you can break some outer code that checks that same errno.

4. Remember that the behavior of signal() can vary widely in different operating systems and even in different versions of the same OS

Let's start with the fact that signal() has a significant advantage: it's included in the C language standard, whereas sigaction() is already a purely POSIX thing. On the other hand, the behavior of signal() can vary widely in different operating systems. Moreover, there are mentions on the Internet that the behavior of signal() may vary even with different versions of the Linux kernel.

First, a little bit of history for you.

On the original UNIX systems, calling a signal handler previously set with signal() reset the handler to SIG_DFL, and the system did not block the delivery of further instances of the signal. Nowadays this is equivalent to calling sigaction() with the SA_RESETHAND | SA_NODEFER flags. In other words, we received the signal, processed it -> the handler was reset to the standard one. And therefore, having finished processing the received signal, we had to remember to call signal() again and set our function again instead of the standard handler. System V also provided these semantics for signal(). This situation was bad because the next signal might be sent and delivered to the process again before the handler had time to reestablish itself. Furthermore, rapid delivery of the same signal could result in recursive invocations of the handler.

BSD improved on this situation. When a signal is received, the signal handler is not reset. But this was not the only change in behavior: further instances of the signal are blocked from being executed while the first handler is executing. In addition, some blocking system calls (such as read() or wait()) are automatically restarted if interrupted by a signal handler. The BSD semantics are equivalent to calling sigaction() with the SA_RESTART flag.

The situation on Linux is as follows:

  • The kernel's signal() system call provides System V semantics.
  • By default, in glibc 2 and later, the signal() wrapper function doesn't invoke the kernel system call. Instead, it calls sigaction() using flags that provide BSD semantics. This default behavior is provided as long as macro is defined: _BSD_SOURCE on glibc 2.19 and earlier or _DEFAULT_SOURCE in glibc 2.19 and later. If such a macro is not defined, then signal() provides System V semantics. By default, the macro is defined :)

So, the main differences between signal() and sigaction() are as follows:

  • In many implementations, the signal() function does not block other signals' delivery during current handler execution. sigaction(), depending on the flags, may block other signals until the current handler returns.
  • By default, the signal() system call (excluding libc wrappers) resets the signal handler back to SIG_DFL for almost all signals on many platforms. Above I described the situations to which this issue can lead.
  • To sum up, the behavior of signal() varies depending on the platform, system, and even the libc build — and standards allow such variations. In short, when using signal(), no one guarantees you anything. sigaction() is much more predictable.

Therefore, to avoid unexpected situations and portability problems, Open Group Base Specification recommends that you don't use signal(). Use sigaction() in the new code instead.

5. Be careful with fork() and execve()

A child process created via fork() inherits the installed signal handlers of its parent. During an execve(), signal handlers are reset to the default, but the settings of blocked signals remain unchanged for the newly started process. So, if, for example, you ignored SIGINT, SIGUSR1, or something else in the parent, and the running process is counting on them, this can lead to interesting consequences.

6. A couple more little things

If multiple standard (non-real time) signals are sent to a process, the order in which the signals are delivered is unspecified.

Standard signals do not queue. If multiple instances of a standard signal are sent to the process while that signal is blocked, then only one instance of the signal is marked as pending (and the signal will be delivered just once when it is unblocked).

7. Read documentation

0950_POSIX_signals/image2.png

Everything I wrote above is there in the documentation. And in general, there are a lot of interesting, useful and unexpected information there, especially in the Portability, Bugs and Known issues sections.

For example, I really like the description of the getlogin()/cuserid() function:

Sometimes it does not work at all, because some program messed up the utmp file. Often, it gives only the first 8 characters of the login name.

and more beautiful:

Nobody knows precisely what cuserid() does; avoid it in portable programs.

That's it. Clean code to you!



Comments (0)

Next comments next comments
close comment form