➜

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
标题: Prohibit implicit C function declarations
类型: enhancement Stage: resolved
Components: Build, Cross-Build Versions: Python 3.7
process
状态: closed Resolution: fixed
Dependencies: 后续:
分配给: 抄送列表: Alex.Willmer, benjamin.peterson, martin.panter, ned.deily, python-dev, ronaldoussoren, vstinner, xdegaye, yan12125
优先级: normal 关键字: patch

Created on 2016-07-31 07:04 by yan12125, last changed 2022-04-11 14:58 by admin. This issue is now closed.

文件
文件名 上传时间 Description 编辑
check-crypt.patch yan12125, 2016-07-31 07:04 review
check-crypt.patch yan12125, 2016-07-31 07:09 version 2, autoreconf necessary review
prohibit-implicit-function-declarations.patch yan12125, 2016-12-25 14:28 review
prohibit-implicit-function-declarations.patch yan12125, 2016-12-25 17:05 Patch version 2 review
prohibit-implicit-function-declarations.patch yan12125, 2017-01-16 14:37 Patch version 3, autoreconf necessary review
Pull Requests
URL Status Linked Edit
PR 552 closed dstufft, 2017-03-31 16:36
Messages (19)
msg271727 - (view) Author: (yan12125) * 日期: 2016-07-31 07:04
On Android the crypt() function is missing, causing ugly linking errors when compiling the _crypt module. This patch handles it elegantly.

A question: should I include changes to configure and pyconfig.h.in in the patch?
msg271728 - (view) Author: (yan12125) * 日期: 2016-07-31 07:09
Version 2: correct the name added to `missing`
msg271729 - (view) Author: (yan12125) * 日期: 2016-07-31 07:12
Some references for crypt():

POSIX standard: http://pubs.opengroup.org/onlinepubs/9699919799/functions/crypt.html
Linux man page: http://man7.org/linux/man-pages/man3/crypt.3.html
FreeBSD man page: https://www.freebsd.org/cgi/man.cgi?crypt(3)
Mac OS X man page: https://developer.apple.com/library/ios/documentation/System/Conceptual/ManPages_iPhoneOS/man3/crypt.3.html

All requires <unistd.h>.
msg271730 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) 日期: 2016-07-31 08:18
> A question: should I include changes to configure and pyconfig.h.in in the patch?

You just need to mention that one should run autoreconf.
msg271732 - (view) Author: (yan12125) * 日期: 2016-07-31 08:28
Thanks, added to the patch description
msg278770 - (view) Author: Xavier de Gaye (xdegaye) * (Python triager) 日期: 2016-10-16 15:44
Android does not have crypt, but the crypt module is cross-built nevertheless after this warning has been issued:
    warning: implicit declaration of function 'crypt' is invalid in C99 [-Wimplicit-function-declaration]
And at runtime, importing the crypt module fails with:
    ImportError: dlopen failed: cannot locate symbol "crypt" referenced by "_crypt.cpython-37m-i686-linux-android.so"

gcc and clang do not enforce the C99 rules and emit just a warning for implicit function declarations instead of the error that would be conforming to C99. This can be changed with the flag '-Werror=implicit-function-declaration' and the compilation of the crypt extension module rightly fails in that case.

I think this issue should be fixed by adding this flag to the Makefile.
Maybe in another issue.
msg278824 - (view) Author: (yan12125) * 日期: 2016-10-17 17:23
Agreed. Adding -Werror=implicit-function-declaration is much simpler. Feel free to close it as rejected.
msg278836 - (view) Author: Martin Panter (martin.panter) * (Python committer) 日期: 2016-10-18 03:07
If there is an obscure platform where we don’t include the right header file for a function, changing the warning into an error would cause the build to fail. If we do make it an error, it should only be so for 3.7.
msg283996 - (view) Author: (yan12125) * 日期: 2016-12-25 14:28
(Re-use the existing issue)

Here's a patch that tries to add -Werror=implicit-function-declaration to $BASECFLAGS.

This is useful for cross-compiling. When a function is missing, the error jumps out during the build time rather than runtime.

Tested configurations:
* Arch Linux x86_64 native build
* macOS Sierra native build
* Android ARM, API 21 cross build

I'd like to hear some ideas from macOS experts as in my memory macOS's build system is fragile than that on Linux.
msg284002 - (view) Author: STINNER Victor (vstinner) * (Python committer) 日期: 2016-12-25 16:43
Would it be possible to not add this option for third party extensions?
msg284004 - (view) Author: (yan12125) * 日期: 2016-12-25 17:05
> Would it be possible to not add this option for third party extensions?

Good suggestion. Just use $CFLAGS_NODIST instead of $BASECFLAGS.
msg285567 - (view) Author: (yan12125) * 日期: 2017-01-16 14:37
Thanks for the comment and sorry for the mistake. Here's another updated patch.

In PEP7:

> Use 4-space indents and no tabs at all.

