GNU bug report logs -
#49524
28.0.50; make-serial-process is not portable
Previous Next
Reported by: Ken Brown <kbrown <at> cornell.edu>
Date: Sun, 11 Jul 2021 15:31:01 UTC
Severity: normal
Found in version 28.0.50
Done: Ken Brown <kbrown <at> cornell.edu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#49524: 28.0.50; make-serial-process is not portable
which was filed against the emacs package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 49524 <at> debbugs.gnu.org.
--
49524: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=49524
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
On 7/13/2021 7:19 AM, Eli Zaretskii wrote:
>> From: Ken Brown <kbrown <at> cornell.edu>
>> Cc: 49524 <at> debbugs.gnu.org
>> Date: Mon, 12 Jul 2021 17:35:40 -0400
>>
>> So I should probably remove the reference to non-glibc platforms in my commit
>> message.
>
> Yes, something to the effect of compliance with advertised APIs would
> probably be better.
Done. Closing.
[Message part 3 (message/rfc822, inline)]
Fmake_serial_process calls Fserial_process_configure, which calls
serial_configure, which calls cfsetspeed with the speed argument equal to the
numerical baud rate (e.g., 9600). But the documentation of cfsetspeed says that
the speed argument must be one of the Bnnn constants defined in termios.h (e.g.,
B9600). See, for example,
https://man7.org/linux/man-pages/man3/termios.3.html
This incorrect call of cfsetspeed happens to succeed on GNU/Linux because
glibc's cfsetspeed allows the argument to be the numerical baud rate, which it
converts to the appropriate Bnnn constant. But I don't think emacs should be
relying on this undocumented behavior. In particular, this doesn't work on
Cygwin. And it wouldn't even work on GNU/Linux if emacs used the cfsetspeed
replacement defined in sysdep.c instead of glibc's cfsetspeed.
I think the way to fix this is to imitate the glibc code that converts the baud
rate to a Bnnn constant, but maybe someone has a better idea.
By the way, I came across this issue while investigating the failure of
process-tests/fd-setsize-no-crash/make-serial-process on Cygwin.
This bug report was last modified 3 years and 315 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.