1. 01 Jul, 2015 1 commit
    • Jeff Sharkey's avatar
      Trim both internal and adopted private storage. · c86ab6f5
      Jeff Sharkey authored
      Refactor fstrim code to be encapsulated in unique task object, and
      give it option of benchmarking when finished.  Trimming now includes
      both storage from fstab and adopted private volumes.  Cleaner timing
      stats are logged for each unique volume.
      
      Add wakelock during ongoing async move tasks.  Push disk sysfs path
      to framework so it can parse any SD card registers as desired.
      
      Bug: 21831325
      Change-Id: I76577685f5cae4929c251ad314ffdaeb5eb1c8bf
      c86ab6f5
  2. 26 Jun, 2015 1 commit
    • Jeff Sharkey's avatar
      Last ditch check for partition on raw disk. · 63123c06
      Jeff Sharkey authored
      Some storage devices can be formatted as bare partitions, without an
      MBR or GPT header.  If we found no partitions, try poking at the raw
      disk, and treat it as a public volume if we found a valid filesystem.
      
      Bug: 20503551
      Change-Id: I80304e1ad865435321c341b667c0daf2daf4d56c
      63123c06
  3. 22 Jun, 2015 1 commit
    • Jeff Sharkey's avatar
      Add method to forget private partition keys. · bc40cc8f
      Jeff Sharkey authored
      Report both the disk and the partition GUID for private volumes to
      userspace, and offer to forget the encryption key for a given
      partition GUID.
      
      Bug: 21782268
      Change-Id: Ie77a3a58e47bf3563cdb3e4b0edfab1de4d0e6b4
      bc40cc8f
  4. 09 Jun, 2015 1 commit
    • Jeff Sharkey's avatar
      Add f2fs support for private volumes. · d0640f63
      Jeff Sharkey authored
      When formatting volumes, pass along fsType string which can be "auto"
      to let the volume select the best choice.  For now, private volumes
      assume that MMC devices (like SD cards) are best off using f2fs when
      both kernel support and tools are present, otherwise fall back to
      ext4.  Use blkid when mounting to pick the right set of tools.
      
      Move filesystem utility methods into namespaces and place in separate
      directory to be more organized.
      
      Bug: 20275581
      Change-Id: Id5f82d8672dda2e9f68c35b075f28232b0b55ed4
      d0640f63
  5. 29 Apr, 2015 1 commit
  6. 21 Apr, 2015 1 commit
    • Jeff Sharkey's avatar
      Wider volume mutation lock, move force adoptable. · c8e04c5a
      Jeff Sharkey authored
      We eventually should move back to per-disk locks, but use a giant
      lock to keep development rolling forward.  Also move force adoptable
      flag to framework since, since encrypted devices don't have persisted
      properties loaded early during boot.
      
      Bug: 19993667
      Change-Id: Ifa3016ef41b038f8f71fc30bc81596cfd21dcd2a
      c8e04c5a
  7. 19 Apr, 2015 2 commits
  8. 18 Apr, 2015 1 commit
    • Jeff Sharkey's avatar
      Volumes know parent disks; unsupported disks. · f1b996df
      Jeff Sharkey authored
      This is cleaner and more direct than the reverse of having the disk
      publish child volume membership.  Rename state constants to match
      public API.  Add state representing bad removal.  Make it clear that
      volume flags are related to mounting.
      
      Send new unsupported disk event when we finish scanning an entire
      disk and have no meaningful volumes.
      
      Bug: 19993667
      Change-Id: I08a91452ff561171a484d1da5745293ec893aec0
      f1b996df
  9. 15 Apr, 2015 2 commits
    • Jeff Sharkey's avatar
      Lock while partitioning. · 7d9d0118
      Jeff Sharkey authored
      Otherwise we get really excited and trip over ourselves while
      partitions are still being created.
      
      Bug: 19993667
      Change-Id: I034e56b3063a71d73f9311a945c05ea2ae255f7d
      7d9d0118
    • Jeff Sharkey's avatar
      Don't be picky about zap status. · ffeb0079
      Jeff Sharkey authored
      Bug: 19993667
      Change-Id: Id125d9252bf7130516c0ec619d5f067fea24d560
      ffeb0079
  10. 14 Apr, 2015 1 commit
  11. 12 Apr, 2015 1 commit
    • Jeff Sharkey's avatar
      Emulated volumes above private volumes. · 3161fb37
      Jeff Sharkey authored
      When a private volume is mounted, create an emulated volume above it
      hosted at the /media path on that device.  That emulated volume is
      automatically torn down when unmounting the private volume.
      
      Add "removed" state for volume, which signals to framework that
      media has left the building, send when the volume is destroyed.
      
      Bug: 19993667
      Change-Id: I1f82b51de578ac5cfcc5d7b9a6fb44f6f25c775c
      3161fb37
  12. 11 Apr, 2015 1 commit
    • Jeff Sharkey's avatar
      Exclusive exec() path, format after partition. · ce6a913a
      Jeff Sharkey authored
      Sadly setexeccon() is process global, so we need to carefully ensure
      that all exec() are mutually exclusive to avoid transitioning into
      unwanted domains.  Also, because we have several threads floating
      around, we need to guard all our FDs with O_CLOEXEC.
      
      Format all newly created volumes immediately after partitioning,
      but silence all events emitted from those volumes to prevent the
      framework from getting all excited.  Unify all notify events under a
      single codepath to make them easy to silence.
      
      Sent SIGINT before escalating to SIGTERM when unmounting.
      
      Bug: 19993667
      Change-Id: Idc6c806afc7919a004a93e2240b42884f6b52d6b
      ce6a913a
  13. 01 Apr, 2015 1 commit
    • Jeff Sharkey's avatar
      Support for private (adopted) volumes. · 9c48498f
      Jeff Sharkey authored
      This adds support for private volumes which is just a filesystem
      wrapped in a dm-crypt layer.  For now we're using the exact same
      configuration as internal encryption (aes-cbc-essiv:sha256), but we
      don't store any key material on the removable media.  Instead, we
      store the key on internal storage, and use the GPT partition GUID
      to identify which key should be used.
      
      This means that private external storage is effectively as secure as
      the internal storage of the device.  That is, if the internal storage
      is encrypted, then our external storage key is also encrypted.
      
      When partitioning disks, we now support a "private" mode which has
      a PrivateVolume partition, and a currently unused 16MB metadata
      partition reserved for future use.  It also supports a "mixed" mode
      which creates both a PublicVolume and PrivateVolume on the same
      disk.  Mixed mode is currently experimental.
      
      For now, just add ext4 support to PrivateVolume; we'll look at f2fs
      in a future change.  Add VolumeBase lifecycle for setting up crypto
      mappings, and extract blkid logic into shared method.  Sprinkle some
      more "static" around the cryptfs code to improve invariants.
      
      Bug: 19993667
      Change-Id: Ibd1df6250735b706959a1eb9d9f7219ea85912a0
      9c48498f
  14. 31 Mar, 2015 2 commits
    • Jeff Sharkey's avatar
      Fix 64 bit builds. · 38cfc028
      Jeff Sharkey authored
      Change-Id: I4e30ecff3c29d0f8351c6f43de1c979c8c792fab
      38cfc028
    • Jeff Sharkey's avatar
      Progress towards dynamic storage support. · 36801ccc
      Jeff Sharkey authored
      Wire up new Disk and VolumeBase objects and events to start replacing
      older DirectVolume code.  Use filesystem UUID as visible PublicVolume
      name to be more deterministic.
      
      When starting, create DiskSource instances based on fstab, and watch
      for kernel devices to appear.  Turn matching devices into Disk
      objects, scan for partitions, and create any relevant VolumeBase
      objects.  Broadcast all of these events towards userspace so the
      framework can decide what to mount.
      
      Keep track of the primary VolumeBase, and update the new per-user
      /storage/self/primary symlink for all started users.
      
      Provide a reset command that framework uses to start from a known
      state when runtime is restarted.  When vold is unexpectedly killed,
      try recovering by unmounting everything under /mnt and /storage
      before moving forward.
      
      Remove UMS sharing support for now, since no current devices support
      it; MTP is the recommended solution going forward because it offers
      better multi-user support.
      
      Switch killProcessesWithOpenFiles() to directly take signal.  Fix
      one SOCK_CLOEXEC bug, but SELinux says there are more lurking.
      
      Bug: 19993667
      Change-Id: I2dad1303aa4667ec14c52f774e2a28b3c1c1ff6d
      36801ccc
  15. 16 Mar, 2015 1 commit
  16. 13 Mar, 2015 1 commit
    • Jeff Sharkey's avatar
      Checkpoint of better dynamic device support. · deb24057
      Jeff Sharkey authored
      This is the first in a series of changes that are designed to
      introduce better support for dynamic block devices.
      
      It starts by defining a new Volume object which represents a storage
      endpoint that knows how to mount, unmount, and format itself.  This
      could be a filesystem directly on a partition, or it could be an
      emulated FUSE filesystem, an ASEC, or an OBB.
      
      These new volumes can be "stacked" so that unmounting a volume will
      also unmount any volumes stacked above it.  Volumes that provide
      shared storage can also be asked to present themselves (through bind
      mounts) into user-specific mount areas.
      
      This change also adds a Disk class which is created based on block
      kernel netlink events.  Instead of waiting for partition events from
      the kernel, it uses gptfdisk to read partition details and creates
      the relevant Volume objects.
      
      Change-Id: I0e8bc1f8f9dcb24405f5e795c0658998e22ae2f7
      deb24057