BUG-3438 Prevent null pointer for keepalives(netconf-connector)
[controller.git] / opendaylight / md-sal / sal-netconf-connector / src / main / java / org / opendaylight / controller / sal / connect / netconf / sal / KeepaliveSalFacade.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.connect.netconf.sal;
9
10 import static org.opendaylight.controller.sal.connect.netconf.util.NetconfBaseOps.getSourceNode;
11 import static org.opendaylight.controller.sal.connect.netconf.util.NetconfMessageTransformUtil.NETCONF_GET_CONFIG_QNAME;
12 import static org.opendaylight.controller.sal.connect.netconf.util.NetconfMessageTransformUtil.NETCONF_RUNNING_QNAME;
13 import static org.opendaylight.controller.sal.connect.netconf.util.NetconfMessageTransformUtil.toPath;
14
15 import com.google.common.base.Preconditions;
16 import com.google.common.util.concurrent.CheckedFuture;
17 import com.google.common.util.concurrent.FutureCallback;
18 import com.google.common.util.concurrent.Futures;
19 import java.util.concurrent.ScheduledExecutorService;
20 import java.util.concurrent.ScheduledFuture;
21 import java.util.concurrent.TimeUnit;
22 import javax.annotation.Nonnull;
23 import javax.annotation.Nullable;
24 import org.opendaylight.controller.md.sal.dom.api.DOMNotification;
25 import org.opendaylight.controller.md.sal.dom.api.DOMRpcAvailabilityListener;
26 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
27 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
28 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
29 import org.opendaylight.controller.sal.connect.api.RemoteDeviceHandler;
30 import org.opendaylight.controller.sal.connect.netconf.listener.NetconfDeviceCommunicator;
31 import org.opendaylight.controller.sal.connect.netconf.listener.NetconfSessionPreferences;
32 import org.opendaylight.controller.sal.connect.netconf.util.NetconfMessageTransformUtil;
33 import org.opendaylight.controller.sal.connect.util.RemoteDeviceId;
34 import org.opendaylight.yangtools.concepts.ListenerRegistration;
35 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
36 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
37 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
38 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
39 import org.slf4j.Logger;
40 import org.slf4j.LoggerFactory;
41
42 /**
43  * SalFacade proxy that invokes keepalive RPCs to prevent session shutdown from remote device
44  * and to detect incorrect session drops (netconf session is inactive, but TCP/SSH connection is still present).
45  * The keepalive RPC is a get-config with empty filter.
46  */
47 public final class KeepaliveSalFacade implements RemoteDeviceHandler<NetconfSessionPreferences> {
48
49     private static final Logger LOG = LoggerFactory.getLogger(KeepaliveSalFacade.class);
50
51     // 2 minutes keepalive delay by default
52     private static final long DEFAULT_DELAY = TimeUnit.MINUTES.toSeconds(2);
53
54     private final RemoteDeviceId id;
55     private final RemoteDeviceHandler<NetconfSessionPreferences> salFacade;
56     private final ScheduledExecutorService executor;
57     private final long keepaliveDelaySeconds;
58     private final ResetKeepalive resetKeepaliveTask;
59
60     private volatile NetconfDeviceCommunicator listener;
61     private volatile ScheduledFuture<?> currentKeepalive;
62     private volatile DOMRpcService currentDeviceRpc;
63
64     public KeepaliveSalFacade(final RemoteDeviceId id, final RemoteDeviceHandler<NetconfSessionPreferences> salFacade,
65                               final ScheduledExecutorService executor, final long keepaliveDelaySeconds) {
66         this.id = id;
67         this.salFacade = salFacade;
68         this.executor = executor;
69         this.keepaliveDelaySeconds = keepaliveDelaySeconds;
70         this.resetKeepaliveTask = new ResetKeepalive();
71     }
72
73     public KeepaliveSalFacade(final RemoteDeviceId id, final RemoteDeviceHandler<NetconfSessionPreferences> salFacade,
74                               final ScheduledExecutorService executor) {
75         this(id, salFacade, executor, DEFAULT_DELAY);
76     }
77
78     /**
79      * Set the netconf session listener whenever ready
80      *
81      * @param listener netconf session listener
82      */
83     public void setListener(final NetconfDeviceCommunicator listener) {
84         this.listener = listener;
85     }
86
87     /**
88      * Just cancel current keepalive task.
89      * If its already started, let it finish ... not such a big deal.
90      *
91      * Then schedule next keepalive.
92      */
93     private void resetKeepalive() {
94         LOG.trace("{}: Resetting netconf keepalive timer", id);
95         currentKeepalive.cancel(false);
96         scheduleKeepalive();
97     }
98
99     /**
100      * Cancel current keepalive and also reset current deviceRpc
101      */
102     private void stopKeepalives() {
103         if(currentKeepalive != null) {
104             currentKeepalive.cancel(false);
105         }
106         currentDeviceRpc = null;
107     }
108
109     private void reconnect() {
110         Preconditions.checkState(listener != null, "%s: Unable to reconnect, session listener is missing", id);
111         stopKeepalives();
112         LOG.info("{}: Reconnecting inactive netconf session", id);
113         listener.disconnect();
114     }
115
116     @Override
117     public void onDeviceConnected(final SchemaContext remoteSchemaContext, final NetconfSessionPreferences netconfSessionPreferences, final DOMRpcService deviceRpc) {
118         this.currentDeviceRpc = deviceRpc;
119         final DOMRpcService deviceRpc1 = new KeepaliveDOMRpcService(deviceRpc, resetKeepaliveTask);
120         salFacade.onDeviceConnected(remoteSchemaContext, netconfSessionPreferences, deviceRpc1);
121
122         LOG.debug("{}: Netconf session initiated, starting keepalives", id);
123         scheduleKeepalive();
124     }
125
126     private void scheduleKeepalive() {
127         Preconditions.checkState(currentDeviceRpc != null);
128         LOG.trace("{}: Scheduling next keepalive in {} {}", id, keepaliveDelaySeconds, TimeUnit.SECONDS);
129         currentKeepalive = executor.schedule(new Keepalive(), keepaliveDelaySeconds, TimeUnit.SECONDS);
130     }
131
132     @Override
133     public void onDeviceDisconnected() {
134         stopKeepalives();
135         salFacade.onDeviceDisconnected();
136     }
137
138     @Override
139     public void onDeviceFailed(final Throwable throwable) {
140         stopKeepalives();
141         salFacade.onDeviceFailed(throwable);
142     }
143
144     @Override
145     public void onNotification(final DOMNotification domNotification) {
146         resetKeepalive();
147         salFacade.onNotification(domNotification);
148     }
149
150     @Override
151     public void close() {
152         stopKeepalives();
153         salFacade.close();
154     }
155
156     // Keepalive RPC static resources
157     private static final SchemaPath PATH = toPath(NETCONF_GET_CONFIG_QNAME);
158     private static final ContainerNode KEEPALIVE_PAYLOAD =
159             NetconfMessageTransformUtil.wrap(NETCONF_GET_CONFIG_QNAME, getSourceNode(NETCONF_RUNNING_QNAME), NetconfMessageTransformUtil.EMPTY_FILTER);
160
161     /**
162      * Invoke keepalive RPC and check the response. In case of any received response the keepalive
163      * is considered successful and schedules next keepalive with a fixed delay. If the response is unsuccessful (no
164      * response received, or the rcp could not even be sent) immediate reconnect is triggered as netconf session
165      * is considered inactive/failed.
166      */
167     private class Keepalive implements Runnable, FutureCallback<DOMRpcResult> {
168
169         @Override
170         public void run() {
171             LOG.trace("{}: Invoking keepalive RPC", id);
172
173             try {
174                 Futures.addCallback(currentDeviceRpc.invokeRpc(PATH, KEEPALIVE_PAYLOAD), this);
175             } catch (NullPointerException e) {
176                 LOG.debug("{}: Skipping keepalive while reconnecting", id);
177                 // Empty catch block intentional
178                 // Do nothing. The currentDeviceRpc was null and it means we hit the reconnect window and
179                 // attempted to send keepalive while we were reconnecting. Next keepalive will be scheduled
180                 // after reconnect so no action necessary here.
181             }
182         }
183
184         @Override
185         public void onSuccess(final DOMRpcResult result) {
186             LOG.debug("{}: Keepalive RPC successful with response: {}", id, result.getResult());
187             scheduleKeepalive();
188         }
189
190         @Override
191         public void onFailure(@Nonnull final Throwable t) {
192             LOG.warn("{}: Keepalive RPC failed. Reconnecting netconf session.", id, t);
193             reconnect();
194         }
195     }
196
197     /**
198      * Reset keepalive after each RPC response received
199      */
200     private class ResetKeepalive implements com.google.common.util.concurrent.FutureCallback<DOMRpcResult> {
201         @Override
202         public void onSuccess(@Nullable final DOMRpcResult result) {
203             // No matter what response we got, rpc-reply or rpc-error, we got it from device so the netconf session is OK
204             resetKeepalive();
205         }
206
207         @Override
208         public void onFailure(@Nonnull final Throwable t) {
209             // User/Application RPC failed (The RPC did not reach the remote device or .. TODO what other reasons could cause this ?)
210             // There is no point in keeping this session. Reconnect.
211             LOG.warn("{}: Rpc failure detected. Reconnecting netconf session", id, t);
212             reconnect();
213         }
214     }
215
216     /**
217      * DOMRpcService proxy that attaches reset-keepalive-task to each RPC invocation.
218      */
219     private static final class KeepaliveDOMRpcService implements DOMRpcService {
220
221         private final DOMRpcService deviceRpc;
222         private ResetKeepalive resetKeepaliveTask;
223
224         public KeepaliveDOMRpcService(final DOMRpcService deviceRpc, final ResetKeepalive resetKeepaliveTask) {
225             this.deviceRpc = deviceRpc;
226             this.resetKeepaliveTask = resetKeepaliveTask;
227         }
228
229         @Nonnull
230         @Override
231         public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(@Nonnull final SchemaPath type, final NormalizedNode<?, ?> input) {
232             final CheckedFuture<DOMRpcResult, DOMRpcException> domRpcResultDOMRpcExceptionCheckedFuture = deviceRpc.invokeRpc(type, input);
233             Futures.addCallback(domRpcResultDOMRpcExceptionCheckedFuture, resetKeepaliveTask);
234             return domRpcResultDOMRpcExceptionCheckedFuture;
235         }
236
237         @Override
238         public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(@Nonnull final T listener) {
239             // There is no real communication with the device (yet), no reset here
240             return deviceRpc.registerRpcListener(listener);
241         }
242     }
243 }