Search code examples
c++opensslgsoap

Setting SSL_CTX_set_cipher_list() fails with "No cipher match" error


I'm trying to limit the cypher list in my gsoap ssl server using SSL_CTX_set_cipher_list(). But the method returns with 0, no matter what list I provide. Without setting the list everything works fine.

I'm basically doing the same as in gsoap documentation https://www.genivia.com/doc/guide/html/group__group__ssl.html#ga3492465cdd8aa71fe746199d3842cac7

    auto err = BIO_new_fp(stderr, BIO_NOCLOSE);
    SSL_load_error_strings();
    OpenSSL_add_all_algorithms();
    OpenSSL_add_all_ciphers();
    CalculatorSoapBindingService service;
    service.soap->send_timeout = service.soap->recv_timeout = 5;
    if (useSSL) {
        soap_ssl_init();       // init SSL (just need to do this once in an application)
        if (soap_ssl_server_context(
                service.soap,
                SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION | SOAP_TLSv1 | SOAP_SSL_NO_DEFAULT_CA_PATH,
                "server.pem", // server keyfile (cert+key)
                "password",   // password to read the private key in the keyfile
                nullptr,         // no cert to authenticate clients
                nullptr,         // no capath to trusted certificates
                nullptr,         // DH/RSA: use 2048 bit RSA (default with NULL)
                nullptr,         // no random data to seed randomness
                "testServer"     // no SSL session cache
        ))
        {
            service.soap_stream_fault(std::cerr);
            exit(EXIT_FAILURE);
        }
        const char allowedCiphers[] = "ALL:!aNULL";
        auto rc = SSL_CTX_set_cipher_list(service.soap->ctx, allowedCiphers);
        if (rc != 1) {
            ERR_print_errors(err);
            exit(EXIT_FAILURE);
        }
    }

According to documentation return code 0 means complete failure. The error message is: 140347788101304:error:1410D0B9:SSL routines:SSL_CTX_set_cipher_list:no cipher match:ssl_lib.c:1385: When I run "openssl ciphers" I get the full list of ciphers. Any ideas what I'm missing? Is the context not correctly initialized?


Solution

  • It was an SSL initialisation problem. Using SSL_library_init() instead of soap_ssl_init() solved the problem. This is my final working solution:

    CalculatorSoapBindingService service;
    service.soap->send_timeout = service.soap->recv_timeout = 5; // 5 sec socket idle timeout
    if (useSSL) {
        SSL_library_init();
        BIO_new_fp(stderr, BIO_NOCLOSE);
        SSL_load_error_strings();
        if (soap_ssl_server_context(
                service.soap,
                SOAP_SSL_REQUIRE_SERVER_AUTHENTICATION | SOAP_TLSv1 | SOAP_SSL_NO_DEFAULT_CA_PATH,
                "server.pem", // server keyfile (cert+key)
                "haslerrail",   // password to read the private key in the keyfile
                nullptr,         // no cert to authenticate clients
                nullptr,         // no capath to trusted certificates
                nullptr,         // DH/RSA: use 2048 bit RSA (default with NULL)
                nullptr,         // no random data to seed randomness
                "testServer"          // no SSL session cache
        ))
        {
            service.soap_stream_fault(std::cerr);
            exit(EXIT_FAILURE);
        }
        const char allowedCiphers[] = "ECDH:!aNULL:!eNULL:!ADH:!SHA:@STRENGTH";
        auto nid = NID_X9_62_prime256v1;
        auto key = EC_KEY_new_by_curve_name(nid);
        if (key == nullptr) {
            std::cout << "Failed to create curve" << OBJ_nid2sn(nid) << std::endl;;
            exit(EXIT_FAILURE);;
        }
        SSL_CTX_set_tmp_ecdh(service.soap->ctx, key);
        EC_KEY_free(key);
    
        auto rc = SSL_CTX_set_cipher_list(service.soap->ctx, allowedCiphers);
        if (rc != 1) {
            std::cout << "no cipher list found " << rc << std::endl;
            ERR_print_errors(err);
            exit(EXIT_FAILURE);
        }
    }