gpt4 book ai didi

operating-system - 命名管道的随机访问替代方案

转载 作者:行者123 更新时间:2023-12-04 08:28:56 24 4
gpt4 key购买 nike

有没有办法创建一个"file"(即文件系统中的某个点),然后可以由任何程序将其作为常规文件打开,但对其进行读/写将转到程序而不是磁盘?命名管道似乎满足所有要求,除了它只允许串行文件访问。

我目前对 *nix 类型的系统很感兴趣,但很想知道在任何操作系统/文件系统上都有这样的系统。

最佳答案

这里是一个实现:

恶魔.c:

#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>
#include <assert.h>
#include <string.h>
#include <errno.h>

void map_file(const char *f) {
int fd = open(f, O_CREAT|O_RDWR, 0666);
if (fd < 0) {
perror("fd open error\n");
exit(-1);
}
char *addr = (char *)mmap(NULL, 10, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (addr == MAP_FAILED) {
exit(-1);
}
int i;
for (i = 0; i != 10; ++i) {
addr[i] = '0' + i;
}
while (1) {
for (i = 0; i != 10; ++i) {
if (addr[i] != '0' + i) {
printf("addr[%d]: %c\n", i, addr[i]);
}
}
sleep(1);
}
}

int main()
{
map_file("/dev/mem");
return 0;
}

cli.c:

#include <sys/mman.h>
#include <assert.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>

int main() {
const char *f = "/dev/mem";
int fd = open(f, O_RDWR, 0666);
assert(fd >= 0);
lseek(fd, rand() % 10, SEEK_SET);
write(fd, "X", 1);
close(fd);
return 0;
}

我们将 10 字节内存从“/dev/mem”映射到我们的恶魔程序。 cli 将此文件作为常规文件打开,并在随机地址中写入一个字节。当然,您可以映射任何其他文件而不是/dev/mem,但是您需要在 mmap 之前从常规文件“分配”一些字节。例如:

fd = open("/path/to/myfile", O_CREAT|O_RDWR, 0666);
write(fd, "0123456789", 10); // 'allocate' 10 bytes from regular file
addr = (char *)mmap(NULL, 10, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);

关于operating-system - 命名管道的随机访问替代方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30568759/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com