240132cef911a2c61e098c1f8ef0dc30f7232087
[openssl.git] / demos / bio / saccept.c
1 /*-
2  * A minimal program to serve an SSL connection.
3  * It uses blocking.
4  * saccept host:port
5  * host is the interface IP to use.  If any interface, use *:port
6  * The default it *:4433
7  *
8  * cc -I../../include saccept.c -L../.. -lssl -lcrypto -ldl
9  */
10
11 #include <stdio.h>
12 #include <signal.h>
13 #include <openssl/err.h>
14 #include <openssl/ssl.h>
15
16 #define CERT_FILE       "server.pem"
17
18 static int done = 0;
19
20 void interrupt()
21 {
22     done = 1;
23 }
24
25 void sigsetup(void)
26 {
27     struct sigaction sa;
28
29     /*
30      * Catch at most once, and don't restart the accept system call.
31      */
32     sa.sa_flags = SA_RESETHAND;
33     sa.sa_handler = interrupt;
34     sigemptyset(&sa.sa_mask);
35     sigaction(SIGINT, &sa, NULL);
36 }
37
38 int main(int argc, char *argv[])
39 {
40     char *port = NULL;
41     BIO *in = NULL;
42     BIO *ssl_bio, *tmp;
43     SSL_CTX *ctx;
44     char buf[512];
45     int ret = 1, i;
46
47     if (argc <= 1)
48         port = "*:4433";
49     else
50         port = argv[1];
51
52     SSL_load_error_strings();
53
54     /* Add ciphers and message digests */
55     OpenSSL_add_ssl_algorithms();
56
57     ctx = SSL_CTX_new(TLS_server_method());
58     if (!SSL_CTX_use_certificate_chain_file(ctx, CERT_FILE))
59         goto err;
60     if (!SSL_CTX_use_PrivateKey_file(ctx, CERT_FILE, SSL_FILETYPE_PEM))
61         goto err;
62     if (!SSL_CTX_check_private_key(ctx))
63         goto err;
64
65     /* Setup server side SSL bio */
66     ssl_bio = BIO_new_ssl(ctx, 0);
67
68     if ((in = BIO_new_accept(port)) == NULL)
69         goto err;
70
71     /*
72      * This means that when a new connection is accepted on 'in', The ssl_bio
73      * will be 'duplicated' and have the new socket BIO push into it.
74      * Basically it means the SSL BIO will be automatically setup
75      */
76     BIO_set_accept_bios(in, ssl_bio);
77
78     /* Arrange to leave server loop on interrupt */
79     sigsetup();
80
81  again:
82     /*
83      * The first call will setup the accept socket, and the second will get a
84      * socket.  In this loop, the first actual accept will occur in the
85      * BIO_read() function.
86      */
87
88     if (BIO_do_accept(in) <= 0)
89         goto err;
90
91     while (!done) {
92         i = BIO_read(in, buf, 512);
93         if (i == 0) {
94             /*
95              * If we have finished, remove the underlying BIO stack so the
96              * next time we call any function for this BIO, it will attempt
97              * to do an accept
98              */
99             printf("Done\n");
100             tmp = BIO_pop(in);
101             BIO_free_all(tmp);
102             goto again;
103         }
104         if (i < 0)
105             goto err;
106         fwrite(buf, 1, i, stdout);
107         fflush(stdout);
108     }
109
110     ret = 0;
111  err:
112     if (ret) {
113         ERR_print_errors_fp(stderr);
114     }
115     BIO_free(in);
116     exit(ret);
117     return (!ret);
118 }