-
Notifications
You must be signed in to change notification settings - Fork 517
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
Escape the special chars in the monitor command output #1476
Conversation
@wy-ei Cool, thanks |
IMHO I think maybe we should just use bulk string reply rather than simple string to solve this problem, and for me these string escaping in this patch is just like a workaround. |
https://redis.io/commands/monitor/ Seems redis itself already has some bad practice in solving these escaping problem, which is sad since we need to be compatible to redis. For me, escaping is not need at all, we can just send an arrays with bulk strings, all in RESP. |
@PragmaTwice If redis use bulk string as the monitor response format, this issue does't exists any more. But the simple string is used and the issue is exists. This change is a workaround and it has fix the bad case and make it compatible with redis. It's easy to change the format as bulk string or array, but client SDK may not work. For example, in redis-py, unescaping is applyed on monitor response: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Thanks all, merging... |
fix the format error in monitor response
If the payload of a request has
\r\n
, the response forwarded to monitoring client is in bad format since simple string can't contains CRLF in RESP.I found this issue when I execute monitor command in redis-cli and set content of a
.c
file as value in another redis-cli:In the redis code the monitor response sending to client has been escaped by
sdscatrepr
:https://github.com/redis/redis/blob/e775b34e813654ead5be899faa065f1c31753040/src/replication.c#L560
https://github.com/redis/redis/blob/e775b34e813654ead5be899faa065f1c31753040/src/sds.c#L986
I implement a function
StringRepr
instring_util
to do the escap which did the same escape withsdscatrepr
.improve the performance of monitor
the content of monitor response is formated in worker, if more than one worker exists, the content will be formated several times.
We can format the response in
Server::FeedMonitorConns
and pass the response toWorker::FeedMonitorConns
.