session.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. // Package session provides functions for sessions of incoming requests.
  2. package session // import "v2ray.com/core/common/session"
  3. import (
  4. "context"
  5. "math/rand"
  6. "v2ray.com/core/common/errors"
  7. "v2ray.com/core/common/net"
  8. "v2ray.com/core/common/protocol"
  9. )
  10. // ID of a session.
  11. type ID uint32
  12. // NewID generates a new ID. The generated ID is high likely to be unique, but not cryptographically secure.
  13. // The generated ID will never be 0.
  14. func NewID() ID {
  15. for {
  16. id := ID(rand.Uint32())
  17. if id != 0 {
  18. return id
  19. }
  20. }
  21. }
  22. // ExportIDToError transfers session.ID into an error object, for logging purpose.
  23. // This can be used with error.WriteToLog().
  24. func ExportIDToError(ctx context.Context) errors.ExportOption {
  25. id := IDFromContext(ctx)
  26. return func(h *errors.ExportOptionHolder) {
  27. h.SessionID = uint32(id)
  28. }
  29. }
  30. // Inbound is the metadata of an inbound connection.
  31. type Inbound struct {
  32. // Source address of the inbound connection.
  33. Source net.Destination
  34. // Getaway address
  35. Gateway net.Destination
  36. // Tag of the inbound proxy that handles the connection.
  37. Tag string
  38. // User is the user that authencates for the inbound. May be nil if the protocol allows anounymous traffic.
  39. User *protocol.MemoryUser
  40. }
  41. // Outbound is the metadata of an outbound connection.
  42. type Outbound struct {
  43. // Target address of the outbound connection.
  44. Target net.Destination
  45. // Gateway address
  46. Gateway net.Address
  47. }
  48. // SniffingRequest controls the behavior of content sniffing.
  49. type SniffingRequest struct {
  50. OverrideDestinationForProtocol []string
  51. Enabled bool
  52. }
  53. // Content is the metadata of the connection content.
  54. type Content struct {
  55. // Protocol of current content.
  56. Protocol string
  57. SniffingRequest SniffingRequest
  58. Attributes map[string]string
  59. SkipRoutePick bool
  60. }
  61. // Sockopt is the settings for socket connection.
  62. type Sockopt struct {
  63. // Mark of the socket connection.
  64. Mark int32
  65. }
  66. // SetAttribute attachs additional string attributes to content.
  67. func (c *Content) SetAttribute(name string, value string) {
  68. if c.Attributes == nil {
  69. c.Attributes = make(map[string]string)
  70. }
  71. c.Attributes[name] = value
  72. }
  73. // Attribute retrieves additional string attributes from content.
  74. func (c *Content) Attribute(name string) string {
  75. if c.Attributes == nil {
  76. return ""
  77. }
  78. return c.Attributes[name]
  79. }