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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <utility>
#include <rtl/ustring.hxx>
#include <rtl/ustrbuf.hxx>
#include <rtl/random.h>
#include <sax/fshelper.hxx>
#include <unotools/streamwrap.hxx>
#include "docuno.hxx"
#include "xestream.hxx"
#include "xladdress.hxx"
#include "xlstring.hxx"
#include "xeroot.hxx"
#include "xestyle.hxx"
#include "xcl97rec.hxx"
#include "rangelst.hxx"
#include "compiler.hxx"
#include "formulacell.hxx"
#include "tokenarray.hxx"
#include "tokenstringcontext.hxx"
#include "refreshtimerprotector.hxx"
#include "globstr.hrc"
#include <../../ui/inc/docsh.hxx>
#include <../../ui/inc/viewdata.hxx>
#include <excdoc.hxx>
#include <oox/token/tokens.hxx>
#include <formula/grammar.hxx>
#include <oox/export/drawingml.hxx>
#include <oox/ole/vbaexport.hxx>
#include <excelvbaproject.hxx>
#include <sfx2/docfile.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/app.hxx>
#include <com/sun/star/task/XStatusIndicator.hpp>
#include <memory>
#include <comphelper/storagehelper.hxx>
#define DEBUG_XL_ENCRYPTION 0
using ::com::sun::star::uno::XInterface;
using ::std::vector;
using namespace com::sun::star;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::io;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::sheet;
using namespace ::com::sun::star::uno;
using namespace ::formula;
using namespace ::oox;
XclExpStream::XclExpStream( SvStream& rOutStrm, const XclExpRoot& rRoot, sal_uInt16 nMaxRecSize ) :
mrStrm( rOutStrm ),
mrRoot( rRoot ),
mbUseEncrypter( false ),
mnMaxRecSize( nMaxRecSize ),
mnCurrMaxSize( 0 ),
mnMaxSliceSize( 0 ),
mnHeaderSize( 0 ),
mnCurrSize( 0 ),
mnSliceSize( 0 ),
mnPredictSize( 0 ),
mnLastSizePos( 0 ),
mbInRec( false )
{
if( mnMaxRecSize == 0 )
mnMaxRecSize = (mrRoot.GetBiff() <= EXC_BIFF5) ? EXC_MAXRECSIZE_BIFF5 : EXC_MAXRECSIZE_BIFF8;
mnMaxContSize = mnMaxRecSize;
}
XclExpStream::~XclExpStream()
{
mrStrm.Flush();
}
void XclExpStream::StartRecord( sal_uInt16 nRecId, sal_Size nRecSize )
{
OSL_ENSURE( !mbInRec, "XclExpStream::StartRecord - another record still open" );
DisableEncryption();
mnMaxContSize = mnCurrMaxSize = mnMaxRecSize;
mnPredictSize = nRecSize;
mbInRec = true;
InitRecord( nRecId );
SetSliceSize( 0 );
EnableEncryption();
}
void XclExpStream::EndRecord()
{
OSL_ENSURE( mbInRec, "XclExpStream::EndRecord - no record open" );
DisableEncryption();
UpdateRecSize();
mrStrm.Seek( STREAM_SEEK_TO_END );
mbInRec = false;
}
void XclExpStream::SetSliceSize( sal_uInt16 nSize )
{
mnMaxSliceSize = nSize;
mnSliceSize = 0;
}
XclExpStream& XclExpStream::operator<<( sal_Int8 nValue )
{
PrepareWrite( 1 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteSChar( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( sal_uInt8 nValue )
{
PrepareWrite( 1 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteUChar( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( sal_Int16 nValue )
{
PrepareWrite( 2 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteInt16( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( sal_uInt16 nValue )
{
PrepareWrite( 2 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteUInt16( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( sal_Int32 nValue )
{
PrepareWrite( 4 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteInt32( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( sal_uInt32 nValue )
{
PrepareWrite( 4 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, nValue);
else
mrStrm.WriteUInt32( nValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( float fValue )
{
PrepareWrite( 4 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, fValue);
else
mrStrm.WriteFloat( fValue );
return *this;
}
XclExpStream& XclExpStream::operator<<( double fValue )
{
PrepareWrite( 8 );
if (mbUseEncrypter && HasValidEncrypter())
mxEncrypter->Encrypt(mrStrm, fValue);
else
mrStrm.WriteDouble( fValue );
return *this;
}
sal_Size XclExpStream::Write( const void* pData, sal_Size nBytes )
{
sal_Size nRet = 0;
if( pData && (nBytes > 0) )
{
if( mbInRec )
{
const sal_uInt8* pBuffer = static_cast< const sal_uInt8* >( pData );
sal_Size nBytesLeft = nBytes;
bool bValid = true;
while( bValid && (nBytesLeft > 0) )
{
sal_Size nWriteLen = ::std::min< sal_Size >( PrepareWrite(), nBytesLeft );
sal_Size nWriteRet = nWriteLen;
if (mbUseEncrypter && HasValidEncrypter())
{
OSL_ENSURE(nWriteLen > 0, "XclExpStream::Write: write length is 0!");
vector<sal_uInt8> aBytes(nWriteLen);
memcpy(&aBytes[0], pBuffer, nWriteLen);
mxEncrypter->EncryptBytes(mrStrm, aBytes);
// TODO: How do I check if all the bytes have been successfully written ?
}
else
{
nWriteRet = mrStrm.Write( pBuffer, nWriteLen );
bValid = (nWriteLen == nWriteRet);
OSL_ENSURE( bValid, "XclExpStream::Write - stream write error" );
}
pBuffer += nWriteRet;
nRet += nWriteRet;
nBytesLeft -= nWriteRet;
UpdateSizeVars( nWriteRet );
}
}
else
nRet = mrStrm.Write( pData, nBytes );
}
return nRet;
}
void XclExpStream::WriteZeroBytes( sal_Size nBytes )
{
if( mbInRec )
{
sal_Size nBytesLeft = nBytes;
while( nBytesLeft > 0 )
{
sal_Size nWriteLen = ::std::min< sal_Size >( PrepareWrite(), nBytesLeft );
WriteRawZeroBytes( nWriteLen );
nBytesLeft -= nWriteLen;
UpdateSizeVars( nWriteLen );
}
}
else
WriteRawZeroBytes( nBytes );
}
void XclExpStream::WriteZeroBytesToRecord( sal_Size nBytes )
{
if (!mbInRec)
// not in record.
return;
sal_uInt8 nZero = 0;
for (sal_Size i = 0; i < nBytes; ++i)
*this << nZero;
}
void XclExpStream::CopyFromStream(SvStream& rInStrm, sal_uInt64 const nBytes)
{
sal_uInt64 const nRemaining(rInStrm.remainingSize());
sal_uInt64 nBytesLeft = ::std::min(nBytes, nRemaining);
if( nBytesLeft > 0 )
{
const sal_Size nMaxBuffer = 4096;
std::unique_ptr<sal_uInt8[]> pBuffer(
new sal_uInt8[ ::std::min<sal_Size>(nBytesLeft, nMaxBuffer) ]);
bool bValid = true;
while( bValid && (nBytesLeft > 0) )
{
sal_Size nWriteLen = ::std::min<sal_Size>(nBytesLeft, nMaxBuffer);
rInStrm.Read( pBuffer.get(), nWriteLen );
sal_Size nWriteRet = Write( pBuffer.get(), nWriteLen );
bValid = (nWriteLen == nWriteRet);
nBytesLeft -= nWriteRet;
}
}
}
void XclExpStream::WriteUnicodeBuffer( const ScfUInt16Vec& rBuffer, sal_uInt8 nFlags )
{
SetSliceSize( 0 );
nFlags &= EXC_STRF_16BIT; // repeat only 16bit flag
sal_uInt16 nCharLen = nFlags ? 2 : 1;
ScfUInt16Vec::const_iterator aEnd = rBuffer.end();
for( ScfUInt16Vec::const_iterator aIter = rBuffer.begin(); aIter != aEnd; ++aIter )
{
if( mbInRec && (mnCurrSize + nCharLen > mnCurrMaxSize) )
{
StartContinue();
operator<<( nFlags );
}
if( nCharLen == 2 )
operator<<( *aIter );
else
operator<<( static_cast< sal_uInt8 >( *aIter ) );
}
}
// Xcl has an obscure sense of whether starting a new record or not,
// and crashes if it encounters the string header at the very end of a record.
// Thus we add 1 to give some room, seems like they do it that way but with another count (10?)
void XclExpStream::WriteByteString( const OString& rString )
{
SetSliceSize( 0 );
sal_Size nLen = ::std::min< sal_Size >( rString.getLength(), 0x00FF );
nLen = ::std::min< sal_Size >( nLen, 0xFF );
sal_uInt16 nLeft = PrepareWrite();
if( mbInRec && (nLeft <= 1) )
StartContinue();
operator<<( static_cast< sal_uInt8 >( nLen ) );
Write( rString.getStr(), nLen );
}
void XclExpStream::WriteCharBuffer( const ScfUInt8Vec& rBuffer )
{
SetSliceSize( 0 );
Write( &rBuffer[ 0 ], rBuffer.size() );
}
void XclExpStream::SetEncrypter( XclExpEncrypterRef xEncrypter )
{
mxEncrypter = xEncrypter;
}
bool XclExpStream::HasValidEncrypter() const
{
return mxEncrypter && mxEncrypter->IsValid();
}
void XclExpStream::EnableEncryption( bool bEnable )
{
mbUseEncrypter = bEnable && HasValidEncrypter();
}
void XclExpStream::DisableEncryption()
{
EnableEncryption(false);
}
void XclExpStream::SetSvStreamPos(sal_uInt64 const nPos)
{
OSL_ENSURE( !mbInRec, "XclExpStream::SetSvStreamPos - not allowed inside of a record" );
mbInRec ? 0 : mrStrm.Seek( nPos );
}
// private --------------------------------------------------------------------
void XclExpStream::InitRecord( sal_uInt16 nRecId )
{
mrStrm.Seek( STREAM_SEEK_TO_END );
mrStrm.WriteUInt16( nRecId );
mnLastSizePos = mrStrm.Tell();
mnHeaderSize = static_cast< sal_uInt16 >( ::std::min< sal_Size >( mnPredictSize, mnCurrMaxSize ) );
mrStrm.WriteUInt16( mnHeaderSize );
mnCurrSize = mnSliceSize = 0;
}
void XclExpStream::UpdateRecSize()
{
if( mnCurrSize != mnHeaderSize )
{
mrStrm.Seek( mnLastSizePos );
mrStrm.WriteUInt16( mnCurrSize );
}
}
void XclExpStream::UpdateSizeVars( sal_Size nSize )
{
OSL_ENSURE( mnCurrSize + nSize <= mnCurrMaxSize, "XclExpStream::UpdateSizeVars - record overwritten" );
mnCurrSize = mnCurrSize + static_cast< sal_uInt16 >( nSize );
if( mnMaxSliceSize > 0 )
{
OSL_ENSURE( mnSliceSize + nSize <= mnMaxSliceSize, "XclExpStream::UpdateSizeVars - slice overwritten" );
mnSliceSize = mnSliceSize + static_cast< sal_uInt16 >( nSize );
if( mnSliceSize >= mnMaxSliceSize )
mnSliceSize = 0;
}
}
void XclExpStream::StartContinue()
{
UpdateRecSize();
mnCurrMaxSize = mnMaxContSize;
mnPredictSize -= mnCurrSize;
InitRecord( EXC_ID_CONT );
}
void XclExpStream::PrepareWrite( sal_uInt16 nSize )
{
if( mbInRec )
{
if( (mnCurrSize + nSize > mnCurrMaxSize) ||
((mnMaxSliceSize > 0) && (mnSliceSize == 0) && (mnCurrSize + mnMaxSliceSize > mnCurrMaxSize)) )
StartContinue();
UpdateSizeVars( nSize );
}
}
sal_uInt16 XclExpStream::PrepareWrite()
{
sal_uInt16 nRet = 0;
if( mbInRec )
{
if( (mnCurrSize >= mnCurrMaxSize) ||
((mnMaxSliceSize > 0) && (mnSliceSize == 0) && (mnCurrSize + mnMaxSliceSize > mnCurrMaxSize)) )
StartContinue();
UpdateSizeVars( 0 );
nRet = (mnMaxSliceSize > 0) ? (mnMaxSliceSize - mnSliceSize) : (mnCurrMaxSize - mnCurrSize);
}
return nRet;
}
void XclExpStream::WriteRawZeroBytes( sal_Size nBytes )
{
const sal_uInt32 nData = 0;
sal_Size nBytesLeft = nBytes;
while( nBytesLeft >= sizeof( nData ) )
{
mrStrm.WriteUInt32( nData );
nBytesLeft -= sizeof( nData );
}
if( nBytesLeft )
mrStrm.Write( &nData, nBytesLeft );
}
XclExpBiff8Encrypter::XclExpBiff8Encrypter( const XclExpRoot& rRoot ) :
mnOldPos(STREAM_SEEK_TO_END),
mbValid(false)
{
Sequence< NamedValue > aEncryptionData = rRoot.GetEncryptionData();
if( !aEncryptionData.hasElements() )
// Empty password. Get the default biff8 password.
aEncryptionData = rRoot.GenerateDefaultEncryptionData();
Init( aEncryptionData );
}
XclExpBiff8Encrypter::~XclExpBiff8Encrypter()
{
}
void XclExpBiff8Encrypter::GetSaltDigest( sal_uInt8 pnSaltDigest[16] ) const
{
if ( sizeof( mpnSaltDigest ) == 16 )
memcpy( pnSaltDigest, mpnSaltDigest, 16 );
}
void XclExpBiff8Encrypter::GetSalt( sal_uInt8 pnSalt[16] ) const
{
if ( sizeof( mpnSalt ) == 16 )
memcpy( pnSalt, mpnSalt, 16 );
}
void XclExpBiff8Encrypter::GetDocId( sal_uInt8 pnDocId[16] ) const
{
if ( sizeof( mpnDocId ) == 16 )
memcpy( pnDocId, mpnDocId, 16 );
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_uInt8 nData )
{
vector<sal_uInt8> aByte(1);
aByte[0] = nData;
EncryptBytes(rStrm, aByte);
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_uInt16 nData )
{
::std::vector<sal_uInt8> pnBytes(2);
pnBytes[0] = nData & 0xFF;
pnBytes[1] = (nData >> 8) & 0xFF;
EncryptBytes(rStrm, pnBytes);
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_uInt32 nData )
{
::std::vector<sal_uInt8> pnBytes(4);
pnBytes[0] = nData & 0xFF;
pnBytes[1] = (nData >> 8) & 0xFF;
pnBytes[2] = (nData >> 16) & 0xFF;
pnBytes[3] = (nData >> 24) & 0xFF;
EncryptBytes(rStrm, pnBytes);
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, float fValue )
{
::std::vector<sal_uInt8> pnBytes(4);
memcpy(&pnBytes[0], &fValue, 4);
EncryptBytes(rStrm, pnBytes);
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, double fValue )
{
::std::vector<sal_uInt8> pnBytes(8);
memcpy(&pnBytes[0], &fValue, 8);
EncryptBytes(rStrm, pnBytes);
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_Int8 nData )
{
Encrypt(rStrm, static_cast<sal_uInt8>(nData));
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_Int16 nData )
{
Encrypt(rStrm, static_cast<sal_uInt16>(nData));
}
void XclExpBiff8Encrypter::Encrypt( SvStream& rStrm, sal_Int32 nData )
{
Encrypt(rStrm, static_cast<sal_uInt32>(nData));
}
void XclExpBiff8Encrypter::Init( const Sequence< NamedValue >& rEncryptionData )
{
mbValid = false;
if( maCodec.InitCodec( rEncryptionData ) )
{
maCodec.GetDocId( mpnDocId );
// generate the salt here
TimeValue aTime;
osl_getSystemTime( &aTime );
rtlRandomPool aRandomPool = rtl_random_createPool ();
rtl_random_addBytes( aRandomPool, &aTime, 8 );
rtl_random_getBytes( aRandomPool, mpnSalt, 16 );
rtl_random_destroyPool( aRandomPool );
memset( mpnSaltDigest, 0, sizeof( mpnSaltDigest ) );
// generate salt hash.
::msfilter::MSCodec_Std97 aCodec;
aCodec.InitCodec( rEncryptionData );
aCodec.CreateSaltDigest( mpnSalt, mpnSaltDigest );
// verify to make sure it's in good shape.
mbValid = maCodec.VerifyKey( mpnSalt, mpnSaltDigest );
}
}
sal_uInt32 XclExpBiff8Encrypter::GetBlockPos( sal_Size nStrmPos )
{
return static_cast< sal_uInt32 >( nStrmPos / EXC_ENCR_BLOCKSIZE );
}
sal_uInt16 XclExpBiff8Encrypter::GetOffsetInBlock( sal_Size nStrmPos )
{
return static_cast< sal_uInt16 >( nStrmPos % EXC_ENCR_BLOCKSIZE );
}
void XclExpBiff8Encrypter::EncryptBytes( SvStream& rStrm, vector<sal_uInt8>& aBytes )
{
sal_uInt64 nStrmPos = rStrm.Tell();
sal_uInt16 nBlockOffset = GetOffsetInBlock(nStrmPos);
sal_uInt32 nBlockPos = GetBlockPos(nStrmPos);
#if DEBUG_XL_ENCRYPTION
fprintf(stdout, "XclExpBiff8Encrypter::EncryptBytes: stream pos = %ld offset in block = %d block pos = %ld\n",
nStrmPos, nBlockOffset, nBlockPos);
#endif
sal_uInt16 nSize = static_cast< sal_uInt16 >( aBytes.size() );
if (nSize == 0)
return;
#if DEBUG_XL_ENCRYPTION
fprintf(stdout, "RAW: ");
for (sal_uInt16 i = 0; i < nSize; ++i)
fprintf(stdout, "%2.2X ", aBytes[i]);
fprintf(stdout, "\n");
#endif
if (mnOldPos != nStrmPos)
{
sal_uInt16 nOldOffset = GetOffsetInBlock(mnOldPos);
sal_uInt32 nOldBlockPos = GetBlockPos(mnOldPos);
if ( (nBlockPos != nOldBlockPos) || (nBlockOffset < nOldOffset) )
{
maCodec.InitCipher(nBlockPos);
nOldOffset = 0;
}
if (nBlockOffset > nOldOffset)
maCodec.Skip(nBlockOffset - nOldOffset);
}
sal_uInt16 nBytesLeft = nSize;
sal_uInt16 nPos = 0;
while (nBytesLeft > 0)
{
sal_uInt16 nBlockLeft = EXC_ENCR_BLOCKSIZE - nBlockOffset;
sal_uInt16 nEncBytes = ::std::min(nBlockLeft, nBytesLeft);
bool bRet = maCodec.Encode(&aBytes[nPos], nEncBytes, &aBytes[nPos], nEncBytes);
OSL_ENSURE(bRet, "XclExpBiff8Encrypter::EncryptBytes: encryption failed!!");
(void) bRet; // to remove a silly compiler warning.
sal_Size nRet = rStrm.Write(&aBytes[nPos], nEncBytes);
OSL_ENSURE(nRet == nEncBytes, "XclExpBiff8Encrypter::EncryptBytes: fail to write to stream!!");
(void) nRet; // to remove a silly compiler warning.
nStrmPos = rStrm.Tell();
nBlockOffset = GetOffsetInBlock(nStrmPos);
nBlockPos = GetBlockPos(nStrmPos);
if (nBlockOffset == 0)
maCodec.InitCipher(nBlockPos);
nBytesLeft -= nEncBytes;
nPos += nEncBytes;
}
mnOldPos = nStrmPos;
}
static const char* lcl_GetErrorString( sal_uInt16 nScErrCode )
{
sal_uInt8 nXclErrCode = XclTools::GetXclErrorCode( nScErrCode );
switch( nXclErrCode )
{
case EXC_ERR_NULL: return "#NULL!";
case EXC_ERR_DIV0: return "#DIV/0!";
case EXC_ERR_VALUE: return "#VALUE!";
case EXC_ERR_REF: return "#REF!";
case EXC_ERR_NAME: return "#NAME?";
case EXC_ERR_NUM: return "#NUM!";
case EXC_ERR_NA:
default: return "#N/A";
}
}
void XclXmlUtils::GetFormulaTypeAndValue( ScFormulaCell& rCell, const char*& rsType, OUString& rsValue )
{
sc::FormulaResultValue aResValue = rCell.GetResult();
switch (aResValue.meType)
{
case sc::FormulaResultValue::Error:
rsType = "e";
rsValue = ToOUString(lcl_GetErrorString(aResValue.mnError));
break;
case sc::FormulaResultValue::Value:
rsType = "n";
rsValue = OUString::number(aResValue.mfValue);
break;
case sc::FormulaResultValue::String:
rsType = "str";
rsValue = rCell.GetString().getString();
break;
case sc::FormulaResultValue::Invalid:
default:
// TODO : double-check this to see if this is correct.
rsType = "inlineStr";
rsValue = rCell.GetString().getString();
}
}
OUString XclXmlUtils::GetStreamName( const char* sStreamDir, const char* sStream, sal_Int32 nId )
{
OUStringBuffer sBuf;
if( sStreamDir )
sBuf.appendAscii( sStreamDir );
sBuf.appendAscii( sStream );
if( nId )
sBuf.append( nId );
if( strstr(sStream, "vml") )
sBuf.append( ".vml" );
else
sBuf.append( ".xml" );
return sBuf.makeStringAndClear();
}
OString XclXmlUtils::ToOString( const Color& rColor )
{
char buf[9];
sprintf( buf, "%.2X%.2X%.2X%.2X", 0xFF-rColor.GetTransparency(), rColor.GetRed(), rColor.GetGreen(), rColor.GetBlue() );
buf[8] = '\0';
return OString( buf );
}
OString XclXmlUtils::ToOString( const OUString& s )
{
return OUStringToOString( s, RTL_TEXTENCODING_UTF8 );
}
OStringBuffer& XclXmlUtils::ToOString( OStringBuffer& s, const ScAddress& rAddress )
{
rAddress.Format(s, ScRefFlags::VALID, nullptr, ScAddress::Details( FormulaGrammar::CONV_XL_A1));
return s;
}
OString XclXmlUtils::ToOString( const ScfUInt16Vec& rBuffer )
{
if(rBuffer.empty())
return OString();
const sal_uInt16* pBuffer = &rBuffer [0];
return OString(
reinterpret_cast<sal_Unicode const *>(pBuffer), rBuffer.size(),
RTL_TEXTENCODING_UTF8);
}
OString XclXmlUtils::ToOString( const ScRange& rRange, bool bFullAddressNotation )
{
OUString sRange(rRange.Format( ScRefFlags::VALID, nullptr,
ScAddress::Details( FormulaGrammar::CONV_XL_A1 ),
bFullAddressNotation ) );
return ToOString( sRange );
}
OString XclXmlUtils::ToOString( const ScRangeList& rRangeList )
{
OUString s;
rRangeList.Format(s, ScRefFlags::VALID, nullptr, FormulaGrammar::CONV_XL_OOX, ' ');
return ToOString( s );
}
static ScAddress lcl_ToAddress( const XclAddress& rAddress )
{
ScAddress aAddress;
// For some reason, ScRange::Format() returns omits row numbers if
// the row is >= MAXROW or the column is >= MAXCOL, and Excel doesn't
// like "A:IV" (i.e. no row numbers). Prevent this.
// KOHEI: Find out if the above comment is still true.
aAddress.SetRow( std::min<sal_Int32>( rAddress.mnRow, MAXROW ) );
aAddress.SetCol( static_cast<sal_Int16>(std::min<sal_Int32>( rAddress.mnCol, MAXCOL )) );
return aAddress;
}
OStringBuffer& XclXmlUtils::ToOString( OStringBuffer& s, const XclAddress& rAddress )
{
return ToOString( s, lcl_ToAddress( rAddress ));
}
OString XclXmlUtils::ToOString( const XclExpString& s )
{
OSL_ENSURE( !s.IsRich(), "XclXmlUtils::ToOString(XclExpString): rich text string found!" );
return ToOString( s.GetUnicodeBuffer() );
}
static ScRange lcl_ToRange( const XclRange& rRange )
{
ScRange aRange;
aRange.aStart = lcl_ToAddress( rRange.maFirst );
aRange.aEnd = lcl_ToAddress( rRange.maLast );
return aRange;
}
OString XclXmlUtils::ToOString( const XclRangeList& rRanges )
{
ScRangeList aRanges;
for( XclRangeVector::const_iterator i = rRanges.begin(), end = rRanges.end();
i != end; ++i )
{
aRanges.Append( lcl_ToRange( *i ) );
}
return ToOString( aRanges );
}
OUString XclXmlUtils::ToOUString( const char* s )
{
return OUString( s, (sal_Int32) strlen( s ), RTL_TEXTENCODING_ASCII_US );
}
OUString XclXmlUtils::ToOUString( const ScfUInt16Vec& rBuf, sal_Int32 nStart, sal_Int32 nLength )
{
if( nLength == -1 || ( nLength > ((sal_Int32)rBuf.size() - nStart) ) )
nLength = (rBuf.size() - nStart);
return nLength > 0
? OUString(
reinterpret_cast<sal_Unicode const *>(&rBuf[nStart]), nLength)
: OUString();
}
OUString XclXmlUtils::ToOUString(
sc::CompileFormulaContext& rCtx, const ScAddress& rAddress, const ScTokenArray* pTokenArray )
{
ScCompiler aCompiler( rCtx, rAddress, const_cast<ScTokenArray&>(*pTokenArray));
aCompiler.SetGrammar(FormulaGrammar::GRAM_OOXML);
OUStringBuffer aBuffer( pTokenArray->GetLen() * 5 );
aCompiler.CreateStringFromTokenArray( aBuffer );
return aBuffer.makeStringAndClear();
}
OUString XclXmlUtils::ToOUString( const XclExpString& s )
{
OSL_ENSURE( !s.IsRich(), "XclXmlUtils::ToOString(XclExpString): rich text string found!" );
return ToOUString( s.GetUnicodeBuffer() );
}
const char* XclXmlUtils::ToPsz( bool b )
{
return b ? "true" : "false";
}
const char* XclXmlUtils::ToPsz10( bool b )
{
// xlsx seems to use "1" or "0" for boolean values. I wonder it ever uses
// the "true" "false" variant.
return b ? "1" : "0";
}
sax_fastparser::FSHelperPtr XclXmlUtils::WriteElement( sax_fastparser::FSHelperPtr pStream, sal_Int32 nElement, sal_Int32 nValue )
{
pStream->startElement( nElement, FSEND );
pStream->write( nValue );
pStream->endElement( nElement );
return pStream;
}
sax_fastparser::FSHelperPtr XclXmlUtils::WriteElement( sax_fastparser::FSHelperPtr pStream, sal_Int32 nElement, sal_Int64 nValue )
{
pStream->startElement( nElement, FSEND );
pStream->write( nValue );
pStream->endElement( nElement );
return pStream;
}
sax_fastparser::FSHelperPtr XclXmlUtils::WriteElement( sax_fastparser::FSHelperPtr pStream, sal_Int32 nElement, const char* sValue )
{
pStream->startElement( nElement, FSEND );
pStream->write( sValue );
pStream->endElement( nElement );
return pStream;
}
static void lcl_WriteValue( sax_fastparser::FSHelperPtr& rStream, sal_Int32 nElement, const char* pValue )
{
if( !pValue )
return;
rStream->singleElement( nElement,
XML_val, pValue,
FSEND );
}
static const char* lcl_GetUnderlineStyle( FontLineStyle eUnderline, bool& bHaveUnderline )
{
bHaveUnderline = true;
switch( eUnderline )
{
// OOXTODO: doubleAccounting, singleAccounting
// OOXTODO: what should be done with the other FontLineStyle values?
case LINESTYLE_SINGLE: return "single";
case LINESTYLE_DOUBLE: return "double";
case LINESTYLE_NONE:
default: bHaveUnderline = false; return "none";
}
}
static const char* lcl_ToVerticalAlignmentRun( SvxEscapement eEscapement, bool& bHaveAlignment )
{
bHaveAlignment = true;
switch( eEscapement )
{
case SVX_ESCAPEMENT_SUPERSCRIPT: return "superscript";
case SVX_ESCAPEMENT_SUBSCRIPT: return "subscript";
case SVX_ESCAPEMENT_OFF:
default: bHaveAlignment = false; return "baseline";
}
}
sax_fastparser::FSHelperPtr XclXmlUtils::WriteFontData( sax_fastparser::FSHelperPtr pStream, const XclFontData& rFontData, sal_Int32 nFontId )
{
bool bHaveUnderline, bHaveVertAlign;
const char* pUnderline = lcl_GetUnderlineStyle( rFontData.GetScUnderline(), bHaveUnderline );
const char* pVertAlign = lcl_ToVerticalAlignmentRun( rFontData.GetScEscapement(), bHaveVertAlign );
lcl_WriteValue( pStream, XML_b, rFontData.mnWeight > 400 ? XclXmlUtils::ToPsz( rFontData.mnWeight > 400 ) : nullptr );
lcl_WriteValue( pStream, XML_i, rFontData.mbItalic ? XclXmlUtils::ToPsz( rFontData.mbItalic ) : nullptr );
lcl_WriteValue( pStream, XML_strike, rFontData.mbStrikeout ? XclXmlUtils::ToPsz( rFontData.mbStrikeout ) : nullptr );
// OOXTODO: lcl_WriteValue( rStream, XML_condense, ); // mac compatibility setting
// OOXTODO: lcl_WriteValue( rStream, XML_extend, ); // compatibility setting
lcl_WriteValue( pStream, XML_outline, rFontData.mbOutline ? XclXmlUtils::ToPsz( rFontData.mbOutline ) : nullptr );
lcl_WriteValue( pStream, XML_shadow, rFontData.mbShadow ? XclXmlUtils::ToPsz( rFontData.mbShadow ) : nullptr );
lcl_WriteValue( pStream, XML_u, bHaveUnderline ? pUnderline : nullptr );
lcl_WriteValue( pStream, XML_vertAlign, bHaveVertAlign ? pVertAlign : nullptr );
lcl_WriteValue( pStream, XML_sz, OString::number( (double) (rFontData.mnHeight / 20.0) ).getStr() ); // Twips->Pt
if( rFontData.maColor != Color( 0xFF, 0xFF, 0xFF, 0xFF ) )
pStream->singleElement( XML_color,
// OOXTODO: XML_auto, bool
// OOXTODO: XML_indexed, uint
XML_rgb, XclXmlUtils::ToOString( rFontData.maColor ).getStr(),
// OOXTODO: XML_theme, index into <clrScheme/>
// OOXTODO: XML_tint, double
FSEND );
lcl_WriteValue( pStream, nFontId, XclXmlUtils::ToOString( rFontData.maName ).getStr() );
lcl_WriteValue( pStream, XML_family, OString::number( rFontData.mnFamily ).getStr() );
lcl_WriteValue( pStream, XML_charset, rFontData.mnCharSet != 0 ? OString::number( rFontData.mnCharSet ).getStr() : nullptr );
return pStream;
}
XclExpXmlStream::XclExpXmlStream( const Reference< XComponentContext >& rCC, bool bExportVBA )
: XmlFilterBase( rCC ),
mpRoot( nullptr ),
mbExportVBA(bExportVBA)
{
}
XclExpXmlStream::~XclExpXmlStream()
{
assert(maStreams.empty() && "Forgotten PopStream()?");
}
sax_fastparser::FSHelperPtr& XclExpXmlStream::GetCurrentStream()
{
OSL_ENSURE( !maStreams.empty(), "XclExpXmlStream::GetCurrentStream - no current stream" );
return maStreams.top();
}
void XclExpXmlStream::PushStream( sax_fastparser::FSHelperPtr aStream )
{
maStreams.push( aStream );
}
void XclExpXmlStream::PopStream()
{
OSL_ENSURE( !maStreams.empty(), "XclExpXmlStream::PopStream - stack is empty!" );
maStreams.pop();
}
sax_fastparser::FSHelperPtr XclExpXmlStream::GetStreamForPath( const OUString& sPath )
{
if( maOpenedStreamMap.find( sPath ) == maOpenedStreamMap.end() )
return sax_fastparser::FSHelperPtr();
return maOpenedStreamMap[ sPath ].second;
}
sax_fastparser::FSHelperPtr& XclExpXmlStream::WriteAttributesInternal( sal_Int32 nAttribute, ... )
{
sax_fastparser::FSHelperPtr& rStream = GetCurrentStream();
va_list args;
va_start( args, nAttribute );
do {
const char* pValue = va_arg( args, const char* );
if( pValue )
{
rStream->write( " " )
->writeId( nAttribute )
->write( "=\"" )
->writeEscaped( OUString(pValue, strlen(pValue), RTL_TEXTENCODING_UTF8) )
->write( "\"" );
}
nAttribute = va_arg( args, sal_Int32 );
if( nAttribute == FSEND_internal )
break;
} while( true );
va_end( args );
return rStream;
}
sax_fastparser::FSHelperPtr XclExpXmlStream::CreateOutputStream (
const OUString& sFullStream,
const OUString& sRelativeStream,
const Reference< XOutputStream >& xParentRelation,
const char* sContentType,
const char* sRelationshipType,
OUString* pRelationshipId )
{
OUString sRelationshipId;
if (xParentRelation.is())
sRelationshipId = addRelation( xParentRelation, OUString::createFromAscii( sRelationshipType), sRelativeStream );
else
sRelationshipId = addRelation( OUString::createFromAscii( sRelationshipType ), sRelativeStream );
if( pRelationshipId )
*pRelationshipId = sRelationshipId;
sax_fastparser::FSHelperPtr p = openFragmentStreamWithSerializer( sFullStream, OUString::createFromAscii( sContentType ) );
maOpenedStreamMap[ sFullStream ] = std::make_pair( sRelationshipId, p );
return p;
}
bool XclExpXmlStream::importDocument() throw()
{
return false;
}
oox::vml::Drawing* XclExpXmlStream::getVmlDrawing()
{
return nullptr;
}
const oox::drawingml::Theme* XclExpXmlStream::getCurrentTheme() const
{
return nullptr;
}
const oox::drawingml::table::TableStyleListPtr XclExpXmlStream::getTableStyles()
{
return oox::drawingml::table::TableStyleListPtr();
}
oox::drawingml::chart::ChartConverter* XclExpXmlStream::getChartConverter()
{
// DO NOT CALL
return nullptr;
}
ScDocShell* XclExpXmlStream::getDocShell()
{
Reference< XInterface > xModel( getModel(), UNO_QUERY );
ScModelObj *pObj = dynamic_cast < ScModelObj* >( xModel.get() );
if ( pObj )
return static_cast < ScDocShell* >( pObj->GetEmbeddedObject() );
return nullptr;
}
bool XclExpXmlStream::exportDocument()
throw (css::uno::RuntimeException,
css::ucb::ContentCreationException,
std::exception)
{
ScDocShell* pShell = getDocShell();
ScDocument& rDoc = pShell->GetDocument();
ScRefreshTimerProtector aProt(rDoc.GetRefreshTimerControlAddress());
uno::Reference<task::XStatusIndicator> xStatusIndicator = getStatusIndicator();
if (xStatusIndicator.is())
xStatusIndicator->start(ScGlobal::GetRscString(STR_SAVE_DOC), 100);
// NOTE: Don't use SotStorage or SvStream any more, and never call
// SfxMedium::GetOutStream() anywhere in the xlsx export filter code!
// Instead, write via XOutputStream instance.
tools::SvRef<SotStorage> rStorage = static_cast<SotStorage*>(nullptr);
XclExpObjList::ResetCounters();
XclExpRootData aData( EXC_BIFF8, *pShell->GetMedium (), rStorage, rDoc, RTL_TEXTENCODING_DONTKNOW );
aData.meOutput = EXC_OUTPUT_XML_2007;
aData.maXclMaxPos.Set( EXC_MAXCOL_XML_2007, EXC_MAXROW_XML_2007, EXC_MAXTAB_XML_2007 );
aData.maMaxPos.SetCol( ::std::min( aData.maScMaxPos.Col(), aData.maXclMaxPos.Col() ) );
aData.maMaxPos.SetRow( ::std::min( aData.maScMaxPos.Row(), aData.maXclMaxPos.Row() ) );
aData.maMaxPos.SetTab( ::std::min( aData.maScMaxPos.Tab(), aData.maXclMaxPos.Tab() ) );
aData.mpCompileFormulaCxt.reset( new sc::CompileFormulaContext(&rDoc) );
XclExpRoot aRoot( aData );
mpRoot = &aRoot;
aRoot.GetOldRoot().pER = &aRoot;
aRoot.GetOldRoot().eDateiTyp = Biff8;
// Get the viewsettings before processing
if( ScDocShell::GetViewData() )
ScDocShell::GetViewData()->WriteExtOptions( mpRoot->GetExtDocOptions() );
OUString const workbook = "xl/workbook.xml";
const char* pWorkbookContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml";
if (mbExportVBA)
pWorkbookContentType = "application/vnd.ms-excel.sheet.macroEnabled.main+xml";
PushStream( CreateOutputStream( workbook, workbook,
Reference <XOutputStream>(),
pWorkbookContentType,
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" ) );
if (mbExportVBA)
{
VbaExport aExport(getModel());
if (aExport.containsVBAProject())
{
SvMemoryStream aVbaStream(4096, 4096);
tools::SvRef<SotStorage> pVBAStorage(new SotStorage(aVbaStream));
aExport.exportVBA(pVBAStorage);
aVbaStream.Seek(0);
css::uno::Reference<css::io::XInputStream> xVBAStream(
new utl::OInputStreamWrapper(aVbaStream));
css::uno::Reference<css::io::XOutputStream> xVBAOutput =
openFragmentStream("xl/vbaProject.bin", "application/vnd.ms-office.vbaProject");
comphelper::OStorageHelper::CopyInputToOutput(xVBAStream, xVBAOutput);
addRelation(GetCurrentStream()->getOutputStream(), "http://schemas.microsoft.com/office/2006/relationships/vbaProject", "vbaProject.bin");
}
}
// destruct at the end of the block
{
ExcDocument aDocRoot( aRoot );
if (xStatusIndicator.is())
xStatusIndicator->setValue(10);
aDocRoot.ReadDoc();
if (xStatusIndicator.is())
xStatusIndicator->setValue(40);
aDocRoot.WriteXml( *this );
}
PopStream();
// Free all FSHelperPtr, to flush data before committing storage
maOpenedStreamMap.clear();
commitStorage();
if (xStatusIndicator.is())
xStatusIndicator->end();
mpRoot = nullptr;
return true;
}
::oox::ole::VbaProject* XclExpXmlStream::implCreateVbaProject() const
{
return new ::oox::xls::ExcelVbaProject( getComponentContext(), Reference< XSpreadsheetDocument >( getModel(), UNO_QUERY ) );
}
OUString XclExpXmlStream::getImplementationName() throw (css::uno::RuntimeException, std::exception)
{
return OUString( "TODO" );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|