aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-PDP-REST/src/main/java/org/onap/policy/pdp/rest/XACMLPdpRegisterThread.java
blob: 56d82bd3f9e6c5814b81c11fcfdfbe1696057eb7 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP-PDP-REST
 * ================================================================================
 * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
 * Modified Copyright (C) 2018 Samsung Electronics Co., Ltd.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */


package org.onap.policy.pdp.rest;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.util.Base64;
import java.util.Properties;
import java.util.UUID;

import org.apache.commons.io.IOUtils;
import org.onap.policy.pdp.rest.XACMLPdpServlet.PutRequest;
import org.onap.policy.rest.XacmlRestProperties;

import org.onap.policy.xacml.api.XACMLErrorConstants;
import com.att.research.xacml.util.XACMLProperties;

import org.onap.policy.common.logging.OnapLoggingContext;
import org.onap.policy.common.logging.eelf.PolicyLogger;
import org.onap.policy.common.logging.flexlogger.*;

public class XACMLPdpRegisterThread implements Runnable {
    private static final Logger LOGGER	= FlexLogger.getLogger(XACMLPdpRegisterThread.class);
    private static final Logger auditLogger = FlexLogger.getLogger("auditLogger");
    private OnapLoggingContext baseLoggingContext = null;



    public volatile boolean isRunning = false;

    public XACMLPdpRegisterThread(OnapLoggingContext baseLoggingContext) {
        this.baseLoggingContext = baseLoggingContext;
    }

    public synchronized boolean isRunning() {
        return this.isRunning;
    }

    public synchronized void terminate() {
        this.isRunning = false;
    }

