2 * ============LICENSE_START=======================================================
3 * dcaegen2-collectors-veshv
4 * ================================================================================
5 * Copyright (C) 2018 NOKIA
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
20 package org.onap.dcae.collectors.veshv.impl.socket
22 import arrow.core.getOrElse
23 import arrow.effects.IO
24 import org.onap.dcae.collectors.veshv.boundary.Collector
25 import org.onap.dcae.collectors.veshv.boundary.CollectorProvider
26 import org.onap.dcae.collectors.veshv.boundary.Metrics
27 import org.onap.dcae.collectors.veshv.boundary.Server
28 import org.onap.dcae.collectors.veshv.config.api.model.ServerConfiguration
29 import org.onap.dcae.collectors.veshv.impl.adapters.ClientContextLogging.debug
30 import org.onap.dcae.collectors.veshv.impl.adapters.ClientContextLogging.info
31 import org.onap.dcae.collectors.veshv.model.ClientContext
32 import org.onap.dcae.collectors.veshv.model.ServiceContext
33 import org.onap.dcae.collectors.veshv.ssl.boundary.SslContextFactory
34 import org.onap.dcae.collectors.veshv.utils.NettyServerHandle
35 import org.onap.dcae.collectors.veshv.utils.ServerHandle
36 import org.onap.dcae.collectors.veshv.utils.logging.Logger
37 import org.onap.dcae.collectors.veshv.utils.logging.Marker
38 import reactor.core.publisher.Mono
39 import reactor.netty.Connection
40 import reactor.netty.NettyInbound
41 import reactor.netty.NettyOutbound
42 import reactor.netty.tcp.TcpServer
43 import java.net.InetAddress
44 import java.time.Duration
48 * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
51 internal class NettyTcpServer(private val serverConfig: ServerConfiguration,
52 private val sslContextFactory: SslContextFactory,
53 private val collectorProvider: CollectorProvider,
54 private val metrics: Metrics) : Server {
56 override fun start(): IO<ServerHandle> = IO {
58 .addressSupplier { serverConfig.serverListenAddress }
60 .handle(this::handleConnection)
62 logger.info(ServiceContext::mdc) { "Netty TCP Server closed" }
63 collectorProvider.close().unsafeRunSync()
65 .let { NettyServerHandle(it.bindNow()) }
68 private fun TcpServer.configureSsl() =
70 .createServerContext(serverConfig.securityConfiguration)
72 logger.info { "Collector configured with SSL enabled" }
73 this.secure { b -> b.sslContext(sslContext) }
75 logger.info { "Collector configured with SSL disabled" }
79 private fun handleConnection(nettyInbound: NettyInbound, nettyOutbound: NettyOutbound): Mono<Void> =
80 messageHandlingStream(nettyInbound, nettyOutbound).run {
82 nettyOutbound.neverComplete()
85 private fun messageHandlingStream(nettyInbound: NettyInbound, nettyOutbound: NettyOutbound): Mono<Void> =
86 withNewClientContextFrom(nettyInbound, nettyOutbound)
88 logger.debug(clientContext::fullMdc, Marker.Entry) { "Client connection request received" }
90 clientContext.clientAddress
91 .map { acceptIfNotLocalConnection(it, clientContext, nettyInbound) }
93 logger.warn(clientContext::fullMdc) {
94 "Client address could not be resolved. Discarding connection"
96 nettyInbound.closeConnectionAndReturn(Mono.empty())
100 private fun acceptIfNotLocalConnection(address: InetAddress,
101 clientContext: ClientContext,
102 nettyInbound: NettyInbound): Mono<Void> =
103 if (address.isLocalClientAddress()) {
104 logger.debug(clientContext) {
105 "Client address resolved to localhost. Discarding connection as suspected healthcheck"
107 nettyInbound.closeConnectionAndReturn(Mono.empty<Void>())
109 acceptClientConnection(clientContext, nettyInbound)
112 private fun acceptClientConnection(clientContext: ClientContext, nettyInbound: NettyInbound): Mono<Void> {
113 metrics.notifyClientConnected()
114 logger.info(clientContext::fullMdc) { "Handling new client connection" }
115 return collectorProvider(clientContext).fold(
117 logger.warn(clientContext::fullMdc) { "Collector is not ready. Closing connection" }
118 nettyInbound.closeConnectionAndReturn(Mono.empty<Void>())
120 handleClient(clientContext, nettyInbound)
124 private fun handleClient(clientContext: ClientContext,
125 nettyInbound: NettyInbound): (Collector) -> Mono<Void> = { collector ->
126 withConnectionFrom(nettyInbound) { connection ->
128 .configureIdleTimeout(clientContext, serverConfig.idleTimeout)
129 .logConnectionClosed(clientContext)
131 collector.handleConnection(nettyInbound.createDataStream())
135 private fun Connection.configureIdleTimeout(ctx: ClientContext, timeout: Duration): Connection =
136 onReadIdle(timeout.toMillis()) {
138 "Idle timeout of ${timeout.seconds} s reached. Closing connection from ${address()}..."
140 disconnectClient(ctx)
143 private fun Connection.disconnectClient(ctx: ClientContext) =
144 closeChannelAndThen {
146 logger.debug(ctx::fullMdc, Marker.Exit) { "Channel closed successfully." }
148 logger.warn(ctx::fullMdc, Marker.Exit, { "Channel close failed" }, it.cause())
151 private fun Connection.logConnectionClosed(ctx: ClientContext): Connection =
153 metrics.notifyClientDisconnected()
154 logger.info(ctx::fullMdc, Marker.Exit) { "Connection has been closed" }
158 private val logger = Logger(NettyTcpServer::class)