-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tool: improve --stderr handling #10673
Conversation
} | ||
else | ||
global->errors = stdout; | ||
tool_set_stderr_file(nextarg); |
Check failure
Code scanning / CodeQL
Uncontrolled data used in path expression
|
||
/* precheck that filename is accessible to lessen the chance that the | ||
subsequent freopen will fail. */ | ||
fp = fopen(filename, FOPEN_WRITETEXT); |
Check failure
Code scanning / CodeQL
File created without restricting permissions
675799e
to
af1df98
Compare
I'm not sure I see how this simplifies or improves the current situation, but if you think so then I am fine with it. |
It's an improvement to fprintf(stderr... rather than a separate error stream, when all stderr output is supposed to be redirected, since in the latter case we forgot at least once which led to a bug. It's failing some CI so I'm still working on it. |
- freopen stderr with the user-specified file (--stderr file) instead of using a separate 'errors' stream. - Override stderr macro in tool_setup as global variable tool_stderr. Both freopen and overriding the stderr macro are necessary because if the user-specified filename is "-" then stdout is assigned to tool_stderr and no freopen takes place. See the PR for more information. Ref: curl#10491 Closes #xxxx
* tool: improve --stderr handling - freopen stderr with the user-specified file (--stderr file) instead of using a separate 'errors' stream. - In tool_setup.h override stdio.h's stderr macro as global variable tool_stderr. Both freopen and overriding the stderr macro are necessary because if the user-specified filename is "-" then stdout is assigned to tool_stderr and no freopen takes place. See the PR for more information. Ref: curl/curl#10491 Closes curl/curl#10673
- freopen stderr with the user-specified file (--stderr file) instead of using a separate 'errors' stream. - In tool_setup.h override stdio.h's stderr macro as global variable tool_stderr. Both freopen and overriding the stderr macro are necessary because if the user-specified filename is "-" then stdout is assigned to tool_stderr and no freopen takes place. See the PR for more information. Ref: curl#10491 Closes curl#10673
freopen stderr with the user-specified file (--stderr file) instead of using a separate 'errors' stream.
Override stderr macro in tool_setup as global variable tool_stderr.
Both freopen and overriding the stderr macro are necessary because if the user-specified filename is "-" then stdout is assigned to tool_stderr and no freopen takes place.
Ref: #10491
Closes #xxxx
Note --stderr maps to libcurl's CURLOPT_STDERR but they are documented differently:
--stderr :
"Redirect all writes to stderr"
CURLOPT_STDERR :
"when showing the progress meter and displaying CURLOPT_VERBOSE data"
If the curl tool has freopened stderr as a file (--stderr file) then libcurl stderr output will also go to the file. OTOH if stdout was specified (--stderr -) then libcurl writes to stderr go to actual stderr and just the criteria above is written to stdout. IMO the distinction is moot since in libcurl we only write to stderr for developer debug output.