cc21992c252d985cdfbb93067a4139fcd74a0ada
[dmaap/datarouter.git] / datarouter-node / src / main / java / org / onap / dmaap / datarouter / node / NodeUtils.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
4  * * ===========================================================================
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
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
10  * *
11  *  *      http://www.apache.org/licenses/LICENSE-2.0
12  * *
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====================================================
19  * *
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  * *
22  ******************************************************************************/
23
24
25 package org.onap.dmaap.datarouter.node;
26
27 import static com.att.eelf.configuration.Configuration.MDC_SERVER_FQDN;
28 import static com.att.eelf.configuration.Configuration.MDC_SERVER_IP_ADDRESS;
29 import static com.att.eelf.configuration.Configuration.MDC_SERVICE_NAME;
30
31 import com.att.eelf.configuration.EELFLogger;
32 import com.att.eelf.configuration.EELFManager;
33 import java.io.FileInputStream;
34 import java.io.IOException;
35 import java.net.InetAddress;
36 import java.security.KeyStore;
37 import java.security.MessageDigest;
38 import java.security.cert.X509Certificate;
39 import java.text.SimpleDateFormat;
40 import java.util.Date;
41 import java.util.Enumeration;
42 import java.util.TimeZone;
43 import org.apache.commons.codec.binary.Base64;
44 import org.apache.log4j.Logger;
45 import org.onap.dmaap.datarouter.node.eelf.EelfMsgs;
46 import org.slf4j.MDC;
47
48 import javax.servlet.http.HttpServletResponse;
49
50 /**
51  * Utility functions for the data router node
52  */
53 public class NodeUtils {
54
55     private static EELFLogger eelfLogger = EELFManager.getInstance()
56         .getLogger("org.onap.dmaap.datarouter.node.NodeUtils");
57     private static Logger nodeUtilsLogger = Logger.getLogger("org.onap.dmaap.datarouter.node.NodeUtils");
58
59     private NodeUtils() {
60     }
61
62     /**
63      * Base64 encode a byte array
64      *
65      * @param raw The bytes to be encoded
66      * @return The encoded string
67      */
68     public static String base64Encode(byte[] raw) {
69         return (Base64.encodeBase64String(raw));
70     }
71
72     /**
73      * Given a user and password, generate the credentials
74      *
75      * @param user User name
76      * @param password User password
77      * @return Authorization header value
78      */
79     public static String getAuthHdr(String user, String password) {
80         if (user == null || password == null) {
81             return (null);
82         }
83         return ("Basic " + base64Encode((user + ":" + password).getBytes()));
84     }
85
86     /**
87      * Given a node name, generate the credentials
88      *
89      * @param node Node name
90      */
91     public static String getNodeAuthHdr(String node, String key) {
92         try {
93             MessageDigest md = MessageDigest.getInstance("SHA");
94             md.update(key.getBytes());
95             md.update(node.getBytes());
96             md.update(key.getBytes());
97             return (getAuthHdr(node, base64Encode(md.digest())));
98         } catch (Exception exception) {
99             nodeUtilsLogger
100                 .error("Exception in generating Credentials for given node name:= " + exception.toString(), exception);
101             return (null);
102         }
103     }
104
105     /**
106      * Given a keystore file and its password, return the value of the CN of the first private key entry with a
107      * certificate.
108      *
109      * @param kstype The type of keystore
110      * @param ksfile The file name of the keystore
111      * @param kspass The password of the keystore
112      * @return CN of the certificate subject or null
113      */
114     public static String getCanonicalName(String kstype, String ksfile, String kspass) {
115         KeyStore ks;
116         try {
117             ks = KeyStore.getInstance(kstype);
118             try (FileInputStream fileInputStream = new FileInputStream(ksfile)) {
119                 ks.load(fileInputStream, kspass.toCharArray());
120             } catch (IOException ioException) {
121                 nodeUtilsLogger.error("IOException occurred while opening FileInputStream: " + ioException.getMessage(),
122                     ioException);
123                 return (null);
124             }
125         } catch (Exception e) {
126             setIpAndFqdnForEelf("getCanonicalName");
127             eelfLogger.error(EelfMsgs.MESSAGE_KEYSTORE_LOAD_ERROR, ksfile, e.toString());
128             nodeUtilsLogger.error("NODE0401 Error loading my keystore file + " + ksfile + " " + e.toString(), e);
129             return (null);
130         }
131         return (getCanonicalName(ks));
132     }
133
134     /**
135      * Given a keystore, return the value of the CN of the first private key entry with a certificate.
136      *
137      * @param ks The KeyStore
138      * @return CN of the certificate subject or null
139      */
140     public static String getCanonicalName(KeyStore ks) {
141         try {
142             Enumeration<String> aliases = ks.aliases();
143             while (aliases.hasMoreElements()) {
144                 String s = aliases.nextElement();
145                 if (ks.entryInstanceOf(s, KeyStore.PrivateKeyEntry.class)) {
146                     X509Certificate c = (X509Certificate) ks.getCertificate(s);
147                     if (c != null) {
148                         String subject = c.getSubjectX500Principal().getName();
149                         String[] parts = subject.split(",");
150                         if (parts.length < 1) {
151                             return (null);
152                         }
153                         subject = parts[5].trim();
154                         if (!subject.startsWith("CN=")) {
155                             return (null);
156
157                         }
158                         return (subject.substring(3));
159                     }
160                 }
161             }
162         } catch (Exception e) {
163             nodeUtilsLogger.error("NODE0402 Error extracting my name from my keystore file " + e.toString(), e);
164         }
165         return (null);
166     }
167
168     /**
169      * Given a string representation of an IP address, get the corresponding byte array
170      *
171      * @param ip The IP address as a string
172      * @return The IP address as a byte array or null if the address is invalid
173      */
174     public static byte[] getInetAddress(String ip) {
175         try {
176             return (InetAddress.getByName(ip).getAddress());
177         } catch (Exception exception) {
178             nodeUtilsLogger
179                 .error("Exception in generating byte array for given IP address := " + exception.toString(), exception);
180         }
181         return (null);
182     }
183
184     /**
185      * Given a uri with parameters, split out the feed ID and file ID
186      */
187     public static String[] getFeedAndFileID(String uriandparams) {
188         int end = uriandparams.length();
189         int i = uriandparams.indexOf('#');
190         if (i != -1 && i < end) {
191             end = i;
192         }
193         i = uriandparams.indexOf('?');
194         if (i != -1 && i < end) {
195             end = i;
196         }
197         end = uriandparams.lastIndexOf('/', end);
198         if (end < 2) {
199             return (null);
200         }
201         i = uriandparams.lastIndexOf('/', end - 1);
202         if (i == -1) {
203             return (null);
204         }
205         return (new String[]{uriandparams.substring(i + 1, end), uriandparams.substring(end + 1)});
206     }
207
208     /**
209      * Escape fields that might contain vertical bar, backslash, or newline by replacing them with backslash p,
210      * backslash e and backslash n.
211      */
212     public static String loge(String s) {
213         if (s == null) {
214             return (s);
215         }
216         return (s.replaceAll("\\\\", "\\\\e").replaceAll("\\|", "\\\\p").replaceAll("\n", "\\\\n"));
217     }
218
219     /**
220      * Undo what loge does.
221      */
222     public static String unloge(String s) {
223         if (s == null) {
224             return (s);
225         }
226         return (s.replaceAll("\\\\p", "\\|").replaceAll("\\\\n", "\n").replaceAll("\\\\e", "\\\\"));
227     }
228
229     /**
230      * Format a logging timestamp as yyyy-mm-ddThh:mm:ss.mmmZ
231      */
232     public static String logts(long when) {
233         return (logts(new Date(when)));
234     }
235
236     /**
237      * Format a logging timestamp as yyyy-mm-ddThh:mm:ss.mmmZ
238      */
239     public static synchronized String logts(Date when) {
240         SimpleDateFormat logDate = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");
241         logDate.setTimeZone(TimeZone.getTimeZone("GMT"));
242         return (logDate.format(when));
243     }
244
245     /* Method prints method name, server FQDN and IP Address of the machine in EELF logs
246      * @Method - setIpAndFqdnForEelf - Rally:US664892
247      * @Params - method, prints method name in EELF log.
248      */
249     public static void setIpAndFqdnForEelf(String method) {
250         MDC.clear();
251         MDC.put(MDC_SERVICE_NAME, method);
252         try {
253             MDC.put(MDC_SERVER_FQDN, InetAddress.getLocalHost().getHostName());
254             MDC.put(MDC_SERVER_IP_ADDRESS, InetAddress.getLocalHost().getHostAddress());
255         } catch (Exception exception) {
256             nodeUtilsLogger
257                 .error("Exception in generating byte array for given IP address := " + exception.toString(), exception);
258         }
259
260     }
261
262     public static void sendResponseError(HttpServletResponse response, int errorCode, Logger intlogger) {
263         try {
264             response.sendError(errorCode);
265         } catch (IOException ioe) {
266             intlogger.error("IOException" + ioe.getMessage());
267         }
268     }
269
270
271 }