summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_javalibrary/evel_javalib2/src/main/java/evel_javalibrary/att/com/AgentMain.java
blob: 5e21c6c5ba8170fd6a889b2b1ff8ab455c44b66d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
package evel_javalibrary.att.com;

/**************************************************************************//**
 * @file
 * Header for EVEL library
 *
 * This file implements the EVEL library which is intended to provide a
 * simple wrapper around the complexity of AT&T's Vendor Event Listener API so
 * that VNFs can use it without worrying about details of the API transport.
 *
 * License
 * -------
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

import org.apache.log4j.Logger;
import org.apache.log4j.Level;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.security.KeyStore;

import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.KeyManagerFactory;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import javax.net.ssl.TrustManagerFactory;

import org.apache.log4j.BasicConfigurator;

/**
 * @author Gokul Singaraju
 */


public class AgentMain {

    /**************************************************************************//**
     * Error codes
     *
     * Error codes for EVEL low level interface
     *****************************************************************************/
    public enum EVEL_ERR_CODES {
        EVEL_SUCCESS,                   /** The operation was successful.          */
        EVEL_ERR_GEN_FAIL,              /** Non-specific failure.                  */
        EVEL_CURL_LIBRARY_FAIL,         /** A cURL library operation failed.       */
        EVEL_PTHREAD_LIBRARY_FAIL,      /** A Posix threads operation failed.      */
        EVEL_OUT_OF_MEMORY,             /** A memory allocation failure occurred.  */
        EVEL_EVENT_BUFFER_FULL,         /** Too many events in the ring-buffer.    */
        EVEL_EVENT_HANDLER_INACTIVE,    /** Attempt to raise event when inactive.  */
        EVEL_NO_METADATA,               /** Failed to retrieve OpenStack metadata. */
        EVEL_BAD_METADATA,              /** OpenStack metadata invalid format.     */
        EVEL_BAD_JSON_FORMAT,           /** JSON failed to parse correctly.        */
        EVEL_JSON_KEY_NOT_FOUND,        /** Failed to find the specified JSON key. */
        EVEL_MAX_ERROR_CODES            /** Maximum number of valid error codes.   */
    }

    private static final Logger logger = Logger.getLogger(AgentMain.class);

    private static String url = null;
    private static URL vesurl = null;
    private static URL vesbatchurl = null;
    private static HttpURLConnection con = null;
    private static String userpass = null;
    private static String keystore_pth = null;
    private static String jks_passw = null;
    private static String key_passw = null;
    private static String version = "5";

    /* RingBuffer to forward messages on sending AgentDispatcher thread */
    private static RingBuffer ringb = new RingBuffer(100);
    private static volatile boolean should_stop = false;

    private static Thread thr;

    /* AgentDispatcher loops on messages in RingBuffer and POSTs them
     * to external Collector
     */
    private static class AgentDispatcher  implements Runnable {

        private String readStream(InputStream stream) throws Exception {
            StringBuilder builder = new StringBuilder();
            try (BufferedReader in = new BufferedReader(new InputStreamReader(stream))) {
                String line;
                while ((line = in.readLine()) != null) {
                    builder.append(line); // + "\r\n"(no need, json has no line breaks!)
                }
                in.close();
            }
            logger.error("Resp: " + builder.toString());
            //System.out.println("Resp: " + builder.toString());
            return builder.toString();
        }

        // Create a trust manager that does not validate certificate chains
        TrustManager[] trustAllCerts = new TrustManager[] { 
            new X509TrustManager() {     
                public java.security.cert.X509Certificate[] getAcceptedIssuers() { 
                    return new java.security.cert.X509Certificate[0];
                } 
                public void checkClientTrusted( 
                        java.security.cert.X509Certificate[] certs, String authType) {
                        } 
                public void checkServerTrusted( 
                        java.security.cert.X509Certificate[] certs, String authType) {
                        }
            } 
        }; 

