Move some COMP functions to be inside the #ifndef OPENSSL_NO_COMP
[openssl.git] / ssl / ssl_txt.c
index ca67a98d896a61081d92811232cf3a5db9e12bec..40b76b1b2692c21fbffc43c5ef4758d1d50ccddb 100644 (file)
@@ -60,7 +60,7 @@
 #include <openssl/buffer.h>
 #include "ssl_locl.h"
 
-#ifndef NO_FP_API
+#ifndef OPENSSL_NO_FP_API
 int SSL_SESSION_print_fp(FILE *fp, SSL_SESSION *x)
        {
        BIO *b;
@@ -81,7 +81,7 @@ int SSL_SESSION_print_fp(FILE *fp, SSL_SESSION *x)
 int SSL_SESSION_print(BIO *bp, SSL_SESSION *x)
        {
        unsigned int i;
-       char str[128],*s;
+       char *s;
 
        if (x == NULL) goto err;
        if (BIO_puts(bp,"SSL-Session:\n") <= 0) goto err;
@@ -93,36 +93,41 @@ int SSL_SESSION_print(BIO *bp, SSL_SESSION *x)
                s="TLSv1";
        else
                s="unknown";
-       sprintf(str,"    Protocol  : %s\n",s);
-       if (BIO_puts(bp,str) <= 0) goto err;
+       if (BIO_printf(bp,"    Protocol  : %s\n",s) <= 0) goto err;
 
        if (x->cipher == NULL)
                {
                if (((x->cipher_id) & 0xff000000) == 0x02000000)
-                       sprintf(str,"    Cipher    : %06lX\n",x->cipher_id&0xffffff);
+                       {
+                       if (BIO_printf(bp,"    Cipher    : %06lX\n",x->cipher_id&0xffffff) <= 0)
+                               goto err;
+                       }
                else
-                       sprintf(str,"    Cipher    : %04lX\n",x->cipher_id&0xffff);
+                       {
+                       if (BIO_printf(bp,"    Cipher    : %04lX\n",x->cipher_id&0xffff) <= 0)
+                               goto err;
+                       }
                }
        else
-               sprintf(str,"    Cipher    : %s\n",(x->cipher == NULL)?"unknown":x->cipher->name);
-       if (BIO_puts(bp,str) <= 0) goto err;
+               {
+               if (BIO_printf(bp,"    Cipher    : %s\n",((x->cipher == NULL)?"unknown":x->cipher->name)) <= 0)
+                       goto err;
+               }
        if (BIO_puts(bp,"    Session-ID: ") <= 0) goto err;
        for (i=0; i<x->session_id_length; i++)
                {
-               sprintf(str,"%02X",x->session_id[i]);
-               if (BIO_puts(bp,str) <= 0) goto err;
+               if (BIO_printf(bp,"%02X",x->session_id[i]) <= 0) goto err;
                }
-       if (BIO_puts(bp,"\nSession-ID-ctx: ") <= 0) goto err;
+       if (BIO_puts(bp,"\n    Session-ID-ctx: ") <= 0) goto err;
        for (i=0; i<x->sid_ctx_length; i++)
                {
-               sprintf(str,"%02X",x->sid_ctx[i]);
-               if (BIO_puts(bp,str) <= 0) goto err;
+               if (BIO_printf(bp,"%02X",x->sid_ctx[i]) <= 0)
+                       goto err;
                }
        if (BIO_puts(bp,"\n    Master-Key: ") <= 0) goto err;
        for (i=0; i<(unsigned int)x->master_key_length; i++)
                {
-               sprintf(str,"%02X",x->master_key[i]);
-               if (BIO_puts(bp,str) <= 0) goto err;
+               if (BIO_printf(bp,"%02X",x->master_key[i]) <= 0) goto err;
                }
        if (BIO_puts(bp,"\n    Key-Arg   : ") <= 0) goto err;
        if (x->key_arg_length == 0)
@@ -132,9 +137,20 @@ int SSL_SESSION_print(BIO *bp, SSL_SESSION *x)
        else
                for (i=0; i<x->key_arg_length; i++)
                        {
-                       sprintf(str,"%02X",x->key_arg[i]);
-                       if (BIO_puts(bp,str) <= 0) goto err;
+                       if (BIO_printf(bp,"%02X",x->key_arg[i]) <= 0) goto err;
                        }
+#ifndef OPENSSL_NO_KRB5
+       if (BIO_puts(bp,"\n    Krb5 Principal: ") <= 0) goto err;
+            if (x->krb5_client_princ_len == 0)
+            {
+               if (BIO_puts(bp,"None") <= 0) goto err;
+               }
+       else
+               for (i=0; i<x->krb5_client_princ_len; i++)
+                       {
+                       if (BIO_printf(bp,"%02X",x->krb5_client_princ[i]) <= 0) goto err;
+                       }
+#endif /* OPENSSL_NO_KRB5 */
        if (x->compress_meth != 0)
                {
                SSL_COMP *comp;
@@ -142,27 +158,26 @@ int SSL_SESSION_print(BIO *bp, SSL_SESSION *x)
                ssl_cipher_get_evp(x,NULL,NULL,&comp);
                if (comp == NULL)
                        {
-                       sprintf(str,"\n   Compression: %d",x->compress_meth);
-                       if (BIO_puts(bp,str) <= 0) goto err;
+                       if (BIO_printf(bp,"\n   Compression: %d",x->compress_meth) <= 0) goto err;
                        }
                else
                        {
-                       sprintf(str,"\n   Compression: %d (%s)",
-                               comp->id,comp->method->name);
-                       if (BIO_puts(bp,str) <= 0) goto err;
+                       if (BIO_printf(bp,"\n   Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
                        }
                }       
        if (x->time != 0L)
                {
-               sprintf(str,"\n    Start Time: %ld",x->time);
-               if (BIO_puts(bp,str) <= 0) goto err;
+               if (BIO_printf(bp, "\n    Start Time: %ld",x->time) <= 0) goto err;
                }
        if (x->timeout != 0L)
                {
-               sprintf(str,"\n    Timeout   : %ld (sec)",x->timeout);
-               if (BIO_puts(bp,str) <= 0) goto err;
+               if (BIO_printf(bp, "\n    Timeout   : %ld (sec)",x->timeout) <= 0) goto err;
                }
        if (BIO_puts(bp,"\n") <= 0) goto err;
+
+       if (BIO_puts(bp, "    Verify return code: ") <= 0) goto err;
+       if (BIO_printf(bp, "%ld (%s)\n", x->verify_result,
+               X509_verify_cert_error_string(x->verify_result)) <= 0) goto err;
                
        return(1);
 err: