<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=US-ASCII" http-equiv="Content-Type">
<title>
GitLab
</title>


<style>img {
max-width: 100%; height: auto;
}
</style>
</head>
<body>
<div class="content">

<p style="color: #777777;">
<a href="https://gitlab.com/Courmisch">Remi Denis-Courmont</a>
commented:
</p>
<div style="">
<p dir="auto">I doubt that. Normally you need the flag to be set atomically in multi-thread context. That's the whole point of using *_CLOEXEC flags.</p>
<p dir="auto">Otherwise there is a race if a thread calls <code>fork()</code> between the <code>fopen()</code> and the <code>set_close_exec()</code> flag. <code>fork()</code> copies the flag at the time of forking.</p>
<p dir="auto">For instance:</p>
<ul dir="auto">
<li>Thread A calls <code>gnutls_handshake()</code>... which opens the master key log file wit <code>fopen()</code>.
<ul>
<li>This creates a new file descriptor (without close-on-exec flag).</li>
</ul>
</li>
<li>Thread B calls <code>fork()</code> from application code.
<ul>
<li>The file descriptor is copied into the child process (also without the close-on-exec flag).</li>
</ul>
</li>
<li>Thread A calls <code>set_cloese_exec()</code> (or directly <code>fcntl()</code>).
<ul>
<li>This sets the flag on the parent process FD, but not the child process FD.</li>
</ul>
</li>
<li>Child process calls <code>execv()</code> oblivious to the FD. The master key log FD is leaked to the child process.</li>
</ul>
</div>


</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #777;">

<br>
Reply to this email directly or <a href="https://gitlab.com/gnutls/gnutls/-/issues/985#note_339180992">view it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.com.
If you'd like to receive fewer emails, you can
<a href="https://gitlab.com/-/sent_notifications/b520ad8de8ba1f51afe3295cd78f3c65/unsubscribe">unsubscribe</a>
from this thread or
adjust your notification settings.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Issue","url":"https://gitlab.com/gnutls/gnutls/-/issues/985#note_339180992"}}</script>


</p>
</div>
</body>
</html>