/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: t_tls.c,v $ * $Revision: 1.5 $ * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #include #include #include #include #include #include #ifndef _OSL_ISOCKET_H_ #include #endif #ifndef _OSL_TLS_H_ #include #endif #include #include /*======================================================================== * * Internals. * *======================================================================*/ void SAL_CALL __rtl_sequence_release (sal_Sequence *value) { if (value) { if (osl_decrementInterlockedCount (&(value->nRefCount)) == 0) rtl_freeMemory (value); } } void SAL_CALL __rtl_sequence_new (sal_Sequence **value, sal_Int32 length) { if (value) { __rtl_sequence_release (*value); *value = (sal_Sequence*)rtl_allocateMemory ( SAL_SEQUENCE_HEADER_SIZE + length); (*value)->nRefCount = 1; (*value)->nElements = 0; } } void load_sequence (sal_Sequence **ppSequence, const sal_Char *name) { oslFileError result; rtl_uString *pName, *pPath; if (ppSequence) { __rtl_sequence_release (*ppSequence); *ppSequence = NULL; } pName = NULL; rtl_uString_newFromAscii (&pName, name); pPath = NULL; result = osl_searchNormalizedPath (pName, NULL, &pPath); if (result == osl_File_E_None) { oslFileHandle hFile; result = osl_openFile (pPath, &hFile, osl_File_OpenFlag_Read); if (result == osl_File_E_None) { sal_uInt64 nSize = 0, nRead = 0; osl_setFilePos (hFile, osl_Pos_End, 0); osl_getFilePos (hFile, &nSize); osl_setFilePos (hFile, osl_Pos_Absolut, 0); __rtl_sequence_new (ppSequence, (sal_Int32)nSize); osl_readFile (hFile, (*ppSequence)->elements, nSize, &nRead); (*ppSequence)->nElements = (sal_Int32)nRead; } osl_closeFile (hFile); rtl_uString_release (pPath); } rtl_uString_release (pName); } /*======================================================================== * * main. * *======================================================================*/ int SAL_CALL main (int argc, char **argv) { static const sal_Char p[] = "GET / HTTP/1.0\015\012\015\012"; oslSocketDescriptor *socket; socket = osl_socket_createSocketLayer (osl_tls_getSocketMethods()); if (socket) { oslSocketAddr target; oslSocketResult result; oslSocketMsgFlag flag = osl_Socket_MsgNormal; rtl_uString *dotted = NULL; rtl_uString_newFromAscii (&dotted, argv[1]); target = osl_createInetSocketAddr (dotted, 443); rtl_uString_release (dotted); result = osl_socket_create ( socket, osl_Socket_FamilyInet, osl_Socket_TypeStream, osl_Socket_ProtocolIp); OSL_ASSERT(result == osl_Socket_Ok); result = osl_socket_connect (socket, target); osl_destroySocketAddr (target); OSL_ASSERT(result == osl_Socket_Ok); result = osl_socket_connect_handshake (socket, target); OSL_ASSERT(result == osl_Socket_Ok); if (osl_socket_send (socket, p, strlen(p), flag) > 0) { sal_Char buffer[1024]; sal_Int32 k, n = sizeof(buffer); while ((k = osl_socket_recv (socket, buffer, n, flag)) > 0) fwrite (buffer, 1, k, stdout); } osl_socket_shutdown (socket, osl_Socket_DirReadWrite); osl_socket_close (socket); osl_socket_delete (socket); osl_socket_deleteSocketLayer (socket); } socket = osl_socket_createSocketLayer (osl_tls_getSocketMethods()); if (socket) { oslSocketDescriptor *connection; oslSocketResult result; oslSocketAddr addr, from; sal_Int32 option = 1; sal_Sequence *data = NULL; result = osl_socket_create ( socket, osl_Socket_FamilyInet, osl_Socket_TypeStream, osl_Socket_ProtocolIp); OSL_ASSERT(result == osl_Socket_Ok); result = osl_socket_setOption ( socket, osl_Socket_LevelSocket, osl_Socket_OptionReuseAddr, &option, sizeof(option)); OSL_ASSERT(result == osl_Socket_Ok); addr = osl_createEmptySocketAddr (osl_Socket_FamilyInet); osl_setInetPortOfSocketAddr (addr, 7777); result = osl_socket_bind (socket, addr); OSL_ASSERT(result == osl_Socket_Ok); load_sequence (&data, "s_cert.der"); if (data && data->nElements) { result = osl_socket_setOption ( socket, osl_Socket_LevelTLS, osl_Socket_OptionCertificate, data->elements, data->nElements); OSL_ASSERT(result == osl_Socket_Ok); } load_sequence (&data, "s_pkey.der"); if (data && data->nElements) { result = osl_socket_setOption ( socket, osl_Socket_LevelTLS, osl_Socket_OptionPrivateKey, data->elements, data->nElements); OSL_ASSERT(result == osl_Socket_Ok); } __rtl_sequence_release (data); result = osl_socket_listen (socket, 1); OSL_ASSERT(result == osl_Socket_Ok); connection = osl_socket_accept (socket, &from); if (connection) { sal_Char buffer[1024]; sal_Int32 k, n = sizeof(buffer); oslSocketMsgFlag flag = osl_Socket_MsgNormal; result = osl_socket_accept_handshake (connection, from); OSL_ASSERT(result == osl_Socket_Ok); while ((k = osl_socket_recv (connection, buffer, n, flag)) > 0) { if (osl_socket_send (connection, buffer, k, flag) < 0) break; } osl_socket_close (connection); osl_socket_delete (connection); osl_socket_deleteSocketLayer (connection); } osl_socket_delete (socket); osl_socket_deleteSocketLayer (socket); } return 0; }