session.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. // ResolvedIPs is the resolved IP addresses, if the Targe is a domain address.
  48. ResolvedIPs []net.IP
  49. }