aboutsummaryrefslogtreecommitdiffstats
path: root/POLICY-SDK-APP/src/main/java/org/onap/policy/admin/RESTfulPAPEngine.java
blob: 142613e935640fd6218a993584a896518d978927 (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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
/*-
 * ============LICENSE_START=======================================================
 * ONAP Policy Engine
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * Modified Copyright (C) 2018 Samsung Electronics Co., Ltd.
 * Modifications Copyright (C) 2019 Bell Canada
 * ================================================================================
 * 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.admin;

import com.att.research.xacml.api.pap.PAPException;
import com.att.research.xacml.api.pap.PDPPolicy;
import com.att.research.xacml.api.pap.PDPStatus;
import com.att.research.xacml.util.XACMLProperties;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.type.CollectionType;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.Arrays;
import java.util.Base64;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.onap.policy.common.logging.flexlogger.FlexLogger;
import org.onap.policy.common.logging.flexlogger.Logger;
import org.onap.policy.rest.XACMLRestProperties;
import org.onap.policy.rest.adapter.PolicyRestAdapter;
import org.onap.policy.utils.PeCryptoUtils;
import org.onap.policy.xacml.api.XACMLErrorConstants;
import org.onap.policy.xacml.api.pap.OnapPDP;
import org.onap.policy.xacml.api.pap.OnapPDPGroup;
import org.onap.policy.xacml.api.pap.PAPPolicyEngine;
import org.onap.policy.xacml.std.pap.StdPAPPolicy;
import org.onap.policy.xacml.std.pap.StdPDP;
import org.onap.policy.xacml.std.pap.StdPDPGroup;
import org.onap.policy.xacml.std.pap.StdPDPItemSetChangeNotifier;
import org.onap.policy.xacml.std.pap.StdPDPPolicy;
import org.onap.policy.xacml.std.pap.StdPDPStatus;

/**
 * Implementation of the PAPEngine interface that communicates with a PAP engine in a remote servlet through a RESTful
 * interface.
 *
 *
 */
public class RESTfulPAPEngine extends StdPDPItemSetChangeNotifier implements PAPPolicyEngine {
    private static final Logger LOGGER = FlexLogger.getLogger(RESTfulPAPEngine.class);

    private static final String GROUP_ID = "groupId=";
    private static final String UNABLE_MSG = "Unable to PUT policy '";
    private static final String EXCEPTION_MSG = "', e:";
    private static final String ERROR_MSG = "error";
    private static final String PDPID_MSG = "pdpId=";

    //
    // URL of the PAP Servlet that this Admin Console talks to
    //
    private String papServletUrlString;

    /**
     * Set up link with PAP Servlet and get our initial set of Groups.
     *
     * @throws PAPException When failing to register with PAP
     */
    public RESTfulPAPEngine(String myUrlString) throws PAPException {
        //
        // Get our URL to the PAP servlet
        //
        this.papServletUrlString = XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_URL);
        if (StringUtils.isBlank(this.papServletUrlString)) {
            String message = "The property 'POLICYENGINE_ADMIN_ACTIVE' was not set during installation. "
                    + "Admin Console cannot call PAP.";
            LOGGER.error(message);
            throw new PAPException(message);
        }

        //
        // register this Admin Console with the PAP Servlet to get updates
        //
        Object newUrl = sendToPap("PUT", null, null, null, "adminConsoleURL=" + myUrlString);
        if (newUrl != null) {
            // assume this was a re-direct and try again
            LOGGER.warn("Redirecting to '" + newUrl + "'");
            this.papServletUrlString = (String) newUrl;
            newUrl = sendToPap("PUT", null, null, null, "adminConsoleURL=" + myUrlString);
            if (newUrl != null) {
                LOGGER.error("Failed to redirect to " + this.papServletUrlString);
                throw new PAPException("Failed to register with PAP");
            }
        }
    }

    //
    // High-level commands used by the Admin Console code through the PAPEngine Interface
    //

    @Override
    public OnapPDPGroup getDefaultGroup() throws PAPException {
        return (OnapPDPGroup) sendToPap("GET", null, null, StdPDPGroup.class, GROUP_ID, "default=");
    }

    @Override
    public void setDefaultGroup(OnapPDPGroup group) throws PAPException {
        sendToPap("POST", null, null, null, GROUP_ID + group.getId(), "default=true");
    }

    @SuppressWarnings("unchecked")
    @Override
    public Set<OnapPDPGroup> getOnapPDPGroups() throws PAPException {
        Set<OnapPDPGroup> newGroupSet;
        newGroupSet = (Set<OnapPDPGroup>) this.sendToPap("GET", null, Set.class, StdPDPGroup.class, GROUP_ID);
        return Collections.unmodifiableSet(newGroupSet);
    }

    @Override
    public OnapPDPGroup getGroup(String id) throws PAPException {
        return (OnapPDPGroup) sendToPap("GET", null, null, StdPDPGroup.class, GROUP_ID + id);
    }

    @Override
    public void newGroup(String name, String description) throws PAPException {
        String escapedName;
        String escapedDescription;
        try {
            escapedName = URLEncoder.encode(name, "UTF-8");
            escapedDescription = URLEncoder.encode(description, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            throw new PAPException("Unable to send name or description to PAP: " + e.getMessage() + e);
        }

        this.sendToPap("POST", null, null, null, GROUP_ID, "groupName=" + escapedName,
                "groupDescription=" + escapedDescription);
    }

    @Override
    public void updateGroup(OnapPDPGroup group) throws PAPException {
        try {
            //
            // ASSUME that all of the policies mentioned in this group are already located in the correct directory on
            // the PAP!
            //
            // Whenever a Policy is added to the group, that file must be automatically copied to the PAP from the
            // Workspace.
            //
            // Copy all policies from the local machine's workspace to the PAP's PDPGroup directory.
            // This is not efficient since most of the policies will already exist there.
            // However, the policy files are (probably!) not too huge, and this is a good way to ensure that any
            // corrupted files on the PAP get refreshed.
            // now update the group object on the PAP
            sendToPap("PUT", group, null, null, GROUP_ID + group.getId());
        } catch (Exception e) {
            String message = UNABLE_MSG + group.getId() + EXCEPTION_MSG + e;
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + message, e);
            throw new PAPException(message);
        }
    }

    /*
     * Passing UserName to PAP Rest for Audit Logging.
     *
     * @see org.onap.policy.xacml.api.pap.PAPPolicyEngine#updateGroup(org.onap.policy.xacml.api.pap.OnapPDPGroup,
     * java.lang.String)
     */
    @Override
    public void updateGroup(OnapPDPGroup group, String userName) throws PAPException {
        try {
            sendToPap("PUT", group, null, null, GROUP_ID + group.getId(), "userId=" + userName);
        } catch (Exception e) {
            String message = UNABLE_MSG + group.getId() + EXCEPTION_MSG + e;
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + message, e);
            throw new PAPException(message);
        }
    }

    @Override
    public void removeGroup(OnapPDPGroup group, OnapPDPGroup newGroup) throws PAPException {
        String moveToGroupString = null;
        if (newGroup != null) {
            moveToGroupString = "movePDPsToGroupId=" + newGroup.getId();
        }
        sendToPap("DELETE", null, null, null, GROUP_ID + group.getId(), moveToGroupString);
    }

    @Override
    public OnapPDPGroup getPDPGroup(OnapPDP pdp) throws PAPException {
        return getPDPGroup(pdp.getId());
    }

    public OnapPDPGroup getPDPGroup(String pdpId) throws PAPException {
        return (OnapPDPGroup) sendToPap("GET", null, null, StdPDPGroup.class, GROUP_ID, PDPID_MSG + pdpId,
                "getPDPGroup=");
    }

    @Override
    public OnapPDP getPDP(String pdpId) throws PAPException {
        return (OnapPDP) sendToPap("GET", null, null, StdPDP.class, GROUP_ID, PDPID_MSG + pdpId);
    }

    @Override
    public void newPDP(String id, OnapPDPGroup group, String name, String description, int jmxport)
            throws PAPException {
        StdPDP newPdp = new StdPDP(id, name, description, jmxport);
        sendToPap("PUT", newPdp, null, null, GROUP_ID + group.getId(), PDPID_MSG + id);
    }

    @Override
    public void movePDP(OnapPDP pdp, OnapPDPGroup newGroup) throws PAPException {
        sendToPap("POST", null, null, null, GROUP_ID + newGroup.getId(), PDPID_MSG + pdp.getId());
    }

    @Override
    public void updatePDP(OnapPDP pdp) throws PAPException {
        OnapPDPGroup group = getPDPGroup(pdp);
        sendToPap("PUT", pdp, null, null, GROUP_ID + group.getId(), PDPID_MSG + pdp.getId());
    }

    @Override
    public void removePDP(OnapPDP pdp) throws PAPException {
        OnapPDPGroup group = getPDPGroup(pdp);
        sendToPap("DELETE", null, null, null, GROUP_ID + group.getId(), PDPID_MSG + pdp.getId());
    }

    /**
     * validatePolicyRequest Creates a pap policy and then send to pap.
     *
     * @param policyAdapter Input Adapter
     * @param policyType Type of Policy
     * @return true if validated
     * @throws PAPException exception if invalid
     */
    public boolean validatePolicyRequest(PolicyRestAdapter policyAdapter, String policyType) throws PAPException {
        StdPAPPolicy newPapPolicy = new StdPAPPolicy(policyAdapter.getPolicyName(), policyAdapter.getConfigBodyData(),
                policyAdapter.getConfigType(), "Base");

        // send JSON object to PAP
        return (Boolean) sendToPap("PUT", newPapPolicy, null, null, "operation=validate", "apiflag=admin",
                "policyType=" + policyType);
    }

    @Override
    public void publishPolicy(String id, String name, boolean isRoot, InputStream policy, OnapPDPGroup group)
            throws PAPException {
        // copy the (one) file into the target directory on the PAP servlet
        copyFile(id, group, policy);

        // adjust the local copy of the group to include the new policy
        PDPPolicy pdpPolicy = new StdPDPPolicy(id, isRoot, name);
        group.getPolicies().add(pdpPolicy);

        // tell the PAP servlet to include the policy in the configuration
        updateGroup(group);
    }

    /**
     * Copy a single Policy file from the input stream to the PAP Servlet. Either this works (silently) or it throws an
     * exception.
     *
     * @param policyId ID of policy
     * @param group PDP Group
     * @param policy Input stream of policy
     * @throws PAPException exception
     */
    public void copyFile(String policyId, OnapPDPGroup group, InputStream policy) throws PAPException {
        // send the policy file to the PAP Servlet
        try {
            sendToPap("POST", policy, null, null, GROUP_ID + group.getId(), "policyId=" + policyId);
        } catch (Exception e) {
            String message = UNABLE_MSG + policyId + EXCEPTION_MSG + e;
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + message, e);
            throw new PAPException(message);
        }
    }

    @Override
    public void copyPolicy(PDPPolicy policy, OnapPDPGroup group) throws PAPException {
        if (policy == null || group == null) {
            throw new PAPException("Null input policy=" + policy + "  group=" + group);
        }
        try (InputStream is = new FileInputStream(new File(policy.getLocation()))) {
            copyFile(policy.getId(), group, is);
        } catch (Exception e) {
            String message = UNABLE_MSG + policy.getId() + EXCEPTION_MSG + e;
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + message, e);
            throw new PAPException(message);
        }
    }

    @Override
    public void removePolicy(PDPPolicy policy, OnapPDPGroup group) throws PAPException {
        throw new PAPException("NOT IMPLEMENTED");
    }

    /**
     * Special operation - Similar to the normal PAP operations but this one contacts the PDP directly to get detailed
     * status info.
     *
     * @param pdp PDP to get status
     * @return PDPStatus object
     * @throws PAPException Exception
     */
    @Override
    public PDPStatus getStatus(OnapPDP pdp) throws PAPException {
        return (StdPDPStatus) sendToPap("GET", pdp, null, StdPDPStatus.class);
    }

    //
    // Internal Operations called by the PAPEngine Interface methods
    //

    /**
     * Send a request to the PAP Servlet and get the response.
     *
     * <p>The content is either an InputStream to be copied to the Request OutputStream OR it is an object that is to be
     * encoded into JSON and pushed into the Request OutputStream.
     *
     * <p>The Request parameters may be encoded in multiple "name=value" sets, or parameters may be
     * combined by the caller.
     *
     * @param method method
     * @param content - EITHER an InputStream OR an Object to be encoded in JSON
     * @param collectionTypeClass Collection
     * @param responseContentClass Response Content
     * @param parameters List of parameters
     * @return Object
     * @throws PAPException exception
     */
    @SuppressWarnings({"rawtypes", "unchecked"})
    private Object sendToPap(String method, Object content, Class collectionTypeClass, Class responseContentClass,
            String... parameters) throws PAPException {
        HttpURLConnection connection = null;
        String papID = XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_USERID);
        LOGGER.info("User Id is " + papID);
        PeCryptoUtils.initAesKey(XACMLProperties.getProperty(XACMLRestProperties.PROP_AES_KEY));
        String papPass = PeCryptoUtils
                .decrypt(PeCryptoUtils.decrypt(XACMLProperties.getProperty(XACMLRestProperties.PROP_PAP_PASS)));
        Base64.Encoder encoder = Base64.getEncoder();
        String encoding = encoder.encodeToString((papID + ":" + papPass).getBytes(StandardCharsets.UTF_8));
        Object contentObj = content;
        LOGGER.info("Encoding for the PAP is: " + encoding);
        try {
            String fullUrl = papServletUrlString;
            if (parameters != null && parameters.length > 0) {
                StringBuilder queryString = new StringBuilder();
                Arrays.stream(parameters).map(p -> "&" + p).forEach(queryString::append);
                fullUrl += "?" + queryString.substring(1);
            }

            // special case - Status (actually the detailed status) comes from the PDP directly, not the PAP
            if ("GET".equals(method) && (contentObj instanceof OnapPDP) && responseContentClass == StdPDPStatus.class) {
                // Adjust the url and properties appropriately
                String pdpID = ((OnapPDP) contentObj).getId();
                fullUrl = pdpID + "?type=Status";
                contentObj = null;
                if (CheckPdpProperties.validateId(pdpID)) {
                    encoding = CheckPdpProperties.getEncoding(pdpID);
                }
            }

            //
            // Open up the connection
            //
            connection = (HttpURLConnection) makeConnection(fullUrl);
            //
            // Setup our method and headers
            //
            connection.setRequestMethod(method);
            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.setRequestProperty("Authorization", "Basic " + encoding);
            connection.setDoOutput(true);
            connection.setDoInput(true);

            if (contentObj != null) {
                if (contentObj instanceof InputStream) {
                    sendCurrPolicyConfig(method, connection, (InputStream) contentObj);
                } else {
                    // The contentObj is an object to be encoded in JSON
                    ObjectMapper mapper = new ObjectMapper();
                    mapper.writeValue(connection.getOutputStream(), contentObj);
                }
            }
            //
            // Do the connect
            //
            connection.connect();
            if (connection.getResponseCode() == 204) {
                LOGGER.info("Success - no content.");
                return null;
            } else if (connection.getResponseCode() == 200) {
                LOGGER.info("Success. We have a return object.");
                String isValidData = connection.getHeaderField("isValidData");
                String isSuccess = connection.getHeaderField("successMapKey");
                Map<String, String> successMap = new HashMap<>();
                if ("true".equalsIgnoreCase(isValidData)) {
                    LOGGER.info("Policy Data is valid.");
                    return true;
                } else if ("false".equalsIgnoreCase(isValidData)) {
                    LOGGER.info("Policy Data is invalid.");
                    return false;
                } else if ("success".equalsIgnoreCase(isSuccess)) {
                    LOGGER.info("Policy Created Successfully!");
                    String finalPolicyPath = connection.getHeaderField("finalPolicyPath");
                    successMap.put("success", finalPolicyPath);
                    return successMap;
                } else if (ERROR_MSG.equalsIgnoreCase(isSuccess)) {
                    LOGGER.info("There was an error while creating the policy!");
                    successMap.put(ERROR_MSG, ERROR_MSG);
                    return successMap;
                } else {
                    // get the response content into a String
                    String json = getJsonString(connection);

                    // convert Object sent as JSON into local object
                    ObjectMapper mapper = new ObjectMapper();
                    mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
                    if (collectionTypeClass != null) {
                        // collection of objects expected
                        final CollectionType javaType = mapper.getTypeFactory()
                                .constructCollectionType(collectionTypeClass, responseContentClass);
                        return mapper.readValue(json, javaType);
                    } else {
                        // single value object expected
                        return mapper.readValue(json, responseContentClass);
                    }
                }
            } else if (connection.getResponseCode() >= 300 && connection.getResponseCode() <= 399) {
                // redirection
                String newUrl = connection.getHeaderField("Location");
                if (newUrl == null) {
                    LOGGER.error(
                            "No Location header to redirect to when response code=" + connection.getResponseCode());
                    throw new IOException(
                            "No redirect Location header when response code=" + connection.getResponseCode());
                }
                int qindex = newUrl.indexOf('?');
                if (qindex > 0) {
                    newUrl = newUrl.substring(0, qindex);
                }
                LOGGER.info("Redirect seen.  Redirecting " + fullUrl + " to " + newUrl);
                return newUrl;
            } else {
                LOGGER.warn("Unexpected response code: " + connection.getResponseCode() + "  message: "
                        + connection.getResponseMessage());
                throw new IOException(
                        "Server Response: " + connection.getResponseCode() + ": " + connection.getResponseMessage());
            }
        } catch (Exception e) {
            LOGGER.error(XACMLErrorConstants.ERROR_SYSTEM_ERROR + "HTTP Request/Response to PAP: " + e, e);
            throw new PAPException("Request/Response threw :" + e);
        } 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 = connection.getInputStream();
                    if (is != null) {
                        is.close();
                    }
                } catch (IOException ex) {
                    LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Failed to close connection: " + ex, ex);
                }
                connection.disconnect();
            }
        }
    }

    private void sendCurrPolicyConfig(String method, final HttpURLConnection connection, InputStream contentObj) {
        try {
            //
            // Send our current policy configuration
            //
            try (OutputStream os = connection.getOutputStream()) {
                int count = IOUtils.copy(contentObj, os);
                if (LOGGER.isDebugEnabled()) {
                    LOGGER.debug("copied to output, bytes=" + count);
                }
            }
        } catch (Exception e) {
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Failed to write content in '" + method + "'", e);
        }
    }

    private String getJsonString(final HttpURLConnection connection) throws IOException {
        String json;
        // read the inputStream into a buffer (trick found online scans entire input looking for end-of-file)
        try (java.util.Scanner scanner = new java.util.Scanner(connection.getInputStream())) {
            scanner.useDelimiter("\\A");
            json = scanner.hasNext() ? scanner.next() : "";
        } catch (Exception e) {
            LOGGER.error(XACMLErrorConstants.ERROR_PROCESS_FLOW + "Failed to read inputStream from connection: " + e,
                    e);
            throw e;
        }
        LOGGER.info("JSON response from PAP: " + json);
        return json;
    }

    // these may be overridden by junit tests

    protected URLConnection makeConnection(String fullUrl) throws IOException {
        return new URL(fullUrl).openConnection();
    }
}