SM: Change volume mountUserId for new user
When a volume is ejected from a user but not removed from the device and mounted again by calling StorageManager#mount, the volume is mounted for the user from which it was last ejected. This causes the path of the mounted volume to be inaccessible to the current user. Whenever StorageManager#mount is called, check if the VolumeInfo#mountUserId is same as the current userId maintained by StorageManagerService, if it is not, change the mountUserId for the Volume to the current userId known to StorageManagerService if it is not the primary volume and the volume is visible. This change also fixes a bug where the volumes are unmounted for the wrong user which causes StorageSessionController go out of sync which would cause errors during mounting the volumes again as it maintains sessions per user. The bug also caused volume event broadcasts to be sent to wrong user handles. To solve the issue add an extra paramter in IVoldListener#onVolumeStateChanged for userId which will update the copy which is used for informing StorageSessionController and also for sending broadcasts. Test: Perform the following steps: 1. Format SD Card as portable storage in system user. 2. Eject the SD Card from Storage Settings. 3. Switch to a non-system user 4. Mount the SD Card again. 5. Check that the Storage Summary is shown correctly instead of 0B out of 0B. Also, checked from the logs the volume state broadcasts are sent to the correct user handles. Change-Id: If03c36b021860038c088ca9e02f54fbdbf50c65b
Loading
Please register or sign in to comment