Uploaded image for project: 'ZooKeeper'
  1. ZooKeeper
  2. ZOOKEEPER-893

ZooKeeper high cpu usage when invalid requests

VotersWatch issueWatchersCreate sub-taskLinkCloneUpdate Comment AuthorReplace String in CommentUpdate Comment VisibilityDelete Comments
    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Critical
    • Resolution: Fixed
    • 3.3.1
    • 3.3.2, 3.4.0
    • server
    • None
    • Linux 2.6.16
      4x Intel(R) Xeon(R) CPU X3320 @ 2.50GHz
      java version "1.6.0_17"
      Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
      Java HotSpot(TM) Server VM (build 14.3-b01, mixed mode)

    • Reviewed
    • zookeeper server cpu ZOOKEEPER-427

    Description

      When ZooKeeper receives certain illegally formed messages on the internal communication port (:4181 by default), it's possible for ZooKeeper to enter an infinite loop which causes 100% cpu usage. It's related to ZOOKEEPER-427, but that patch does not resolve all issues.

      from: src/java/main/org/apache/zookeeper/server/quorum/QuorumCnxManager.java

      the two affected parts:
      ===========
      int length = msgLength.getInt();
      if(length <= 0) {
      throw new IOException("Invalid packet length:" + length);
      }
      ===========

      ===========
      while (message.hasRemaining()) {
      temp_numbytes = channel.read(message);
      if(temp_numbytes < 0)

      { throw new IOException("Channel eof before end"); }


      numbytes += temp_numbytes;
      }
      ===========

      how to replicate this bug:

      perform an nmap portscan against your zookeeper server: "nmap -sV -n your.ip.here -p4181"
      wait for a while untill you see some messages in the logfile and then you will see 100% cpu usage. It does not recover from this situation. With my patch, it does not occur anymore

      Attachments

        1. ZOOKEEPER-893-3.3.patch
          5 kB
          Flavio Paiva Junqueira
        2. ZOOKEEPER-893.patch
          5 kB
          Flavio Paiva Junqueira
        3. ZOOKEEPER-893.patch
          2 kB
          Thijs Terlouw

        Issue Links

        Activity

          This comment will be Viewable by All Users Viewable by All Users
          Cancel

          People

            tt Thijs Terlouw
            tt Thijs Terlouw
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - 1h
                1h
                Remaining:
                Remaining Estimate - 1h
                1h
                Logged:
                Time Spent - Not Specified
                Not Specified

                Slack

                  Issue deployment