/**************************************************************************/ /* GodotNetUtils.java */ /**************************************************************************/ /* This file is part of: */ /* REDOT ENGINE */ /* https://redotengine.org */ /**************************************************************************/ /* Copyright (c) 2024-present Redot Engine contributors */ /* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ /* a copy of this software and associated documentation files (the */ /* "Software"), to deal in the Software without restriction, including */ /* without limitation the rights to use, copy, modify, merge, publish, */ /* distribute, sublicense, and/or sell copies of the Software, and to */ /* permit persons to whom the Software is furnished to do so, subject to */ /* the following conditions: */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /**************************************************************************/ package org.godotengine.godot.utils; import android.app.Activity; import android.content.Context; import android.net.wifi.WifiManager; import android.util.Base64; import android.util.Log; import androidx.annotation.NonNull; import java.security.KeyStore; import java.security.cert.X509Certificate; import java.util.Enumeration; /** * This class handles Android-specific networking functions. * It provides access to the CA certificates KeyStore, and the WifiManager.MulticastLock, which is needed on some devices * to receive broadcast and multicast packets. */ public class GodotNetUtils { /* A single, reference counted, multicast lock, or null if permission CHANGE_WIFI_MULTICAST_STATE is missing */ private WifiManager.MulticastLock multicastLock; public GodotNetUtils(Context context) { if (PermissionsUtil.hasManifestPermission(context, "android.permission.CHANGE_WIFI_MULTICAST_STATE")) { WifiManager wifi = (WifiManager)context.getApplicationContext().getSystemService(Context.WIFI_SERVICE); multicastLock = wifi.createMulticastLock("GodotMulticastLock"); multicastLock.setReferenceCounted(true); } } /** * Acquire the multicast lock. This is required on some devices to receive broadcast/multicast packets. * This is done automatically by Godot when enabling broadcast or joining a multicast group on a socket. */ public void multicastLockAcquire() { if (multicastLock == null) return; try { multicastLock.acquire(); } catch (RuntimeException e) { Log.e("Godot", "Exception during multicast lock acquire: " + e); } } /** * Release the multicast lock. * This is done automatically by Godot when the lock is no longer needed by a socket. */ public void multicastLockRelease() { if (multicastLock == null) return; try { multicastLock.release(); } catch (RuntimeException e) { Log.e("Godot", "Exception during multicast lock release: " + e); } } /** * Retrieves the list of trusted CA certificates from the "AndroidCAStore" and returns them in PRM format. * @see https://developer.android.com/reference/java/security/KeyStore . * @return A string of concatenated X509 certificates in PEM format. */ public static @NonNull String getCACertificates() { try { KeyStore ks = KeyStore.getInstance("AndroidCAStore"); StringBuilder writer = new StringBuilder(); if (ks != null) { ks.load(null, null); Enumeration aliases = ks.aliases(); while (aliases.hasMoreElements()) { String alias = (String)aliases.nextElement(); X509Certificate cert = (X509Certificate)ks.getCertificate(alias); writer.append("-----BEGIN CERTIFICATE-----\n"); writer.append(Base64.encodeToString(cert.getEncoded(), Base64.DEFAULT)); writer.append("-----END CERTIFICATE-----\n"); } } return writer.toString(); } catch (Exception e) { Log.e("Godot", "Exception while reading CA certificates: " + e); return ""; } } }