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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
|
/*
* Copyright (c) 2017-2024 The strace developers.
* All rights reserved.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "tests.h"
#include "print_fields.h"
#include <inttypes.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>
#include "netlink.h"
#include <linux/rtnetlink.h>
#ifndef PRINT_SOCK
# define PRINT_SOCK 0
#endif
static void
init_nlattr(struct nlattr *const nla,
const uint16_t nla_len,
const uint16_t nla_type,
const void *const src,
const size_t n)
{
SET_STRUCT(struct nlattr, nla,
.nla_len = nla_len,
.nla_type = nla_type,
);
memcpy(RTA_DATA(nla), src, n);
}
static void
print_nlattr(const unsigned int nla_len, const char *const nla_type, bool add_data)
{
printf(", %s[{nla_len=%u, nla_type=%s}, ",
add_data ? "[" : "", nla_len, nla_type);
}
static void
print_sockfd(int sockfd, const char *pfx, const char *sfx)
{
#if PRINT_SOCK
static int fd = -1;
static unsigned long inode;
if (sockfd < 0) {
printf("%s%d%s", pfx, sockfd, sfx);
return;
}
if (sockfd != fd) {
fd = sockfd;
inode = inode_of_sockfd(fd);
}
printf("%s%d<socket:[%lu]>%s", pfx, sockfd, inode, sfx);
#else
printf("%s%d%s", pfx, sockfd, sfx);
#endif
}
#define TEST_NLATTR_EX_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
nla_data_len_, nla_total_len_, \
src_, slen_, ...) \
do { \
struct nlmsghdr *const nlh = \
(nlh0_) - (NLA_HDRLEN + (slen_)); \
struct nlattr *const TEST_NLATTR_nla = \
NLMSG_ATTR(nlh, (hdrlen_)); \
const unsigned int nla_len = \
NLA_HDRLEN + (nla_data_len_); \
const unsigned int msg_len = \
NLMSG_SPACE(hdrlen_) + NLA_HDRLEN + (nla_total_len_); \
\
(init_msg_)(nlh, msg_len); \
init_nlattr(TEST_NLATTR_nla, nla_len, (nla_type_), \
(src_), (slen_)); \
\
const char *const errstr = \
sprintrc(sendto((fd_), nlh, msg_len, \
MSG_DONTWAIT, NULL, 0)); \
\
print_sockfd((fd_), "sendto(", ", ["); \
(print_msg_)(msg_len); \
print_nlattr(nla_len, (nla_type_str_), \
(nla_total_len_) > (nla_data_len_)); \
\
{ __VA_ARGS__; } \
\
if ((nla_total_len_) > (nla_data_len_)) \
printf("]"); \
\
printf("]], %u, " XLAT_FMT ", NULL, 0) = %s\n", \
msg_len, XLAT_ARGS(MSG_DONTWAIT), errstr); \
} while (0)
#define TEST_NLATTR_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
nla_data_len_, src_, slen_, ...) \
TEST_NLATTR_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
(nla_data_len_), (nla_data_len_), \
(src_), (slen_), __VA_ARGS__)
#define TEST_NLATTR(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, \
nla_data_len_, src_, slen_, ...) \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(nla_data_len_), (src_), (slen_), __VA_ARGS__)
#define TEST_NLATTR_OBJECT_EX_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
pattern_, obj_, minsz_, fallback_func, ...) \
do { \
const unsigned int plen = MIN((minsz_) - 1, DEFAULT_STRLEN); \
/* len < sizeof(obj_) */ \
if (plen > 0) \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
plen, (pattern_), plen, \
(fallback_func)((pattern_), plen)); \
/* short read of sizeof(obj_) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), \
(pattern_), (minsz_) - 1, \
printf("%p", \
RTA_DATA(NLMSG_ATTR(nlh, (hdrlen_))))); \
/* sizeof(obj_) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), \
&(obj_), sizeof(obj_), \
__VA_ARGS__); \
} while (0)
#define TEST_NLATTR_OBJECT_EX(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, \
pattern_, obj_, minsz_, fallback_func, ...) \
TEST_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), (minsz_), \
(fallback_func), __VA_ARGS__)
#define TEST_NLATTR_OBJECT(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, ...) \
TEST_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), sizeof(obj_), \
print_quoted_hex, __VA_ARGS__)
#define TEST_NLATTR_OBJECT_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, pattern_, obj_, ...) \
TEST_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
(pattern_), (obj_), sizeof(obj_), \
print_quoted_hex, __VA_ARGS__)
#define TEST_NLATTR_OBJECT_MINSZ(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, minsz_, ...) \
TEST_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), (minsz_), \
print_quoted_hex, __VA_ARGS__)
#define TEST_NLATTR_ARRAY_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
pattern_, obj_, print_elem_) \
do { \
const unsigned int plen = \
sizeof((obj_)[0]) - 1 > DEFAULT_STRLEN \
? DEFAULT_STRLEN : (int) sizeof((obj_)[0]) - 1; \
/* len < sizeof((obj_)[0]) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
plen, (pattern_), plen, \
print_quoted_hex((pattern_), plen)); \
/* sizeof((obj_)[0]) < len < sizeof(obj_) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_) - 1, \
&(obj_), sizeof(obj_) - 1, \
printf("["); \
for (size_t i = 0; \
i < ARRAY_SIZE(obj_) - 1; ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf("]")); \
/* short read of sizeof(obj_) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), \
&(obj_), sizeof(obj_) - 1, \
printf("["); \
for (size_t i = 0; \
i < ARRAY_SIZE(obj_) - 1; ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf(", ... /* %p */]", \
RTA_DATA(NLMSG_ATTR(nlh, (hdrlen_))) \
+ sizeof(obj_) - sizeof((obj_)[0]))); \
/* sizeof(obj_) */ \
TEST_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), \
&(obj_), sizeof(obj_), \
printf("["); \
for (size_t i = 0; i < ARRAY_SIZE(obj_); ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf("]")); \
} while (0)
#define TEST_NLATTR_ARRAY(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, print_elem_) \
TEST_NLATTR_ARRAY_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), (print_elem_))
#define TEST_NESTED_NLATTR_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
nla_data_len_, src_, slen_, depth_, ...) \
TEST_NLATTR_((fd_), (nlh0_) - NLA_HDRLEN * (depth_), \
(hdrlen_) + NLA_HDRLEN * (depth_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
(nla_data_len_), (src_), (slen_), \
__VA_ARGS__; \
for (size_t i = 0; i < (depth_); ++i) \
printf("]"))
#define TEST_NESTED_NLATTR_OBJECT_EX_MINSZ_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
pattern_, obj_, minsz_, \
fallback_func, depth_, ...) \
do { \
const unsigned int plen = \
sizeof(obj_) - 1 > DEFAULT_STRLEN \
? DEFAULT_STRLEN : (int) sizeof(obj_) - 1; \
/* len < sizeof(obj_) */ \
if (plen > 0) \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
plen, (pattern_), plen, (depth_), \
(fallback_func)((pattern_), plen)); \
/* short read of sizeof(obj_) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), (pattern_), (minsz_) - 1, (depth_), \
printf("%p", RTA_DATA(TEST_NLATTR_nla))); \
/* sizeof(obj_) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), &(obj_), sizeof(obj_), (depth_), \
__VA_ARGS__); \
} while (0)
#define TEST_NESTED_NLATTR_OBJECT_EX_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
pattern_, obj_, \
fallback_func, depth_, ...) \
TEST_NESTED_NLATTR_OBJECT_EX_MINSZ_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
(pattern_), (obj_), sizeof(obj_), \
(fallback_func), (depth_), \
__VA_ARGS__)
#define TEST_NESTED_NLATTR_OBJECT_EX(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, \
depth_, ...) \
TEST_NESTED_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), \
print_quoted_hex, (depth_), \
__VA_ARGS__)
#define TEST_NESTED_NLATTR_OBJECT(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, ...) \
TEST_NESTED_NLATTR_OBJECT_EX_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, \
(pattern_), (obj_), \
print_quoted_hex, 1, \
__VA_ARGS__)
#define TEST_NESTED_NLATTR_ARRAY_EX_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, nla_type_str_, \
pattern_, obj_, depth_, \
print_elem_) \
do { \
const unsigned int plen = \
sizeof((obj_)[0]) - 1 > DEFAULT_STRLEN \
? DEFAULT_STRLEN : (int) sizeof((obj_)[0]) - 1; \
/* len < sizeof((obj_)[0]) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
plen, (pattern_), plen, (depth_), \
print_quoted_hex((pattern_), plen)); \
/* sizeof((obj_)[0]) < len < sizeof(obj_) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_) - 1, \
&(obj_), sizeof(obj_) - 1, (depth_), \
printf("["); \
for (size_t i = 0; \
i < ARRAY_SIZE(obj_) - 1; ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf("]")); \
/* short read of sizeof(obj_) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), \
&(obj_), sizeof(obj_) - 1, (depth_), \
printf("["); \
for (size_t i = 0; \
i < ARRAY_SIZE(obj_) - 1; ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf(", ... /* %p */]", \
RTA_DATA(TEST_NLATTR_nla) \
+ sizeof(obj_) - sizeof((obj_)[0]))); \
/* sizeof(obj_) */ \
TEST_NESTED_NLATTR_((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), (nla_type_str_), \
sizeof(obj_), &(obj_), sizeof(obj_), (depth_), \
printf("["); \
for (size_t i = 0; i < ARRAY_SIZE(obj_); ++i) { \
if (i) printf(", "); \
(print_elem_)(&(obj_)[i], i); \
} \
printf("]")); \
} while (0)
#define TEST_NESTED_NLATTR_ARRAY_EX(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, depth_, \
print_elem_) \
TEST_NESTED_NLATTR_ARRAY_EX_(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, #nla_type_, pattern_, \
obj_, depth_, print_elem_)
#define TEST_NESTED_NLATTR_ARRAY(fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, obj_, print_elem_)\
TEST_NESTED_NLATTR_ARRAY_EX((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
nla_type_, (pattern_), (obj_), 1, \
(print_elem_))
/* Checks for specific typical decoders */
#define DEF_NLATTR_INTEGER_CHECK_(nla_data_name_, nla_data_type_, fmt_) \
static inline void \
check_##nla_data_name_##_nlattr(int fd, void *nlh0, size_t hdrlen, \
void (*init_msg)(struct nlmsghdr *, \
unsigned int), \
void (*print_msg)(unsigned int), \
unsigned int nla_type, \
const char *nla_type_str, \
void *pattern, size_t depth) \
{ \
static const nla_data_type_ vecs[] = { \
(nla_data_type_) 0, \
(nla_data_type_) 1, \
(nla_data_type_) 0xdeadfacebeeffeedULL, \
}; \
static char buf[sizeof(nla_data_type_) + 8]; \
for (size_t i = 0; i < ARRAY_SIZE(vecs); i++) { \
TEST_NESTED_NLATTR_OBJECT_EX_(fd, nlh0, hdrlen, \
init_msg, print_msg, \
nla_type, nla_type_str, \
pattern, vecs[i], \
print_quoted_hex, depth, \
printf(fmt_, vecs[i])); \
fill_memory(buf, sizeof(buf)); \
memcpy(buf, vecs + i, sizeof(vecs[i])); \
TEST_NLATTR_(fd, nlh0 - NLA_HDRLEN * depth, \
hdrlen + NLA_HDRLEN * depth, \
init_msg, print_msg, \
nla_type, nla_type_str, \
sizeof(vecs[i]) + 8, \
buf, sizeof(vecs[i]) + 8, \
printf(fmt_, vecs[i]); \
for (size_t i = 0; i < depth; i++) \
printf("]")); \
} \
}
DEF_NLATTR_INTEGER_CHECK_(u8, uint8_t, "%hhu")
DEF_NLATTR_INTEGER_CHECK_(u16, uint16_t, "%hu")
DEF_NLATTR_INTEGER_CHECK_(u32, uint32_t, "%u")
DEF_NLATTR_INTEGER_CHECK_(u64, uint64_t, "%" PRIu64)
DEF_NLATTR_INTEGER_CHECK_(x8, uint8_t, "%#hhx")
DEF_NLATTR_INTEGER_CHECK_(x16, uint16_t, "%#hx")
DEF_NLATTR_INTEGER_CHECK_(x32, uint32_t, "%#x")
#define TEST_NLATTR_VAL(type_, fd_, nlh0_, hdrlen_, \
init_msg_, print_msg_, \
nla_type_, pattern_, depth_) \
check_##type_##_nlattr((fd_), (nlh0_), (hdrlen_), \
(init_msg_), (print_msg_), \
(nla_type_), #nla_type_, (pattern_), (depth_))
static inline void
check_clock_t_nlattr(int fd, void *nlh0, size_t hdrlen,
void (*init_msg)(struct nlmsghdr *, unsigned int),
void (*print_msg)(unsigned int),
unsigned int nla_type, const char *nla_type_str,
size_t depth)
{
static const uint64_t vecs[] = { 0, 1, 9, 10, 99, 100, 249, 250, 999,
1000, 1023, 1024, 0xdefacebeeffedULL };
static char buf[sizeof(uint64_t) + 1];
#if !XLAT_RAW
static long clk_tck;
static int precision;
if (!clk_tck) {
clk_tck = sysconf(_SC_CLK_TCK);
precision = clk_tck > 100000000 ? 9
: clk_tck > 10000000 ? 8
: clk_tck > 1000000 ? 7
: clk_tck > 100000 ? 6
: clk_tck > 10000 ? 5
: clk_tck > 1000 ? 4
: clk_tck > 100 ? 3
: clk_tck > 10 ? 2
: clk_tck > 1 ? 1 : 0;
}
#endif
fill_memory(buf, sizeof(buf));
TEST_NLATTR_(fd, nlh0 - NLA_HDRLEN * depth, hdrlen + NLA_HDRLEN * depth,
init_msg, print_msg, nla_type, nla_type_str,
sizeof(vecs[0]) + 1, buf, sizeof(vecs[0]) + 1,
print_quoted_hex(buf, sizeof(vecs[0]) + 1);
for (size_t i = 0; i < depth; i++)
printf("]"));
for (size_t i = 0; i < ARRAY_SIZE(vecs); i++) {
memcpy(buf, vecs + i, sizeof(vecs[i]));
TEST_NLATTR_(fd, nlh0 - NLA_HDRLEN * depth,
hdrlen + NLA_HDRLEN * depth,
init_msg, print_msg, nla_type, nla_type_str,
sizeof(vecs[i]),
buf, sizeof(vecs[i]),
printf("%" PRIu64, vecs[i]);
#if !XLAT_RAW
if (i)
printf(" /* %.*f s */", precision,
(double) vecs[i] / clk_tck);
#endif
for (size_t i = 0; i < depth; i++)
printf("]"));
}
for (size_t i = 1; i < sizeof(vecs[0]); i++) {
uint64_t val = vecs[ARRAY_SIZE(vecs) - 1] & MASK64(i * 8);
TEST_NLATTR_(fd, nlh0 - NLA_HDRLEN * depth,
hdrlen + NLA_HDRLEN * depth,
init_msg, print_msg, nla_type, nla_type_str,
i, buf + BE_LE(sizeof(vecs[0]) - i, 0), i,
printf("%" PRIu64, val);
#if !XLAT_RAW
printf(" /* %.*f s */", precision,
(double) val / clk_tck);
#endif
for (size_t i = 0; i < depth; i++)
printf("]"));
}
}
|