python-hyper / python-hyper/h2
ProtocolError on receive_data after connection is closed
まだ誰も着手していません。
- 主要言語
- Python
- スター
- 1k
- フォーク
- 187
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
I am randomly getting this error on h2 3.1.1 (about once a week on a busy H2 client):
Traceback (most recent call last):
File "site-packages/h2/connection.py", line 224, in process_input
func, target_state = self._transitions[(self.state, input_)]
KeyError: (<ConnectionState.CLOSED: 3>, <ConnectionInputs.RECV_PING: 14>)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "nameclient.py", line 84, in recv_task
for event in self.conn.receive_data(data):
File "site-packages/h2/connection.py", line 1463, in receive_data
events.extend(self._receive_frame(frame))
File "site-packages/h2/connection.py", line 1486, in _receive_frame
frames, events = self._frame_dispatch_table[frame.__class__](frame)
File "site-packages/h2/connection.py", line 1725, in _receive_ping_frame
ConnectionInputs.RECV_PING
File "site-packages/h2/connection.py", line 229, in process_input
"Invalid input %s in state %s" % (input_, old_state)
h2.exceptions.ProtocolError: Invalid input ConnectionInputs.RECV_PING in state ConnectionState.CLOSED
Unfortunately the code is somewhat complicated but I believe the connection closing logic to be correct. I never call close_connection and I quit receiving once ConnectionTerminated appears.
Possibly H2 is internally closing the connection due to ping timeout or other issue, and then throws me an error when the peer still sends something. Quite likely this actually happens when my laptop is in sleep, and H2 going ping-timeout meanwhile, with some data still in receive buffers. I would expect a ConnectionTerminated event in that case, after any remaining events are relayed, not an exception.
コントリビューションガイド
このリポジトリのコントリビューションガイドは索引されていません
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
報告された行の周辺にある h2/connection.py の receive_data、_receive_frame、_receive_ping_frame、process_input から始めます。接続が CLOSED に到達した後に ping が到着する状況を再現またはモデル化し、接続の終了とバッファリングされたフレームに関する既存のテストを調べます。残りの受信フレームがこの ProtocolError なしで処理され、説明どおり終了がイベントとして報告されれば完了です。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- python
- 領域
- networking
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- おおむね明確
- 初心者へのやさしさ
- 42/100