Shared memory

One of the ways of rendering to Wayland is by a shared memory buffer between the client and the server. This chapter looks at this.

Resources

Shared memory

The original X Window model used TCP to communicate information between client and server. This is, of course, a slow method of communication, especially if you are on a single computer. Unix sockets can speed this up, but really, in this situation memory shared between client and server is fastest. Unix/Linux has two primary shared memory APIs: the older Sys V model, with calls such as shmget, shmat, etc. This has generally fallen out of favour, with the current preference being for memory mapped files and devices with mmap.

Wayland uses the file-backed shared memory model. There is no expectation that a disk file is actually written to, but a file descriptor for a new open file is passed from the client to the server. The file is just a temporary file created using a call such as mkstemp. Code from Weston examples uses the directory XDG_RUNTIME_DIR. (XDG stands for the X Desktop Group which is now freedesktop.org). That directory is typically /run/user/<user-id>. The Weston examples also 'anonymise' the file by unlinking its name after opening it.

The code from the Weston file shared/os-compatibility.c is

	
static int
set_cloexec_or_close(int fd)
{
        long flags;

        if (fd == -1)
                return -1;

        flags = fcntl(fd, F_GETFD);
        if (flags == -1)
                goto err;

        if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
                goto err;

        return fd;

err:
        close(fd);
        return -1;
}

static int
create_tmpfile_cloexec(char *tmpname)
{
        int fd;

#ifdef HAVE_MKOSTEMP
        fd = mkostemp(tmpname, O_CLOEXEC);
        if (fd >= 0)
                unlink(tmpname);
#else
        fd = mkstemp(tmpname);
        if (fd >= 0) {
                fd = set_cloexec_or_close(fd);
                unlink(tmpname);
        }
#endif

        return fd;
}

/*
 * Create a new, unique, anonymous file of the given size, and
 * return the file descriptor for it. The file descriptor is set
 * CLOEXEC. The file is immediately suitable for mmap()'ing
 * the given size at offset zero.
 *
 * The file should not have a permanent backing store like a disk,
 * but may have if XDG_RUNTIME_DIR is not properly implemented in OS.
 *
 * The file name is deleted from the file system.
 *
 * The file is suitable for buffer sharing between processes by
 * transmitting the file descriptor over Unix sockets using the
 * SCM_RIGHTS methods.
 */
int
os_create_anonymous_file(off_t size)
{
        static const char template[] = "/weston-shared-XXXXXX";
        const char *path;
        char *name;
        int fd;

        path = getenv("XDG_RUNTIME_DIR");
        if (!path) {
                errno = ENOENT;
                return -1;
        }

        name = malloc(strlen(path) + sizeof(template));
        if (!name)
                return -1;
        strcpy(name, path);
        strcat(name, template);

        fd = create_tmpfile_cloexec(name);

        free(name);

        if (fd < 0)
                return -1;

        if (ftruncate(fd, size) < 0) {
                close(fd);
                return -1;
        }

        return fd;
}
	
      

Creating a shared memory buffer

Wayland has a global object of type wl_shm *. A client-side proxy for this is found from the registry by adding this to the global_registry_handler:

	
    if (strcmp(interface, "wl_shm") == 0) {
        shm = wl_registry_bind(registry, id,
                                 &wl_shm_interface, 1);
	wl_shm_add_listener(shm, &shm_listener, NULL);
       
    }
	
      

In the Wayland shared memory model, an area of shared memory is created using the file descriptor for a temporary file. This memory is then mapped into a Wayland structure called a pool, which represents a block of data of some kind, linked to the global Wayland shared memory object. This is then used to create a Wayland buffer, which is used for most of the window operations later.

The code for this is

	
static struct wl_buffer *
create_buffer() {
    struct wl_shm_pool *pool;
    int stride = WIDTH * 4; // 4 bytes per pixel
    int size = stride * HEIGHT;
    int fd;
    struct wl_buffer *buff;

    fd = os_create_anonymous_file(size);
    if (fd < 0) {
	fprintf(stderr, "creating a buffer file for %d B failed: %m\n",
		size);
	exit(1);
    }
    
    shm_data = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
    if (shm_data == MAP_FAILED) {
	fprintf(stderr, "mmap failed: %m\n");
	close(fd);
	exit(1);
    }

    pool = wl_shm_create_pool(shm, fd, size);
    buff = wl_shm_pool_create_buffer(pool, 0,
					  WIDTH, HEIGHT,
					  stride, 	
					  WL_SHM_FORMAT_XRGB8888);
    wl_shm_pool_destroy(pool);
    return buff;
}
	
      

Writing to shared memory

By this stage there are two objects of importance: the shared memory and the corresponding Wayland buffer. Pixels are written into the shared memory, but calls to render this memory are made on the buffer. Just drawing a single colour into the shared memory is done by, for example

	
static void
paint_pixels() {
    int n;
    uint32_t *pixel = shm_data;

    fprintf(stderr, "Painting pixels\n");
    for (n =0; n < WIDTH*HEIGHT; n++) {
	*pixel++ = 0xffffff; // white
    }
}
	
      

More complex drawing just means a more complex choice of pixel values in this rectangular array.

Rendering the data

The last step, once a buffer has been created and pixels written to the shared memory, is to tell the server to render the content. This is done by attaching the buffer to the current surface by wl_surface_attach and then calling wl_surface_commit with that surface by

	
    wl_surface_attach(surface, buffer, 0, 0);
    wl_surface_commit(surface);
	
      

This all hangs together in surface.c