Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4455389

incorrect locking code in javax.net.SocketFactory/ServerSocketFactory

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.4.0
    • 1.4.0
    • security-libs
    • beta2
    • sparc
    • solaris_2.6

      In javax.net.SocketFactory.getDefault():

              //
              // optimize typical case: no synch needed
              //
              if (theFactory == null) {
                  synchronized (SocketFactory.class) {
                      theFactory = new DefaultSocketFactory();
                  }
              }

      There is similar code in javax.net.ServerSocketFactory:
              //
              // optimize typical case: no synch needed
              //
              if (theFactory == null) {
                  synchronized (ServerSocketFactory.class) {
                      theFactory = new DefaultServerSocketFactory();
                  }
              }
      The optimizations are problemmatic because theFactory is checked outside
      of the synchronization block. This could lead to a situation where
      theFactory is set but the constructor (DefaultSocketFactory/DefaultServerSocketFactory) not completed, thus
      leading to a bad address error. The fix is to lock before doing the check
      (i.e. remove the optimization).

            rleesunw Rosanna Lee (Inactive)
            rleesunw Rosanna Lee (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: