From: Lennart Poettering <mznyfn@0pointer.de>
To: alsa-devel@alsa-project.org
Subject: Re: [PATCH 1/3] Open device nodes with close-on-exec flag
Date: Wed, 4 Nov 2009 20:03:11 +0100 [thread overview]
Message-ID: <20091104190311.GC17556@tango.0pointer.de> (raw)
In-Reply-To: <1257359933-3791-1-git-send-email-remi@remlab.net>
On Wed, 04.11.09 20:38, Rémi Denis-Courmont (remi@remlab.net) wrote:
> static inline int snd_open_device(const char *filename, int fmode)
> {
> - int fd = open(filename, fmode);
> + int fd;
> +
> +#ifdef O_CLOEXEC
> + fd = open(filename, fmode|O_CLOEXEC);
> if (fd >= 0)
> return fd;
> + if (errno == EINVAL)
> +#endif
> + {
> + fd = open(filename, fmode);
> + if (fd >= 0) {
> + fcntl(fd, F_SETFD, FD_CLOEXEC);
> + return fd;
> + }
That's actually not how things works. O_CLOEXEC is silently ignored by
old kernels. (The calls with SOCK_CLOEXEC fail with EINVAL while the
calls with O_CLOEXEC silently succeed) You need to set
FD_CLOEXEC unconditionally to cover all cases:
fd = open(fn, fmode
#ifdef O_CLOEXEC
|O_CLOEXEC
#endif
);
fcntl(fd, F_SETFD, FD_CLOEXEC);
Lennart
--
Lennart Poettering Red Hat, Inc.
lennart [at] poettering [dot] net
http://0pointer.net/lennart/ GnuPG 0x1A015CC4
next prev parent reply other threads:[~2009-11-04 19:03 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-04 18:38 [RESEND] [PATCH 0/3] Close alsa-lib file descriptors on exec Rémi Denis-Courmont
2009-11-04 18:38 ` [PATCH 1/3] Open device nodes with close-on-exec flag Rémi Denis-Courmont
2009-11-04 19:03 ` Lennart Poettering [this message]
2009-11-04 18:38 ` [PATCH 2/3] Remove old commented-out FD_CLOEXEC code Rémi Denis-Courmont
2009-11-04 18:38 ` [PATCH 3/3] Define _GNU_SOURCE so that <fcntl.h> gives O_CLOEXEC Rémi Denis-Courmont
-- strict thread matches above, loose matches on Subject: below --
2009-11-05 19:16 [PATCHv2 alsa-lib 0/3] Close-on-exec flag for device nodes Rémi Denis-Courmont
2009-11-05 19:17 ` [PATCH 1/3] Open device nodes with close-on-exec flag Rémi Denis-Courmont
2009-11-06 10:06 ` Takashi Iwai
2009-11-07 19:28 ` Rémi Denis-Courmont
2009-11-07 19:29 ` Rémi Denis-Courmont
2009-11-08 8:29 ` Takashi Iwai
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091104190311.GC17556@tango.0pointer.de \
--to=mznyfn@0pointer.de \
--cc=alsa-devel@alsa-project.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.