123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707 |
- #
- #
- # Nim's Runtime Library
- # (c) Copyright 2015 Dominik Picheta
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- ## This module implements a high-level cross-platform sockets interface.
- ## The procedures implemented in this module are primarily for blocking sockets.
- ## For asynchronous non-blocking sockets use the ``asyncnet`` module together
- ## with the ``asyncdispatch`` module.
- ##
- ## The first thing you will always need to do in order to start using sockets,
- ## is to create a new instance of the ``Socket`` type using the ``newSocket``
- ## procedure.
- ##
- ## SSL
- ## ====
- ##
- ## In order to use the SSL procedures defined in this module, you will need to
- ## compile your application with the ``-d:ssl`` flag.
- ##
- ## Examples
- ## ========
- ##
- ## Connecting to a server
- ## ----------------------
- ##
- ## After you create a socket with the ``newSocket`` procedure, you can easily
- ## connect it to a server running at a known hostname (or IP address) and port.
- ## To do so over TCP, use the example below.
- ##
- ## .. code-block:: Nim
- ## var socket = newSocket()
- ## socket.connect("google.com", Port(80))
- ##
- ## UDP is a connectionless protocol, so UDP sockets don't have to explicitly
- ## call the ``connect`` procedure. They can simply start sending data
- ## immediately.
- ##
- ## .. code-block:: Nim
- ## var socket = newSocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)
- ## socket.sendTo("192.168.0.1", Port(27960), "status\n")
- ##
- ## Creating a server
- ## -----------------
- ##
- ## After you create a socket with the ``newSocket`` procedure, you can create a
- ## TCP server by calling the ``bindAddr`` and ``listen`` procedures.
- ##
- ## .. code-block:: Nim
- ## var socket = newSocket()
- ## socket.bindAddr(Port(1234))
- ## socket.listen()
- ##
- ## You can then begin accepting connections using the ``accept`` procedure.
- ##
- ## .. code-block:: Nim
- ## var client: Socket
- ## var address = ""
- ## while true:
- ## socket.acceptAddr(client, address)
- ## echo("Client connected from: ", address)
- {.deadCodeElim: on.} # dce option deprecated
- import nativesockets, os, strutils, parseutils, times, sets, options,
- std/monotimes
- export nativesockets.Port, nativesockets.`$`, nativesockets.`==`
- export Domain, SockType, Protocol
- const useWinVersion = defined(Windows) or defined(nimdoc)
- const defineSsl = defined(ssl) or defined(nimdoc)
- when defineSsl:
- import openssl
- # Note: The enumerations are mapped to Window's constants.
- when defineSsl:
- type
- SslError* = object of Exception
- SslCVerifyMode* = enum
- CVerifyNone, CVerifyPeer
- SslProtVersion* = enum
- protSSLv2, protSSLv3, protTLSv1, protSSLv23
- SslContext* = ref object
- context*: SslCtx
- referencedData: HashSet[int]
- extraInternal: SslContextExtraInternal
- SslAcceptResult* = enum
- AcceptNoClient = 0, AcceptNoHandshake, AcceptSuccess
- SslHandshakeType* = enum
- handshakeAsClient, handshakeAsServer
- SslClientGetPskFunc* = proc(hint: string): tuple[identity: string, psk: string]
- SslServerGetPskFunc* = proc(identity: string): string
- SslContextExtraInternal = ref object of RootRef
- serverGetPskFunc: SslServerGetPskFunc
- clientGetPskFunc: SslClientGetPskFunc
- else:
- type
- SslContext* = void # TODO: Workaround #4797.
- const
- BufferSize*: int = 4000 ## size of a buffered socket's buffer
- MaxLineLength* = 1_000_000
- type
- SocketImpl* = object ## socket type
- fd: SocketHandle
- isBuffered: bool # determines whether this socket is buffered.
- buffer: array[0..BufferSize, char]
- currPos: int # current index in buffer
- bufLen: int # current length of buffer
- when defineSsl:
- isSsl: bool
- sslHandle: SslPtr
- sslContext: SslContext
- sslNoHandshake: bool # True if needs handshake.
- sslHasPeekChar: bool
- sslPeekChar: char
- lastError: OSErrorCode ## stores the last error on this socket
- domain: Domain
- sockType: SockType
- protocol: Protocol
- Socket* = ref SocketImpl
- SOBool* = enum ## Boolean socket options.
- OptAcceptConn, OptBroadcast, OptDebug, OptDontRoute, OptKeepAlive,
- OptOOBInline, OptReuseAddr, OptReusePort, OptNoDelay
- ReadLineResult* = enum ## result for readLineAsync
- ReadFullLine, ReadPartialLine, ReadDisconnected, ReadNone
- TimeoutError* = object of Exception
- SocketFlag* {.pure.} = enum
- Peek,
- SafeDisconn ## Ensures disconnection exceptions (ECONNRESET, EPIPE etc) are not thrown.
- when defined(nimHasStyleChecks):
- {.push styleChecks: off.}
- type
- IpAddressFamily* {.pure.} = enum ## Describes the type of an IP address
- IPv6, ## IPv6 address
- IPv4 ## IPv4 address
- IpAddress* = object ## stores an arbitrary IP address
- case family*: IpAddressFamily ## the type of the IP address (IPv4 or IPv6)
- of IpAddressFamily.IPv6:
- address_v6*: array[0..15, uint8] ## Contains the IP address in bytes in
- ## case of IPv6
- of IpAddressFamily.IPv4:
- address_v4*: array[0..3, uint8] ## Contains the IP address in bytes in
- ## case of IPv4
- when defined(nimHasStyleChecks):
- {.pop.}
- proc socketError*(socket: Socket, err: int = -1, async = false,
- lastError = (-1).OSErrorCode): void {.gcsafe.}
- proc isDisconnectionError*(flags: set[SocketFlag],
- lastError: OSErrorCode): bool =
- ## Determines whether ``lastError`` is a disconnection error. Only does this
- ## if flags contains ``SafeDisconn``.
- when useWinVersion:
- SocketFlag.SafeDisconn in flags and
- (lastError.int32 == WSAECONNRESET or
- lastError.int32 == WSAECONNABORTED or
- lastError.int32 == WSAENETRESET or
- lastError.int32 == WSAEDISCON or
- lastError.int32 == ERROR_NETNAME_DELETED)
- else:
- SocketFlag.SafeDisconn in flags and
- (lastError.int32 == ECONNRESET or
- lastError.int32 == EPIPE or
- lastError.int32 == ENETRESET)
- proc toOSFlags*(socketFlags: set[SocketFlag]): cint =
- ## Converts the flags into the underlying OS representation.
- for f in socketFlags:
- case f
- of SocketFlag.Peek:
- result = result or MSG_PEEK
- of SocketFlag.SafeDisconn: continue
- proc newSocket*(fd: SocketHandle, domain: Domain = AF_INET,
- sockType: SockType = SOCK_STREAM,
- protocol: Protocol = IPPROTO_TCP, buffered = true): owned(Socket) =
- ## Creates a new socket as specified by the params.
- assert fd != osInvalidSocket
- result = Socket(
- fd: fd,
- isBuffered: buffered,
- domain: domain,
- sockType: sockType,
- protocol: protocol)
- if buffered:
- result.currPos = 0
- # Set SO_NOSIGPIPE on OS X.
- when defined(macosx) and not defined(nimdoc):
- setSockOptInt(fd, SOL_SOCKET, SO_NOSIGPIPE, 1)
- proc newSocket*(domain, sockType, protocol: cint, buffered = true): owned(Socket) =
- ## Creates a new socket.
- ##
- ## If an error occurs OSError will be raised.
- let fd = createNativeSocket(domain, sockType, protocol)
- if fd == osInvalidSocket:
- raiseOSError(osLastError())
- result = newSocket(fd, domain.Domain, sockType.SockType, protocol.Protocol,
- buffered)
- proc newSocket*(domain: Domain = AF_INET, sockType: SockType = SOCK_STREAM,
- protocol: Protocol = IPPROTO_TCP, buffered = true): owned(Socket) =
- ## Creates a new socket.
- ##
- ## If an error occurs OSError will be raised.
- let fd = createNativeSocket(domain, sockType, protocol)
- if fd == osInvalidSocket:
- raiseOSError(osLastError())
- result = newSocket(fd, domain, sockType, protocol, buffered)
- proc parseIPv4Address(addressStr: string): IpAddress =
- ## Parses IPv4 addresses
- ## Raises ValueError on errors
- var
- byteCount = 0
- currentByte: uint16 = 0
- separatorValid = false
- result = IpAddress(family: IpAddressFamily.IPv4)
- for i in 0 .. high(addressStr):
- if addressStr[i] in strutils.Digits: # Character is a number
- currentByte = currentByte * 10 +
- cast[uint16](ord(addressStr[i]) - ord('0'))
- if currentByte > 255'u16:
- raise newException(ValueError,
- "Invalid IP Address. Value is out of range")
- separatorValid = true
- elif addressStr[i] == '.': # IPv4 address separator
- if not separatorValid or byteCount >= 3:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too many groups")
- result.address_v4[byteCount] = cast[uint8](currentByte)
- currentByte = 0
- byteCount.inc
- separatorValid = false
- else:
- raise newException(ValueError,
- "Invalid IP Address. Address contains an invalid character")
- if byteCount != 3 or not separatorValid:
- raise newException(ValueError, "Invalid IP Address")
- result.address_v4[byteCount] = cast[uint8](currentByte)
- proc parseIPv6Address(addressStr: string): IpAddress =
- ## Parses IPv6 addresses
- ## Raises ValueError on errors
- result = IpAddress(family: IpAddressFamily.IPv6)
- if addressStr.len < 2:
- raise newException(ValueError, "Invalid IP Address")
- var
- groupCount = 0
- currentGroupStart = 0
- currentShort: uint32 = 0
- separatorValid = true
- dualColonGroup = -1
- lastWasColon = false
- v4StartPos = -1
- byteCount = 0
- for i, c in addressStr:
- if c == ':':
- if not separatorValid:
- raise newException(ValueError,
- "Invalid IP Address. Address contains an invalid separator")
- if lastWasColon:
- if dualColonGroup != -1:
- raise newException(ValueError,
- "Invalid IP Address. Address contains more than one \"::\" separator")
- dualColonGroup = groupCount
- separatorValid = false
- elif i != 0 and i != high(addressStr):
- if groupCount >= 8:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too many groups")
- result.address_v6[groupCount*2] = cast[uint8](currentShort shr 8)
- result.address_v6[groupCount*2+1] = cast[uint8](currentShort and 0xFF)
- currentShort = 0
- groupCount.inc()
- if dualColonGroup != -1: separatorValid = false
- elif i == 0: # only valid if address starts with ::
- if addressStr[1] != ':':
- raise newException(ValueError,
- "Invalid IP Address. Address may not start with \":\"")
- else: # i == high(addressStr) - only valid if address ends with ::
- if addressStr[high(addressStr)-1] != ':':
- raise newException(ValueError,
- "Invalid IP Address. Address may not end with \":\"")
- lastWasColon = true
- currentGroupStart = i + 1
- elif c == '.': # Switch to parse IPv4 mode
- if i < 3 or not separatorValid or groupCount >= 7:
- raise newException(ValueError, "Invalid IP Address")
- v4StartPos = currentGroupStart
- currentShort = 0
- separatorValid = false
- break
- elif c in strutils.HexDigits:
- if c in strutils.Digits: # Normal digit
- currentShort = (currentShort shl 4) + cast[uint32](ord(c) - ord('0'))
- elif c >= 'a' and c <= 'f': # Lower case hex
- currentShort = (currentShort shl 4) + cast[uint32](ord(c) - ord('a')) + 10
- else: # Upper case hex
- currentShort = (currentShort shl 4) + cast[uint32](ord(c) - ord('A')) + 10
- if currentShort > 65535'u32:
- raise newException(ValueError,
- "Invalid IP Address. Value is out of range")
- lastWasColon = false
- separatorValid = true
- else:
- raise newException(ValueError,
- "Invalid IP Address. Address contains an invalid character")
- if v4StartPos == -1: # Don't parse v4. Copy the remaining v6 stuff
- if separatorValid: # Copy remaining data
- if groupCount >= 8:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too many groups")
- result.address_v6[groupCount*2] = cast[uint8](currentShort shr 8)
- result.address_v6[groupCount*2+1] = cast[uint8](currentShort and 0xFF)
- groupCount.inc()
- else: # Must parse IPv4 address
- for i, c in addressStr[v4StartPos..high(addressStr)]:
- if c in strutils.Digits: # Character is a number
- currentShort = currentShort * 10 + cast[uint32](ord(c) - ord('0'))
- if currentShort > 255'u32:
- raise newException(ValueError,
- "Invalid IP Address. Value is out of range")
- separatorValid = true
- elif c == '.': # IPv4 address separator
- if not separatorValid or byteCount >= 3:
- raise newException(ValueError, "Invalid IP Address")
- result.address_v6[groupCount*2 + byteCount] = cast[uint8](currentShort)
- currentShort = 0
- byteCount.inc()
- separatorValid = false
- else: # Invalid character
- raise newException(ValueError,
- "Invalid IP Address. Address contains an invalid character")
- if byteCount != 3 or not separatorValid:
- raise newException(ValueError, "Invalid IP Address")
- result.address_v6[groupCount*2 + byteCount] = cast[uint8](currentShort)
- groupCount += 2
- # Shift and fill zeros in case of ::
- if groupCount > 8:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too many groups")
- elif groupCount < 8: # must fill
- if dualColonGroup == -1:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too few groups")
- var toFill = 8 - groupCount # The number of groups to fill
- var toShift = groupCount - dualColonGroup # Nr of known groups after ::
- for i in 0..2*toShift-1: # shift
- result.address_v6[15-i] = result.address_v6[groupCount*2-i-1]
- for i in 0..2*toFill-1: # fill with 0s
- result.address_v6[dualColonGroup*2+i] = 0
- elif dualColonGroup != -1:
- raise newException(ValueError,
- "Invalid IP Address. The address consists of too many groups")
- proc parseIpAddress*(addressStr: string): IpAddress =
- ## Parses an IP address
- ## Raises ValueError on error
- if addressStr.len == 0:
- raise newException(ValueError, "IP Address string is empty")
- if addressStr.contains(':'):
- return parseIPv6Address(addressStr)
- else:
- return parseIPv4Address(addressStr)
- proc isIpAddress*(addressStr: string): bool {.tags: [].} =
- ## Checks if a string is an IP address
- ## Returns true if it is, false otherwise
- try:
- discard parseIpAddress(addressStr)
- except ValueError:
- return false
- return true
- proc toSockAddr*(address: IpAddress, port: Port, sa: var Sockaddr_storage,
- sl: var SockLen) =
- ## Converts `IpAddress` and `Port` to `SockAddr` and `SockLen`
- let port = htons(uint16(port))
- case address.family
- of IpAddressFamily.IPv4:
- sl = sizeof(Sockaddr_in).SockLen
- let s = cast[ptr Sockaddr_in](addr sa)
- s.sin_family = type(s.sin_family)(toInt(AF_INET))
- s.sin_port = port
- copyMem(addr s.sin_addr, unsafeAddr address.address_v4[0],
- sizeof(s.sin_addr))
- of IpAddressFamily.IPv6:
- sl = sizeof(Sockaddr_in6).SockLen
- let s = cast[ptr Sockaddr_in6](addr sa)
- s.sin6_family = type(s.sin6_family)(toInt(AF_INET6))
- s.sin6_port = port
- copyMem(addr s.sin6_addr, unsafeAddr address.address_v6[0],
- sizeof(s.sin6_addr))
- proc fromSockAddrAux(sa: ptr Sockaddr_storage, sl: SockLen,
- address: var IpAddress, port: var Port) =
- if sa.ss_family.cint == toInt(AF_INET) and sl == sizeof(Sockaddr_in).SockLen:
- address = IpAddress(family: IpAddressFamily.IPv4)
- let s = cast[ptr Sockaddr_in](sa)
- copyMem(addr address.address_v4[0], addr s.sin_addr,
- sizeof(address.address_v4))
- port = ntohs(s.sin_port).Port
- elif sa.ss_family.cint == toInt(AF_INET6) and
- sl == sizeof(Sockaddr_in6).SockLen:
- address = IpAddress(family: IpAddressFamily.IPv6)
- let s = cast[ptr Sockaddr_in6](sa)
- copyMem(addr address.address_v6[0], addr s.sin6_addr,
- sizeof(address.address_v6))
- port = ntohs(s.sin6_port).Port
- else:
- raise newException(ValueError, "Neither IPv4 nor IPv6")
- proc fromSockAddr*(sa: Sockaddr_storage | SockAddr | Sockaddr_in | Sockaddr_in6,
- sl: SockLen, address: var IpAddress, port: var Port) {.inline.} =
- ## Converts `SockAddr` and `SockLen` to `IpAddress` and `Port`. Raises
- ## `ObjectConversionError` in case of invalid `sa` and `sl` arguments.
- fromSockAddrAux(cast[ptr Sockaddr_storage](unsafeAddr sa), sl, address, port)
- when defineSsl:
- CRYPTO_malloc_init()
- doAssert SslLibraryInit() == 1
- SSL_load_error_strings()
- ERR_load_BIO_strings()
- OpenSSL_add_all_algorithms()
- proc raiseSSLError*(s = "") =
- ## Raises a new SSL error.
- if s != "":
- raise newException(SslError, s)
- let err = ERR_peek_last_error()
- if err == 0:
- raise newException(SslError, "No error reported.")
- if err == -1:
- raiseOSError(osLastError())
- var errStr = $ERR_error_string(err, nil)
- case err
- of 336032814, 336032784:
- errStr = "Please upgrade your OpenSSL library, it does not support the " &
- "necessary protocols. OpenSSL error is: " & errStr
- else:
- discard
- raise newException(SslError, errStr)
- proc getExtraData*(ctx: SslContext, index: int): RootRef =
- ## Retrieves arbitrary data stored inside SslContext.
- if index notin ctx.referencedData:
- raise newException(IndexError, "No data with that index.")
- let res = ctx.context.SSL_CTX_get_ex_data(index.cint)
- if cast[int](res) == 0:
- raiseSSLError()
- return cast[RootRef](res)
- proc setExtraData*(ctx: SslContext, index: int, data: RootRef) =
- ## Stores arbitrary data inside SslContext. The unique `index`
- ## should be retrieved using getSslContextExtraDataIndex.
- if index in ctx.referencedData:
- GC_unref(getExtraData(ctx, index))
- if ctx.context.SSL_CTX_set_ex_data(index.cint, cast[pointer](data)) == -1:
- raiseSSLError()
- if index notin ctx.referencedData:
- ctx.referencedData.incl(index)
- GC_ref(data)
- # http://simplestcodings.blogspot.co.uk/2010/08/secure-server-client-using-openssl-in-c.html
- proc loadCertificates(ctx: SslCtx, certFile, keyFile: string) =
- if certFile != "" and not existsFile(certFile):
- raise newException(system.IOError,
- "Certificate file could not be found: " & certFile)
- if keyFile != "" and not existsFile(keyFile):
- raise newException(system.IOError, "Key file could not be found: " & keyFile)
- if certFile != "":
- var ret = SSL_CTX_use_certificate_chain_file(ctx, certFile)
- if ret != 1:
- raiseSSLError()
- # TODO: Password? www.rtfm.com/openssl-examples/part1.pdf
- if keyFile != "":
- if SSL_CTX_use_PrivateKey_file(ctx, keyFile,
- SSL_FILETYPE_PEM) != 1:
- raiseSSLError()
- if SSL_CTX_check_private_key(ctx) != 1:
- raiseSSLError("Verification of private key file failed.")
- proc newContext*(protVersion = protSSLv23, verifyMode = CVerifyPeer,
- certFile = "", keyFile = "", cipherList = "ALL"): SslContext =
- ## Creates an SSL context.
- ##
- ## Protocol version specifies the protocol to use. SSLv2, SSLv3, TLSv1
- ## are available with the addition of ``protSSLv23`` which allows for
- ## compatibility with all of them.
- ##
- ## There are currently only two options for verify mode;
- ## one is ``CVerifyNone`` and with it certificates will not be verified
- ## the other is ``CVerifyPeer`` and certificates will be verified for
- ## it, ``CVerifyPeer`` is the safest choice.
- ##
- ## The last two parameters specify the certificate file path and the key file
- ## path, a server socket will most likely not work without these.
- ##
- ## Certificates can be generated using the following command:
- ## - ``openssl req -x509 -nodes -days 365 -newkey rsa:4096 -keyout mykey.pem -out mycert.pem``
- ## or using ECDSA:
- ## - ``openssl ecparam -out mykey.pem -name secp256k1 -genkey``
- ## - ``openssl req -new -key mykey.pem -x509 -nodes -days 365 -out mycert.pem``
- var newCTX: SslCtx
- case protVersion
- of protSSLv23:
- newCTX = SSL_CTX_new(SSLv23_method()) # SSlv2,3 and TLS1 support.
- of protSSLv2:
- raiseSSLError("SSLv2 is no longer secure and has been deprecated, use protSSLv23")
- of protSSLv3:
- raiseSSLError("SSLv3 is no longer secure and has been deprecated, use protSSLv23")
- of protTLSv1:
- newCTX = SSL_CTX_new(TLSv1_method())
- if newCTX.SSL_CTX_set_cipher_list(cipherList) != 1:
- raiseSSLError()
- case verifyMode
- of CVerifyPeer:
- newCTX.SSL_CTX_set_verify(SSL_VERIFY_PEER, nil)
- of CVerifyNone:
- newCTX.SSL_CTX_set_verify(SSL_VERIFY_NONE, nil)
- if newCTX == nil:
- raiseSSLError()
- discard newCTX.SSLCTXSetMode(SSL_MODE_AUTO_RETRY)
- newCTX.loadCertificates(certFile, keyFile)
- result = SslContext(context: newCTX, referencedData: initSet[int](),
- extraInternal: new(SslContextExtraInternal))
- proc getExtraInternal(ctx: SslContext): SslContextExtraInternal =
- return ctx.extraInternal
- proc destroyContext*(ctx: SslContext) =
- ## Free memory referenced by SslContext.
- # We assume here that OpenSSL's internal indexes increase by 1 each time.
- # That means we can assume that the next internal index is the length of
- # extra data indexes.
- for i in ctx.referencedData:
- GC_unref(getExtraData(ctx, i).RootRef)
- ctx.context.SSL_CTX_free()
- proc `pskIdentityHint=`*(ctx: SslContext, hint: string) =
- ## Sets the identity hint passed to server.
- ##
- ## Only used in PSK ciphersuites.
- if ctx.context.SSL_CTX_use_psk_identity_hint(hint) <= 0:
- raiseSSLError()
- proc clientGetPskFunc*(ctx: SslContext): SslClientGetPskFunc =
- return ctx.getExtraInternal().clientGetPskFunc
- proc pskClientCallback(ssl: SslPtr; hint: cstring; identity: cstring;
- max_identity_len: cuint; psk: ptr cuchar;
- max_psk_len: cuint): cuint {.cdecl.} =
- let ctx = SslContext(context: ssl.SSL_get_SSL_CTX)
- let hintString = if hint == nil: "" else: $hint
- let (identityString, pskString) = (ctx.clientGetPskFunc)(hintString)
- if pskString.len.cuint > max_psk_len:
- return 0
- if identityString.len.cuint >= max_identity_len:
- return 0
- copyMem(identity, identityString.cstring, identityString.len + 1) # with the last zero byte
- copyMem(psk, pskString.cstring, pskString.len)
- return pskString.len.cuint
- proc `clientGetPskFunc=`*(ctx: SslContext, fun: SslClientGetPskFunc) =
- ## Sets function that returns the client identity and the PSK based on identity
- ## hint from the server.
- ##
- ## Only used in PSK ciphersuites.
- ctx.getExtraInternal().clientGetPskFunc = fun
- ctx.context.SSL_CTX_set_psk_client_callback(
- if fun == nil: nil else: pskClientCallback)
- proc serverGetPskFunc*(ctx: SslContext): SslServerGetPskFunc =
- return ctx.getExtraInternal().serverGetPskFunc
- proc pskServerCallback(ssl: SslCtx; identity: cstring; psk: ptr cuchar;
- max_psk_len: cint): cuint {.cdecl.} =
- let ctx = SslContext(context: ssl.SSL_get_SSL_CTX)
- let pskString = (ctx.serverGetPskFunc)($identity)
- if pskString.len.cint > max_psk_len:
- return 0
- copyMem(psk, pskString.cstring, pskString.len)
- return pskString.len.cuint
- proc `serverGetPskFunc=`*(ctx: SslContext, fun: SslServerGetPskFunc) =
- ## Sets function that returns PSK based on the client identity.
- ##
- ## Only used in PSK ciphersuites.
- ctx.getExtraInternal().serverGetPskFunc = fun
- ctx.context.SSL_CTX_set_psk_server_callback(if fun == nil: nil
- else: pskServerCallback)
- proc getPskIdentity*(socket: Socket): string =
- ## Gets the PSK identity provided by the client.
- assert socket.isSsl
- return $(socket.sslHandle.SSL_get_psk_identity)
- proc wrapSocket*(ctx: SslContext, socket: Socket) =
- ## Wraps a socket in an SSL context. This function effectively turns
- ## ``socket`` into an SSL socket.
- ##
- ## This must be called on an unconnected socket; an SSL session will
- ## be started when the socket is connected.
- ##
- ## **Disclaimer**: This code is not well tested, may be very unsafe and
- ## prone to security vulnerabilities.
- assert(not socket.isSsl)
- socket.isSsl = true
- socket.sslContext = ctx
- socket.sslHandle = SSL_new(socket.sslContext.context)
- socket.sslNoHandshake = false
- socket.sslHasPeekChar = false
- if socket.sslHandle == nil:
- raiseSSLError()
- if SSL_set_fd(socket.sslHandle, socket.fd) != 1:
- raiseSSLError()
- proc wrapConnectedSocket*(ctx: SslContext, socket: Socket,
- handshake: SslHandshakeType,
- hostname: string = "") =
- ## Wraps a connected socket in an SSL context. This function effectively
- ## turns ``socket`` into an SSL socket.
- ## ``hostname`` should be specified so that the client knows which hostname
- ## the server certificate should be validated against.
- ##
- ## This should be called on a connected socket, and will perform
- ## an SSL handshake immediately.
- ##
- ## **Disclaimer**: This code is not well tested, may be very unsafe and
- ## prone to security vulnerabilities.
- wrapSocket(ctx, socket)
- case handshake
- of handshakeAsClient:
- if hostname.len > 0 and not isIpAddress(hostname):
- # Discard result in case OpenSSL version doesn't support SNI, or we're
- # not using TLSv1+
- discard SSL_set_tlsext_host_name(socket.sslHandle, hostname)
- let ret = SSL_connect(socket.sslHandle)
- socketError(socket, ret)
- of handshakeAsServer:
- let ret = SSL_accept(socket.sslHandle)
- socketError(socket, ret)
- proc getSocketError*(socket: Socket): OSErrorCode =
- ## Checks ``osLastError`` for a valid error. If it has been reset it uses
- ## the last error stored in the socket object.
- result = osLastError()
- if result == 0.OSErrorCode:
- result = socket.lastError
- if result == 0.OSErrorCode:
- raiseOSError(result, "No valid socket error code available")
- proc socketError*(socket: Socket, err: int = -1, async = false,
- lastError = (-1).OSErrorCode) =
- ## Raises an OSError based on the error code returned by ``SSL_get_error``
- ## (for SSL sockets) and ``osLastError`` otherwise.
- ##
- ## If ``async`` is ``true`` no error will be thrown in the case when the
- ## error was caused by no data being available to be read.
- ##
- ## If ``err`` is not lower than 0 no exception will be raised.
- when defineSsl:
- if socket.isSsl:
- if err <= 0:
- var ret = SSL_get_error(socket.sslHandle, err.cint)
- case ret
- of SSL_ERROR_ZERO_RETURN:
- raiseSSLError("TLS/SSL connection failed to initiate, socket closed prematurely.")
- of SSL_ERROR_WANT_CONNECT, SSL_ERROR_WANT_ACCEPT:
- if async:
- return
- else: raiseSSLError("Not enough data on socket.")
- of SSL_ERROR_WANT_WRITE, SSL_ERROR_WANT_READ:
- if async:
- return
- else: raiseSSLError("Not enough data on socket.")
- of SSL_ERROR_WANT_X509_LOOKUP:
- raiseSSLError("Function for x509 lookup has been called.")
- of SSL_ERROR_SYSCALL:
- var errStr = "IO error has occurred "
- let sslErr = ERR_peek_last_error()
- if sslErr == 0 and err == 0:
- errStr.add "because an EOF was observed that violates the protocol"
- elif sslErr == 0 and err == -1:
- errStr.add "in the BIO layer"
- else:
- let errStr = $ERR_error_string(sslErr, nil)
- raiseSSLError(errStr & ": " & errStr)
- let osErr = osLastError()
- raiseOSError(osErr, errStr)
- of SSL_ERROR_SSL:
- raiseSSLError()
- else: raiseSSLError("Unknown Error")
- if err == -1 and not (when defineSsl: socket.isSsl else: false):
- var lastE = if lastError.int == -1: getSocketError(socket) else: lastError
- if async:
- when useWinVersion:
- if lastE.int32 == WSAEWOULDBLOCK:
- return
- else: raiseOSError(lastE)
- else:
- if lastE.int32 == EAGAIN or lastE.int32 == EWOULDBLOCK:
- return
- else: raiseOSError(lastE)
- else: raiseOSError(lastE)
- proc listen*(socket: Socket, backlog = SOMAXCONN) {.tags: [ReadIOEffect].} =
- ## Marks ``socket`` as accepting connections.
- ## ``Backlog`` specifies the maximum length of the
- ## queue of pending connections.
- ##
- ## Raises an OSError error upon failure.
- if nativesockets.listen(socket.fd, backlog) < 0'i32:
- raiseOSError(osLastError())
- proc bindAddr*(socket: Socket, port = Port(0), address = "") {.
- tags: [ReadIOEffect].} =
- ## Binds ``address``:``port`` to the socket.
- ##
- ## If ``address`` is "" then ADDR_ANY will be bound.
- var realaddr = address
- if realaddr == "":
- case socket.domain
- of AF_INET6: realaddr = "::"
- of AF_INET: realaddr = "0.0.0.0"
- else:
- raise newException(ValueError,
- "Unknown socket address family and no address specified to bindAddr")
- var aiList = getAddrInfo(realaddr, port, socket.domain)
- if bindAddr(socket.fd, aiList.ai_addr, aiList.ai_addrlen.SockLen) < 0'i32:
- freeaddrinfo(aiList)
- raiseOSError(osLastError())
- freeaddrinfo(aiList)
- proc acceptAddr*(server: Socket, client: var owned(Socket), address: var string,
- flags = {SocketFlag.SafeDisconn}) {.
- tags: [ReadIOEffect], gcsafe, locks: 0.} =
- ## Blocks until a connection is being made from a client. When a connection
- ## is made sets ``client`` to the client socket and ``address`` to the address
- ## of the connecting client.
- ## This function will raise OSError if an error occurs.
- ##
- ## The resulting client will inherit any properties of the server socket. For
- ## example: whether the socket is buffered or not.
- ##
- ## The ``accept`` call may result in an error if the connecting socket
- ## disconnects during the duration of the ``accept``. If the ``SafeDisconn``
- ## flag is specified then this error will not be raised and instead
- ## accept will be called again.
- if client.isNil:
- new(client)
- let ret = accept(server.fd)
- let sock = ret[0]
- if sock == osInvalidSocket:
- let err = osLastError()
- if flags.isDisconnectionError(err):
- acceptAddr(server, client, address, flags)
- raiseOSError(err)
- else:
- address = ret[1]
- client.fd = sock
- client.domain = getSockDomain(sock)
- client.isBuffered = server.isBuffered
- # Handle SSL.
- when defineSsl:
- if server.isSsl:
- # We must wrap the client sock in a ssl context.
- server.sslContext.wrapSocket(client)
- let ret = SSL_accept(client.sslHandle)
- socketError(client, ret, false)
- when false: #defineSsl:
- proc acceptAddrSSL*(server: Socket, client: var Socket,
- address: var string): SSL_acceptResult {.
- tags: [ReadIOEffect].} =
- ## This procedure should only be used for non-blocking **SSL** sockets.
- ## It will immediately return with one of the following values:
- ##
- ## ``AcceptSuccess`` will be returned when a client has been successfully
- ## accepted and the handshake has been successfully performed between
- ## ``server`` and the newly connected client.
- ##
- ## ``AcceptNoHandshake`` will be returned when a client has been accepted
- ## but no handshake could be performed. This can happen when the client
- ## connects but does not yet initiate a handshake. In this case
- ## ``acceptAddrSSL`` should be called again with the same parameters.
- ##
- ## ``AcceptNoClient`` will be returned when no client is currently attempting
- ## to connect.
- template doHandshake(): untyped =
- when defineSsl:
- if server.isSsl:
- client.setBlocking(false)
- # We must wrap the client sock in a ssl context.
- if not client.isSsl or client.sslHandle == nil:
- server.sslContext.wrapSocket(client)
- let ret = SSL_accept(client.sslHandle)
- while ret <= 0:
- let err = SSL_get_error(client.sslHandle, ret)
- if err != SSL_ERROR_WANT_ACCEPT:
- case err
- of SSL_ERROR_ZERO_RETURN:
- raiseSSLError("TLS/SSL connection failed to initiate, socket closed prematurely.")
- of SSL_ERROR_WANT_READ, SSL_ERROR_WANT_WRITE,
- SSL_ERROR_WANT_CONNECT, SSL_ERROR_WANT_ACCEPT:
- client.sslNoHandshake = true
- return AcceptNoHandshake
- of SSL_ERROR_WANT_X509_LOOKUP:
- raiseSSLError("Function for x509 lookup has been called.")
- of SSL_ERROR_SYSCALL, SSL_ERROR_SSL:
- raiseSSLError()
- else:
- raiseSSLError("Unknown error")
- client.sslNoHandshake = false
- if client.isSsl and client.sslNoHandshake:
- doHandshake()
- return AcceptSuccess
- else:
- acceptAddrPlain(AcceptNoClient, AcceptSuccess):
- doHandshake()
- proc accept*(server: Socket, client: var owned(Socket),
- flags = {SocketFlag.SafeDisconn}) {.tags: [ReadIOEffect].} =
- ## Equivalent to ``acceptAddr`` but doesn't return the address, only the
- ## socket.
- ##
- ## The ``accept`` call may result in an error if the connecting socket
- ## disconnects during the duration of the ``accept``. If the ``SafeDisconn``
- ## flag is specified then this error will not be raised and instead
- ## accept will be called again.
- var addrDummy = ""
- acceptAddr(server, client, addrDummy, flags)
- proc close*(socket: Socket) =
- ## Closes a socket.
- try:
- when defineSsl:
- if socket.isSsl and socket.sslHandle != nil:
- ErrClearError()
- # As we are closing the underlying socket immediately afterwards,
- # it is valid, under the TLS standard, to perform a unidirectional
- # shutdown i.e not wait for the peers "close notify" alert with a second
- # call to SSL_shutdown
- let res = SSL_shutdown(socket.sslHandle)
- if res == 0:
- discard
- elif res != 1:
- socketError(socket, res)
- finally:
- when defineSsl:
- if socket.isSsl and socket.sslHandle != nil:
- SSL_free(socket.sslHandle)
- socket.sslHandle = nil
- socket.fd.close()
- socket.fd = osInvalidSocket
- when defined(posix):
- from posix import TCP_NODELAY
- else:
- from winlean import TCP_NODELAY
- proc toCInt*(opt: SOBool): cint =
- ## Converts a ``SOBool`` into its Socket Option cint representation.
- case opt
- of OptAcceptConn: SO_ACCEPTCONN
- of OptBroadcast: SO_BROADCAST
- of OptDebug: SO_DEBUG
- of OptDontRoute: SO_DONTROUTE
- of OptKeepAlive: SO_KEEPALIVE
- of OptOOBInline: SO_OOBINLINE
- of OptReuseAddr: SO_REUSEADDR
- of OptReusePort: SO_REUSEPORT
- of OptNoDelay: TCP_NODELAY
- proc getSockOpt*(socket: Socket, opt: SOBool, level = SOL_SOCKET): bool {.
- tags: [ReadIOEffect].} =
- ## Retrieves option ``opt`` as a boolean value.
- var res = getSockOptInt(socket.fd, cint(level), toCInt(opt))
- result = res != 0
- proc getLocalAddr*(socket: Socket): (string, Port) =
- ## Get the socket's local address and port number.
- ##
- ## This is high-level interface for `getsockname`:idx:.
- getLocalAddr(socket.fd, socket.domain)
- proc getPeerAddr*(socket: Socket): (string, Port) =
- ## Get the socket's peer address and port number.
- ##
- ## This is high-level interface for `getpeername`:idx:.
- getPeerAddr(socket.fd, socket.domain)
- proc setSockOpt*(socket: Socket, opt: SOBool, value: bool,
- level = SOL_SOCKET) {.tags: [WriteIOEffect].} =
- ## Sets option ``opt`` to a boolean value specified by ``value``.
- ##
- ## .. code-block:: Nim
- ## var socket = newSocket()
- ## socket.setSockOpt(OptReusePort, true)
- ## socket.setSockOpt(OptNoDelay, true, level=IPPROTO_TCP.toInt)
- ##
- var valuei = cint(if value: 1 else: 0)
- setSockOptInt(socket.fd, cint(level), toCInt(opt), valuei)
- when defined(posix) or defined(nimdoc):
- proc connectUnix*(socket: Socket, path: string) =
- ## Connects to Unix socket on `path`.
- ## This only works on Unix-style systems: Mac OS X, BSD and Linux
- when not defined(nimdoc):
- var socketAddr = makeUnixAddr(path)
- if socket.fd.connect(cast[ptr SockAddr](addr socketAddr),
- (sizeof(socketAddr.sun_family) + path.len).SockLen) != 0'i32:
- raiseOSError(osLastError())
- proc bindUnix*(socket: Socket, path: string) =
- ## Binds Unix socket to `path`.
- ## This only works on Unix-style systems: Mac OS X, BSD and Linux
- when not defined(nimdoc):
- var socketAddr = makeUnixAddr(path)
- if socket.fd.bindAddr(cast[ptr SockAddr](addr socketAddr),
- (sizeof(socketAddr.sun_family) + path.len).SockLen) != 0'i32:
- raiseOSError(osLastError())
- when defined(ssl):
- proc gotHandshake*(socket: Socket): bool =
- ## Determines whether a handshake has occurred between a client (``socket``)
- ## and the server that ``socket`` is connected to.
- ##
- ## Throws SslError if ``socket`` is not an SSL socket.
- if socket.isSsl:
- return not socket.sslNoHandshake
- else:
- raiseSSLError("Socket is not an SSL socket.")
- proc hasDataBuffered*(s: Socket): bool =
- ## Determines whether a socket has data buffered.
- result = false
- if s.isBuffered:
- result = s.bufLen > 0 and s.currPos != s.bufLen
- when defineSsl:
- if s.isSsl and not result:
- result = s.sslHasPeekChar
- proc select(readfd: Socket, timeout = 500): int =
- ## Used for socket operation timeouts.
- if readfd.hasDataBuffered:
- return 1
- var fds = @[readfd.fd]
- result = selectRead(fds, timeout)
- proc isClosed(socket: Socket): bool =
- socket.fd == osInvalidSocket
- proc uniRecv(socket: Socket, buffer: pointer, size, flags: cint): int =
- ## Handles SSL and non-ssl recv in a nice package.
- ##
- ## In particular handles the case where socket has been closed properly
- ## for both SSL and non-ssl.
- result = 0
- assert(not socket.isClosed, "Cannot `recv` on a closed socket")
- when defineSsl:
- if socket.isSsl:
- return SSL_read(socket.sslHandle, buffer, size)
- return recv(socket.fd, buffer, size, flags)
- proc readIntoBuf(socket: Socket, flags: int32): int =
- result = 0
- result = uniRecv(socket, addr(socket.buffer), socket.buffer.high, flags)
- if result < 0:
- # Save it in case it gets reset (the Nim codegen occasionally may call
- # Win API functions which reset it).
- socket.lastError = osLastError()
- if result <= 0:
- socket.bufLen = 0
- socket.currPos = 0
- return result
- socket.bufLen = result
- socket.currPos = 0
- template retRead(flags, readBytes: int) {.dirty.} =
- let res = socket.readIntoBuf(flags.int32)
- if res <= 0:
- if readBytes > 0:
- return readBytes
- else:
- return res
- proc recv*(socket: Socket, data: pointer, size: int): int {.tags: [
- ReadIOEffect].} =
- ## Receives data from a socket.
- ##
- ## **Note**: This is a low-level function, you may be interested in the higher
- ## level versions of this function which are also named ``recv``.
- if size == 0: return
- if socket.isBuffered:
- if socket.bufLen == 0:
- retRead(0'i32, 0)
- var read = 0
- while read < size:
- if socket.currPos >= socket.bufLen:
- retRead(0'i32, read)
- let chunk = min(socket.bufLen-socket.currPos, size-read)
- var d = cast[cstring](data)
- assert size-read >= chunk
- copyMem(addr(d[read]), addr(socket.buffer[socket.currPos]), chunk)
- read.inc(chunk)
- socket.currPos.inc(chunk)
- result = read
- else:
- when defineSsl:
- if socket.isSsl:
- if socket.sslHasPeekChar: # TODO: Merge this peek char mess into uniRecv
- copyMem(data, addr(socket.sslPeekChar), 1)
- socket.sslHasPeekChar = false
- if size-1 > 0:
- var d = cast[cstring](data)
- result = uniRecv(socket, addr(d[1]), cint(size-1), 0'i32) + 1
- else:
- result = 1
- else:
- result = uniRecv(socket, data, size.cint, 0'i32)
- else:
- result = recv(socket.fd, data, size.cint, 0'i32)
- else:
- result = recv(socket.fd, data, size.cint, 0'i32)
- if result < 0:
- # Save the error in case it gets reset.
- socket.lastError = osLastError()
- proc waitFor(socket: Socket, waited: var Duration, timeout, size: int,
- funcName: string): int {.tags: [TimeEffect].} =
- ## determines the amount of characters that can be read. Result will never
- ## be larger than ``size``. For unbuffered sockets this will be ``1``.
- ## For buffered sockets it can be as big as ``BufferSize``.
- ##
- ## If this function does not determine that there is data on the socket
- ## within ``timeout`` ms, a TimeoutError error will be raised.
- result = 1
- if size <= 0: assert false
- if timeout == -1: return size
- if socket.isBuffered and socket.bufLen != 0 and
- socket.bufLen != socket.currPos:
- result = socket.bufLen - socket.currPos
- result = min(result, size)
- else:
- if timeout - waited.inMilliseconds < 1:
- raise newException(TimeoutError, "Call to '" & funcName & "' timed out.")
- when defineSsl:
- if socket.isSsl:
- if socket.hasDataBuffered:
- # sslPeekChar is present.
- return 1
- let sslPending = SSL_pending(socket.sslHandle)
- if sslPending != 0:
- return min(sslPending, size)
- var startTime = getMonoTime()
- let selRet = select(socket, (timeout - waited.inMilliseconds).int)
- if selRet < 0: raiseOSError(osLastError())
- if selRet != 1:
- raise newException(TimeoutError, "Call to '" & funcName & "' timed out.")
- waited += (getMonoTime() - startTime)
- proc recv*(socket: Socket, data: pointer, size: int, timeout: int): int {.
- tags: [ReadIOEffect, TimeEffect].} =
- ## overload with a ``timeout`` parameter in milliseconds.
- var waited: Duration # duration already waited
- var read = 0
- while read < size:
- let avail = waitFor(socket, waited, timeout, size-read, "recv")
- var d = cast[cstring](data)
- assert avail <= size-read
- result = recv(socket, addr(d[read]), avail)
- if result == 0: break
- if result < 0:
- return result
- inc(read, result)
- result = read
- proc recv*(socket: Socket, data: var string, size: int, timeout = -1,
- flags = {SocketFlag.SafeDisconn}): int =
- ## Higher-level version of ``recv``.
- ##
- ## When 0 is returned the socket's connection has been closed.
- ##
- ## This function will throw an OSError exception when an error occurs. A value
- ## lower than 0 is never returned.
- ##
- ## A timeout may be specified in milliseconds, if enough data is not received
- ## within the time specified a TimeoutError exception will be raised.
- ##
- ## **Note**: ``data`` must be initialised.
- ##
- ## **Warning**: Only the ``SafeDisconn`` flag is currently supported.
- data.setLen(size)
- result =
- if timeout == -1:
- recv(socket, cstring(data), size)
- else:
- recv(socket, cstring(data), size, timeout)
- if result < 0:
- data.setLen(0)
- let lastError = getSocketError(socket)
- if flags.isDisconnectionError(lastError): return
- socket.socketError(result, lastError = lastError)
- data.setLen(result)
- proc recv*(socket: Socket, size: int, timeout = -1,
- flags = {SocketFlag.SafeDisconn}): string {.inline.} =
- ## Higher-level version of ``recv`` which returns a string.
- ##
- ## When ``""`` is returned the socket's connection has been closed.
- ##
- ## This function will throw an OSError exception when an error occurs.
- ##
- ## A timeout may be specified in milliseconds, if enough data is not received
- ## within the time specified a TimeoutError exception will be raised.
- ##
- ##
- ## **Warning**: Only the ``SafeDisconn`` flag is currently supported.
- result = newString(size)
- discard recv(socket, result, size, timeout, flags)
- proc peekChar(socket: Socket, c: var char): int {.tags: [ReadIOEffect].} =
- if socket.isBuffered:
- result = 1
- if socket.bufLen == 0 or socket.currPos > socket.bufLen-1:
- var res = socket.readIntoBuf(0'i32)
- if res <= 0:
- result = res
- c = socket.buffer[socket.currPos]
- else:
- when defineSsl:
- if socket.isSsl:
- if not socket.sslHasPeekChar:
- result = uniRecv(socket, addr(socket.sslPeekChar), 1, 0'i32)
- socket.sslHasPeekChar = true
- c = socket.sslPeekChar
- return
- result = recv(socket.fd, addr(c), 1, MSG_PEEK)
- proc readLine*(socket: Socket, line: var TaintedString, timeout = -1,
- flags = {SocketFlag.SafeDisconn}, maxLength = MaxLineLength) {.
- tags: [ReadIOEffect, TimeEffect].} =
- ## Reads a line of data from ``socket``.
- ##
- ## If a full line is read ``\r\L`` is not
- ## added to ``line``, however if solely ``\r\L`` is read then ``line``
- ## will be set to it.
- ##
- ## If the socket is disconnected, ``line`` will be set to ``""``.
- ##
- ## An OSError exception will be raised in the case of a socket error.
- ##
- ## A timeout can be specified in milliseconds, if data is not received within
- ## the specified time a TimeoutError exception will be raised.
- ##
- ## The ``maxLength`` parameter determines the maximum amount of characters
- ## that can be read. The result is truncated after that.
- ##
- ## **Warning**: Only the ``SafeDisconn`` flag is currently supported.
- template addNLIfEmpty() =
- if line.len == 0:
- line.string.add("\c\L")
- template raiseSockError() {.dirty.} =
- let lastError = getSocketError(socket)
- if flags.isDisconnectionError(lastError): setLen(line.string, 0); return
- socket.socketError(n, lastError = lastError)
- var waited: Duration
- setLen(line.string, 0)
- while true:
- var c: char
- discard waitFor(socket, waited, timeout, 1, "readLine")
- var n = recv(socket, addr(c), 1)
- if n < 0: raiseSockError()
- elif n == 0: setLen(line.string, 0); return
- if c == '\r':
- discard waitFor(socket, waited, timeout, 1, "readLine")
- n = peekChar(socket, c)
- if n > 0 and c == '\L':
- discard recv(socket, addr(c), 1)
- elif n <= 0: raiseSockError()
- addNLIfEmpty()
- return
- elif c == '\L':
- addNLIfEmpty()
- return
- add(line.string, c)
- # Verify that this isn't a DOS attack: #3847.
- if line.string.len > maxLength: break
- proc recvLine*(socket: Socket, timeout = -1,
- flags = {SocketFlag.SafeDisconn},
- maxLength = MaxLineLength): TaintedString =
- ## Reads a line of data from ``socket``.
- ##
- ## If a full line is read ``\r\L`` is not
- ## added to the result, however if solely ``\r\L`` is read then the result
- ## will be set to it.
- ##
- ## If the socket is disconnected, the result will be set to ``""``.
- ##
- ## An OSError exception will be raised in the case of a socket error.
- ##
- ## A timeout can be specified in milliseconds, if data is not received within
- ## the specified time a TimeoutError exception will be raised.
- ##
- ## The ``maxLength`` parameter determines the maximum amount of characters
- ## that can be read. The result is truncated after that.
- ##
- ## **Warning**: Only the ``SafeDisconn`` flag is currently supported.
- result = "".TaintedString
- readLine(socket, result, timeout, flags, maxLength)
- proc recvFrom*(socket: Socket, data: var string, length: int,
- address: var string, port: var Port, flags = 0'i32): int {.
- tags: [ReadIOEffect].} =
- ## Receives data from ``socket``. This function should normally be used with
- ## connection-less sockets (UDP sockets).
- ##
- ## If an error occurs an OSError exception will be raised. Otherwise the return
- ## value will be the length of data received.
- ##
- ## **Warning:** This function does not yet have a buffered implementation,
- ## so when ``socket`` is buffered the non-buffered implementation will be
- ## used. Therefore if ``socket`` contains something in its buffer this
- ## function will make no effort to return it.
- assert(socket.protocol != IPPROTO_TCP, "Cannot `recvFrom` on a TCP socket")
- # TODO: Buffered sockets
- data.setLen(length)
- var sockAddress: Sockaddr_in
- var addrLen = sizeof(sockAddress).SockLen
- result = recvfrom(socket.fd, cstring(data), length.cint, flags.cint,
- cast[ptr SockAddr](addr(sockAddress)), addr(addrLen))
- if result != -1:
- data.setLen(result)
- address = getAddrString(cast[ptr SockAddr](addr(sockAddress)))
- port = ntohs(sockAddress.sin_port).Port
- else:
- raiseOSError(osLastError())
- proc skip*(socket: Socket, size: int, timeout = -1) =
- ## Skips ``size`` amount of bytes.
- ##
- ## An optional timeout can be specified in milliseconds, if skipping the
- ## bytes takes longer than specified a TimeoutError exception will be raised.
- ##
- ## Returns the number of skipped bytes.
- var waited: Duration
- var dummy = alloc(size)
- var bytesSkipped = 0
- while bytesSkipped != size:
- let avail = waitFor(socket, waited, timeout, size-bytesSkipped, "skip")
- bytesSkipped += recv(socket, dummy, avail)
- dealloc(dummy)
- proc send*(socket: Socket, data: pointer, size: int): int {.
- tags: [WriteIOEffect].} =
- ## Sends data to a socket.
- ##
- ## **Note**: This is a low-level version of ``send``. You likely should use
- ## the version below.
- assert(not socket.isClosed, "Cannot `send` on a closed socket")
- when defineSsl:
- if socket.isSsl:
- return SSL_write(socket.sslHandle, cast[cstring](data), size)
- when useWinVersion or defined(macosx):
- result = send(socket.fd, data, size.cint, 0'i32)
- else:
- when defined(solaris):
- const MSG_NOSIGNAL = 0
- result = send(socket.fd, data, size, int32(MSG_NOSIGNAL))
- proc send*(socket: Socket, data: string,
- flags = {SocketFlag.SafeDisconn}) {.tags: [WriteIOEffect].} =
- ## sends data to a socket.
- let sent = send(socket, cstring(data), data.len)
- if sent < 0:
- let lastError = osLastError()
- if flags.isDisconnectionError(lastError): return
- socketError(socket, lastError = lastError)
- if sent != data.len:
- raiseOSError(osLastError(), "Could not send all data.")
- template `&=`*(socket: Socket; data: typed) =
- ## an alias for 'send'.
- send(socket, data)
- proc trySend*(socket: Socket, data: string): bool {.tags: [WriteIOEffect].} =
- ## Safe alternative to ``send``. Does not raise an OSError when an error occurs,
- ## and instead returns ``false`` on failure.
- result = send(socket, cstring(data), data.len) == data.len
- proc sendTo*(socket: Socket, address: string, port: Port, data: pointer,
- size: int, af: Domain = AF_INET, flags = 0'i32) {.
- tags: [WriteIOEffect].} =
- ## This proc sends ``data`` to the specified ``address``,
- ## which may be an IP address or a hostname, if a hostname is specified
- ## this function will try each IP of that hostname.
- ##
- ## If an error occurs an OSError exception will be raised.
- ##
- ## **Note:** You may wish to use the high-level version of this function
- ## which is defined below.
- ##
- ## **Note:** This proc is not available for SSL sockets.
- assert(socket.protocol != IPPROTO_TCP, "Cannot `sendTo` on a TCP socket")
- assert(not socket.isClosed, "Cannot `sendTo` on a closed socket")
- var aiList = getAddrInfo(address, port, af, socket.sockType, socket.protocol)
- # try all possibilities:
- var success = false
- var it = aiList
- var result = 0
- while it != nil:
- result = sendto(socket.fd, data, size.cint, flags.cint, it.ai_addr,
- it.ai_addrlen.SockLen)
- if result != -1'i32:
- success = true
- break
- it = it.ai_next
- let osError = osLastError()
- freeaddrinfo(aiList)
- if not success:
- raiseOSError(osError)
- proc sendTo*(socket: Socket, address: string, port: Port,
- data: string) {.tags: [WriteIOEffect].} =
- ## This proc sends ``data`` to the specified ``address``,
- ## which may be an IP address or a hostname, if a hostname is specified
- ## this function will try each IP of that hostname.
- ##
- ## If an error occurs an OSError exception will be raised.
- ##
- ## This is the high-level version of the above ``sendTo`` function.
- socket.sendTo(address, port, cstring(data), data.len, socket.domain)
- proc isSsl*(socket: Socket): bool =
- ## Determines whether ``socket`` is a SSL socket.
- when defineSsl:
- result = socket.isSsl
- else:
- result = false
- proc getFd*(socket: Socket): SocketHandle = return socket.fd
- ## Returns the socket's file descriptor
- when defined(nimHasStyleChecks):
- {.push styleChecks: off.}
- proc IPv4_any*(): IpAddress =
- ## Returns the IPv4 any address, which can be used to listen on all available
- ## network adapters
- result = IpAddress(
- family: IpAddressFamily.IPv4,
- address_v4: [0'u8, 0, 0, 0])
- proc IPv4_loopback*(): IpAddress =
- ## Returns the IPv4 loopback address (127.0.0.1)
- result = IpAddress(
- family: IpAddressFamily.IPv4,
- address_v4: [127'u8, 0, 0, 1])
- proc IPv4_broadcast*(): IpAddress =
- ## Returns the IPv4 broadcast address (255.255.255.255)
- result = IpAddress(
- family: IpAddressFamily.IPv4,
- address_v4: [255'u8, 255, 255, 255])
- proc IPv6_any*(): IpAddress =
- ## Returns the IPv6 any address (::0), which can be used
- ## to listen on all available network adapters
- result = IpAddress(
- family: IpAddressFamily.IPv6,
- address_v6: [0'u8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0])
- proc IPv6_loopback*(): IpAddress =
- ## Returns the IPv6 loopback address (::1)
- result = IpAddress(
- family: IpAddressFamily.IPv6,
- address_v6: [0'u8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1])
- when defined(nimHasStyleChecks):
- {.pop.}
- proc `==`*(lhs, rhs: IpAddress): bool =
- ## Compares two IpAddresses for Equality. Returns true if the addresses are equal
- if lhs.family != rhs.family: return false
- if lhs.family == IpAddressFamily.IPv4:
- for i in low(lhs.address_v4) .. high(lhs.address_v4):
- if lhs.address_v4[i] != rhs.address_v4[i]: return false
- else: # IPv6
- for i in low(lhs.address_v6) .. high(lhs.address_v6):
- if lhs.address_v6[i] != rhs.address_v6[i]: return false
- return true
- proc `$`*(address: IpAddress): string =
- ## Converts an IpAddress into the textual representation
- result = ""
- case address.family
- of IpAddressFamily.IPv4:
- for i in 0 .. 3:
- if i != 0:
- result.add('.')
- result.add($address.address_v4[i])
- of IpAddressFamily.IPv6:
- var
- currentZeroStart = -1
- currentZeroCount = 0
- biggestZeroStart = -1
- biggestZeroCount = 0
- # Look for the largest block of zeros
- for i in 0..7:
- var isZero = address.address_v6[i*2] == 0 and address.address_v6[i*2+1] == 0
- if isZero:
- if currentZeroStart == -1:
- currentZeroStart = i
- currentZeroCount = 1
- else:
- currentZeroCount.inc()
- if currentZeroCount > biggestZeroCount:
- biggestZeroCount = currentZeroCount
- biggestZeroStart = currentZeroStart
- else:
- currentZeroStart = -1
- if biggestZeroCount == 8: # Special case ::0
- result.add("::")
- else: # Print address
- var printedLastGroup = false
- for i in 0..7:
- var word: uint16 = (cast[uint16](address.address_v6[i*2])) shl 8
- word = word or cast[uint16](address.address_v6[i*2+1])
- if biggestZeroCount != 0 and # Check if group is in skip group
- (i >= biggestZeroStart and i < (biggestZeroStart + biggestZeroCount)):
- if i == biggestZeroStart: # skip start
- result.add("::")
- printedLastGroup = false
- else:
- if printedLastGroup:
- result.add(':')
- var
- afterLeadingZeros = false
- mask = 0xF000'u16
- for j in 0'u16..3'u16:
- var val = (mask and word) shr (4'u16*(3'u16-j))
- if val != 0 or afterLeadingZeros:
- if val < 0xA:
- result.add(chr(uint16(ord('0'))+val))
- else: # val >= 0xA
- result.add(chr(uint16(ord('a'))+val-0xA))
- afterLeadingZeros = true
- mask = mask shr 4
- printedLastGroup = true
- proc dial*(address: string, port: Port,
- protocol = IPPROTO_TCP, buffered = true): owned(Socket)
- {.tags: [ReadIOEffect, WriteIOEffect].} =
- ## Establishes connection to the specified ``address``:``port`` pair via the
- ## specified protocol. The procedure iterates through possible
- ## resolutions of the ``address`` until it succeeds, meaning that it
- ## seamlessly works with both IPv4 and IPv6.
- ## Returns Socket ready to send or receive data.
- let sockType = protocol.toSockType()
- let aiList = getAddrInfo(address, port, AF_UNSPEC, sockType, protocol)
- var fdPerDomain: array[low(Domain).ord..high(Domain).ord, SocketHandle]
- for i in low(fdPerDomain)..high(fdPerDomain):
- fdPerDomain[i] = osInvalidSocket
- template closeUnusedFds(domainToKeep = -1) {.dirty.} =
- for i, fd in fdPerDomain:
- if fd != osInvalidSocket and i != domainToKeep:
- fd.close()
- var success = false
- var lastError: OSErrorCode
- var it = aiList
- var domain: Domain
- var lastFd: SocketHandle
- while it != nil:
- let domainOpt = it.ai_family.toKnownDomain()
- if domainOpt.isNone:
- it = it.ai_next
- continue
- domain = domainOpt.unsafeGet()
- lastFd = fdPerDomain[ord(domain)]
- if lastFd == osInvalidSocket:
- lastFd = createNativeSocket(domain, sockType, protocol)
- if lastFd == osInvalidSocket:
- # we always raise if socket creation failed, because it means a
- # network system problem (e.g. not enough FDs), and not an unreachable
- # address.
- let err = osLastError()
- freeaddrinfo(aiList)
- closeUnusedFds()
- raiseOSError(err)
- fdPerDomain[ord(domain)] = lastFd
- if connect(lastFd, it.ai_addr, it.ai_addrlen.SockLen) == 0'i32:
- success = true
- break
- lastError = osLastError()
- it = it.ai_next
- freeaddrinfo(aiList)
- closeUnusedFds(ord(domain))
- if success:
- result = newSocket(lastFd, domain, sockType, protocol)
- elif lastError != 0.OSErrorCode:
- raiseOSError(lastError)
- else:
- raise newException(IOError, "Couldn't resolve address: " & address)
- proc connect*(socket: Socket, address: string,
- port = Port(0)) {.tags: [ReadIOEffect].} =
- ## Connects socket to ``address``:``port``. ``Address`` can be an IP address or a
- ## host name. If ``address`` is a host name, this function will try each IP
- ## of that host name. ``htons`` is already performed on ``port`` so you must
- ## not do it.
- ##
- ## If ``socket`` is an SSL socket a handshake will be automatically performed.
- var aiList = getAddrInfo(address, port, socket.domain)
- # try all possibilities:
- var success = false
- var lastError: OSErrorCode
- var it = aiList
- while it != nil:
- if connect(socket.fd, it.ai_addr, it.ai_addrlen.SockLen) == 0'i32:
- success = true
- break
- else: lastError = osLastError()
- it = it.ai_next
- freeaddrinfo(aiList)
- if not success: raiseOSError(lastError)
- when defineSsl:
- if socket.isSsl:
- # RFC3546 for SNI specifies that IP addresses are not allowed.
- if not isIpAddress(address):
- # Discard result in case OpenSSL version doesn't support SNI, or we're
- # not using TLSv1+
- discard SSL_set_tlsext_host_name(socket.sslHandle, address)
- let ret = SSL_connect(socket.sslHandle)
- socketError(socket, ret)
- proc connectAsync(socket: Socket, name: string, port = Port(0),
- af: Domain = AF_INET) {.tags: [ReadIOEffect].} =
- ## A variant of ``connect`` for non-blocking sockets.
- ##
- ## This procedure will immediately return, it will not block until a connection
- ## is made. It is up to the caller to make sure the connection has been established
- ## by checking (using ``select``) whether the socket is writeable.
- ##
- ## **Note**: For SSL sockets, the ``handshake`` procedure must be called
- ## whenever the socket successfully connects to a server.
- var aiList = getAddrInfo(name, port, af)
- # try all possibilities:
- var success = false
- var lastError: OSErrorCode
- var it = aiList
- while it != nil:
- var ret = connect(socket.fd, it.ai_addr, it.ai_addrlen.SockLen)
- if ret == 0'i32:
- success = true
- break
- else:
- lastError = osLastError()
- when useWinVersion:
- # Windows EINTR doesn't behave same as POSIX.
- if lastError.int32 == WSAEWOULDBLOCK:
- success = true
- break
- else:
- if lastError.int32 == EINTR or lastError.int32 == EINPROGRESS:
- success = true
- break
- it = it.ai_next
- freeaddrinfo(aiList)
- if not success: raiseOSError(lastError)
- proc connect*(socket: Socket, address: string, port = Port(0),
- timeout: int) {.tags: [ReadIOEffect, WriteIOEffect].} =
- ## Connects to server as specified by ``address`` on port specified by ``port``.
- ##
- ## The ``timeout`` parameter specifies the time in milliseconds to allow for
- ## the connection to the server to be made.
- socket.fd.setBlocking(false)
- socket.connectAsync(address, port, socket.domain)
- var s = @[socket.fd]
- if selectWrite(s, timeout) != 1:
- raise newException(TimeoutError, "Call to 'connect' timed out.")
- else:
- let res = getSockOptInt(socket.fd, SOL_SOCKET, SO_ERROR)
- if res != 0:
- raiseOSError(OSErrorCode(res))
- when defineSsl and not defined(nimdoc):
- if socket.isSsl:
- socket.fd.setBlocking(true)
- doAssert socket.gotHandshake()
- socket.fd.setBlocking(true)
- proc getPrimaryIPAddr*(dest = parseIpAddress("8.8.8.8")): IpAddress =
- ## Finds the local IP address, usually assigned to eth0 on LAN or wlan0 on WiFi,
- ## used to reach an external address. Useful to run local services.
- ##
- ## No traffic is sent.
- ##
- ## Supports IPv4 and v6.
- ## Raises OSError if external networking is not set up.
- ##
- ## .. code-block:: Nim
- ## echo $getPrimaryIPAddr() # "192.168.1.2"
- let socket =
- if dest.family == IpAddressFamily.IPv4:
- newSocket(AF_INET, SOCK_DGRAM, IPPROTO_UDP)
- else:
- newSocket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP)
- socket.connect($dest, 80.Port)
- result = socket.getLocalAddr()[0].parseIpAddress()
- socket.close()
|