src/java.base/share/classes/sun/security/util/FilePermCompat.java
author mchung
Tue, 06 Nov 2018 10:01:16 -0800
changeset 52427 3c6aa484536c
parent 47216 71c04702a3d5
child 58612 32aff2b7585b
permissions -rw-r--r--
8211122: Reduce the number of internal classes made accessible to jdk.unsupported Reviewed-by: alanb, dfuchs, kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41377
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     1
/*
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 47216
diff changeset
     2
 * Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
41377
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     4
 *
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    10
 *
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    15
 * accompanied this code).
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    16
 *
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    20
 *
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    23
 * questions.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    24
 */
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    25
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    26
package sun.security.util;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    27
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    28
import sun.security.action.GetPropertyAction;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    29
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    30
import java.io.FilePermission;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    31
import java.security.Permission;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 47216
diff changeset
    32
import jdk.internal.access.SharedSecrets;
41377
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    33
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    34
/**
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    35
 * Take care of FilePermission compatibility after JDK-8164705.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    36
 */
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    37
public class FilePermCompat {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    38
    /**
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    39
     * New behavior? Keep compatibility? Both default true.
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    40
     */
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    41
    public static final boolean nb;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    42
    public static final boolean compat;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    43
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    44
    static {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    45
        String flag = GetPropertyAction.privilegedGetProperty(
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    46
                "jdk.io.permissionsUseCanonicalPath", "false");
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    47
        switch (flag) {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    48
            case "true":
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    49
                nb = false;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    50
                compat = false;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    51
                break;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    52
            case "false":
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    53
                nb = true;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    54
                compat = true;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    55
                break;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    56
            default:
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    57
                throw new RuntimeException(
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    58
                        "Invalid jdk.io.permissionsUseCanonicalPath: " + flag);
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    59
        }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    60
    }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    61
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    62
    public static Permission newPermPlusAltPath(Permission input) {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    63
        if (compat && input instanceof FilePermission) {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    64
            return SharedSecrets.getJavaIOFilePermissionAccess()
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    65
                    .newPermPlusAltPath((FilePermission) input);
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    66
        }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    67
        return input;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    68
    }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    69
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    70
    public static Permission newPermUsingAltPath(Permission input) {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    71
        if (input instanceof FilePermission) {
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    72
            return SharedSecrets.getJavaIOFilePermissionAccess()
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    73
                    .newPermUsingAltPath((FilePermission) input);
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    74
        }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    75
        return null;
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    76
    }
271ee055cb31 8164705: Remove pathname canonicalization from FilePermission
weijun
parents:
diff changeset
    77
}