        private void send_object(EvelObject tosend){
            String datatosend = (String) tosend.datastr;
            //process data
            logger.trace(url + "Got an event size "+datatosend.length());
            logger.trace(datatosend);

            try {

                if( tosend.type == false)
                    con = (HttpURLConnection) vesurl.openConnection();
                else
                    con = (HttpURLConnection) vesbatchurl.openConnection();

                if (con instanceof HttpsURLConnection) {
                    HttpsURLConnection httpsConnection = (HttpsURLConnection) con;

                    try { 

                        SSLContext sc = SSLContext.getInstance("TLSv1.2");
                        /* Get the JKS contents */
                        if( !keystore_pth.isEmpty() && !jks_passw.isEmpty() && !key_passw.isEmpty() )
                        {
                            final KeyStore keyStore = KeyStore.getInstance("JKS"); 
                            try (final InputStream is = new FileInputStream(keystore_pth)) { 
                                keyStore.load(is, jks_passw.toCharArray()); 
                            } 
                            final KeyManagerFactory kmf = KeyManagerFactory.getInstance(KeyManagerFactory 
                                    .getDefaultAlgorithm()); 
                            kmf.init(keyStore, key_passw.toCharArray()); 
                            final TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory 
                                    .getDefaultAlgorithm()); 
                            tmf.init(keyStore);
                            sc.init(kmf.getKeyManagers(), tmf.getTrustManagers(), new java.security.SecureRandom());
                        }
                        else
                        {
                            // Init the SSLContext with a TrustManager[] and SecureRandom()
                            sc.init(null, trustAllCerts, new java.security.SecureRandom());
                        }
                        httpsConnection.setDefaultHostnameVerifier(new HostnameVerifier()
                                {
                                    public boolean verify(String hostname, SSLSession session)
                        {
                            return true;
                        }
                        });
                        httpsConnection.setSSLSocketFactory(sc.getSocketFactory());
                        con  = httpsConnection;

                    }
                    catch (final Exception exc) { 
                        exc.printStackTrace(); 
                        logger.error("SSL/TLS connection error");
                    }
                }

                //add reuqest header
                con.setRequestMethod("POST");
                // No caching, we want the real thing.
                con.setUseCaches (false);
                // Specify the content type.
                con.setRequestProperty("Content-Type", "application/json");
                con.setInstanceFollowRedirects( false );
                //Basic username password authentication
                String basicAuth = "Basic " + javax.xml.bind.DatatypeConverter.printBase64Binary(userpass.getBytes("UTF-8"));
                con.setRequestProperty ("Authorization", basicAuth);

                con.setReadTimeout(15000 /* milliseconds */);
                con.setConnectTimeout(15000 /* milliseconds */);
                // Send post request
                con.setDoOutput(true);
                con.setDoInput(true);

                con.setFixedLengthStreamingMode(datatosend.length());
                OutputStream os = con.getOutputStream();
                BufferedWriter writer = new BufferedWriter(
                        new OutputStreamWriter(os, "UTF-8"));
                //Call writer POST
                writer.write(datatosend);
                writer.flush();
                writer.close();
                os.close();	
                //Handle the response code for POST request
                int respCode = con.getResponseCode();
                logger.trace(url + "Connection HTTP Response code :"+respCode);
                if(respCode < HttpURLConnection.HTTP_OK ) {
                    logger.trace(url + " **INFO**");
                }
                else if(respCode >= HttpURLConnection.HTTP_OK && respCode < HttpURLConnection.HTTP_MULT_CHOICE )
                {
                    logger.trace(url + " **OK**");
                }
                else if(respCode >= HttpURLConnection.HTTP_MULT_CHOICE  && respCode < HttpURLConnection.HTTP_BAD_REQUEST )
                {
                    logger.warn(url + " **REDIRECTION**");
                }
                else if(respCode >= HttpURLConnection.HTTP_BAD_REQUEST )
                {
                    logger.warn(url + " **SERVER ERROR**");

                    InputStream es = con.getErrorStream();
                    readStream(es);
                }


            } catch (IOException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

        public void run() {

            String datatosend=null;  
            while (!should_stop){
                EvelObject tosend = ringb.take();
                if( tosend != null && ((datatosend = (String) tosend.datastr) != null))
                {
                    send_object(tosend);
                }
                else
                {
                    logger.trace(url + "Waiting for events");
                    try {
                        Thread.sleep(5);
                    } catch (InterruptedException e) {
                        Thread.currentThread().interrupt();
                        logger.trace("Interrupted on "+url);
                        System.out.println("Interrupted on "+url);
                        //e.printStackTrace();
                    }
                }
            }//end while

            logger.trace("Caught stop event, emptying buffer before exiting");

            while (!ringb.isEmpty()){
                EvelObject tosend = ringb.take();
                if( tosend != null && ((datatosend = (String) tosend.datastr) != null))
                {
                    send_object(tosend);
                }
            }
            logger.trace("Send buffer is empty, shutting down");
        }//end run
    }//end AgentDispatcher

    // Validate URL
    public static boolean isValidURL(String urlStr) {
        try {
            URL url = new URL(urlStr);
            return true;
        }
        catch (MalformedURLException e) {
            return false;
        }
    }

