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

Commit 6943ad87 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix broken testCaptivePortalApp" am: 47f5317b am: 5001e88f am: 9653e0cd am: 8d2848bb

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1659999

Change-Id: I71c7062a0bf348bb434416ea25bf86818991dba8
parents 0312891f 8d2848bb
Loading
Loading
Loading
Loading
+16 −14
Original line number Diff line number Diff line
@@ -4056,7 +4056,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
                }
            }
        }
        decrementRequestCount(nri);
        nri.decrementRequestCount();
        mNetworkRequestInfoLogs.log("RELEASE " + nri);

        if (null != nri.getActiveRequest()) {
@@ -4167,14 +4167,6 @@ public class ConnectivityService extends IConnectivityManager.Stub
                ? mSystemNetworkRequestCounter : mNetworkRequestCounter;
    }

    private void incrementRequestCountOrThrow(NetworkRequestInfo nri) {
        getRequestCounter(nri).incrementCountOrThrow(nri.mUid);
    }

    private void decrementRequestCount(NetworkRequestInfo nri) {
        getRequestCounter(nri).decrementCount(nri.mUid);
    }

    @Override
    public void setAcceptUnvalidated(Network network, boolean accept, boolean always) {
        enforceNetworkStackSettingsOrSetup();
@@ -5462,6 +5454,9 @@ public class ConnectivityService extends IConnectivityManager.Stub
        @Nullable
        final String mCallingAttributionTag;

        // Counter keeping track of this NRI.
        final PerUidCounter mPerUidCounter;

        // Effective UID of this request. This is different from mUid when a privileged process
        // files a request on behalf of another UID. This UID is used to determine blocked status,
        // UID matching, and so on. mUid above is used for permission checks and to enforce the
@@ -5512,7 +5507,8 @@ public class ConnectivityService extends IConnectivityManager.Stub
            mPid = getCallingPid();
            mUid = mDeps.getCallingUid();
            mAsUid = asUid;
            incrementRequestCountOrThrow(this);
            mPerUidCounter = getRequestCounter(this);
            mPerUidCounter.incrementCountOrThrow(mUid);
            /**
             * Location sensitive data not included in pending intent. Only included in
             * {@link NetworkCallback}.
@@ -5544,7 +5540,8 @@ public class ConnectivityService extends IConnectivityManager.Stub
            mUid = mDeps.getCallingUid();
            mAsUid = asUid;
            mPendingIntent = null;
            incrementRequestCountOrThrow(this);
            mPerUidCounter = getRequestCounter(this);
            mPerUidCounter.incrementCountOrThrow(mUid);
            mCallbackFlags = callbackFlags;
            mCallingAttributionTag = callingAttributionTag;
            linkDeathRecipient();
@@ -5582,7 +5579,8 @@ public class ConnectivityService extends IConnectivityManager.Stub
            mUid = nri.mUid;
            mAsUid = nri.mAsUid;
            mPendingIntent = nri.mPendingIntent;
            incrementRequestCountOrThrow(this);
            mPerUidCounter = getRequestCounter(this);
            mPerUidCounter.incrementCountOrThrow(mUid);
            mCallbackFlags = nri.mCallbackFlags;
            mCallingAttributionTag = nri.mCallingAttributionTag;
            linkDeathRecipient();
@@ -5614,6 +5612,10 @@ public class ConnectivityService extends IConnectivityManager.Stub
            return Collections.unmodifiableList(tempRequests);
        }

        void decrementRequestCount() {
            mPerUidCounter.decrementCount(mUid);
        }

        void linkDeathRecipient() {
            if (null != mBinder) {
                try {
@@ -8883,7 +8885,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
            // Decrement the reference count for this NetworkRequestInfo. The reference count is
            // incremented when the NetworkRequestInfo is created as part of
            // enforceRequestCountLimit().
            decrementRequestCount(nri);
            nri.decrementRequestCount();
            return;
        }

@@ -8949,7 +8951,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
        // Decrement the reference count for this NetworkRequestInfo. The reference count is
        // incremented when the NetworkRequestInfo is created as part of
        // enforceRequestCountLimit().
        decrementRequestCount(nri);
        nri.decrementRequestCount();

        iCb.unlinkToDeath(cbInfo, 0);
    }