GNU/Linux >> LINUX-Kenntnisse >  >> Linux

Was ist ein anonymer Inode in Linux?

open mit O_TMPFILE

Dies wäre eine gute Definition von anonymem Inode:Es erstellt einen Inode innerhalb eines bestimmten Verzeichnisses ohne Namen, der überhaupt nicht mit ls erscheint .

Wenn Sie dann den Deskriptor schließen, wird die Datei gelöscht.

Es wurde in Linux 3.11 hinzugefügt.

main.c

#define _GNU_SOURCE
#include <assert.h>
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

int main(void) {
    char buf[]  = { 'a', 'b', 'c', 'd' };
    char buf2[]  = { 'e', 'f', 'g', 'h' };
    int f, ret;
    size_t off;

    /* write */
    f = open(".", O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR);
    ret = write(f, buf, sizeof(buf));

    /* Interactivelly check if anything changed on directory. It hasn't. */
    /*puts("hit enter to continue");*/
    /*getchar();*/

    /* read */
    lseek(f, 0, SEEK_SET);
    off = 0;
    while ((ret = read(f, buf2 + off, sizeof(buf) - off))) {
        off += ret;
    }
    close(f);
    assert(!memcmp(buf, buf2, sizeof(buf)));

    return EXIT_SUCCESS;
}

GitHub-Upstream.

Kompilieren und ausführen:

gcc -o main.out -std=c99 -Wall -Wextra -pedantic  main.c
./main.out

Dies ist daher im Wesentlichen die optimale Art, temporäre Dateien zu implementieren:Wie erstellt man eine temporäre Textdatei in C++? wie es kann:

  • finde immer sofort einen freien Namen, ohne dass wir Dateinamen durchlaufen müssen (es wird kein Name benötigt!)
  • und wird automatisch gelöscht

Vergleichen Sie dies mit einer eher manuellen Methode für Verzeichnisse, wie sie hier gezeigt wird:Wie erstellt man ein temporäres Verzeichnis in C++?

Getestet in Ubuntu 17.04, Linux 4.10, glibc 2.24.

Wie O_TMPFILE sieht aus wie in /proc/PID/fd

Wir können es schnell untersuchen mit:

#define _GNU_SOURCE
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

int main(void) {
    int f = open(".", O_TMPFILE | O_RDWR, S_IRUSR | S_IWUSR);
    struct stat s;
    fstat(f, &s);
    printf("pid %jd\n", (intmax_t)getpid());
    printf("inode %jd\n", (intmax_t)s.st_ino);
    getchar();
}

dann für eine Beispielausgabe:

pid 15952     
inode 44698689

wir tun:

ls -l /proc/15952/fd

und das enthält:

3 -> '/home/ciro/test/#44698689 (deleted)'

was uns zeigt, wie man temporäre Dateien für einen bestimmten Prozess findet und deren inode sieht und übergeordnetes Verzeichnis inoden.

anon_inode_getfd Linux-Kernel-Funktion

Wenn Sie es mit Kernelmodulen zu tun haben, ist dies eine wahrscheinliche Definition.

Du nennst es so:

fd = anon_inode_getfd("random", &fops_anon, NULL, O_RDONLY | O_CLOEXEC);

und fd zurückgeben an Benutzer, z. von einem ioctl .

Jetzt hat der Benutzer einen fd mit zugehörigem willkürlichem file_operations und inode , und wenn das fd geschlossen ist, ist alles frei.

Diese Methode ist z.B. wenn Sie mehrere read haben möchten Systemaufrufe ausführen, aber nicht mehrere Gerätedateien erstellen möchten, was /dev weiter verschmutzt :Sie erstellen einfach zusätzliche ioctl s statt.

Minimales lauffähiges Beispiel mit QEMU Buildroot:

  • https://github.com/cirosantilli/linux-kernel-module-cheat/blob/de6c179fc0cf122789f0fe85cc69b847a1f4fe9c/kernel_module/anonymous_inode.c
  • https://github.com/cirosantilli/linux-kernel-module-cheat/blob/de6c179fc0cf122789f0fe85cc69b847a1f4fe9c/rootfs_overlay/anonymous_inode.sh
#include <asm/uaccess.h> /* copy_from_user, copy_to_user */
#include <linux/anon_inodes.h>
#include <linux/debugfs.h>
#include <linux/errno.h> /* EFAULT */
#include <linux/fs.h>
#include <linux/jiffies.h>
#include <linux/kernel.h> /* min */
#include <linux/module.h>
#include <linux/printk.h> /* printk */

#include "anonymous_inode.h"

MODULE_LICENSE("GPL");

static struct dentry *dir;

static ssize_t read(struct file *filp, char __user *buf, size_t len, loff_t *off)
{
    char kbuf[1024];
    size_t ret;

    ret = snprintf(kbuf, sizeof(kbuf), "%llu", (unsigned long long)jiffies);
    if (copy_to_user(buf, kbuf, ret)) {
        ret = -EFAULT;
    }
    return ret;
}

static const struct file_operations fops_anon = {
    .read = read,
};

static long unlocked_ioctl(struct file *filp, unsigned int cmd, unsigned long argp)
{
    int fd;

    switch (cmd) {
        case LKMC_ANONYMOUS_INODE_GET_FD:
            fd = anon_inode_getfd(
                "random",
                &fops_anon,
                NULL,
                O_RDONLY | O_CLOEXEC
            );
            if (copy_to_user((void __user *)argp, &fd, sizeof(fd))) {
                return -EFAULT;
            }
        break;
        default:
            return -EINVAL;
        break;
    }
    return 0;
}

static const struct file_operations fops_ioctl = {
    .owner = THIS_MODULE,
    .unlocked_ioctl = unlocked_ioctl
};

static int myinit(void)
{
    dir = debugfs_create_dir("lkmc_anonymous_inode", 0);
    debugfs_create_file("f", 0, dir, NULL, &fops_ioctl);
    return 0;
}

static void myexit(void)
{
    debugfs_remove_recursive(dir);
}

module_init(myinit)
module_exit(myexit)

anon_inode in /proc/PID/fd

Dies sind Pipes und Sockets, siehe:https://unix.stackexchange.com/questions/463548/what-is-anon-inode-in-the-output-of-ls-l


Zumindest in einigen Zusammenhängen ist ein anonymer Inode ein Inode ohne angehängten Verzeichniseintrag. Der einfachste Weg, einen solchen Inode zu erstellen, ist wie folgt:

int fd = open( "/tmp/file", O_CREAT | O_RDWR, 0666 );
unlink( "/tmp/file" );
// Note that the descriptor fd now points to an inode that has no filesystem entry; you
// can still write to it, fstat() it, etc. but you can't find it in the filesystem.

Linux
  1. Linux vs. Unix:Was ist der Unterschied?

  2. Was ist neu bei rdiff-backup?

  3. Was ist ein Linux-Benutzer?

  4. Was ist die Inode-Nummer unter Linux?

  5. Was ist JingOS Linux?

Was sagt mir meine Linux-Eingabeaufforderung?

Was tun bei einer Linux-Kernel-Panik?

Was ist die Login-Shell in Linux?

Was ist Load Average in Linux?

Was sind Inodes unter Linux?

Was ist eine .bashrc-Datei unter Linux?