implement a buffer pool for STREAM frames

This commit is contained in:
Marten Seemann 2019-09-04 16:45:39 +07:00
parent 326ec9e16e
commit 5ea33cd31e
70 changed files with 193 additions and 48 deletions

View file

@ -1 +1 @@
s ���
���

View file

@ -1 +1 @@
Ą ´ŮÉ ÝťRß×›MvB›az źź ;Ą[ ŔÖL�…5„Ëŕp›X?aÓuĽ´ôů)áŹÚžo‚ĺNtŽ�çžK˝oăLÜş„>čÖ>ŚOţëęTmŹ¬Ý¬Î.˘‡|UyϢǎ
d ´ŮÉ ÝťRß×›MvB›az źź ;Ą[ ŔÖL�…5„Ëŕp›X?aÓuĽ´ôů)áŹÚžo‚ĺNtŽ�çžK˝oăLÜş„>čÖ>ŚOţëęTmŹ¬Ý¬Î.˘‡|UyϢǎ

View file

@ -1 +1 @@
�74
W

View file

@ -1 +1 @@
¦z‹˙˙˙˙˙˙˙˙
�fL�l�Q5

View file

@ -1 +1,2 @@
?イlコQ
6
u*.租マ�メ

View file

@ -1 +1 @@
���������
wK

View file

@ -1 +1 @@
5��M
��������

View file

@ -1 +1 @@
p�������
H�

Binary file not shown.

View file

@ -1 +1 @@
M��
���u��������

View file

@ -1 +1 @@
/'
Z•ňG&

View file

@ -1 +1 @@
�R�
•`Ο

View file

@ -1 +1 @@
P�������


View file

@ -1 +1 @@
o/
���������

View file

@ -1 +1 @@
��g��������
�5z

View file

@ -1 +1 @@
îE
k€��������

View file

@ -1 +1 @@
�L�
В•Ј.

View file

@ -1 +1 @@

���M

View file

@ -1 +1 @@
C .T^'?ãWkoí'ÿ‰tºÀÊýšÐV’±6ç8–MýÇž�SCsfýf×Oì‰I·#n
w .T^'?ăWkoí'˙‰tşŔĘýšĐV’±6ç8–MýÇžŤSCsfýf×Oě‰I·#n

View file

@ -1 +1 @@
� ��ҕ�H���G(����+^��
 @d=€çËż‡ŇŮ) ¤yĄ[{säď˛ACN6ÔO}y8Ťˇž\ţ�!cu�&ß9ř3i\˘*¦Q•H�ĽÜĎf­=s¨á«ź�‡}&;»'őĽI{ÖTGMˆ*´Ýh› M ®h �ÖĄčtÄä®

View file

@ -1 +1 @@
ËF­F­ÓÔ˙ćŐ™VQ__S‡ä”f™Ł®ÁJ|¶®»
w˝[ŢmĽ!źvť)n§vDݸ#¨/ş

View file

@ -1 +1,2 @@
� g���������Ku!�g
} gʆ+«ÔKu!_²‚ˆ]2`ñÞ—‚ƒÔ š6ùl ”FãíM¦F©®‹O§´ü: ºúuí2z†¸°ÃšñÏÒ³µêyS:¿D�,G�2`u3�YÈÌð�£ž’�J¼¼±i9{·4çï
nñ…Më_ä$þ÷¬!‘õ—^)*¢¸ª|aͳ3sëç,' ˜À!—Úæ·2ÃQßf�‡N,Ÿàœ¨`çâH0?ô#áHíS�h_vò§˜¼dÞ]²†K*ÓÂlæ8#BvZÖ–å-÷`öÃF^) Ü¤jàÕp;ÂqõõJd1Q?ØB›Jẟ*ƒ†®r³fè,*ÆM¿F

View file

@ -1 +1 @@
с ��В_џџџџџџџџЮІшПF`ёо��
¦ ^Эяяяяяяяъ$в0S

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -57,6 +57,7 @@ func Fuzz(data []byte) int {
// We accept empty STREAM frames, but we don't write them.
if sf, ok := f.(*wire.StreamFrame); ok {
if sf.DataLen() == 0 {
sf.PutBack()
continue
}
}
@ -68,6 +69,9 @@ func Fuzz(data []byte) int {
if f.Length(version) != protocol.ByteCount(frameLen) {
panic(fmt.Sprintf("Inconsistent frame length for %#v: expected %d, got %d", f, frameLen, f.Length(version)))
}
if sf, ok := f.(*wire.StreamFrame); ok {
sf.PutBack()
}
}
if b.Len() > parsedLen {
panic(fmt.Sprintf("Serialized length (%d) is longer than parsed length (%d)", b.Len(), parsedLen))

View file

@ -88,6 +88,12 @@ func getFrames() []wire.Frame {
Data: getRandomData(50),
FinBit: true,
},
&wire.StreamFrame{ // STREAM frame at non-zero offset, with data and FIN bit. Long enough to use the buffer.
StreamID: protocol.StreamID(getRandomNumber()),
Offset: protocol.ByteCount(getRandomNumber()),
Data: getRandomData(2 * protocol.MinStreamFrameBufferSize),
FinBit: true,
},
&wire.StreamFrame{ // STREAM frame at maximum offset, with FIN bit
StreamID: protocol.StreamID(getRandomNumber()),
Offset: protocol.MaxByteCount - 5,