Giter VIP home page Giter VIP logo

Comments (6)

tmcnag avatar tmcnag commented on July 29, 2024

Proper attribution: The above comment was originally posted by @box293

http://support.nagios.com/forum/viewtopic.php?f=7&t=31900&start=10#p132182

from nagioscore.

jfrickson avatar jfrickson commented on July 29, 2024

The left over cruft at the end of the command buffer doesn't matter. The actual data passed to process_external_command1 is null-terminated by replacing the newline character with a null. So it's just cosmetic in the debug log.

Unless I can be guaranteed that there will never be a '[' character in the command data, there is no good way to separate multiple commands that have been concatenated because of missing newlines. I could look for a '[' followed by ten digits followed by a ']' (i.e. a timestamp) and assume that's the start of a new command. Would it be better to:

  1. Process one or more commands late and possibly have a false positive split a single command into two parts, and take a little more processing time, or

  2. Process multiple concatenated commands as one command if there's missing newlines

Option 2 (the way it is now) would be the result of an improperly formatted command on the user's part. Option 1 would involve us potentially rejecting a valid command.

from nagioscore.

box293 avatar box293 commented on July 29, 2024

So if I understand what you are saying, a command submitted without a /n sits in the buffer. If more commands without a /n are received they will be appended to the buffer. Eventually a correct command comes along with a /n. At this point, the entire buffer, including the last command with the /n is processed ... however the entire buffer string is targeted at the host defined in the first command in the buffer and all the other commands never get targeted to the remaining correct hosts?

from nagioscore.

jfrickson avatar jfrickson commented on July 29, 2024

You understand correctly.

from nagioscore.

box293 avatar box293 commented on July 29, 2024

I don't think there is any real fix for this that I can think of. If a command is submitted without a new line then it's an invalid command. It's just that the side affect is that it sits in the buffer until a correctly defined command comes along.

from nagioscore.

jfrickson avatar jfrickson commented on July 29, 2024

Sounds good to me. I'm closing this issue.

from nagioscore.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.