Does that apply to configuration files, too?
msg285583 - (view) Author: Martin Panter (martin.panter) * (Python committer) 日期: 2017-01-16 19:42
I would say it is more important to fit in with the surrounding style than mindlessly follow PEP 7. IMO the indentation in the configure script is a mess, but if we fix it up, it should probably be done separately to adding this extra flag.
msg286759 - (view) Author: (yan12125) * 日期: 2017-02-02 10:17
Hello, any updates here? I hope this merged soon so that potential issues on obscure platforms can be fixed as soon as possible.
msg287126 - (view) Author: Roundup Robot (python-dev) (Python triager) 日期: 2017-02-06 13:25
New changeset ca2f024ce7cb by Victor Stinner in branch 'default':
Prohibit implicit C function declarations
https://hg.python.org/cpython/rev/ca2f024ce7cb
msg287127 - (view) Author: STINNER Victor (vstinner) * (Python committer) 日期: 2017-02-06 13:30
Martin Panter: "If there is an obscure platform where we don’t include the right header file for a function, changing the warning into an error would cause the build to fail."

In my experience, calling a function which was not declared is very likely to cause a bug, or a crash in the worst case. For example, on 64-bit, if the return type is a pointer, the C compiler uses the int type by default, whereas a pointer is 32-bit, not 64-bit, and so it will immediately crash.

Martin: "If we do make it an error, it should only be so for 3.7."

Ok. I pushed the patch to Python 3.6.


@Chi Hsuan Yen: Thanks for the patch! Is this change enough to fix the crypt build issue? If yes, can we close the issue?

It is likely that the cause causes compilation errors on some platforms where we call non-existent functions or call functions with a missing header. IMHO it's a good thing to get a build error rather than a crash at runtime.

A concrete issue is that the compilation of the curses module will probably fails now on Solaris: issue #13552, whereas before the build only emitted warnings. The curses module is broken for years on Solaris, and it seems like nobody is able to fix it, so it's not a big deal.
msg287128 - (view) Author: (yan12125) * 日期: 2017-02-06 13:45
> If yes, can we close the issue?

Yes and thanks! As a side note, on Android it prevents broken grp.cpython-37m.so, too.
msg287130 - (view) Author: STINNER Victor (vstinner) * (Python committer) 日期: 2017-02-06 13:50
Oh by the way, if someone sees a build error because of a missing function declaration, please report a new issue.
msg287132 - (view) Author: Roundup Robot (python-dev) (Python triager) 日期: 2017-02-06 14:00
New changeset 9a26d20d2baa27407501b13435d733dcc26f3d53 by Victor Stinner in branch 'master':
Prohibit implicit C function declarations
https://github.com/python/cpython/commit/9a26d20d2baa27407501b13435d733dcc26f3d53
历史
日期 用户 动作 参数
2022-04-11 14:58:34admin修改github: 71846
2017-03-31 16:36:21dstufft修改pull_requests: + pull_request946
2017-02-06 14:00:23python-dev修改消息: + msg287132
2017-02-06 13:50:39vstinner修改消息: + msg287130
2017-02-06 13:45:59yan12125修改状态: open -> closed
resolution: fixed
消息: + msg287128

stage: resolved
2017-02-06 13:30:29vstinner修改消息: + msg287127
2017-02-06 13:25:45python-dev修改抄送: + python-dev
消息: + msg287126
2017-02-02 10:17:08yan12125修改消息: + msg286759
2017-01-16 19:42:34martin.panter修改消息: + msg285583
2017-01-16 14:37:55yan12125修改文件: + prohibit-implicit-function-declarations.patch

消息: + msg285567
2016-12-25 17:05:06yan12125修改文件: + prohibit-implicit-function-declarations.patch

消息: + msg284004
2016-12-25 16:43:38vstinner修改消息: + msg284002
2016-12-25 14:28:02yan12125修改文件: + prohibit-implicit-function-declarations.patch

type: compile error -> enhancement
components: + Build
标题: Check for the existence of crypt() -> Prohibit implicit C function declarations
抄送: + ronaldoussoren, ned.deily

消息: + msg283996
2016-10-20 10:20:20xdegaye修改versions: + Python 3.7, - Python 3.6
2016-10-18 03:07:53martin.panter修改消息: + msg278836
2016-10-17 17:23:05yan12125修改消息: + msg278824
2016-10-16 15:44:26xdegaye修改抄送: + vstinner, benjamin.peterson, martin.panter
消息: + msg278770
2016-07-31 08:28:00yan12125修改消息: + msg271732
2016-07-31 08:22:55xdegaye链接issue26865 dependencies
2016-07-31 08:18:29xdegaye修改消息: + msg271730
2016-07-31 07:12:39yan12125修改消息: + msg271729
2016-07-31 07:09:52yan12125修改文件: + check-crypt.patch

消息: + msg271728
2016-07-31 07:04:38yan12125创建