    /**
     *
     * This is our thread that runs on startup to tell the PAP server we are up-and-running.
     *
     */
    @Override
    public void run() {
        synchronized(this) {
            this.isRunning = true;
        }
        // get a new logging context for the thread
        OnapLoggingContext loggingContext = new OnapLoggingContext(baseLoggingContext);
        loggingContext.setServiceName("PDP:PAP.register");
        //are we registered with at least one
        boolean registered = false;
        boolean interrupted = false;
        /*
        int seconds;
        try {
            seconds = Integer.parseInt(XACMLProperties.getProperty(XacmlRestProperties.PROP_PDP_REGISTER_SLEEP));
        } catch (NumberFormatException e) {
            LOGGER.error( XACMLErrorConstants.ERROR_SYSTEM_ERROR +"REGISTER_SLEEP: ", e);
            seconds = 5;
        }
        if (seconds < 5) {
            seconds = 5;
        }
        int retries;
        try {
            retries = Integer.parseInt(XACMLProperties.getProperty(XacmlRestProperties.PROP_PDP_REGISTER_RETRIES));
        } catch (NumberFormatException e) {
            LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR +" REGISTER_SLEEP: ", e);
            retries = -1;
        }
        */
        PapUrlResolver papUrls = PapUrlResolver.getInstance();
        //while (! registered && ! interrupted && this.isRunning()) {
        String tempRootPoliciesProperty = XACMLProperties.getProperty(XACMLProperties.PROP_ROOTPOLICIES);
        String tempReferencedPoliciesProperty = XACMLProperties.getProperty(XACMLProperties.PROP_REFERENCEDPOLICIES);
        Properties tempPipConfigProperties = new Properties();
        try(InputStream pipFile = Files.newInputStream(XACMLPdpLoader.getPIPConfig())){
            tempPipConfigProperties.load(pipFile);
        } catch(Exception e){
            LOGGER.error("Failed to open PIP property file", e);
        }
        while(papUrls.hasMoreUrls()){
            String papID = papUrls.getUserId();
            String papPass = papUrls.getPass();
            Base64.Encoder encoder = Base64.getEncoder();
            String encoding = encoder.encodeToString((papID+":"+papPass).getBytes(StandardCharsets.UTF_8));
            HttpURLConnection connection = null;
            try {
                // get a new transaction (request) ID and update the logging context.
                // each time through the outer loop is considered a new transaction.
                // each time through the inner loop (which handles redirects) is a
                // continuation of the same transaction.
                UUID requestID = UUID.randomUUID();
                loggingContext.setRequestId(requestID.toString());
                //PolicyLogger.info("Request Id generated in XACMLPdpRegisterThread under XACML-PDP-REST");
                loggingContext.transactionStarted();
                //
                // Get the list of PAP Servlet URLs from the property file
                //
                //String papUrlList = XACMLProperties.getProperty(XacmlRestProperties.PROP_PAP_URL);
                //String[] papUrls = papUrlList.split(",");
                //PapUrlResolver.setPapUrls(papUrls);
                URL url = new URL(papUrls.getUrl());
                LOGGER.info("Registering with " + url.toString());
                //PolicyLogger.info("new transaction (request) ID and update to logging context in XACMLPdpRegisterThread");
                boolean finished = false;
                while (! finished) {
                    //
                    // Open up the connection
                    //
                    connection = (HttpURLConnection)url.openConnection();
                    //
                    // Setup our method and headers
                    //
                    connection.setRequestMethod("POST");
                    connection.setRequestProperty("Authorization", "Basic " + encoding);
                    connection.setRequestProperty("Accept", "text/x-java-properties");
                    connection.setRequestProperty("Content-Type", "text/x-java-properties");
                    connection.setRequestProperty(XacmlRestProperties.PROP_PDP_HTTP_HEADER_ID, XACMLProperties.getProperty(XacmlRestProperties.PROP_PDP_ID));
                    connection.setRequestProperty(XacmlRestProperties.PROP_PDP_HTTP_HEADER_JMX_PORT, XACMLProperties.getProperty(XacmlRestProperties.PROP_PDP_JMX_PORT));
                    connection.setRequestProperty("X-ECOMP-RequestID", requestID.toString());
                    connection.setUseCaches(false);
                    //
                    // Adding this in. It seems the HttpUrlConnection class does NOT
                    // properly forward our headers for POST re-direction. It does so
                    // for a GET re-direction.
                    //
                    // So we need to handle this ourselves.
                    //
                    connection.setInstanceFollowRedirects(false);
                    connection.setDoOutput(true);
                    connection.setDoInput(true);
                    try {
                        //
                        // Send our current policy configuration
                        //
                        String lists = XACMLProperties.PROP_ROOTPOLICIES + "=" + tempRootPoliciesProperty;
                        lists = lists + "\n" + XACMLProperties.PROP_REFERENCEDPOLICIES + "=" + tempReferencedPoliciesProperty + "\n";
                        try (InputStream listsInputStream = new ByteArrayInputStream(lists.getBytes());
                                OutputStream os = connection.getOutputStream()) {
                            IOUtils.copy(listsInputStream, os);

                            //
                            // Send our current PIP configuration
                            //
                            //IOUtils.copy(pipInputStream, os);
                            tempPipConfigProperties.store(os, "");
                        }
                    } catch (Exception e) {
                        LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR +"Failed to send property file", e);
                    }
                    //
                    // Do the connect
                    //
                    connection.connect();
                    if (connection.getResponseCode() == 204) {
                        LOGGER.info("Success. We are configured correctly.");
                        loggingContext.transactionEnded();
                        PolicyLogger.audit("Success. We are configured correctly.");
                        papUrls.registered();
                        finished = true;
                        registered = true;
                    } else if (connection.getResponseCode() == 200) {
                        LOGGER.info("Success. We have a new configuration.");
                        loggingContext.transactionEnded();
                        PolicyLogger.audit("Success. We have a new configuration.");
                        papUrls.registered();
                        Properties properties = new Properties();
                        properties.load(connection.getInputStream());
                        LOGGER.info("New properties: " + properties.toString());
                        //
                        // Queue it
                        //
                        // The incoming properties does NOT include urls
                        Properties returnedPolicyProperties = XACMLProperties.getPolicyProperties(properties, false);
                        tempRootPoliciesProperty = returnedPolicyProperties.getProperty(XACMLProperties.PROP_ROOTPOLICIES);
                        tempReferencedPoliciesProperty = returnedPolicyProperties.getProperty(XACMLProperties.PROP_REFERENCEDPOLICIES);
                        Properties returnedPipProperties = XACMLProperties.getPipProperties(properties);
                        Properties threadSafeReturnedPipProperties = new Properties();
                        ByteArrayOutputStream threadSafeReturnedPipPropertiesOs = new ByteArrayOutputStream();
                        returnedPipProperties.store(threadSafeReturnedPipPropertiesOs, "");
                        InputStream threadSafeReturnedPipPropertiesIs = new ByteArrayInputStream(threadSafeReturnedPipPropertiesOs.toByteArray());
                        threadSafeReturnedPipProperties.load(threadSafeReturnedPipPropertiesIs);
                        tempPipConfigProperties = threadSafeReturnedPipProperties;

                        PutRequest req = new PutRequest(returnedPolicyProperties,returnedPipProperties);
                        XACMLPdpServlet.queue.offer(req);
                        //
                        // We are now registered
                        //
                        finished = true;
                        registered=true;
                    } else if (connection.getResponseCode() >= 300 && connection.getResponseCode()  <= 399) {
                        //
                        // Re-direction
                        //
                        String newLocation = connection.getHeaderField("Location");
                        if (newLocation == null || newLocation.isEmpty()) {
                            LOGGER.warn(XACMLErrorConstants.ERROR_SYSTEM_ERROR +"Did not receive a valid re-direction location");
                            loggingContext.transactionEnded();
                            auditLogger.warn(XACMLErrorConstants.ERROR_SYSTEM_ERROR +"Did not receive a valid re-direction location");
                            PolicyLogger.audit("Transaction Failed - See Error.log");
                            finished = true;
                        } else {
                            LOGGER.info("New Location: " + newLocation);
                            url = new URL(newLocation);
                        }
                    } else {
                        LOGGER.warn(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "Failed: " + connection.getResponseCode() + "  message: " + connection.getResponseMessage());
                        loggingContext.transactionEnded();
                        auditLogger.warn(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "Failed: " + connection.getResponseCode() + "  message: " + connection.getResponseMessage());
                        PolicyLogger.audit("Transaction Failed - See Error.log");
                        finished = true;
                        papUrls.failed();
                    }
                }
            } catch (Exception e) {
                LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR + e);
                loggingContext.transactionEnded();
                PolicyLogger.audit("Transaction Failed - See Error.log");
                papUrls.failed();
            } finally {
                // cleanup the connection
                if (connection != null) {
                    try {
                        // For some reason trying to get the inputStream from the connection
                        // throws an exception rather than returning null when the InputStream does not exist.
                        InputStream is = null;
                        try {
                            is = connection.getInputStream();
                        } catch (Exception e1) {
                            LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "Failed to get Input Stream: " + e1);
                        }
                        if (is != null) {
                            is.close();
                        }

                    } catch (IOException ex) {
                        LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "Failed to close connection: " + ex, ex);
                    }
                    connection.disconnect();
                }
            }

            papUrls.getNext();
        }
        synchronized(this) {
            this.isRunning = false;
        }
        LOGGER.info("Thread exiting...(registered=" + registered + ", interrupted=" + interrupted + ", isRunning=" + this.isRunning() + ", retries=" + "0" + ")");
    }

}