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
|
/**
* Copyright (c) NVIDIA CORPORATION & AFFILIATES, 2001-2015. ALL RIGHTS RESERVED.
*
* See file LICENSE for terms.
*/
#include "uct_p2p_test.h"
#include <functional>
class uct_p2p_err_test : public uct_p2p_test {
public:
enum operation {
OP_PUT_SHORT,
OP_PUT_BCOPY,
OP_PUT_ZCOPY,
OP_AM_SHORT,
OP_AM_SHORT_IOV,
OP_AM_BCOPY,
OP_AM_ZCOPY
};
struct pack_arg {
void *buffer;
size_t length;
};
uct_p2p_err_test() :
uct_p2p_test(0, error_handler) {
}
static size_t pack_cb(void *dest, void *arg)
{
pack_arg *pa = (pack_arg*)arg;
memcpy(dest, pa->buffer, pa->length);
return pa->length;
}
void test_error_run(enum operation op, uint8_t am_id,
void *buffer, size_t length, uct_mem_h memh,
uint64_t remote_addr, uct_rkey_t rkey,
const std::string& error_pattern)
{
pack_arg arg;
scoped_log_handler slh(wrap_errors_logger);
ucs_status_t status = UCS_OK;
ssize_t packed_len;
do {
switch (op) {
case OP_PUT_SHORT:
status = uct_ep_put_short(sender_ep(), buffer, length,
remote_addr, rkey);
break;
case OP_PUT_BCOPY:
arg.buffer = buffer;
arg.length = length;
packed_len = uct_ep_put_bcopy(sender_ep(), pack_cb, &arg, remote_addr,
rkey);
status = (packed_len >= 0) ? UCS_OK : (ucs_status_t)packed_len;
break;
case OP_PUT_ZCOPY:
{
UCS_TEST_GET_BUFFER_IOV(iov, iovcnt, buffer, length, memh,
sender().iface_attr().cap.put.max_iov);
status = uct_ep_put_zcopy(sender_ep(), iov, iovcnt,
remote_addr, rkey, NULL);
}
break;
case OP_AM_SHORT:
status = uct_ep_am_short(sender_ep(), am_id, 0, buffer, length);
break;
case OP_AM_SHORT_IOV: {
UCS_TEST_GET_BUFFER_IOV(iov, iovcnt, buffer, length, memh, 1);
status = uct_ep_am_short_iov(sender_ep(), am_id, iov, iovcnt);
break;
}
case OP_AM_BCOPY:
arg.buffer = buffer;
arg.length = length;
packed_len = uct_ep_am_bcopy(sender_ep(), am_id, pack_cb, &arg, 0);
status = (packed_len >= 0) ? UCS_OK : (ucs_status_t)packed_len;
break;
case OP_AM_ZCOPY:
{
UCS_TEST_GET_BUFFER_IOV(iov, iovcnt, buffer, 1, memh, 1);
status = uct_ep_am_zcopy(sender_ep(), am_id, buffer, length,
iov, iovcnt, 0, NULL);
}
break;
}
progress();
} while (status == UCS_ERR_NO_RESOURCE);
if (status != UCS_OK && status != UCS_INPROGRESS) {
last_error = status;
} else {
/* Flush async events */
wait_for_remote();
ucs::safe_usleep(1e4);
}
/* Count how many error messages match/don't match the given pattern */
size_t num_matched = 0;
size_t num_unmatched = 0;
for (std::vector<std::string>::iterator iter = m_errors.begin();
iter != m_errors.end(); ++iter) {
if (iter->find(error_pattern) != iter->npos) {
++num_matched;
} else {
++num_unmatched;
}
}
EXPECT_GT(num_matched, 0ul) <<
"No error which contains the string '" << error_pattern <<
"' has occurred during the test";
EXPECT_EQ(0ul, num_unmatched) <<
"Unexpected error(s) occurred during the test";
}
static void* get_unused_address(size_t length)
{
void *address = NULL;
ucs_status_t status = ucs_mmap_alloc(&length, &address, 0, "test_dummy");
ASSERT_UCS_OK(status, << " length = " << length);
status = ucs_mmap_free(address, length);
ASSERT_UCS_OK(status);
/* coverity[use_after_free] */
return address;
}
static ucs_status_t last_error;
private:
static ucs_status_t
error_handler(void *arg, uct_ep_h ep, ucs_status_t status) {
uct_p2p_err_test *self = static_cast<uct_p2p_err_test*>(arg);
const p2p_resource *r = dynamic_cast<const p2p_resource*>(self->GetParam());
ucs_assert_always(r != NULL);
if (r->loopback) {
/* In loop back IB TLs can generate QP flush error before remote
* access error. */
ucs_log(UCS_LOG_LEVEL_ERROR, "Error on ep %p with status %s is handled",
ep, ucs_status_string(status));
}
return UCS_OK;
}
};
ucs_status_t uct_p2p_err_test::last_error = UCS_OK;
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, local_access_error,
!check_caps(UCT_IFACE_FLAG_PUT_ZCOPY |
UCT_IFACE_FLAG_ERRHANDLE_ZCOPY_BUF),
"FAILURE=error") {
mapped_buffer sendbuf(16, 1, sender());
mapped_buffer recvbuf(16, 2, receiver());
test_error_run(OP_PUT_ZCOPY, 0,
get_unused_address(sendbuf.length()), sendbuf.length(),
sendbuf.memh(), recvbuf.addr(), recvbuf.rkey(), "");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, remote_access_error,
!check_caps(UCT_IFACE_FLAG_PUT_ZCOPY |
UCT_IFACE_FLAG_ERRHANDLE_REMOTE_MEM),
"FAILURE=error") {
mapped_buffer sendbuf(16, 1, sender());
mapped_buffer recvbuf(16, 2, receiver());
test_error_run(OP_PUT_ZCOPY, 0,
sendbuf.ptr(), sendbuf.length(), sendbuf.memh(),
(uintptr_t)get_unused_address(recvbuf.length()), recvbuf.rkey(),
"");
recvbuf.pattern_check(2);
}
#if ENABLE_PARAMS_CHECK
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_put_short_length,
!check_caps(UCT_IFACE_FLAG_PUT_SHORT)) {
size_t max_short = sender().iface_attr().cap.put.max_short;
if (max_short > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_short too large");
}
mapped_buffer sendbuf(max_short + 1, 1, sender());
mapped_buffer recvbuf(max_short + 1, 2, receiver());
test_error_run(OP_PUT_SHORT, 0, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, recvbuf.addr(), recvbuf.rkey(),
"length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_put_bcopy_length,
!check_caps(UCT_IFACE_FLAG_PUT_BCOPY |
UCT_IFACE_FLAG_ERRHANDLE_BCOPY_LEN)) {
size_t max_bcopy = sender().iface_attr().cap.put.max_bcopy;
if (max_bcopy > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_bcopy too large");
}
mapped_buffer sendbuf(max_bcopy + 1, 1, sender());
mapped_buffer recvbuf(max_bcopy + 1, 2, receiver());
test_error_run(OP_PUT_BCOPY, 0, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, recvbuf.addr(), recvbuf.rkey(),
"length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_am_short_length,
!check_caps(UCT_IFACE_FLAG_AM_SHORT)) {
size_t max_short = sender().iface_attr().cap.am.max_short;
if (max_short > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_short too large");
}
mapped_buffer sendbuf(max_short + 1 - sizeof(uint64_t), 1, sender());
mapped_buffer recvbuf(max_short + 1, 2, receiver());
test_error_run(OP_AM_SHORT, 0, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, recvbuf.addr(), recvbuf.rkey(),
"length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_am_short_iov_length,
!check_caps(UCT_IFACE_FLAG_AM_SHORT))
{
size_t max_short = sender().iface_attr().cap.am.max_short;
if (max_short > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_short too large");
}
mapped_buffer sendbuf(max_short + 1, 1, sender());
mapped_buffer recvbuf(max_short + 1, 2, receiver());
test_error_run(OP_AM_SHORT_IOV, 0, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, recvbuf.addr(), recvbuf.rkey(), "length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_am_bcopy_length,
!check_caps(UCT_IFACE_FLAG_AM_BCOPY |
UCT_IFACE_FLAG_ERRHANDLE_BCOPY_LEN)) {
size_t max_bcopy = sender().iface_attr().cap.am.max_bcopy;
if (max_bcopy > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_bcopy too large");
}
mapped_buffer sendbuf(max_bcopy + 1, 1, sender());
mapped_buffer recvbuf(max_bcopy + 1, 2, receiver());
test_error_run(OP_AM_BCOPY, 0, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, recvbuf.addr(), recvbuf.rkey(),
"length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, invalid_am_zcopy_hdr_length,
!check_caps(UCT_IFACE_FLAG_AM_ZCOPY)) {
size_t max_hdr = sender().iface_attr().cap.am.max_hdr;
if (max_hdr > (2 * UCS_MBYTE)) {
UCS_TEST_SKIP_R("max_hdr too large");
}
if (max_hdr + 2 > sender().iface_attr().cap.am.max_bcopy) {
UCS_TEST_SKIP_R("max_hdr + 2 exceeds maximal bcopy size");
}
/* Send header of (max_hdr+1) and payload length 1 */
mapped_buffer sendbuf(max_hdr + 1, 1, sender());
mapped_buffer recvbuf(max_hdr + 2, 2, receiver());
test_error_run(OP_AM_ZCOPY, 0, sendbuf.ptr(), sendbuf.length(),
sendbuf.memh(), recvbuf.addr(), recvbuf.rkey(),
"length");
recvbuf.pattern_check(2);
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, short_invalid_am_id,
!check_caps(UCT_IFACE_FLAG_AM_SHORT)) {
mapped_buffer sendbuf(4, 2, sender());
test_error_run(OP_AM_SHORT, UCT_AM_ID_MAX, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, 0, UCT_INVALID_RKEY,
"active message id");
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, short_iov_invalid_am_id,
!check_caps(UCT_IFACE_FLAG_AM_SHORT))
{
mapped_buffer sendbuf(4, 2, sender());
test_error_run(OP_AM_SHORT_IOV, UCT_AM_ID_MAX, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, 0, UCT_INVALID_RKEY, "active message id");
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, bcopy_invalid_am_id,
!check_caps(UCT_IFACE_FLAG_AM_BCOPY)) {
mapped_buffer sendbuf(4, 2, sender());
test_error_run(OP_AM_BCOPY, UCT_AM_ID_MAX, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, 0, UCT_INVALID_RKEY,
"active message id");
}
UCS_TEST_SKIP_COND_P(uct_p2p_err_test, zcopy_invalid_am_id,
!check_caps(UCT_IFACE_FLAG_AM_ZCOPY)) {
mapped_buffer sendbuf(4, 2, sender());
test_error_run(OP_AM_ZCOPY, UCT_AM_ID_MAX, sendbuf.ptr(), sendbuf.length(),
UCT_MEM_HANDLE_NULL, 0, UCT_INVALID_RKEY,
"active message id");
}
#endif
UCT_INSTANTIATE_TEST_CASE(uct_p2p_err_test)
|