Warning C4996: This function or variable may be unsafe -- compared to GCC on POSIX
I notice that MS compilers give "deprecated" warnings for cstdlib
functions like getenv
. MS has invented its own standard such as _dupenv_s
.
Question 1
AFAIK the main "unsafe" thing is about reentranc开发者_StackOverflow中文版y *. Since MS's CRT is marked as "multi-threaded" (/MT
), why don't they just replace getenv
with the reentrant, thread-safe version? Is it like anybody would depend on the unsafe behavior?
Question 2
I compiled the same code with GCC g++ -Wall -Wextra -Weff++ -pedantic foo.cpp
and it doesn't yield any warnings. So I guess this is not a problem on POSIX? How is this solved? (OK maybe they just changed the behavior of getenv
, would be nice to have this confirmed).
* It's an over-generalization to say that its' only about reentrancy. Of course we have things like strncpy_s
which changes the signature completely and deals with buffer size. But doesn't change the core of this question
In a sane world, the answer would be "of course not, that would be stupid!" In this world, though, it seems there is no end of gut-wrenchingly poorly thought out undocumented behavior upon which people will stoop to depending upon. Raymond Chen has a great collection of such anecdotes (anecdon'ts?) in his blog. Such as the hideous practice of using a bug in the loader to share thread-local variables between an exe and a DLL. When you have as many customers as Microsoft does, the only safe choice is to never even risk breaking backwards compatibility.
The difference in warnings is because
cl.exe
is going out of its way to highlight a potential security problem, andg++
isn't.getenv
andputs
and friends are all still broken under POSIX, but (at least forgetenv
) there isn't a more secure alternative in the standard library. And, unlike Microsoft, the GNU folks probably see a standard library call with potential security problems as a lesser evil than a more secure but platform-specific library call.
It annoys the heck outta me that Microsoft chose to do this. I know how to call all the functions safely, I don't want or need these extra warnings.
Just set _CRT_SECURE_NO_WARNINGS and be done with it. It's really that silly.
For the specific case of getenv
, it is indeed not reentrant or thread safe. As for why Microsoft doesn't just replace it, you can't take that interface and make it reentrant (you can almost make it "thread safe" with thread local storage, but it would still not be reentrant).
Even if you just took getenv
away altogether, there is still the problem that you have the environ
variable which would require some serious compiler level support to make thread safe, since it is just data.
Really, using environment variables for anything other than "setting it up before the process starts or at process start, and only reading from it from that point on" is going to probably end in tears if you have more than one thread. setenv
and putenv
don't have a rich enough interface to express something like "set this set of environment variables atomically" and likewise getenv
doesn't have a way to express "read this set of environment variables atomically".
_dupenv_s
is somewhat silly in my opinion, because if using that suddenly makes your code safe, it could probably done in a safe way with getenv. _dupenv_s
solves a tiny subset of the problems with using environment variables in a multithreaded scenario.
精彩评论