1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
|
/*
* Copyright (c) 2017-2019 Intel Corporation, Inc. All rights reserved.
* Copyright (c) 2019-2021 Amazon.com, Inc. or its affiliates.
* All rights reserved.
* (C) Copyright 2020 Hewlett Packard Enterprise Development LP
*
* This software is available to you under a choice of one of two
* licenses. You may choose to be licensed under the terms of the GNU
* General Public License (GPL) Version 2, available from the file
* COPYING in the main directory of this source tree, or the
* BSD license below:
*
* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
*
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef _OFI_MR_H_
#define _OFI_MR_H_
#if HAVE_CONFIG_H
# include <config.h>
#endif /* HAVE_CONFIG_H */
#include <inttypes.h>
#include <stdbool.h>
#include <ofi.h>
#include <ofi_atom.h>
#include <ofi_lock.h>
#include <ofi_list.h>
#include <ofi_tree.h>
int ofi_open_mr_cache(uint32_t version, void *attr, size_t attr_len,
uint64_t flags, struct fid **fid, void *context);
struct ofi_mr_info {
struct iovec iov;
enum fi_hmem_iface iface;
uint64_t device;
uint64_t flags;
uint64_t peer_id;
void *mapped_addr;
uint8_t handle[MAX_MR_HANDLE_SIZE];
};
#define OFI_MR_BASIC_MAP (FI_MR_ALLOCATED | FI_MR_PROV_KEY | FI_MR_VIRT_ADDR)
/* FI_LOCAL_MR is valid in pre-libfaric-1.5 and can be valid in
* post-libfabric-1.5 */
static inline int ofi_mr_local(const struct fi_info *info)
{
if (!info)
return 0;
if (!info->domain_attr)
goto check_local_mr;
if (info->domain_attr->mr_mode & FI_MR_LOCAL)
return 1;
if (info->domain_attr->mr_mode & ~(FI_MR_BASIC | FI_MR_SCALABLE))
return 0;
check_local_mr:
return (info->mode & FI_LOCAL_MR) ? 1 : 0;
}
#define OFI_MR_MODE_RMA_TARGET (FI_MR_RAW | FI_MR_VIRT_ADDR | \
FI_MR_PROV_KEY | FI_MR_RMA_EVENT)
/* If the app sets FI_MR_LOCAL, we ignore FI_LOCAL_MR. So, if the
* app doesn't set FI_MR_LOCAL, we need to check for FI_LOCAL_MR.
* The provider is assumed only to set FI_MR_LOCAL correctly.
*/
static inline uint64_t ofi_mr_get_prov_mode(uint32_t version,
const struct fi_info *user_info,
const struct fi_info *prov_info)
{
if (FI_VERSION_LT(version, FI_VERSION(1, 5)) ||
(user_info->domain_attr &&
!(user_info->domain_attr->mr_mode & FI_MR_LOCAL))) {
return (prov_info->domain_attr->mr_mode & FI_MR_LOCAL) ?
prov_info->mode | FI_LOCAL_MR : prov_info->mode;
} else {
return prov_info->mode;
}
}
/* Single lock used by all memory monitors and MR caches. */
extern pthread_mutex_t mm_lock;
/* The read-write lock is an additional lock used to protect the dlist_entry
* list of ofi_mem_monitor. Due to the necessity of releasing the mm_lock
* while walking the dlist in ofi_monitor_notify, we need a separate lock to
* ensure thread safety. This must be a read-write lock because
* ofi_monitor_notify may be recursive and cannot block multiple walks from
* occurring at the same time.
*/
extern pthread_rwlock_t mm_list_rwlock;
/*
* Memory notifier - Report memory mapping changes to address ranges
*/
struct ofi_mr_cache;
union ofi_mr_hmem_info {
uint64_t cuda_id;
uint64_t ze_id;
};
struct ofi_mr_entry {
struct ofi_mr_info info;
struct ofi_rbnode *node;
int use_cnt;
struct dlist_entry list_entry;
union ofi_mr_hmem_info hmem_info;
uint8_t data[];
};
enum fi_mm_state {
FI_MM_STATE_UNSPEC = 0,
FI_MM_STATE_IDLE,
FI_MM_STATE_STARTING,
FI_MM_STATE_RUNNING,
FI_MM_STATE_STOPPING,
};
struct ofi_mem_monitor {
struct dlist_entry list;
enum fi_hmem_iface iface;
enum fi_mm_state state;
void (*init)(struct ofi_mem_monitor *monitor);
void (*cleanup)(struct ofi_mem_monitor *monitor);
int (*start)(struct ofi_mem_monitor *monitor);
void (*stop)(struct ofi_mem_monitor *monitor);
int (*subscribe)(struct ofi_mem_monitor *notifier,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
void (*unsubscribe)(struct ofi_mem_monitor *notifier,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
/* Valid is a memory monitor operation used to query a memory monitor to
* see if the memory monitor's view of the buffer is still valid. If the
* memory monitor's view of the buffer is no longer valid (e.g. the
* pages behind a given virtual address have changed), the buffer needs
* to be re-registered.
*/
bool (*valid)(struct ofi_mem_monitor *notifier,
const struct ofi_mr_info *info, struct ofi_mr_entry *entry);
};
void ofi_monitor_init(struct ofi_mem_monitor *monitor);
void ofi_monitor_cleanup(struct ofi_mem_monitor *monitor);
void ofi_monitors_init(void);
void ofi_monitors_cleanup(void);
int ofi_monitor_import(struct fid *fid);
int ofi_monitors_add_cache(struct ofi_mem_monitor **monitors,
struct ofi_mr_cache *cache);
void ofi_monitors_del_cache(struct ofi_mr_cache *cache);
void ofi_monitor_notify(struct ofi_mem_monitor *monitor,
const void *addr, size_t len);
void ofi_monitor_flush(struct ofi_mem_monitor *monitor);
int ofi_monitor_subscribe(struct ofi_mem_monitor *monitor,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
void ofi_monitor_unsubscribe(struct ofi_mem_monitor *monitor,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
int ofi_monitor_start_no_op(struct ofi_mem_monitor *monitor);
void ofi_monitor_stop_no_op(struct ofi_mem_monitor *monitor);
int ofi_monitor_subscribe_no_op(struct ofi_mem_monitor *notifier,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
void ofi_monitor_unsubscribe_no_op(struct ofi_mem_monitor *notifier,
const void *addr, size_t len,
union ofi_mr_hmem_info *hmem_info);
extern struct ofi_mem_monitor *default_monitor;
extern struct ofi_mem_monitor *default_cuda_monitor;
extern struct ofi_mem_monitor *default_rocr_monitor;
extern struct ofi_mem_monitor *default_ze_monitor;
/*
* Userfault fd memory monitor
*/
struct ofi_uffd {
struct ofi_mem_monitor monitor;
pthread_t thread;
int fd;
};
extern struct ofi_mem_monitor *uffd_monitor;
/*
* Memory intercept call memory monitor
*/
struct ofi_memhooks {
struct ofi_mem_monitor monitor;
struct dlist_entry intercept_list;
};
extern struct ofi_mem_monitor *memhooks_monitor;
extern struct ofi_mem_monitor *cuda_monitor;
extern struct ofi_mem_monitor *cuda_ipc_monitor;
extern struct ofi_mem_monitor *rocr_monitor;
extern struct ofi_mem_monitor *rocr_ipc_monitor;
extern struct ofi_mem_monitor *ze_monitor;
extern struct ofi_mem_monitor *import_monitor;
extern struct ofi_mem_monitor *xpmem_monitor;
/*
* Used to store registered memory regions into a lookup map. This
* is used by the ofi_mr_xxx calls below, and may be accessed by a
* provider when processing incoming RMA operations to verify that
* a region has been registered for the specified operation.
*/
struct ofi_mr_map {
const struct fi_provider *prov;
struct ofi_rbmap *rbtree;
uint64_t key;
int mode;
};
int ofi_mr_map_init(const struct fi_provider *in_prov, int mode,
struct ofi_mr_map *map);
void ofi_mr_map_close(struct ofi_mr_map *map);
int ofi_mr_map_insert(struct ofi_mr_map *map,
const struct fi_mr_attr *attr,
uint64_t *key, void *context,
uint64_t flags);
int ofi_mr_map_remove(struct ofi_mr_map *map, uint64_t key);
void *ofi_mr_map_get(struct ofi_mr_map *map, uint64_t key);
int ofi_mr_map_verify(struct ofi_mr_map *map, uintptr_t *io_addr,
size_t len, uint64_t key, uint64_t access,
void **context);
/*
* These calls may be used be providers to implement software memory
* registration.
*/
/* libfabric internal flags starting from 60 to 63 */
/**
* OFI_HMEM_DATA_DEV_REG_HANDLE indicates that hmem_data points to
* a dev_reg data structure, e.g. gdrcopy handle in cuda
*/
#define OFI_HMEM_DATA_DEV_REG_HANDLE (1ULL << 60)
struct ofi_mr {
struct fid_mr mr_fid;
struct util_domain *domain;
uint64_t key;
uint64_t flags;
enum fi_hmem_iface iface;
uint64_t device;
void *hmem_data;
};
static inline bool ofi_mr_all_host(struct ofi_mr **mr, size_t count)
{
int i;
for (i = 0; i < count; i++) {
if (mr[i] && mr[i]->iface != FI_HMEM_SYSTEM)
return false;
}
return true;
}
static inline
void ofi_mr_get_iov_from_dmabuf(struct iovec *iov,
const struct fi_mr_dmabuf *dmabuf,
size_t count)
{
int i;
for (i = 0; i < count; i++) {
iov[i].iov_base = (void *) (
(uintptr_t) dmabuf[i].base_addr + dmabuf[i].offset);
iov[i].iov_len = dmabuf[i].len;
}
}
static inline
void ofi_mr_info_get_iov_from_mr_attr(struct ofi_mr_info *info,
const struct fi_mr_attr *attr,
uint64_t flags)
{
if (flags & FI_MR_DMABUF)
ofi_mr_get_iov_from_dmabuf(&info->iov, attr->dmabuf, 1);
else
info->iov = *attr->mr_iov;
}
void ofi_mr_update_attr(uint32_t user_version, uint64_t caps,
const struct fi_mr_attr *user_attr,
struct fi_mr_attr *cur_abi_attr,
uint64_t flags);
int ofi_mr_close(struct fid *fid);
int ofi_mr_regattr(struct fid *fid, const struct fi_mr_attr *attr,
uint64_t flags, struct fid_mr **mr_fid);
int ofi_mr_regv(struct fid *fid, const struct iovec *iov,
size_t count, uint64_t access, uint64_t offset,
uint64_t requested_key, uint64_t flags,
struct fid_mr **mr_fid, void *context);
int ofi_mr_reg(struct fid *fid, const void *buf, size_t len,
uint64_t access, uint64_t offset, uint64_t requested_key,
uint64_t flags, struct fid_mr **mr_fid, void *context);
int ofi_mr_verify(struct ofi_mr_map *map, ssize_t len,
uintptr_t *addr, uint64_t key, uint64_t access);
/*
* Memory registration cache
*/
struct ofi_mr_cache_params {
size_t max_cnt;
size_t max_size;
char * monitor;
int cuda_monitor_enabled;
int rocr_monitor_enabled;
int ze_monitor_enabled;
};
extern struct ofi_mr_cache_params cache_params;
#define OFI_HMEM_MAX 6
struct ofi_mr_cache {
struct util_domain *domain;
const struct fi_provider *prov;
struct ofi_mem_monitor *monitors[OFI_HMEM_MAX];
struct dlist_entry notify_entries[OFI_HMEM_MAX];
size_t entry_data_size;
struct ofi_rbmap tree;
struct dlist_entry lru_list;
struct dlist_entry dead_region_list;
pthread_mutex_t lock;
size_t cached_cnt;
size_t cached_size;
size_t cached_max_cnt;
size_t cached_max_size;
size_t uncached_cnt;
size_t uncached_size;
size_t search_cnt;
size_t delete_cnt;
size_t hit_cnt;
size_t notify_cnt;
struct ofi_bufpool *entry_pool;
int (*add_region)(struct ofi_mr_cache *cache,
struct ofi_mr_entry *entry);
void (*delete_region)(struct ofi_mr_cache *cache,
struct ofi_mr_entry *entry);
};
int ofi_mr_cache_init(struct util_domain *domain,
struct ofi_mem_monitor **monitors,
struct ofi_mr_cache *cache);
void ofi_mr_cache_cleanup(struct ofi_mr_cache *cache);
void ofi_mr_cache_notify(struct ofi_mr_cache *cache, const void *addr, size_t len);
int ofi_ipc_cache_open(struct ofi_mr_cache **cache,
struct util_domain *domain);
void ofi_ipc_cache_destroy(struct ofi_mr_cache *cache);
int ofi_ipc_cache_search(struct ofi_mr_cache *cache, uint64_t peer_id,
struct ipc_info *ipc_info,
struct ofi_mr_entry **mr_entry);
static inline bool ofi_mr_cache_full(struct ofi_mr_cache *cache)
{
return (cache->cached_cnt >= cache->cached_max_cnt) ||
(cache->cached_size >= cache->cached_max_size);
}
bool ofi_mr_cache_flush(struct ofi_mr_cache *cache, bool flush_lru);
/**
* @brief Given an ofi_mr_info (with an iov range, ipc_info)
* If the iov range is already registered and validated by the monitor,
* assign the corresponding ofi_mr_entry to entry. Otherwise, register
* a new ofi_mr_entry and assign it to entry.
*
* @param[in] cache The cache the entry belongs to
* @param[in] info Information about the mr entry to search
* @param[out] entry The registered entry corresponding to the
* region described in info.
* @returns On success, returns 0. On failure, returns a negative error code.
*/
int ofi_mr_cache_search(struct ofi_mr_cache *cache,
const struct ofi_mr_info *info,
struct ofi_mr_entry **entry);
/**
* Given an attr (with an iov range), if the iov range is already registered,
* return the corresponding ofi_mr_entry. Otherwise, return NULL.
* The caller must call ofi_mr_cache_delete on the entry before cleanup if
* the returned entry is not NULL.
*
* @param[in] cache The cache the entry belongs to
* @param[in] attr Information about the region to search
*
* @returns entry The registered entry corresponding to the
* region described in attr
* @returns NULL The region described in attr is not registered
* with the cache.
*/
struct ofi_mr_entry *ofi_mr_cache_find(struct ofi_mr_cache *cache,
const struct fi_mr_attr *attr,
uint64_t flags);
int ofi_mr_cache_reg(struct ofi_mr_cache *cache, const struct fi_mr_attr *attr,
struct ofi_mr_entry **entry, uint64_t flags);
void ofi_mr_cache_delete(struct ofi_mr_cache *cache, struct ofi_mr_entry *entry);
void ofi_memhooks_atfork_handler(void);
#endif /* _OFI_MR_H_ */
|