vote up 0 vote down star

This code is based on splice-fromnet.c and splice-cp.c to splice from a socket to a pipe and from the pipe to a file but for some reason the first call to splice never returns.

static size_t splice_from_net_to_file(int infd, int outfd)
{
    int p[2];
    size_t total = 0;

    if (pipe(p) == -1)
        return error("pipe");
    while (1) {
        int ret;
        ret = ssplice(infd, NULL, p[1], NULL, splice_size, 0);

        if (ret < 0) {
        	close(p[0]);
        	close(p[1]);
        	return error("splice in pipe");
        }
        else if (!ret)
        	break;
        while (ret > 0) {
        	int written = ssplice(p[0], NULL, outfd, NULL, ret, 0);
        	if (written <= 0) {
        		close(p[0]);
        		close(p[1]);
        		return error("splice out pipe");
        	}
        	ret -= written;
        	total += written;
        }		
    }
    close(p[0]);
    close(p[1]);
    return total;
}

I have tested this on linux 2.6.30.

flag

3 Answers

vote up 1 vote down

Is it possible that you have not started listener on other side of pipe?

link|flag
It wasnt that. I think splice_size was too big... – ernesto Aug 19 at 7:15
vote up 0 vote down

Where is splice_size being initialized?

link|flag
from splice-fromnet.c static unsigned int splice_size = SPLICE_SIZE; #define SPLICE_SIZE (64*1024) – ernesto Aug 18 at 7:51
Does the unmodified splice-fromnet work properly on your system? And the code based on it is broken only? – Sean A.O. Harney Aug 18 at 7:58
The unmodified splice-fromnet work ok on my system. And yes. – ernesto Aug 18 at 8:00
vote up 0 vote down

I think this blocks because there is no reader on the pipe at the time of the write. You should be able to resolve this by using a fork().

#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>

static size_t splice_from_net_to_file(int infd, int outfd)
{
    int p[2];
    pid_t fpid;
    size_t total = 0;

    if (pipe(p) == -1)
        return error("pipe");

    fpid = fork();
    if (fpid == -1)
        return error("fork");

    if (!fpid) /* child */
    {
        int ret;
        close(p[0]); /* don't need reading end */
        while ((ret = ssplice(infd, NULL, p[1], NULL, splice_size, 0)) > 0)
            ;
        close(p[1]);
        if (ret < 0 )
        {
            /* error("splice in pipe") */
            exit(-1);
        }
        exit(0);
    }
    else
    {
        /* parent */
        int ret;
        close(p[1]); /* no need for writing end */
        while ((ret = ssplice(p[0], NULL, outfd, NULL, splice_size, 0)) > 0)
            total += ret;
        close(p[0]);
        waitpid(fpid, NULL, 0);

        if (ret < 0)
        {
            return error("splice out pipe");
        }
    }

    return total;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.