Path: blob/master/src/java.base/share/classes/sun/security/util/FilePermCompat.java
41159 views
/*1* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.security.util;2627import sun.security.action.GetPropertyAction;2829import java.io.FilePermission;30import java.security.Permission;31import jdk.internal.access.SharedSecrets;3233/**34* Take care of FilePermission compatibility after JDK-8164705.35*/36public class FilePermCompat {37/**38* New behavior? Keep compatibility? Both default true.39*/40public static final boolean nb;41public static final boolean compat;4243static {44String flag = SecurityProperties.privilegedGetOverridable(45"jdk.io.permissionsUseCanonicalPath");46if (flag == null) {47flag = "false";48}49switch (flag) {50case "true":51nb = false;52compat = false;53break;54case "false":55nb = true;56compat = true;57break;58default:59throw new RuntimeException(60"Invalid jdk.io.permissionsUseCanonicalPath: " + flag);61}62}6364public static Permission newPermPlusAltPath(Permission input) {65if (compat && input instanceof FilePermission) {66return SharedSecrets.getJavaIOFilePermissionAccess()67.newPermPlusAltPath((FilePermission) input);68}69return input;70}7172public static Permission newPermUsingAltPath(Permission input) {73if (input instanceof FilePermission) {74return SharedSecrets.getJavaIOFilePermissionAccess()75.newPermUsingAltPath((FilePermission) input);76}77return null;78}79}808182