logo

blog

My website can't be that messy, right? git clone https://hacktivis.me/git/blog.git

Disk identification.xhtml (6004B)


  1. <article xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" class="h-entry">
  2. <h1 class="p-name"><a class="u-url" href="/articles/Disk%20identification">Disk identification</a></h1>
  3. <h2>Introduction/Why?</h2>
  4. <p>So the one for network interface is now okay-ish. I done a quick look at how it works for… disks. So most of it was done under Linux, but I know this nightmare under OpenSolaris(I recommend <a href="http://sysunconfig.net/unixtips/solaris80.20.pdf">20% of Solaris Knowledge that solves 80% of your needs</a>; but only 8 slices/partitions, non-intuitive, no file hierarchy… why), Plan9front(a bit better, at least partitions are under a directory).</p>
  5. <p>And as you’re probably using <code>lsblk</code> and/or <code>blkid</code> or even <code>fdisk -l</code>(I use that when I’m on a non-Linux Unix) to identify as a human your disks, I done a quick look for fun at disk identifiers… (intended more for machines I guess) and… oh noes.</p>
  6. <pre><code>$ <kbd>lsblk -oTRAN,NAME,SIZE,FSTYPE,PARTUUID,UUID,WWN</kbd>
  7. <samp>TRAN NAME SIZE FSTYPE PARTUUID UUID WWN
  8. usb sdf 2G
  9. └─sdf1 2G vfat
  10. usb sdd 931.5G
  11. └─sdd1 931.5G ntfs-3g 874ddc9f-01 FEBC2BA2BC2B5505
  12. sata sdb 1.8T zfs_member 15625953673200575561 0x11804586289146122240x
  13. sata sdg 111.8G crypto_LUKS 7979cfc6-568f-4b3a-bfc4-301c92316767 0x17202986447841742850x
  14. sata sdc 189.9G
  15. ├─sdc2 189.9G crypto_LUKS caadf50b-7419-4379-b34e-6cbdb9fb9e17 86106360-90e8-425e-b37e-33131b23a6b0
  16. │ └─root1 189.9G zfs_member 2052176674175130762
  17. └─sdc1 2M d3e52e3c-2c83-48e5-af2f-8c3ce10131aa
  18. sata sda 189.9G
  19. ├─sda2 256M b585598d-8b2c-4db8-b58c-65bfe314d57e
  20. ├─sda3 248M crypto_LUKS d4d61264-c2c9-4953-8c59-3ac265d986e3 9877c105-252e-4141-97df-358f14daa2a8
  21. └─sda1 189.4G crypto_LUKS a359857c-49eb-44c0-936c-464c150d20a0 1c578f43-6f16-497c-ba88-986609ffa1d6
  22. └─root 189.4G
  23. </samp>$ <kbd>blkid</kbd>
  24. <samp>/dev/sda1: UUID="1c578f43-6f16-497c-ba88-986609ffa1d6" TYPE="crypto_LUKS" PARTLABEL="encrypted" PARTUUID="a359857c-49eb-44c0-936c-464c150d20a0"
  25. /dev/sda3: UUID="9877c105-252e-4141-97df-358f14daa2a8" TYPE="crypto_LUKS" PARTLABEL="boot-efi" PARTUUID="d4d61264-c2c9-4953-8c59-3ac265d986e3"
  26. /dev/sdb: LABEL="seagate" UUID="15625953673200575561" UUID_SUB="11105316071247026470" TYPE="zfs_member"
  27. /dev/sdc2: UUID="86106360-90e8-425e-b37e-33131b23a6b0" TYPE="crypto_LUKS" PARTUUID="caadf50b-7419-4379-b34e-6cbdb9fb9e17"
  28. /dev/sdd1: LABEL="TOSHIBA EXT" UUID="FEBC2BA2BC2B5505" TYPE="ntfs" PARTUUID="874ddc9f-01"
  29. /dev/mapper/root: LABEL="zroot" UUID="2052176674175130762" UUID_SUB="12007847542772910046" TYPE="zfs_member"
  30. /dev/sdg: UUID="7979cfc6-568f-4b3a-bfc4-301c92316767" TYPE="crypto_LUKS"
  31. /dev/mapper/root1: LABEL="zroot" UUID="2052176674175130762" UUID_SUB="5697203163307082646" TYPE="zfs_member"
  32. /dev/sda2: PARTLABEL="boot" PARTUUID="b585598d-8b2c-4db8-b58c-65bfe314d57e"
  33. /dev/sdc1: PARTUUID="d3e52e3c-2c83-48e5-af2f-8c3ce10131aa"
  34. /dev/sdf1: SEC_TYPE="msdos" TYPE="vfat"
  35. </samp></code></pre>
  36. <p>If you look enough at it… NONE of them works and wtf is <code>UUID_SUB</code> printing out of nowhere. So as you’re probably not <code>LABEL</code>’ing all your hard-drives because your system sucks… The only thing I found so far that is the least broken under linux(+(e)udev) is <code>/dev/disk/by-id</code>.</p>
  37. <h2>Proposition</h2>
  38. <p>So quick list of things that are nice/works:</p>
  39. <ul>
  40. <li>SunOS: Controller, Target-id, Drive, Slice; but moved to a tree would be better as it’s more flexible</li>
  41. <li><code>DISK ID</code> (MODEL+SERIAL) and partition ID (MBR/GPT thing)</li>
  42. <li>PCI/<code>BUS ID</code>s (like: <code>/proc/bus/pci/x/y</code> in Linux)</li>
  43. <li>Plan9: disk as a directory, partitions as files, <code>data</code> for whole disk access</li>
  44. <li><code>DISK SLOT</code>: useful when you plug (some of) your disk(s) by their slot (IDE: Primary/Secondary Master/Slave; SATA: 1,2,3…; USB: bus/network_iface equivalent?)</li>
  45. </ul>
  46. <p>Here is an example of a file hierarchy of my idea, based on that:</p>
  47. <ul>
  48. <li><code>/dev/…/${BUS ID}/</code><ul>
  49. <li><code>by-label/${DISK LABEL} → ${DISK ID}</code></li>
  50. <li><code>by-slot/${DISK SLOT} → ${DISK ID}</code></li>
  51. <li><code>${DISK ID}</code><ul>
  52. <li><code>by-label/${PARTITION LABEL} → ${PARTITION ID}</code></li>
  53. <li><code>${PARTITION ID}</code></li>
  54. <li><code>raw</code></li>
  55. </ul></li>
  56. </ul></li>
  57. </ul>
  58. <h3>Know things</h3>
  59. <ul>
  60. <li>labels being a free-form string it can be the same as another ID, a <code>by-label</code> directory have to be made</li>
  61. <li>I have not mentionned disk and partitions UUIDs, could be kept for legacy, but I’m in favor of not keeping them as they are broken</li>
  62. <li>in Plan9 there is the <code>data</code> file to have full access to the disk, I named it <code>raw</code> here as I think it’s more intiutive (and keeping the name <code>data</code> because of Plan9 is almost no use considering how dead Plan9 currently is compared to Linux|BSD|Solaris)</li>
  63. <li>The <code>BUS ID</code> directory allows to get sane <code>DISK SLOT</code></li>
  64. <li>Maybe it doesn’t work for everything (please contact, fork, patch, …) but as it is about the same thing as what SunOS and Plan9 uses I think I’m safe saying : This should work and be flexible enough</li>
  65. </ul>
  66. <p>Also anyway I think <code>findfs(8)</code> should be modified to add at least the <code>DISK ID</code> in it</p>
  67. <p>Note: Turns out Haiku uses almost exactly my idea, I think I can make mine compatible with it (because I think that can be how good standards are made)</p>
  68. </article>