    /**************************************************************************//**
     * Library initialization.
     *
     * Initialize the EVEL library.
     *
     * @note  This function initializes the Java EVEL library interfaces.
     *        Validates input parameters and starts the AgentDispatcher thread
     *
     * @param   event_api_url    The API's URL.
     * @param   port    The API's port.
     * @param   path    The optional path (may be NULL).
     * @param   topic   The optional topic part of the URL (may be NULL).
     * @param   username  Username for Basic Authentication of requests.
     * @param   password  Password for Basic Authentication of requests.
     * @param   Level     Java Log levels.
     *
     * @returns Status code
     * @retval  EVEL_SUCCESS      On success
     * @retval  ::EVEL_ERR_CODES  On failure.
     *****************************************************************************/
    public static EVEL_ERR_CODES evel_initialize(
            String event_api_url,
            int port,
            String path,
            String topic,
            String username,
            String password,
            String keystore_path,
            String jks_password,
            String key_password,
            Level level) throws IOException
    {
        EVEL_ERR_CODES rc = EVEL_ERR_CODES.EVEL_SUCCESS;

        EVEL_ENTER();

        BasicConfigurator.configure();

        /***************************************************************************/
        /* Check assumptions.                                                      */
        /***************************************************************************/
        assert(event_api_url != null);
        assert(port > 1024);
        assert(username != null);

        logger.setLevel(level);

        if( !isValidURL(event_api_url) ){
            System.out.println("Invalid Event API URL");
            logger.error("Invalid Event API URL");
            rc = EVEL_ERR_CODES.EVEL_ERR_GEN_FAIL;
            System.exit(1);
        }

        if(path == null){
            path = "";
        } else {
            version += "/example_vnf";
        }

        keystore_pth = keystore_path;
        jks_passw = jks_password;
        key_passw = key_password;

        url = event_api_url+":"+Integer.toString(port)+path+"/eventListener/v"+version;
        vesurl = null;
        try {
            vesurl = new URL(url);
            vesbatchurl = new URL(url+"/eventBatch");
        } catch (MalformedURLException e) {
            logger.info("Error in url input");
            e.printStackTrace();
            System.exit(1);
        }
        userpass = username + ":" + password;

        logger.info("Starting Agent Dispatcher thread");
        thr = new Thread(new AgentDispatcher());
        thr.start();

        EVEL_EXIT();
        return rc; 

    }

    public static void evel_shutdown() {
        if(should_stop){
            logger.warn("evel_shutdown was called whilst the agent was already stopping - this has no effect");
        }
        should_stop = true;
        logger.debug("Called evel_shutdown, will shutdown when the buffer is empty");
    }


    private static void EVEL_EXIT() {
        logger.trace("Exit VES Agent Main");
    }

    private static void EVEL_ENTER() {
        logger.trace("Enter VES Agent Main");
    }

    /**************************************************************************//**
     * Handle user formatted post message
     *
     * @note  This function handles VES 5.x formatted messages from all valid
     *        Domains and stores them in RingBuffer.
     *
     * @param   obj     VES 5.x formatted user messages with common header
     *                  and optional specialized body
     *
     * @retval  boolean    True  On successful acceptance False on failure
     *****************************************************************************/

    public static boolean evel_post_event(EvelHeader obj)
    {
        if (should_stop){
            logger.error("evel_post_event called whilst agent is shutting down - event will not be posted");
            return false;
        }
        String data = obj.evel_json_encode_event().toString();
        EvelObject myobj = new EvelObject(data,false);
        boolean ret = ringb.put(myobj);
        logger.info("Evel Post event ret:"+ret);
        return ret;
    }


    /**************************************************************************//**
     * Handle user formatted post message
     *
     * @note  This function handles VES 5.x formatted messages from all valid
     *        Domains and stores them in RingBuffer.
     *
     * @param   obj     VES 5.x formatted user messages with common header
     *                  and optional specialized body
     *
     * @retval  boolean    True  On successful acceptance False on failure
     *****************************************************************************/

    public static boolean evel_post_event(EvelBatch obj)
    {
        if (should_stop){
            logger.error("evel_post_event called whilst agent is shutting down - event will not be posted");
            return false;
        }
        String data = obj.evel_json_encode_event().toString();
        EvelObject myobj = new EvelObject(data,true);
        boolean ret = ringb.put(myobj);
        logger.info("Evel Post batch event ret:"+ret);
        return ret;
    }
}