Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 535b2783 authored by Yan Yan's avatar Yan Yan
Browse files

Dump IkeSession in VcnGatewayConnection#dump

Bug: 288599290
Test: atest FrameworksVcnTests && atest CtsVcnTestCases
Test: adb shell dumpsys vcn_management
FLAG: NONE mainline API flag not accessible; using try catch
      block to gate the behaviors
Change-Id: I6e868b7c51d32754be53944957c79ee2413a2d14
parent 52bd4f13
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -626,8 +626,12 @@ public class Vcn extends Handler {
     * Dumps the state of this Vcn for logging and debugging purposes.
     *
     * <p>PII and credentials MUST NEVER be dumped here.
     *
     * <p>This method is not thread safe and MUST run on the VCN thread.
     */
    public void dump(IndentingPrintWriter pw) {
        mVcnContext.ensureRunningOnLooperThread();

        pw.println("Vcn (" + mSubscriptionGroup + "):");
        pw.increaseIndent();

+22 −0
Original line number Diff line number Diff line
@@ -2580,8 +2580,12 @@ public class VcnGatewayConnection extends StateMachine {
     * Dumps the state of this VcnGatewayConnection for logging and debugging purposes.
     *
     * <p>PII and credentials MUST NEVER be dumped here.
     *
     * <p>This method is not thread safe and MUST run on the VCN thread.
     */
    public void dump(IndentingPrintWriter pw) {
        mVcnContext.ensureRunningOnLooperThread();

        pw.println("VcnGatewayConnection (" + mConnectionConfig.getGatewayConnectionName() + "):");
        pw.increaseIndent();

@@ -2602,6 +2606,19 @@ public class VcnGatewayConnection extends StateMachine {
        mUnderlyingNetworkController.dump(pw);
        pw.println();

        if (mIkeSession == null) {
            pw.println("mIkeSession: null");
        } else {
            pw.println("mIkeSession:");

            // Add a try catch block in case IkeSession#dump is not thread-safe
            try {
                mIkeSession.dump(pw);
            } catch (Exception e) {
                Slog.wtf(TAG, "Failed to dump IkeSession: " + e);
            }
        }

        pw.decreaseIndent();
    }

@@ -2905,6 +2922,11 @@ public class VcnGatewayConnection extends StateMachine {
        public void setNetwork(@NonNull Network network) {
            mImpl.setNetwork(network);
        }

        /** Dumps the state of the IkeSession */
        public void dump(@NonNull IndentingPrintWriter pw) {
            mImpl.dump(pw);
        }
    }

    /** Proxy Implementation of WakeLock, used for testing. */