File tree 3 files changed +11
-0
lines changed
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 22
22
errSDESMissingType = errors .New ("rtcp: sdes item missing type" )
23
23
errReasonTooLong = errors .New ("rtcp: reason must be < 255 octets long" )
24
24
errBadVersion = errors .New ("rtcp: invalid packet version" )
25
+ errBadLength = errors .New ("rtcp: invalid packet length" )
25
26
errWrongPadding = errors .New ("rtcp: invalid padding value" )
26
27
errWrongFeedbackType = errors .New ("rtcp: wrong feedback message type" )
27
28
errWrongPayloadType = errors .New ("rtcp: wrong payload type" )
Original file line number Diff line number Diff line change @@ -67,6 +67,11 @@ func (p *FullIntraRequest) Unmarshal(rawPacket []byte) error {
67
67
return errWrongType
68
68
}
69
69
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
+
70
75
p .SenderSSRC = binary .BigEndian .Uint32 (rawPacket [headerLength :])
71
76
p .MediaSSRC = binary .BigEndian .Uint32 (rawPacket [headerLength + ssrcLength :])
72
77
for i := headerLength + firOffset ; i < (headerLength + int (h .Length * 4 )); i += 8 {
Original file line number Diff line number Diff line change @@ -135,6 +135,11 @@ func (p *TransportLayerNack) Unmarshal(rawPacket []byte) error {
135
135
return errWrongType
136
136
}
137
137
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
+
138
143
p .SenderSSRC = binary .BigEndian .Uint32 (rawPacket [headerLength :])
139
144
p .MediaSSRC = binary .BigEndian .Uint32 (rawPacket [headerLength + ssrcLength :])
140
145
for i := headerLength + nackOffset ; i < (headerLength + int (h .Length * 4 )); i += 4 {
You can’t perform that action at this time.
0 commit comments