src/jdk.incubator.jpackage/windows/classes/jdk/incubator/jpackage/internal/WindowsDefender.java
branchJDK-8200758-branch
changeset 58994 b09ba68c6a19
parent 57151 38d0b67617e3
equal deleted inserted replaced
58993:b5e1baa9d2c3 58994:b09ba68c6a19
       
     1 /*
       
     2  * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 
       
    26 package jdk.incubator.jpackage.internal;
       
    27 
       
    28 import java.util.List;
       
    29 
       
    30 final class WindowsDefender {
       
    31 
       
    32     private WindowsDefender() {}
       
    33 
       
    34     static final boolean isThereAPotentialWindowsDefenderIssue(String dir) {
       
    35         boolean result = false;
       
    36 
       
    37         if (Platform.getPlatform() == Platform.WINDOWS &&
       
    38             Platform.getMajorVersion() == 10) {
       
    39 
       
    40             // If DisableRealtimeMonitoring is not enabled then there
       
    41             // may be a problem.
       
    42             if (!WindowsRegistry.readDisableRealtimeMonitoring() &&
       
    43                 !isDirectoryInExclusionPath(dir)) {
       
    44                 result = true;
       
    45             }
       
    46         }
       
    47 
       
    48         return result;
       
    49     }
       
    50 
       
    51     private static boolean isDirectoryInExclusionPath(String dir) {
       
    52         boolean result = false;
       
    53         // If the user temp directory is not found in the exclusion
       
    54         // list then there may be a problem.
       
    55         List<String> paths = WindowsRegistry.readExclusionsPaths();
       
    56         for (String s : paths) {
       
    57             if (WindowsRegistry.comparePaths(s, dir)) {
       
    58                 result = true;
       
    59                 break;
       
    60             }
       
    61         }
       
    62 
       
    63         return result;
       
    64     }
       
    65 
       
    66     static final String getUserTempDirectory() {
       
    67         String tempDirectory = System.getProperty("java.io.tmpdir");
       
    68         return tempDirectory;
       
    69     }
       
    70 }