Project

General

Profile

Actions

Bug #3268

closed

parent process does not receive POLLHUP events

Added by mikdusan almost 3 years ago. Updated almost 3 years ago.

Status:
Closed
Priority:
High
Assignee:
Category:
Userland
Target version:
Start date:
05/09/2021
Due date:
% Done:

100%

Estimated time:

Description

The attached `main.c` code is a reduction which takes as args, a command (absolute path) to fork/exec and poll stdout/stderr. POLLHUP events should be issued for both pipes when the child is finished.

For the Zig project we have this implemented in the zig language but I've provided a similar .c implementation since it was already done during my triage. For both .zig and .c code, linux, macos, freebsd, netbsd, openbsd work as expected and dragonfly manifests this unexpected behaviour of not receiving POLLHUP.

In the provided reduction, the bug manifests as an infinite loop after reading the bytes from child stdout/stderr. The parent keeps getting POLLIN events, and the read keeps returning 0 nbytes read which indicate the pipe has been closed. In the interim I will likely workaround this bug with conditional code for dragonfly to key off nbytes=0.

I have reproduced the bug on dragonfly 5.8, 6.0 and 5.0.0 (the oldest .iso I could find).


Files

main.c (3.2 KB) main.c mikdusan, 05/09/2021 09:08 AM
pollhup01.patch (357 Bytes) pollhup01.patch dillon, 05/10/2021 05:02 PM
pollhup02.patch (1.86 KB) pollhup02.patch dillon, 05/10/2021 05:16 PM
Actions

Also available in: Atom PDF