status-go/vendor/github.com/pion/sctp/chunk_error.go

104 lines
2.6 KiB
Go
Raw Normal View History

2024-06-05 20:10:03 +00:00
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
2022-03-10 09:44:48 +00:00
package sctp // nolint:dupl
import (
"errors"
"fmt"
)
/*
2024-05-15 23:15:00 +00:00
Operation Error (ERROR) (9)
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
An endpoint sends this chunk to its peer endpoint to notify it of
certain error conditions. It contains one or more error causes. An
Operation Error is not considered fatal in and of itself, but may be
used with an ERROR chunk to report a fatal condition. It has the
following parameters:
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Type = 9 | Chunk Flags | Length |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
\ \
/ one or more Error Causes /
\ \
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
Chunk Flags: 8 bits
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
Set to 0 on transmit and ignored on receipt.
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
Length: 16 bits (unsigned integer)
2022-03-10 09:44:48 +00:00
2024-05-15 23:15:00 +00:00
Set to the size of the chunk in bytes, including the chunk header
and all the Error Cause fields present.
2022-03-10 09:44:48 +00:00
*/
type chunkError struct {
chunkHeader
errorCauses []errorCause
}
2024-05-15 23:15:00 +00:00
// Error chunk errors
2022-03-10 09:44:48 +00:00
var (
2024-05-15 23:15:00 +00:00
ErrChunkTypeNotCtError = errors.New("ChunkType is not of type ctError")
ErrBuildErrorChunkFailed = errors.New("failed build Error Chunk")
2022-03-10 09:44:48 +00:00
)
func (a *chunkError) unmarshal(raw []byte) error {
if err := a.chunkHeader.unmarshal(raw); err != nil {
return err
}
if a.typ != ctError {
2024-05-15 23:15:00 +00:00
return fmt.Errorf("%w, actually is %s", ErrChunkTypeNotCtError, a.typ.String())
2022-03-10 09:44:48 +00:00
}
offset := chunkHeaderSize
for {
if len(raw)-offset < 4 {
break
}
e, err := buildErrorCause(raw[offset:])
if err != nil {
2024-05-15 23:15:00 +00:00
return fmt.Errorf("%w: %v", ErrBuildErrorChunkFailed, err) //nolint:errorlint
2022-03-10 09:44:48 +00:00
}
offset += int(e.length())
a.errorCauses = append(a.errorCauses, e)
}
return nil
}
func (a *chunkError) marshal() ([]byte, error) {
a.chunkHeader.typ = ctError
a.flags = 0x00
a.raw = []byte{}
for _, ec := range a.errorCauses {
raw, err := ec.marshal()
if err != nil {
return nil, err
}
a.raw = append(a.raw, raw...)
}
return a.chunkHeader.marshal()
}
func (a *chunkError) check() (abort bool, err error) {
return false, nil
}
// String makes chunkError printable
func (a *chunkError) String() string {
res := a.chunkHeader.String()
for _, cause := range a.errorCauses {
res += fmt.Sprintf("\n - %s", cause)
}
return res
}