1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
|
// Copyright 2017 Google, Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree.
package layers
import (
"bytes"
"fmt"
"io"
"strconv"
"strings"
"github.com/gopacket/gopacket"
)
// SIPVersion defines the different versions of the SIP Protocol
type SIPVersion uint8
// Represents all the versions of SIP protocol
const (
SIPVersion1 SIPVersion = 1
SIPVersion2 SIPVersion = 2
)
func (sv SIPVersion) String() string {
switch sv {
default:
// Defaulting to SIP/2.0
return "SIP/2.0"
case SIPVersion1:
return "SIP/1.0"
case SIPVersion2:
return "SIP/2.0"
}
}
// GetSIPVersion is used to get SIP version constant
func GetSIPVersion(version string) (SIPVersion, error) {
switch strings.ToUpper(version) {
case "SIP/1.0":
return SIPVersion1, nil
case "SIP/2.0":
return SIPVersion2, nil
default:
return 0, fmt.Errorf("Unknown SIP version: '%s'", version)
}
}
// SIPMethod defines the different methods of the SIP Protocol
// defined in the different RFC's
type SIPMethod uint16
// Here are all the SIP methods
const (
SIPMethodInvite SIPMethod = 1 // INVITE [RFC3261]
SIPMethodAck SIPMethod = 2 // ACK [RFC3261]
SIPMethodBye SIPMethod = 3 // BYE [RFC3261]
SIPMethodCancel SIPMethod = 4 // CANCEL [RFC3261]
SIPMethodOptions SIPMethod = 5 // OPTIONS [RFC3261]
SIPMethodRegister SIPMethod = 6 // REGISTER [RFC3261]
SIPMethodPrack SIPMethod = 7 // PRACK [RFC3262]
SIPMethodSubscribe SIPMethod = 8 // SUBSCRIBE [RFC6665]
SIPMethodNotify SIPMethod = 9 // NOTIFY [RFC6665]
SIPMethodPublish SIPMethod = 10 // PUBLISH [RFC3903]
SIPMethodInfo SIPMethod = 11 // INFO [RFC6086]
SIPMethodRefer SIPMethod = 12 // REFER [RFC3515]
SIPMethodMessage SIPMethod = 13 // MESSAGE [RFC3428]
SIPMethodUpdate SIPMethod = 14 // UPDATE [RFC3311]
SIPMethodPing SIPMethod = 15 // PING [https://tools.ietf.org/html/draft-fwmiller-ping-03]
)
func (sm SIPMethod) String() string {
switch sm {
default:
return "Unknown method"
case SIPMethodInvite:
return "INVITE"
case SIPMethodAck:
return "ACK"
case SIPMethodBye:
return "BYE"
case SIPMethodCancel:
return "CANCEL"
case SIPMethodOptions:
return "OPTIONS"
case SIPMethodRegister:
return "REGISTER"
case SIPMethodPrack:
return "PRACK"
case SIPMethodSubscribe:
return "SUBSCRIBE"
case SIPMethodNotify:
return "NOTIFY"
case SIPMethodPublish:
return "PUBLISH"
case SIPMethodInfo:
return "INFO"
case SIPMethodRefer:
return "REFER"
case SIPMethodMessage:
return "MESSAGE"
case SIPMethodUpdate:
return "UPDATE"
case SIPMethodPing:
return "PING"
}
}
// GetSIPMethod returns the constant of a SIP method
// from its string
func GetSIPMethod(method string) (SIPMethod, error) {
switch strings.ToUpper(method) {
case "INVITE":
return SIPMethodInvite, nil
case "ACK":
return SIPMethodAck, nil
case "BYE":
return SIPMethodBye, nil
case "CANCEL":
return SIPMethodCancel, nil
case "OPTIONS":
return SIPMethodOptions, nil
case "REGISTER":
return SIPMethodRegister, nil
case "PRACK":
return SIPMethodPrack, nil
case "SUBSCRIBE":
return SIPMethodSubscribe, nil
case "NOTIFY":
return SIPMethodNotify, nil
case "PUBLISH":
return SIPMethodPublish, nil
case "INFO":
return SIPMethodInfo, nil
case "REFER":
return SIPMethodRefer, nil
case "MESSAGE":
return SIPMethodMessage, nil
case "UPDATE":
return SIPMethodUpdate, nil
case "PING":
return SIPMethodPing, nil
default:
return 0, fmt.Errorf("Unknown SIP method: '%s'", method)
}
}
// Here is a correspondance between long header names and short
// as defined in rfc3261 in section 20
var compactSipHeadersCorrespondance = map[string]string{
"accept-contact": "a",
"allow-events": "u",
"call-id": "i",
"contact": "m",
"content-encoding": "e",
"content-length": "l",
"content-type": "c",
"event": "o",
"from": "f",
"identity": "y",
"refer-to": "r",
"referred-by": "b",
"reject-contact": "j",
"request-disposition": "d",
"session-expires": "x",
"subject": "s",
"supported": "k",
"to": "t",
"via": "v",
}
// SIP object will contains information about decoded SIP packet.
// -> The SIP Version
// -> The SIP Headers (in a map[string][]string because of multiple headers with the same name
// -> The SIP Method
// -> The SIP Response code (if it's a response)
// -> The SIP Status line (if it's a response)
// You can easily know the type of the packet with the IsResponse boolean
type SIP struct {
BaseLayer
// Base information
Version SIPVersion
Method SIPMethod
Headers map[string][]string
// Request
RequestURI string
// Response
IsResponse bool
ResponseCode int
ResponseStatus string
// Private fields
cseq uint32
contentLength int
lastHeaderParsed string
}
// decodeSIP decodes the byte slice into a SIP type. It also
// setups the application Layer in PacketBuilder.
func decodeSIP(data []byte, p gopacket.PacketBuilder) error {
s := NewSIP()
err := s.DecodeFromBytes(data, p)
if err != nil {
return err
}
p.AddLayer(s)
p.SetApplicationLayer(s)
return nil
}
// NewSIP instantiates a new empty SIP object
func NewSIP() *SIP {
s := new(SIP)
s.Headers = make(map[string][]string)
s.contentLength = -1
return s
}
// LayerType returns gopacket.LayerTypeSIP.
func (s *SIP) LayerType() gopacket.LayerType {
return LayerTypeSIP
}
// Payload returns the base layer payload
func (s *SIP) Payload() []byte {
return s.BaseLayer.Payload
}
// CanDecode returns the set of layer types that this DecodingLayer can decode
func (s *SIP) CanDecode() gopacket.LayerClass {
return LayerTypeSIP
}
// NextLayerType returns the layer type contained by this DecodingLayer
func (s *SIP) NextLayerType() gopacket.LayerType {
return gopacket.LayerTypePayload
}
// DecodeFromBytes decodes the slice into the SIP struct.
func (s *SIP) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error {
// Init some vars for parsing follow-up
var countLines int
var line []byte
var err error
var offset int
// Iterate on all lines of the SIP Headers
// and stop when we reach the SDP (aka when the new line
// is at index 0 of the remaining packet)
buffer := bytes.NewBuffer(data)
for {
// Read next line
line, err = buffer.ReadBytes(byte('\n'))
if err != nil {
if err == io.EOF {
if len(bytes.Trim(line, "\r\n")) > 0 {
df.SetTruncated()
}
break
} else {
return err
}
}
offset += len(line)
// Trim the new line delimiters
line = bytes.Trim(line, "\r\n")
// Empty line, we hit Body
if len(line) == 0 {
break
}
// First line is the SIP request/response line
// Other lines are headers
if countLines == 0 {
err = s.ParseFirstLine(line)
if err != nil {
return err
}
} else {
err = s.ParseHeader(line)
if err != nil {
return err
}
}
countLines++
}
s.setBaseLayer(data, offset, df)
return nil
}
// setBaseLayer is used to set the base layer of the SIP packet.
//
// According to "RFC3261 - 20.14 - Content-Length" the Content-Length header is mandatory
// for SIP packages transported over TCP. When transporting over UDP, the message
// body length CAN be determined by the length of the UDP datagram.
//
// So by using the Content-Length header, if present we can mark the packet as truncated if we do not
// have enough data. We are also able to limit the payload to the number bytes actually specified.
// If the header is not present, we can assume that the data was transported over UDP we can then
// use the length of the data as payload length.
func (s *SIP) setBaseLayer(data []byte, offset int, df gopacket.DecodeFeedback) {
// The content-length header was not present in the packet, we use the rest of the packet as payload
if s.contentLength == -1 {
s.BaseLayer = BaseLayer{Contents: data[:offset], Payload: data[offset:]}
} else if s.contentLength == 0 {
// We have a zero Content-Length, no payload
s.BaseLayer = BaseLayer{Contents: data[:offset], Payload: []byte{}} // no payload
} else if len(data) < offset+s.contentLength {
// Not enough data to fulfill the Content-Length. We set the packet as truncated
// and return what we have. The receiver of the packet will be able to determine this
// by comparing the SIP.ContentLength with the length of the SIP.Payload.
df.SetTruncated()
s.BaseLayer = BaseLayer{Contents: data[:offset], Payload: data[offset:]}
} else {
// we have at least enough data, to fulfill the Content-Length. But we only add the number
// of bytes specified in the Content-Length header to the payload.
s.BaseLayer = BaseLayer{Contents: data[:offset], Payload: data[offset : offset+s.contentLength]}
}
}
// ParseFirstLine will compute the first line of a SIP packet.
// The first line will tell us if it's a request or a response.
//
// Examples of first line of SIP Prococol :
//
// Request : INVITE bob@example.com SIP/2.0
// Response : SIP/2.0 200 OK
// Response : SIP/2.0 501 Not Implemented
func (s *SIP) ParseFirstLine(firstLine []byte) error {
var err error
// Splits line by space
splits := strings.SplitN(string(firstLine), " ", 3)
// We must have at least 3 parts
if len(splits) < 3 {
return fmt.Errorf("invalid first SIP line: '%s'", string(firstLine))
}
// Determine the SIP packet type
if strings.HasPrefix(splits[0], "SIP") {
// --> Response
s.IsResponse = true
// Validate SIP Version
s.Version, err = GetSIPVersion(splits[0])
if err != nil {
return err
}
// Compute code
s.ResponseCode, err = strconv.Atoi(splits[1])
if err != nil {
return err
}
// Compute status line
s.ResponseStatus = splits[2]
} else {
// --> Request
// Validate method
s.Method, err = GetSIPMethod(splits[0])
if err != nil {
return err
}
s.RequestURI = splits[1]
// Validate SIP Version
s.Version, err = GetSIPVersion(splits[2])
if err != nil {
return err
}
}
return nil
}
// ParseHeader will parse a SIP Header
// SIP Headers are quite simple, there are colon separated name and value
// Headers can be spread over multiple lines
//
// Examples of header :
//
// CSeq: 1 REGISTER
// Via: SIP/2.0/UDP there.com:5060
// Authorization:Digest username="UserB",
// realm="MCI WorldCom SIP",
// nonce="1cec4341ae6cbe5a359ea9c8e88df84f", opaque="",
// uri="sip:ss2.wcom.com", response="71ba27c64bd01de719686aa4590d5824"
func (s *SIP) ParseHeader(header []byte) (err error) {
// Ignore empty headers
if len(header) == 0 {
return
}
// Check if this is the following of last header
// RFC 3261 - 7.3.1 - Header Field Format specify that following lines of
// multiline headers must begin by SP or TAB
if header[0] == '\t' || header[0] == ' ' {
header = bytes.TrimSpace(header)
s.Headers[s.lastHeaderParsed][len(s.Headers[s.lastHeaderParsed])-1] += fmt.Sprintf(" %s", string(header))
return
}
// Find the ':' to separate header name and value
index := bytes.Index(header, []byte(":"))
if index >= 0 {
headerName := strings.ToLower(string(bytes.Trim(header[:index], " ")))
headerValue := string(bytes.Trim(header[index+1:], " "))
// Add header to object
s.Headers[headerName] = append(s.Headers[headerName], headerValue)
s.lastHeaderParsed = headerName
// Compute specific headers
err = s.ParseSpecificHeaders(headerName, headerValue)
if err != nil {
return err
}
}
return nil
}
// ParseSpecificHeaders will parse some specific key values from
// specific headers like CSeq or Content-Length integer values
func (s *SIP) ParseSpecificHeaders(headerName string, headerValue string) (err error) {
switch headerName {
case "cseq":
// CSeq header value is formatted like that :
// CSeq: 123 INVITE
// We split the value to parse Cseq integer value, and method
splits := strings.Split(headerValue, " ")
if len(splits) > 1 {
// parse CSEQ
s.cseq, err = parseUint32(splits[0])
if err != nil {
return fmt.Errorf("invalid CSEQ value: %w", err)
}
// Validate method
if s.IsResponse {
s.Method, err = GetSIPMethod(splits[1])
if err != nil {
return err
}
}
}
case "content-length":
// Parse Content-Length
s.contentLength, err = parsePositiveInt32(headerValue)
if err != nil {
return fmt.Errorf("invalid Content-Length: %w", err)
}
}
return nil
}
// parsePositiveInt32 will parse the string as an int, but will return error if
// value is < 0 or above the max positive value of an int32
func parsePositiveInt32(s string) (int, error) {
i, err := strconv.ParseInt(s, 10, 32)
if err != nil {
return 0, err
}
if i < 0 {
return 0, fmt.Errorf("%d out of range", i)
}
return int(i), nil
}
// parseUint32 parse string value to uint32, return error if not successful
func parseUint32(s string) (uint32, error) {
i, err := strconv.ParseUint(s, 10, 32)
if err != nil {
return 0, err
}
return uint32(i), nil
}
// GetAllHeaders will return the full headers of the
// current SIP packets in a map[string][]string
func (s *SIP) GetAllHeaders() map[string][]string {
return s.Headers
}
// GetHeader will return all the headers with
// the specified name.
func (s *SIP) GetHeader(headerName string) []string {
headerName = strings.ToLower(headerName)
h := make([]string, 0)
if _, ok := s.Headers[headerName]; ok {
return s.Headers[headerName]
}
compactHeader := compactSipHeadersCorrespondance[headerName]
if _, ok := s.Headers[compactHeader]; ok {
return s.Headers[compactHeader]
}
return h
}
// GetFirstHeader will return the first header with
// the specified name. If the current SIP packet has multiple
// headers with the same name, it returns the first.
func (s *SIP) GetFirstHeader(headerName string) string {
headers := s.GetHeader(headerName)
if len(headers) > 0 {
return headers[0]
}
return ""
}
//
// Some handy getters for most used SIP headers
//
// GetAuthorization will return the Authorization
// header of the current SIP packet
func (s *SIP) GetAuthorization() string {
return s.GetFirstHeader("Authorization")
}
// GetFrom will return the From
// header of the current SIP packet
func (s *SIP) GetFrom() string {
return s.GetFirstHeader("From")
}
// GetTo will return the To
// header of the current SIP packet
func (s *SIP) GetTo() string {
return s.GetFirstHeader("To")
}
// GetContact will return the Contact
// header of the current SIP packet
func (s *SIP) GetContact() string {
return s.GetFirstHeader("Contact")
}
// GetCallID will return the Call-ID
// header of the current SIP packet
func (s *SIP) GetCallID() string {
return s.GetFirstHeader("Call-ID")
}
// GetUserAgent will return the User-Agent
// header of the current SIP packet
func (s *SIP) GetUserAgent() string {
return s.GetFirstHeader("User-Agent")
}
// GetContentLength will return the parsed integer
// Content-Length header of the current SIP packet
func (s *SIP) GetContentLength() int64 {
// to keep compatibility with previous versions, we return 0 if contentLength is not set by header
if s.contentLength == -1 {
return 0
}
return int64(s.contentLength)
}
// GetCSeq will return the parsed integer CSeq header
// header of the current SIP packet
func (s *SIP) GetCSeq() int64 {
return int64(s.cseq)
}
|