Issue 26586: Simple enhancement to BaseHTTPRequestHandler (original) (raw)

Created on 2016-03-18 04:06 by xiang.zhang, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
simple_enhancement.patch xiang.zhang,2016-03-18 04:06 simple enhancement for BaseHTTPRequestHandler review
simple_enhancement_v2.patch xiang.zhang,2016-03-18 11:07 review
Messages (7)
msg261946 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-03-18 04:06
This patch propose several simple enhancement to BaseHTTPRequestHandler. It removes some redundant code and add handler for too many headers.
msg261957 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-03-18 10:12
Thanks for the patch, it looks good in general. I left some comments and suggestions.
msg261968 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-03-18 11:07
Thanks for your review. I have made some changes according to it. Status code 431 is returned when the header line is too long or there are too many headers. And I think the short message is OK and we can provide the exception message in the content message. As for the style, I don't know why I made that change. Quite sorry for make the noise.
msg262063 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-03-20 07:52
Ping.
msg262802 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-04-02 22:50
I propose to commit the “Too many headers” handler as a bug fix, and the other changes to only 3.6. Currently when more than 100 header fields are sent, the connection is killed and the server logs an unhandled exception.
msg262809 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-04-03 02:02
New changeset f5247195238f by Martin Panter in branch '3.5': Issue #26586: Handle excessive header fields in http.server, by Xiang Zhang https://hg.python.org/cpython/rev/f5247195238f New changeset e8edddb4f74b by Martin Panter in branch 'default': Issue #26586: Merge excessive HTTP header handling from 3.5 https://hg.python.org/cpython/rev/e8edddb4f74b New changeset 1b696c744559 by Martin Panter in branch 'default': Issue #26586: Simple enhancements to BaseHTTPRequestHandler by Xiang Zhang https://hg.python.org/cpython/rev/1b696c744559
msg262811 - (view) Author: Martin Panter (martin.panter) * (Python committer) Date: 2016-04-03 03:27
I didn’t touch 2.7 because that doesn’t have the same header parsing code as Python 3.
History
Date User Action Args
2022-04-11 14:58:28 admin set github: 70773
2016-04-03 03:27:54 martin.panter set status: open -> closedversions: - Python 2.7messages: + resolution: fixedstage: commit review -> resolved
2016-04-03 02:02:23 python-dev set nosy: + python-devmessages: +
2016-04-02 22:50:19 martin.panter set stage: patch review -> commit reviewmessages: + versions: + Python 2.7, Python 3.5
2016-03-20 07:52:09 xiang.zhang set messages: +
2016-03-18 11:07:17 xiang.zhang set files: + simple_enhancement_v2.patchmessages: +
2016-03-18 10:12:06 martin.panter set nosy: + martin.pantermessages: + stage: patch review
2016-03-18 04:06:16 xiang.zhang create