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

Commit 7e3b5f57 authored by Yan Yan's avatar Yan Yan Committed by Gerrit Code Review
Browse files

Merge "Dump IkeSession in VcnGatewayConnection#dump" into main

parents 978ed252 535b2783
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. */