DMARC-Filter: OpenDMARC Filter v1.4.2 delorie.com 55E3do531980183 Authentication-Results: delorie.com; dmarc=pass (p=none dis=none) header.from=cygwin.com Authentication-Results: delorie.com; spf=pass smtp.mailfrom=cygwin.com DKIM-Filter: OpenDKIM Filter v2.11.0 delorie.com 55E3do531980183 Authentication-Results: delorie.com; dkim=pass (1024-bit key, unprotected) header.d=cygwin.com header.i=@cygwin.com header.a=rsa-sha256 header.s=default header.b=FB28hKVQ X-Recipient: archive-cygwin AT delorie DOT com DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 86E0A380D5A7 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cygwin.com; s=default; t=1749872388; bh=tYHxhTPNisObBiAZr+aGZ5jmB/BQum052hi/8kgqZO8=; h=Date:To:Cc:Subject:References:In-Reply-To:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=FB28hKVQShGu3eMF0W/92FLEwIZgUMdpedRpVWmGorPP17USO86Btdv0WQQNF5ho8 gtZ5/WNqsIbZjf1EzmiVI7w4LT/Ot6RSxF5Tphvtl8nk9Pu11l81QFXRyXRepjMHVH f/Q4JBLTRCEcPqFFU3XN5r1NPeHoCoNa5Ije1Qbw= X-Original-To: cygwin AT cygwin DOT com Delivered-To: cygwin AT cygwin DOT com DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0CA2A380ED06 ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 0CA2A380ED06 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1749872359; cv=none; b=DGt2oN698Q+k1rk3AXbJtjTLavPZq8fJCxGKX9Zbjttju2e+JXdP/BLPxJzJEYvxUShOU9Gp6hk++hxUITg9tbB1TspPT1IBqf4H5I5sxs+Yrlt/lpdh2zVFP7jcfkJMQzEOlSDwJf5IQkCJQDatyPFBfwAgzh5z5AF34iylG14= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1749872359; c=relaxed/simple; bh=21MOd+he7Ki6kgQtuyONZA52Zu1H96DAixi5D19zZP4=; h=DKIM-Signature:Date:From:To:Subject:Message-ID:MIME-Version; b=OokxvE9f0QDKTuuDxXv5ONRmsiCGLDUEk5q3hAKUp/WzVmQAHlTFA68yvQqiVzxuwYBjGVWwtp9VXRGlSVnCrAJdhuwZuFitDqsk9OgfiYPH68wT2LbVsDXVaKNDHZIFGK9ttS8NPab/D83pIgEQeBnBIBk37/SbdbZcAGuur5s= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0CA2A380ED06 Date: Fri, 13 Jun 2025 23:39:15 -0400 To: Jeremy Drake Cc: cygwin AT cygwin DOT com Subject: Re: posix_spawn difference from Linux Message-ID: References: <35d5a3b2-e060-cb17-7e2a-75f6b6e8d0a5 AT jdrake DOT com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: X-BeenThere: cygwin AT cygwin DOT com X-Mailman-Version: 2.1.30 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Glenn Strauss via Cygwin Reply-To: Glenn Strauss Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: cygwin-bounces~archive-cygwin=delorie DOT com AT cygwin DOT com Sender: "Cygwin" On Fri, Jun 13, 2025 at 02:25:17PM -0700, Jeremy Drake via Cygwin wrote: > On Fri, 13 Jun 2025, Jeremy Drake wrote: > > > I am working on some posix_spawn tests for the new stc repository [1], and > > making sure they behave the same between Cygwin and Linux. I found one > > case (so far) which does not: passing NULL for argument "envp" to > > posix_spawn. > > > > In Cygwin, this results in the child inheriting the environment from the > > caller (same as passing "environ"), but on Linux this results in the child > > getting an empty environment (same as passing a char *envp[] = {NULL}). > > > > The Open Group doc on posix_spawn[2] doesn't seem to say anything about > > the potential for envp being NULL, but does mention > > > > > For the Ada language binding for Start_Process to be implemented with > > > posix_spawn(), that binding would need to explicitly pass an empty > > > signal mask and the parent's environment to posix_spawn() whenever the > > > caller of Start_Process allowed these arguments to default, since > > > posix_spawn() does not provide such defaults. > > > > That at least implies that passing NULL does not default to using the > > parent's environment. > > > > Thoughts? Is this a bug in Cygwin, or "undefined behavior" that it's > > perfectly within its rights to do whatever it feels like in response > > (empty environment or inherited environment, or crash every second > > Tuesday)? > > Oops, I forgot my footnote links: > > [1]: https://cygwin.com/cgit/cygwin-apps/stc/ > [2]: https://pubs.opengroup.org/onlinepubs/007904975/functions/posix_spawn.html The man pages from different OS contain something like (from Linux): The argument envp is an array of character pointers to null-terminated strings. These strings constitute the environment for the new process image. The environment array is terminated by a null pointer. I have never interpreted NULL as a valid value for envp. I think the behavior is unspecified, and could segfault. If caller intends an empty environment, then caller should pass: char *e[] = { NULL }; Therefore, in lighttpd's portability wrapper for fork-execve, passing NULL for envp (to my wrapper) is used to inherit default env from current process (char **environ), whether lighttpd uses posix_spawn() or execve(). This is the same behavior you described for Cygwin, though lighttpd passes `environ` to posix_spawn(), not NULL. Cheers, Glenn -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple