785e10b99bb11b1e9d4d96825ef363a4262bffa7
[platform/upstream/grpc.git] / test / core / bad_ssl / servers / cert.cc
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 <string.h>
20
21 #include <grpc/grpc.h>
22 #include <grpc/grpc_security.h>
23 #include <grpc/support/log.h>
24
25 #include "src/core/lib/iomgr/load_file.h"
26
27 #include "test/core/bad_ssl/server_common.h"
28
29 /* This server will present an untrusted cert to the connecting client,
30  * causing the SSL handshake to fail */
31
32 int main(int argc, char** argv) {
33   const char* addr = bad_ssl_addr(argc, argv);
34   grpc_ssl_pem_key_cert_pair pem_key_cert_pair;
35   grpc_server_credentials* ssl_creds;
36   grpc_server* server;
37   grpc_slice cert_slice, key_slice;
38
39   grpc_init();
40
41   GPR_ASSERT(GRPC_LOG_IF_ERROR(
42       "load_file",
43       grpc_load_file("src/core/tsi/test_creds/badserver.pem", 1, &cert_slice)));
44   GPR_ASSERT(GRPC_LOG_IF_ERROR(
45       "load_file",
46       grpc_load_file("src/core/tsi/test_creds/badserver.key", 1, &key_slice)));
47   pem_key_cert_pair.private_key =
48       reinterpret_cast<const char*> GRPC_SLICE_START_PTR(key_slice);
49   pem_key_cert_pair.cert_chain =
50       reinterpret_cast<const char*> GRPC_SLICE_START_PTR(cert_slice);
51
52   ssl_creds = grpc_ssl_server_credentials_create(nullptr, &pem_key_cert_pair, 1,
53                                                  0, nullptr);
54   server = grpc_server_create(nullptr, nullptr);
55   GPR_ASSERT(grpc_server_add_secure_http2_port(server, addr, ssl_creds));
56   grpc_server_credentials_release(ssl_creds);
57
58   grpc_slice_unref(cert_slice);
59   grpc_slice_unref(key_slice);
60
61   bad_ssl_run(server);
62   grpc_shutdown();
63
64   return 0;
65 }