* before looking for the next request.
*/
+#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <syslog.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#include <xenctrl.h> /* For cpu barriers. */
#include <xen-tools/common-macros.h>
/* P9 protocol commands (response is either cmd+1 or P9_CMD_ERROR). */
#define P9_CMD_VERSION 100
+#define P9_CMD_ATTACH 104
#define P9_CMD_ERROR 107
#define P9_MIN_MSIZE 2048
return pars;
}
+static struct p9_fid *find_fid(device *device, unsigned int fid)
+{
+ struct p9_fid *fidp;
+
+ XEN_TAILQ_FOREACH(fidp, &device->fids, list)
+ {
+ if ( fidp->fid == fid )
+ return fidp;
+ }
+
+ return NULL;
+}
+
+static struct p9_fid *alloc_fid_mem(device *device, unsigned int fid,
+ const char *path)
+{
+ struct p9_fid *fidp;
+
+ fidp = calloc(sizeof(*fidp) + strlen(path) + 1, 1);
+ if ( !fidp )
+ return NULL;
+
+ fidp->fid = fid;
+ strcpy(fidp->path, path);
+
+ return fidp;
+}
+
+static struct p9_fid *alloc_fid(device *device, unsigned int fid,
+ const char *path)
+{
+ struct p9_fid *fidp = NULL;
+
+ pthread_mutex_lock(&device->fid_mutex);
+
+ if ( find_fid(device, fid) )
+ {
+ errno = EBADF;
+ goto out;
+ }
+
+ if ( device->n_fids >= device->max_open_files )
+ {
+ errno = EMFILE;
+ goto out;
+ }
+
+ fidp = alloc_fid_mem(device, fid, path);
+ if ( !fidp )
+ goto out;
+
+ fidp->ref = 1;
+ XEN_TAILQ_INSERT_HEAD(&device->fids, fidp, list);
+ device->n_fids++;
+
+ out:
+ pthread_mutex_unlock(&device->fid_mutex);
+
+ return fidp;
+}
+
+static void free_fid(device *device, struct p9_fid *fidp)
+{
+ if ( !fidp )
+ return;
+
+ pthread_mutex_lock(&device->fid_mutex);
+
+ fidp->ref--;
+ if ( !fidp->ref )
+ {
+ device->n_fids--;
+ XEN_TAILQ_REMOVE(&device->fids, fidp, list);
+ free(fidp);
+ }
+
+ pthread_mutex_unlock(&device->fid_mutex);
+}
+
+void free_fids(device *device)
+{
+ struct p9_fid *fidp;
+
+ while ( (fidp = XEN_TAILQ_FIRST(&device->fids)) != NULL )
+ {
+ XEN_TAILQ_REMOVE(&device->fids, fidp, list);
+ free(fidp);
+ }
+}
+
+static const char *relpath_from_path(const char *path)
+{
+ if (!strcmp(path, "/"))
+ return ".";
+
+ return (path[0] == '/') ? path + 1 : path;
+}
+
+static int fill_qid(device *device, const char *path, struct p9_qid *qid,
+ const struct stat *stbuf)
+{
+ struct stat st;
+
+ if ( !stbuf )
+ {
+ if ( fstatat(device->root_fd, path, &st, 0) )
+ return errno;
+
+ stbuf = &st;
+ }
+
+ qid->type = S_ISDIR(stbuf->st_mode) ? QID_TYPE_DIR : 0;
+ qid->version = stbuf->st_mtime ^ (stbuf->st_size << 8);
+ qid->path = stbuf->st_ino;
+
+ return 0;
+}
+
static void p9_error(struct ring *ring, uint16_t tag, uint32_t err)
{
unsigned int erroff;
fill_buffer(ring, hdr->cmd + 1, hdr->tag, "US", &ring->max_size, version);
}
+static void p9_attach(struct ring *ring, struct p9_header *hdr)
+{
+ device *device = ring->device;
+ uint32_t fid;
+ uint32_t dummy_u32;
+ unsigned int dummy_uint;
+ struct p9_qid qid;
+ int ret;
+
+ ret = fill_data(ring, "UUSSU", &fid, &dummy_u32, &dummy_uint, &dummy_uint,
+ &dummy_u32);
+ if ( ret != 5 )
+ {
+ p9_error(ring, hdr->tag, errno);
+ return;
+ }
+
+ device->root_fid = alloc_fid(device, fid, relpath_from_path("/"));
+ if ( !device->root_fid )
+ {
+ p9_error(ring, hdr->tag, errno);
+ return;
+ }
+
+ ret = fill_qid(device, device->root_fid->path, &qid, NULL);
+ if ( ret )
+ {
+ free_fid(device, device->root_fid);
+ device->root_fid = NULL;
+ p9_error(ring, hdr->tag, ret);
+ return;
+ }
+
+ fill_buffer(ring, hdr->cmd + 1, hdr->tag, "Q", &qid);
+}
+
void *io_thread(void *arg)
{
struct ring *ring = arg;
p9_version(ring, &hdr);
break;
+ case P9_CMD_ATTACH:
+ p9_attach(ring, &hdr);
+ break;
+
default:
syslog(LOG_DEBUG, "%u.%u sent unhandled command %u\n",
ring->device->domid, ring->device->devid, hdr.cmd);