GNU bug report logs -
#39164
27.0.60; Intermittent crash on MacOS 10.14 in setup_process_coding_systems
Previous Next
Reported by: Justin Guenther <jguenther <at> gmail.com>
Date: Fri, 17 Jan 2020 19:02:01 UTC
Severity: normal
Merged with 40023,
40555
Found in versions 27.0.60, 26.3, 27.0.90
Fixed in version 27.1
Done: Robert Pluim <rpluim <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
Message #32 received at 39164 <at> debbugs.gnu.org (full text, mbox):
On Tue, 28 Jan 2020 16:59:35 +0900,
Robert Pluim wrote:
>
> >>>>> On Mon, 27 Jan 2020 20:19:07 +0200, Eli Zaretskii <eliz <at> gnu.org> said:
>
> >> Date: Mon, 27 Jan 2020 22:26:10 +0900
> >> From: mituharu <at> math.s.chiba-u.ac.jp
> >> Cc: "Eli Zaretskii" <eliz <at> gnu.org>,
> >> jguenther <at> gmail.com,
> >> "Tomasz Kowal" <tomekowal <at> gmail.com>,
> >> 39164 <at> debbugs.gnu.org
> >>
> >> This is a variant of Bug#24325: Crash - fd larger than FD_SETSIZE.
> >> Some functions in the Core Foundation framework on macOS
> >> call setrlimit for RLIMIT_NOFILE in order to increase the limit of
> >> the maximum number of open files for the process:
> >>
> >> https://opensource.apple.com/source/CF/CF-1153.18/CFSocket.c.auto.html
> >>
> >> So the fix for Bug#24325 doesn't work in this case.
>
> Eli> Thanks.
>
> Eli> So I guess one possible solution would be to see that fd is beyond
> Eli> FD_SETSIZE, and if so, call getrlimit to see if the limit was bumped
> Eli> up, and if so, reallocate the arrays used by process.c? Would that
> Eli> make sense?
>
> This will break {p}select, no? Thatʼs defined to only work up to
> FD_SETSIZE.
Yes. I'm currently thinking about adding the following workaround to
the next release of the Mac port. It is not a perfect solution, but
the Mac port is still based on Emacs 26, and I don't want to make a
drastic change there.
YAMAMOTO Mitsuharu
mituharu <at> math.s.chiba-u.ac.jp
diff --git a/src/macappkit.m b/src/macappkit.m
index d2647aff97..08a7e6bc9b 100644
--- a/src/macappkit.m
+++ b/src/macappkit.m
@@ -1337,6 +1337,21 @@ - (void)applicationDidFinishLaunching:(NSNotification *)notification
setenv ("CAVIEW_USE_GL", "1", 0);
#endif
+ /* Some functions/methods in CoreFoundation/Foundation increase the
+ maximum number of open files for the process in their first call.
+ We make dummy calls to them and then reduce the resource limit
+ here, since pselect cannot handle file descriptors that are
+ greater than or equal to FD_SETSIZE. */
+ CFSocketGetTypeID ();
+ CFFileDescriptorGetTypeID ();
+ MRC_RELEASE ([[NSFileHandle alloc] init]);
+ struct rlimit rlim;
+ if (getrlimit (RLIMIT_NOFILE, &rlim) == 0 && rlim.rlim_cur > FD_SETSIZE)
+ {
+ rlim.rlim_cur = FD_SETSIZE;
+ setrlimit (RLIMIT_NOFILE, &rlim);
+ }
+
/* Exit from the main event loop. */
[NSApp stop:nil];
[NSApp postDummyEvent];
This bug report was last modified 5 years and 35 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.