/usr/include/dcmtk/dcmtls/tlslayer.h is in libdcmtk2-dev 3.6.0-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | /*
*
* Copyright (C) 1998-2010, OFFIS e.V.
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation were developed by
*
* OFFIS e.V.
* R&D Division Health
* Escherweg 2
* D-26121 Oldenburg, Germany
*
*
* Module: dcmtls
*
* Author: Marco Eichelberg
*
* Purpose:
* classes: DcmTLSTransportLayer
*
* Last Update: $Author: joergr $
* Update Date: $Date: 2010-10-14 13:17:27 $
* CVS/RCS Revision: $Revision: 1.9 $
* Status: $State: Exp $
*
* CVS/RCS Log at end of file
*
*/
#ifndef TLSLAYER_H
#define TLSLAYER_H
#include "dcmtk/config/osconfig.h" /* make sure OS specific configuration is included first */
#include "dcmtk/dcmnet/dcmlayer.h" /* for DcmTransportLayer */
#include "dcmtk/ofstd/ofstream.h" /* for ostream */
#include "dcmtk/oflog/oflog.h"
#ifdef WITH_OPENSSL
BEGIN_EXTERN_C
#include <openssl/ssl.h>
END_EXTERN_C
OFLogger DCM_dcmtlsGetLogger();
#define DCMTLS_TRACE(msg) OFLOG_TRACE(DCM_dcmtlsGetLogger(), msg)
#define DCMTLS_DEBUG(msg) OFLOG_DEBUG(DCM_dcmtlsGetLogger(), msg)
#define DCMTLS_INFO(msg) OFLOG_INFO(DCM_dcmtlsGetLogger(), msg)
#define DCMTLS_WARN(msg) OFLOG_WARN(DCM_dcmtlsGetLogger(), msg)
#define DCMTLS_ERROR(msg) OFLOG_ERROR(DCM_dcmtlsGetLogger(), msg)
#define DCMTLS_FATAL(msg) OFLOG_FATAL(DCM_dcmtlsGetLogger(), msg)
/** this enum describes how to handle X.509 certificates on a TLS based
* secure transport connection. They can be ignored, validated if present
* or validated and demanded.
*/
enum DcmCertificateVerification
{
/** check peer certificate, fail if no certificate is present
*/
DCV_requireCertificate,
/** check peer certificate if present, succeed if no certificate is present
*/
DCV_checkCertificate,
/** do not check peer certificate
*/
DCV_ignoreCertificate
};
/** factory class which creates secure TLS transport layer connections
* and maintains the parameters common to all TLS transport connections
* in one application (e.g. the pool of trusted certificates, the key
* and certificate to be used for authentication and the list of
* ciphersuite to be used for association negotiation.
*/
class DcmTLSTransportLayer: public DcmTransportLayer
{
public:
/** constructor.
* @param networkRole network role to be used by the application, influences
* the choice of the secure transport layer code.
* @param randFile path to file used to feed the random generator
*/
DcmTLSTransportLayer(int networkRole, const char *randFile);
/// destructor
virtual ~DcmTLSTransportLayer();
/** factory method that returns a new transport connection for the
* given socket. Depending on the second parameter, either a transparent
* or a secure connection is established. If the object cannot be created
* (e. g. because no secure layer is available), returns NULL.
* @param openSocket TCP/IP socket to be used for the transport connection.
* the connection must already be establised on socket level. If a non-null
* pointer is returned, the new connection object takes over control of the socket.
* @param useSecureLayer if true, a secure layer is used. If false, a
* transparent layer is used.
* @return pointer to new connection object if successful, NULL otherwise.
*/
virtual DcmTransportConnection *createConnection(int openSocket, OFBool useSecureLayer);
/** loads the private key used for authentication of this application from a file.
* @param fileName path to the private key file
* @param fileType, must be SSL_FILETYPE_PEM or SSL_FILETYPE_ASN1
* @return TCS_ok if successful, an error code otherwise
*/
DcmTransportLayerStatus setPrivateKeyFile(const char *fileName, int fileType);
/** loads the certificate (public key) used for authentication of this application from a file.
* @param fileName path to the certificate file
* @param fileType, must be SSL_FILETYPE_PEM or SSL_FILETYPE_ASN1
* @return TCS_ok if successful, an error code otherwise
*/
DcmTransportLayerStatus setCertificateFile(const char *fileName, int fileType);
/** checks if the private key and the certificate set using setPrivateKeyFile()
* and setCertificateFile() match, i.e. if they establish a private/public key pair.
* @return OFTrue if private key and certificate match, OFFalse otherwise.
*/
OFBool checkPrivateKeyMatchesCertificate();
/** loads a certificate from a file and adds it to the pool of trusted certificates.
* @param fileName path to the certificate file
* @param fileType, must be SSL_FILETYPE_PEM or SSL_FILETYPE_ASN1
* @return TCS_ok if successful, an error code otherwise
*/
DcmTransportLayerStatus addTrustedCertificateFile(const char *fileName, int fileType);
/** loads all files as certificates from the specified directory and adds them
* to the pool of trusted certificates.
* @param fileName path to the directory containing certificate files
* @param fileType, must be SSL_FILETYPE_PEM or SSL_FILETYPE_ASN1
* @return TCS_ok if successful, an error code otherwise
*/
DcmTransportLayerStatus addTrustedCertificateDir(const char *pathName, int fileType);
/** sets the list of ciphersuites to negotiate.
* @param suites string containing the list of ciphersuites.
* The list must be in OpenSSL syntax (use findOpenSSLCipherSuiteName to convert
* from RFC 2246 ciphersuite names to OpenSSL names), with ciphersuites separated
* by ':' characters.
* @return TCS_ok if successful, an error code otherwise
*/
DcmTransportLayerStatus setCipherSuites(const char *suites);
/** returns the number of known ciphersuites.
* @return number of known ciphersuites
*/
static unsigned long getNumberOfCipherSuites();
/** returns a ciphersuite name in RFC 2246 (TLS) form
* @param idx index, must be < getNumberOfCipherSuites()
* @return ciphersuite name
*/
static const char *getTLSCipherSuiteName(unsigned long idx);
/** returns a ciphersuite name in OpenSSL form
* @param idx index, must be < getNumberOfCipherSuites()
* @return ciphersuite name
*/
static const char *getOpenSSLCipherSuiteName(unsigned long idx);
/** finds the OpenSSL ciphersuite name for a given RFC 2246 ciphersuite name.
* @param tlsCipherSuiteName ciphersuite name in RFC 2246 form
* @returns ciphersuite name in OpenSSL form, NULL if unknown.
*/
static const char *findOpenSSLCipherSuiteName(const char *tlsCipherSuiteName);
/** checks if enough entropy data is available to write back a modified
* random seed file.
* @return OFTrue if random seed file can be written, OFFalse otherwise.
*/
OFBool canWriteRandomSeed() { return canWriteRandseed; }
/** writes a modified random seed to file.
* @param randFile path of file to write
* @return OFTrue if successful, OFFalse otherwise.
*/
OFBool writeRandomSeed(const char *randFile);
/** adds the contents of a file to the seed for the cryptographic
* pseudo-random number generator. The file should contain real
* random entropy data gathered from keystrokes, system events,
* /dev/random (on Linux) or something similar.
* If the TLS layer object is not initialized with sufficient
* random data, negotiation of TLS connections may fail.
* @param randFile path of the file containing random data
*/
void seedPRNG(const char *randFile);
/** modifies the PRNG by adding random data from the given buffer
* to the PRNG state.
* @param buf pointer to buffer containing random data
* @bufSize number of bytes in buffer
*/
void addPRNGseed(void *buf, size_t bufSize);
/** defines how peer certificates should be treated when
* negotiating a TLS connection.
* @param vtype certificate verification mode
*/
void setCertificateVerification(DcmCertificateVerification vtype);
/** sets the password string to be used when loading an
* encrypted private key file.
* Must be called prior to setPrivateKeyFile() in order to be effective.
* @param thePasswd password string, may be "" or NULL in which case an empty
* password is assumed.
*/
void setPrivateKeyPasswd(const char *thePasswd);
/** sets the password string to be used when loading an
* encrypted private key file to be read from the console stdin.
*/
void setPrivateKeyPasswdFromConsole();
/** loads a set of Diffie-Hellman parameters from file.
* These parameters are required for DH, DHE or DSS ciphersuites.
* @param filename path to the DH parameter file
* @return OFTrue if successful, OFFalse otherwise.
*/
OFBool setTempDHParameters(const char *filename);
/** gets the most important attributes of the given X.509 certificate.
* @param peerCertificate X.509 certificate, may be NULL
* @return a string describing the certificate
*/
static OFString dumpX509Certificate(X509 *peerCertificate);
private:
/// private undefined copy constructor
DcmTLSTransportLayer(const DcmTLSTransportLayer&);
/// private undefined assignment operator
DcmTLSTransportLayer& operator=(const DcmTLSTransportLayer&);
/// OpenSSL context data, needed only once per application
SSL_CTX *transportLayerContext;
/// true if there is enough random data to write a new random seed file
OFBool canWriteRandseed;
/// contains the password for the private key if set on command line
OFString privateKeyPasswd;
};
#endif /* WITH_OPENSSL */
#endif
/*
* $Log: tlslayer.h,v $
* Revision 1.9 2010-10-14 13:17:27 joergr
* Updated copyright header. Added reference to COPYRIGHT file.
*
* Revision 1.8 2009-11-18 12:11:19 uli
* Switched to logging mechanism provided by the "new" oflog module.
*
* Revision 1.7 2006-08-15 16:02:55 meichel
* Updated the code in module dcmtls to correctly compile when
* all standard C++ classes remain in namespace std.
*
* Revision 1.6 2005/12/08 16:05:38 meichel
* Changed include path schema for all DCMTK header files
*
* Revision 1.5 2003/12/05 10:38:55 joergr
* Removed leading underscore characters from preprocessor symbols (reserved
* symbols).
*
* Revision 1.4 2003/07/04 13:28:32 meichel
* Added include for ofstream.h, to make sure ofstream is correctly defined
*
* Revision 1.3 2001/06/01 15:51:12 meichel
* Updated copyright header
*
* Revision 1.2 2000/10/10 12:13:31 meichel
* Added routines for printing certificates and connection parameters.
*
* Revision 1.1 2000/08/10 14:50:26 meichel
* Added initial OpenSSL support.
*
*
*/
|