blob: 0b3bf453fd9c62a16d9dbbb89331398ca00ec27a [file] [log] [blame]
Alex Klyubinf9034cc2015-02-12 11:43:09 -08001/**
2 * Copyright (c) 2015, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.security;
18
19/**
20 * Network security policy.
21 *
Alex Klyubin84750f32015-03-23 10:51:20 -070022 * <p>Network stacks/components should honor this policy to make it possible to centrally control
23 * the relevant aspects of network security behavior.
24 *
25 * <p>The policy currently consists of a single flag: whether cleartext network traffic is
26 * permitted. See {@link #isCleartextTrafficPermitted()}.
Alex Klyubinf9034cc2015-02-12 11:43:09 -080027 */
28public class NetworkSecurityPolicy {
29
Alex Klyubin84750f32015-03-23 10:51:20 -070030 private static final NetworkSecurityPolicy INSTANCE = new NetworkSecurityPolicy();
Alex Klyubinf9034cc2015-02-12 11:43:09 -080031
Alex Klyubin84750f32015-03-23 10:51:20 -070032 private NetworkSecurityPolicy() {}
Alex Klyubinf9034cc2015-02-12 11:43:09 -080033
Alex Klyubin84750f32015-03-23 10:51:20 -070034 /**
35 * Gets the policy for this process.
36 *
37 * <p>It's fine to cache this reference. Any changes to the policy will be immediately visible
38 * through the reference.
39 */
40 public static NetworkSecurityPolicy getInstance() {
41 return INSTANCE;
Alex Klyubinf9034cc2015-02-12 11:43:09 -080042 }
Alex Klyubinf9034cc2015-02-12 11:43:09 -080043
Alex Klyubin84750f32015-03-23 10:51:20 -070044 /**
45 * Returns whether cleartext network traffic (e.g. HTTP, FTP, WebSockets, XMPP, IMAP, SMTP --
46 * without TLS or STARTTLS) is permitted for this process.
47 *
48 * <p>When cleartext network traffic is not permitted, the platform's components (e.g. HTTP and
Alex Klyubin7cb000f2015-03-26 11:00:04 -070049 * FTP stacks, {@link android.webkit.WebView}, {@link android.media.MediaPlayer}) will refuse
50 * this process's requests to use cleartext traffic. Third-party libraries are strongly
51 * encouraged to honor this setting as well.
Alex Klyubin84750f32015-03-23 10:51:20 -070052 *
53 * <p>This flag is honored on a best effort basis because it's impossible to prevent all
54 * cleartext traffic from Android applications given the level of access provided to them. For
55 * example, there's no expectation that the {@link java.net.Socket} API will honor this flag
56 * because it cannot determine whether its traffic is in cleartext. However, most network
57 * traffic from applications is handled by higher-level network stacks/components which can
58 * honor this aspect of the policy.
59 */
60 public boolean isCleartextTrafficPermitted() {
Alex Klyubin403a4942015-03-25 09:00:37 -070061 return libcore.net.NetworkSecurityPolicy.isCleartextTrafficPermitted();
Alex Klyubinf9034cc2015-02-12 11:43:09 -080062 }
Alex Klyubin84750f32015-03-23 10:51:20 -070063
64 /**
65 * Sets whether cleartext network traffic is permitted for this process.
66 *
67 * <p>This method is used by the platform early on in the application's initialization to set
68 * the policy.
69 *
70 * @hide
71 */
72 public void setCleartextTrafficPermitted(boolean permitted) {
Alex Klyubin403a4942015-03-25 09:00:37 -070073 libcore.net.NetworkSecurityPolicy.setCleartextTrafficPermitted(permitted);
Alex Klyubin84750f32015-03-23 10:51:20 -070074 }
Alex Klyubinf9034cc2015-02-12 11:43:09 -080075}