Come vengono archiviati e conservati gli attributi estesi?


11

Ho una piccola domanda sugli attributi di file estesi. Supponiamo di etichettare i miei file con metadati in attributi estesi (ad es. Per tenere conto dell'integrità, ma questo non ha importanza per la mia domanda). Le domande che sorgono ora:

  • Dove sono memorizzati questi attributi? Sicuramente non nell'inode credo, ma in quale posizione - o meglio: struttura?
  • Come sono collegati questi attributi a un file? Esiste un collegamento dalla struttura dell'attributo all'inode o giù di lì?
  • Cosa succede quando si copiano / si spostano file? L'ho appena provato, quando si sposta un file, il file rimane i suoi attributi. Durante la copia, la copia non ha attributi. Quindi suppongo che quando lo masterizziamo su CD o invii il file via e-mail, perderà anche i suoi attributi?

Risposte:


10

La risposta alla tua domanda è specifica del filesystem. Per ext3, ad esempio, dai un'occhiata a fs / ext3 / xattr.c , contiene la seguente descrizione:

  16 /*
  17  * Extended attributes are stored directly in inodes (on file systems with
  18  * inodes bigger than 128 bytes) and on additional disk blocks. The i_file_acl
  19 
 * field contains the block number if an inode uses an additional block. All
  20  * attributes must fit in the inode and one additional block. Blocks that
  21  * contain the identical set of attributes may be shared among several inodes.
  22  * Identical blocks are detected by keeping a cache of blocks that have
  23  * recently been accessed.
  24  *
  25  * The attributes in inodes and on blocks have a different header; the entries
  26  * are stored in the same format:
  27  *
  28  *   +------------------+
  29  *   | header           |
  30  *   | entry 1          | |
  31  *   | entry 2          | | growing downwards
  32  *   | entry 3          | v
  33  *   | four null bytes  |
  34  *   | . . .            |
  35  *   | value 1          | ^
  36  *   | value 3          | | growing upwards
  37  *   | value 2          | |
  38  *   +------------------+
  39  *
  40  * The header is followed by multiple entry descriptors. In disk blocks, the
  41  * entry descriptors are kept sorted. In inodes, they are unsorted. The
  42  * attribute values are aligned to the end of the block in no specific order.
  43  *
  44  * Locking strategy
  45  * ----------------
  46  * EXT3_I(inode)->i_file_acl is protected by EXT3_I(inode)->xattr_sem.
  47  * EA blocks are only changed if they are exclusive to an inode, so
  48  * holding xattr_sem also means that nothing but the EA block's reference
  49  * count can change. Multiple writers to the same block are synchronized
  50  * by the buffer lock.
  51  */

Per quanto riguarda la domanda "come sono attributi collegati", il link è nel viceversa, l'inode ha un collegamento agli attributi estesi, vedere EXT3_XATTR_NEXTe ext3_xattr_list_entriesin xattr.h e xattr.c rispettivamente.

Per ricapitolare, gli attributi sono collegati all'inode e sono dipendenti da fs, quindi sì, perderai gli attributi quando masterizzi un CD-ROM o invii un file via e-mail.


6
Un dettaglio minore a cui non si risponde qui: è possibile conservare gli attributi durante la copia (ovviamente è necessario copiare su un filesystem con supporto xattr). cp ha un'opzione "--preserve = xattr"
Marcel Stimberg
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.