• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 //
3 // Copyright 2015 gRPC authors.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 //
18 
19 #include <grpc/grpc.h>
20 #include <grpc/grpc_security.h>
21 #include <grpc/slice.h>
22 #include <grpc/support/log.h>
23 
24 #include "src/core/lib/iomgr/error.h"
25 #include "test/core/bad_ssl/server_common.h"
26 #include "test/core/util/tls_utils.h"
27 
28 // This server will present an untrusted cert to the connecting client,
29 // causing the SSL handshake to fail
30 
main(int argc,char ** argv)31 int main(int argc, char** argv) {
32   const char* addr = bad_ssl_addr(argc, argv);
33   grpc_ssl_pem_key_cert_pair pem_key_cert_pair;
34   grpc_server_credentials* ssl_creds;
35   grpc_server* server;
36 
37   grpc_init();
38 
39   std::string cert = grpc_core::testing::GetFileContents(
40       "src/core/tsi/test_creds/badserver.pem");
41   std::string key = grpc_core::testing::GetFileContents(
42       "src/core/tsi/test_creds/badserver.key");
43   pem_key_cert_pair.private_key = key.c_str();
44   pem_key_cert_pair.cert_chain = cert.c_str();
45 
46   ssl_creds = grpc_ssl_server_credentials_create(nullptr, &pem_key_cert_pair, 1,
47                                                  0, nullptr);
48   server = grpc_server_create(nullptr, nullptr);
49   GPR_ASSERT(grpc_server_add_http2_port(server, addr, ssl_creds));
50   grpc_server_credentials_release(ssl_creds);
51 
52   bad_ssl_run(server);
53   grpc_shutdown();
54 
55   return 0;
56 }
57