How to catch “access error” when publish inaccessible topic in mqtt.js?

爷,独闯天下 提交于 2021-02-11 13:07:54

问题


I am creating a project using node.js with mqtt.js and mosquitto broker. In mosquitto config file, I have setup a pwfile, aclfile to control which topic can be accessed by which user.

Everything works fine, if the username, password, publish topic and subscribe topic are correct.

But if I change the publish topic to an inaccessible topic, it seems successfully publish the topic without any error in mqtt.js, but the message is never been publish.

Is there anyway to catch error when publish or subscribe to inaccessible topic?

https://github.com/mqttjs/MQTT.js/blob/master/README.md#publish

I try to catch the error in callback function with qos=1, but it seems the mosquitto broker acknowledge the client without any error. Of cause, the message didn't publish to the topic, since that client don't have the access right to that topic.

client.publish('inaccessible_topic', 'hello world', {qos: 1}, (err) => {
  if (err) console.log('error occur: ', err);
  else console.log('message successfully publish');
});

I expect mosquitto will return some sort of error (error occur: <error message>) when publish to the inaccessible topic, but it didn't (message sucessfully publish).

I wonder if it is even possible to catch such error. Does mosquitto handle such error, if so, how do I catch such error using mqtt.js?


回答1:


You don't.

The broker will not tell the client if it tried to publish to a topic it doesn't have access to, it will just silently just drop the message.

This would be a security vulnerability in that it would expose what topics are available.



来源:https://stackoverflow.com/questions/58048539/how-to-catch-access-error-when-publish-inaccessible-topic-in-mqtt-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!