Skip to content

Commit 11575ef

Browse files
tanghaostv0g
tanghao
authored andcommittedAug 9, 2023
Check packet length more strictly
1 parent 53779ad commit 11575ef

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed
 

‎errors.go

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ var (
2222
errSDESMissingType = errors.New("rtcp: sdes item missing type")
2323
errReasonTooLong = errors.New("rtcp: reason must be < 255 octets long")
2424
errBadVersion = errors.New("rtcp: invalid packet version")
25+
errBadLength = errors.New("rtcp: invalid packet length")
2526
errWrongPadding = errors.New("rtcp: invalid padding value")
2627
errWrongFeedbackType = errors.New("rtcp: wrong feedback message type")
2728
errWrongPayloadType = errors.New("rtcp: wrong payload type")

‎full_intra_request.go

+5
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,11 @@ func (p *FullIntraRequest) Unmarshal(rawPacket []byte) error {
6767
return errWrongType
6868
}
6969

70+
// The FCI field MUST contain one or more FIR entries
71+
if 4*h.Length-firOffset <= 0 || (4*h.Length)%8 != 0 {
72+
return errBadLength
73+
}
74+
7075
p.SenderSSRC = binary.BigEndian.Uint32(rawPacket[headerLength:])
7176
p.MediaSSRC = binary.BigEndian.Uint32(rawPacket[headerLength+ssrcLength:])
7277
for i := headerLength + firOffset; i < (headerLength + int(h.Length*4)); i += 8 {

‎transport_layer_nack.go

+5
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ func (p *TransportLayerNack) Unmarshal(rawPacket []byte) error {
135135
return errWrongType
136136
}
137137

138+
// The FCI field MUST contain at least one and MAY contain more than one Generic NACK
139+
if 4*h.Length <= nackOffset || (4*h.Length-nackOffset)%4 != 0 {
140+
return errBadLength
141+
}
142+
138143
p.SenderSSRC = binary.BigEndian.Uint32(rawPacket[headerLength:])
139144
p.MediaSSRC = binary.BigEndian.Uint32(rawPacket[headerLength+ssrcLength:])
140145
for i := headerLength + nackOffset; i < (headerLength + int(h.Length*4)); i += 4 {

0 commit comments

Comments
 (0)
Please sign in to comment.