1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright (c) 2018, Microsoft Corporation.
16 #include <rte_memory.h>
17 #include <rte_eal_memconfig.h>
18 #include <rte_common.h>
19 #include <rte_malloc.h>
20 #include <rte_bus_vmbus.h>
21 #include <rte_string_fns.h>
25 /** Pathname of VMBUS devices directory. */
26 #define SYSFS_VMBUS_DEVICES "/sys/bus/vmbus/devices"
28 static void *vmbus_map_addr;
30 /* Control interrupts */
31 void vmbus_uio_irq_control(struct rte_vmbus_device *dev, int32_t onoff)
33 if (write(dev->intr_handle.fd, &onoff, sizeof(onoff)) < 0) {
34 VMBUS_LOG(ERR, "cannot write to %d:%s",
35 dev->intr_handle.fd, strerror(errno));
39 int vmbus_uio_irq_read(struct rte_vmbus_device *dev)
44 cc = read(dev->intr_handle.fd, &count, sizeof(count));
45 if (cc < (int)sizeof(count)) {
47 VMBUS_LOG(ERR, "IRQ read failed %s",
51 VMBUS_LOG(ERR, "can't read IRQ count");
59 vmbus_uio_free_resource(struct rte_vmbus_device *dev,
60 struct mapped_vmbus_resource *uio_res)
64 if (dev->intr_handle.uio_cfg_fd >= 0) {
65 close(dev->intr_handle.uio_cfg_fd);
66 dev->intr_handle.uio_cfg_fd = -1;
69 if (dev->intr_handle.fd >= 0) {
70 close(dev->intr_handle.fd);
71 dev->intr_handle.fd = -1;
72 dev->intr_handle.type = RTE_INTR_HANDLE_UNKNOWN;
77 vmbus_uio_alloc_resource(struct rte_vmbus_device *dev,
78 struct mapped_vmbus_resource **uio_res)
80 char devname[PATH_MAX]; /* contains the /dev/uioX */
82 /* save fd if in primary process */
83 snprintf(devname, sizeof(devname), "/dev/uio%u", dev->uio_num);
84 dev->intr_handle.fd = open(devname, O_RDWR);
85 if (dev->intr_handle.fd < 0) {
86 VMBUS_LOG(ERR, "Cannot open %s: %s",
87 devname, strerror(errno));
90 dev->intr_handle.type = RTE_INTR_HANDLE_UIO_INTX;
92 /* allocate the mapping details for secondary processes*/
93 *uio_res = rte_zmalloc("UIO_RES", sizeof(**uio_res), 0);
94 if (*uio_res == NULL) {
95 VMBUS_LOG(ERR, "cannot store uio mmap details");
99 strlcpy((*uio_res)->path, devname, PATH_MAX);
100 rte_uuid_copy((*uio_res)->id, dev->device_id);
105 vmbus_uio_free_resource(dev, *uio_res);
110 find_max_end_va(const struct rte_memseg_list *msl, void *arg)
112 size_t sz = msl->memseg_arr.len * msl->page_sz;
113 void *end_va = RTE_PTR_ADD(msl->base_va, sz);
116 if (*max_va < end_va)
122 * TODO: this should be part of memseg api.
123 * code is duplicated from PCI.
126 vmbus_find_max_end_va(void)
130 rte_memseg_list_walk(find_max_end_va, &va);
135 vmbus_uio_map_resource_by_index(struct rte_vmbus_device *dev, int idx,
136 struct mapped_vmbus_resource *uio_res,
139 size_t size = dev->resource[idx].len;
140 struct vmbus_map *maps = uio_res->maps;
145 /* devname for mmap */
146 fd = open(uio_res->path, O_RDWR);
148 VMBUS_LOG(ERR, "Cannot open %s: %s",
149 uio_res->path, strerror(errno));
153 /* try mapping somewhere close to the end of hugepages */
154 if (vmbus_map_addr == NULL)
155 vmbus_map_addr = vmbus_find_max_end_va();
157 /* offset is special in uio it indicates which resource */
158 offset = idx * PAGE_SIZE;
160 mapaddr = vmbus_map_resource(vmbus_map_addr, fd, offset, size, flags);
163 if (mapaddr == MAP_FAILED)
166 dev->resource[idx].addr = mapaddr;
167 vmbus_map_addr = RTE_PTR_ADD(mapaddr, size);
169 /* Record result of sucessful mapping for use by secondary */
170 maps[idx].addr = mapaddr;
171 maps[idx].size = size;
176 static int vmbus_uio_map_primary(struct vmbus_channel *chan,
177 void **ring_buf, uint32_t *ring_size)
179 struct mapped_vmbus_resource *uio_res;
181 uio_res = vmbus_uio_find_resource(chan->device);
183 VMBUS_LOG(ERR, "can not find resources!");
187 if (uio_res->nb_maps < VMBUS_MAX_RESOURCE) {
188 VMBUS_LOG(ERR, "VMBUS: only %u resources found!",
193 *ring_size = uio_res->maps[HV_TXRX_RING_MAP].size / 2;
194 *ring_buf = uio_res->maps[HV_TXRX_RING_MAP].addr;
198 static int vmbus_uio_map_subchan(const struct rte_vmbus_device *dev,
199 const struct vmbus_channel *chan,
200 void **ring_buf, uint32_t *ring_size)
202 char ring_path[PATH_MAX];
207 snprintf(ring_path, sizeof(ring_path),
208 "%s/%s/channels/%u/ring",
209 SYSFS_VMBUS_DEVICES, dev->device.name,
212 fd = open(ring_path, O_RDWR);
214 VMBUS_LOG(ERR, "Cannot open %s: %s",
215 ring_path, strerror(errno));
219 if (fstat(fd, &sb) < 0) {
220 VMBUS_LOG(ERR, "Cannot state %s: %s",
221 ring_path, strerror(errno));
225 file_size = sb.st_size;
227 if (file_size == 0 || (file_size & (PAGE_SIZE - 1))) {
228 VMBUS_LOG(ERR, "incorrect size %s: %zu",
229 ring_path, file_size);
235 *ring_size = file_size / 2;
236 *ring_buf = vmbus_map_resource(vmbus_map_addr, fd,
240 if (ring_buf == MAP_FAILED)
243 vmbus_map_addr = RTE_PTR_ADD(ring_buf, file_size);
247 int vmbus_uio_map_rings(struct vmbus_channel *chan)
249 const struct rte_vmbus_device *dev = chan->device;
254 /* Primary channel */
255 if (chan->subchannel_id == 0)
256 ret = vmbus_uio_map_primary(chan, &ring_buf, &ring_size);
258 ret = vmbus_uio_map_subchan(dev, chan, &ring_buf, &ring_size);
263 vmbus_br_setup(&chan->txbr, ring_buf, ring_size);
264 vmbus_br_setup(&chan->rxbr, (char *)ring_buf + ring_size, ring_size);
268 static int vmbus_uio_sysfs_read(const char *dir, const char *name,
269 unsigned long *val, unsigned long max_range)
275 snprintf(path, sizeof(path), "%s/%s", dir, name);
276 f = fopen(path, "r");
278 VMBUS_LOG(ERR, "can't open %s:%s",
279 path, strerror(errno));
283 if (fscanf(f, "%lu", val) != 1)
285 else if (*val > max_range)
294 static bool vmbus_uio_ring_present(const struct rte_vmbus_device *dev,
297 char ring_path[PATH_MAX];
299 /* Check if kernel has subchannel sysfs files */
300 snprintf(ring_path, sizeof(ring_path),
301 "%s/%s/channels/%u/ring",
302 SYSFS_VMBUS_DEVICES, dev->device.name, relid);
304 return access(ring_path, R_OK|W_OK) == 0;
307 bool vmbus_uio_subchannels_supported(const struct rte_vmbus_device *dev,
308 const struct vmbus_channel *chan)
310 return vmbus_uio_ring_present(dev, chan->relid);
313 static bool vmbus_isnew_subchannel(struct vmbus_channel *primary,
316 const struct vmbus_channel *c;
318 STAILQ_FOREACH(c, &primary->subchannel_list, next) {
325 int vmbus_uio_get_subchan(struct vmbus_channel *primary,
326 struct vmbus_channel **subchan)
328 const struct rte_vmbus_device *dev = primary->device;
329 char chan_path[PATH_MAX], subchan_path[PATH_MAX];
333 snprintf(chan_path, sizeof(chan_path),
335 SYSFS_VMBUS_DEVICES, dev->device.name);
337 chan_dir = opendir(chan_path);
339 VMBUS_LOG(ERR, "cannot open %s: %s",
340 chan_path, strerror(errno));
344 while ((ent = readdir(chan_dir))) {
345 unsigned long relid, subid, monid;
349 if (ent->d_name[0] == '.')
353 relid = strtoul(ent->d_name, &endp, 0);
354 if (*endp || errno != 0 || relid > UINT16_MAX) {
355 VMBUS_LOG(NOTICE, "not a valid channel relid: %s",
360 snprintf(subchan_path, sizeof(subchan_path), "%s/%lu",
362 err = vmbus_uio_sysfs_read(subchan_path, "subchannel_id",
365 VMBUS_LOG(NOTICE, "invalid subchannel id %lu",
372 continue; /* skip primary channel */
374 if (!vmbus_isnew_subchannel(primary, relid))
377 if (!vmbus_uio_ring_present(dev, relid))
378 continue; /* Ring may not be ready yet */
380 err = vmbus_uio_sysfs_read(subchan_path, "monitor_id",
383 VMBUS_LOG(NOTICE, "invalid monitor id %lu",
388 err = vmbus_chan_create(dev, relid, subid, monid, subchan);
390 VMBUS_LOG(NOTICE, "subchannel setup failed");
397 return (ent == NULL) ? -ENOENT : 0;