-
Notifications
You must be signed in to change notification settings - Fork 477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dont check frame max size when parse #784
Conversation
As a digression, I spent days tracking down this issue From oven-sh/bun#5627, for the test repo https://github.com/acuminous/amqplib-764, I follow the comment patched stream to readable-stream, but it not work. and then I drop bun replace by node, it still gets the same error. Finally, I found the reason is rabbit from alibaba cloud, when use local docker version rabbitmq, it works even with bun. (So I think bun had fixed that bug...) |
Hi @ohroy Thank you for the PR and clear explanation. I did indeed think it was crazy until I read it! I would prefer to try some alternatives...
|
Setting framemax to 0 in this example doesn't work, because the server still returns a framemax when negotiating, but it doesn't respect it, so no matter how big it is, it doesn't solve the problem. (In fact, I've tried setting it to 0, or setting it to a very large value of '0xffffffff').
This is, of course, a safer approach, and I've thought about it before. But after consulting many official libraries, I changed my mind for two main reasons:
Overall, I can very much understand your feelings about giving in to the wrong person when it is clear that you are the right one. This is not an urgent issue, as for me I can fix the problem with a patch. But for others who don't know the truth, this issue will make them understand who is right. |
Hi @ohroy, thank you for providing your rationale - it is very well considered. I've looked through the Java Client and agree - while frameMax is used to split frames on transmit, I can only see maxInboundMessageBodySize being used when parsing frames. As such I am inclined to approve. @michaelklishin, @carlhoerberg - you both understand the amqp protocol better than me, do you have any thoughts on the matter? |
@cressie176 several other clients do something similar but not because they target a particular RabbitMQ-as-a-Service providers, it just happens to be a reasonably natural way of reading a complete frame. I don't have an opinion on this PR. On one hand, most public cloud providers contribute effectively or literally nothing to RabbitMQ, so they can go hug a tree and develop their own client libraries instead of getting everything for free from the RabbitMQ core team and various contributors. On the other hand, as long as a full frame can be consumed this way, why not. Across the projects the core team maintains, any other issue specific to Alibaba Cloud (or any other RabbitMQ-as-a-Service provider that contributes a typo fix every 12 months), would be closed. Cloud providers who do not contribute meaningfully and regularly can go hug a tree. But this PR is functional and not unreasonable, and seemingly comes from a user who just wants to scratch their own itch, so why not. |
Thanks @michaelklishin |
FTR, this is factually incorrect. RabbitMQ does respect the negotiated It does not mean that every frame a client receives will be Not to mention the But the claim that "RabbitMQ does not respect the negotiated |
@michaelklishin
I clearly pointed out that the official version of Once again, I emphasize that even without this patch, the combination of the library and official RabbitMQ is completely fine. The issue arises only with third-party cloud service vendors' specific versions of the claimed RabbitMQ server. |
@ohroy fair enough! |
When you first saw this you must have thought I was crazy and wanted to close this pr immediately, but I would like to ask you to bear with me and listen to my reasons!
I understand that the AMQP 0-9-1 protocol requires that the server and client must respect frame max
However, in reality, some cloud server vendors do not necessarily comply with this specification for cost reasons, such as
alibabacloud
https://www.alibabacloud.com/en/product/rabbitmq?plc=1, whatever you set frame max, the server never spilt frame, even they said frame size 0x8000 when tune.You may be in disbelief, why would they dare to do this? But in fact, most AMQP libraries are tolerant of this, especially the official Java library of RabbitMQ.
https://github.com/rabbitmq/rabbitmq-java-client/blob/d5b8b673768379e42056a27f5dd8c0e9bda64812/src/main/java/com/rabbitmq/client/impl/CommandAssembler.java#L104-L108
Another nodejs library does the same.
https://github.com/cody-greene/node-rabbitmq-client/blob/c44a4b48c03d5a43f9d98e1979246bebd62143bc/src/codec.ts#L696C1-L704C42