lkml.org 
[lkml]   [2013]   [Sep]   [30]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectSparse files, sendfile and tmpfs ENOSPC
Hi Folks, I hope this is a good CC list for this misbehavior..

I've noticed that tmpfs is eager to expand holes in sparse files and
ends up accounting for that memory as counting against the filesystem
limit.

Specifically, it does this if you try to sendfile() from a holey file,
or mmap(PROT_READ) (and then touch pages). In both cases allocation
errors can happen.

I've attached a short test program to show what I mean..

$ mount -t tmpfs -o size=1048576 tmpfs jnk/
$ df -h jnk/
tmpfs 1.0M 0 1.0M 0% /mnt/jnk
$ strace a.out jnk/test
open("jnk/test", O_RDWR|O_CREAT|O_TRUNC, 0666) = 3
lseek(3, 524288000, SEEK_SET) = 524288000
write(3, "\3\0\0\0", 4) = 4
open("/dev/null", O_WRONLY) = 4
sendfile(4, 3, [0], 524288000) = 1044480
sendfile(4, 3, [1044480], 523243520) = -1 ENOSPC (No space left on device)
$ df -h jnk/
tmpfs 1.0M 1.0M 0 100% /mnt/jnk

The scenario I have that is making this behavior problematic is core
files on embedded. Our system is setup to write core files to a tmpfs,
and the core files are very sparse. When the system tries to send the
core over the network (eg with sendfile or mmap+write) it quickly runs
the tmpfs out of space, fails and blows up. read() works fine without
expanding the hole..

We've been doing this for a long time on PPC, but new systems use ARM
and the ARM core files have significantly more sparse area, exposing
this problem..

I find this surprising since I would have thought the hole would have
just map'd the zero page multiple times? Is this an accounting
error someplace? I've seen Hugh's comments in past threads that this
area is very complex..

Regards,
Jason

#include <unistd.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/sendfile.h>
#include <assert.h>

int main (int argc,const char *argv[])
{
int fd;
int fd2;
off_t off = 0;
size_t count = 500*1024*1024;
ssize_t rc;
off_t orc;

fd = open(argv[1],O_CREAT | O_TRUNC | O_RDWR,0666);
assert(fd != -1);

orc = lseek(fd,count,SEEK_SET);
assert(orc == count);
rc = write(fd,&fd,sizeof(fd));
assert(rc == sizeof(fd));

fd2 = open("/dev/null",O_WRONLY);
assert(fd2 != -1);

while (count != 0) {
rc = sendfile(fd2,fd,&off,count);
assert(rc > 0);
count -= rc;
}
return 0;
}


\
 
 \ /
  Last update: 2013-09-30 22:41    [W:0.025 / U:0.576 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site