* Released 2.8.2
[fuse.git] / lib / fuse_loop.c
blob104c5d4313ea2fc1428bda7882eafc9470f89f84
1 /*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU LGPLv2.
6 See the file COPYING.LIB
7 */
9 #include "fuse_lowlevel.h"
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <errno.h>
15 int fuse_session_loop(struct fuse_session *se)
17 int res = 0;
18 struct fuse_chan *ch = fuse_session_next_chan(se, NULL);
19 size_t bufsize = fuse_chan_bufsize(ch);
20 char *buf = (char *) malloc(bufsize);
21 if (!buf) {
22 fprintf(stderr, "fuse: failed to allocate read buffer\n");
23 return -1;
26 while (!fuse_session_exited(se)) {
27 struct fuse_chan *tmpch = ch;
28 res = fuse_chan_recv(&tmpch, buf, bufsize);
29 if (res == -EINTR)
30 continue;
31 if (res <= 0)
32 break;
33 fuse_session_process(se, buf, res, tmpch);
36 free(buf);
37 fuse_session_reset(se);
38 return res < 0 ? -1 : 0;