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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ui/base/clipboard/clipboard_util_win.h"
#include <shellapi.h>
#include <wininet.h> // For INTERNET_MAX_URL_LENGTH.
#include <wrl/client.h>
#include <algorithm>
#include <limits>
#include <optional>
#include <string_view>
#include <utility>
#include "base/files/file_util.h"
#include "base/logging.h"
#include "base/strings/strcat.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/task_traits.h"
#include "base/task/thread_pool.h"
#include "base/threading/scoped_blocking_call.h"
#include "base/win/scoped_hglobal.h"
#include "base/win/shlwapi.h"
#include "net/base/filename_util.h"
#include "ui/base/clipboard/clipboard_format_type.h"
#include "ui/base/clipboard/custom_data_helper.h"
#include "url/gurl.h"
namespace ui {
namespace {
constexpr STGMEDIUM kNullStorageMedium = {.tymed = TYMED_NULL,
.pUnkForRelease = nullptr};
bool HasData(IDataObject* data_object, const ClipboardFormatType& format) {
FORMATETC format_etc = format.ToFormatEtc();
return SUCCEEDED(data_object->QueryGetData(&format_etc));
}
bool GetData(IDataObject* data_object,
const ClipboardFormatType& format,
STGMEDIUM* medium) {
FORMATETC format_etc = format.ToFormatEtc();
return SUCCEEDED(data_object->GetData(&format_etc, medium));
}
bool GetUrlFromHDrop(IDataObject* data_object,
GURL* url,
std::u16string* title) {
DCHECK(data_object && url && title);
bool success = false;
STGMEDIUM medium;
if (!GetData(data_object, ClipboardFormatType::CFHDropType(), &medium))
return false;
{
base::win::ScopedHGlobal<HDROP> hdrop(medium.hGlobal);
if (!hdrop.data()) {
return false;
}
wchar_t filename[MAX_PATH];
if (DragQueryFileW(hdrop.data(), 0, filename, std::size(filename))) {
wchar_t url_buffer[INTERNET_MAX_URL_LENGTH];
if (0 == _wcsicmp(PathFindExtensionW(filename), L".url") &&
GetPrivateProfileStringW(L"InternetShortcut", L"url", 0, url_buffer,
std::size(url_buffer), filename)) {
*url = GURL(base::AsStringPiece16(url_buffer));
PathRemoveExtension(filename);
title->assign(base::as_u16cstr(PathFindFileName(filename)));
success = url->is_valid();
}
}
}
ReleaseStgMedium(&medium);
return success;
}
void SplitUrlAndTitle(const std::u16string& str,
GURL* url,
std::u16string* title) {
DCHECK(url && title);
size_t newline_pos = str.find('\n');
if (newline_pos != std::u16string::npos) {
*url = GURL(std::u16string(str, 0, newline_pos));
title->assign(str, newline_pos + 1, std::u16string::npos);
} else {
*url = GURL(str);
title->assign(str);
}
}
// Performs a case-insensitive search for a file path in a vector of existing
// filepaths. Case-insensivity is needed for file systems such as Windows where
// A.txt and a.txt are considered the same file name.
bool ContainsFilePathCaseInsensitive(
const std::vector<base::FilePath>& existing_filenames,
const base::FilePath& candidate_path) {
return std::ranges::any_of(existing_filenames,
[&candidate_path](const base::FilePath& elem) {
return base::FilePath::CompareEqualIgnoreCase(
elem.value(), candidate_path.value());
});
}
// Returns a unique display name for a virtual file, as it is possible that the
// filenames found in the file group descriptor are not unique (e.g. multiple
// emails with the same subject line are dragged out of Outlook.exe).
// |uniquifier| is incremented on encountering a non-unique file name.
base::FilePath GetUniqueVirtualFilename(
const std::wstring& candidate_name,
const std::vector<base::FilePath>& existing_filenames,
unsigned int* uniquifier) {
// Remove any possible filepath components/separators that drag source may
// have included in virtual file name.
base::FilePath unique_name = base::FilePath(candidate_name).BaseName();
// To mitigate against running up against MAX_PATH limitations (temp files
// failing to be created), truncate the display name.
const size_t kTruncatedDisplayNameLength = 128;
const std::wstring extension = unique_name.Extension();
unique_name = unique_name.RemoveExtension();
std::wstring truncated = unique_name.value();
if (truncated.length() > kTruncatedDisplayNameLength) {
truncated.erase(kTruncatedDisplayNameLength);
unique_name = base::FilePath(truncated);
}
unique_name = unique_name.AddExtension(extension);
// Replace any file name illegal characters.
unique_name = net::GenerateFileName(GURL(), std::string(), std::string(),
base::WideToUTF8(unique_name.value()),
std::string(), std::string());
// Make the file name unique. This is more involved than just marching through
// |existing_filenames|, finding the first match, uniquifying, then breaking
// out of the loop. For example, consider an array of candidate display names
// {"A (1) (2)", "A", "A (1) ", "A"}. In the first three iterations of the
// outer loop in GetVirtualFilenames, the candidate names are already unique
// and so simply pushed to the vector of |filenames|. On the fourth iteration
// of the outer loop and second iteration of the inner loop (that in
// GetUniqueVirtualFilename), the duplicate name is encountered and the fourth
// item is tentatively uniquified to "A (1)". If this inner loop were exited
// now, the final |filenames| would be {"A (1) (2)", "A", "A (1) ", "A (1)"}
// and would contain duplicate entries. So try not breaking out of the
// inner loop. In that case on the third iteration of the inner loop, the
// tentative unique name encounters another duplicate, so now gets uniquefied
// to "A (1) (2)" and if we then don't restart the loop, we would end up with
// the final |filenames| being {"A (1) (2)", "A", "A (1) ", "A (1) (2)"} and
// we still have duplicate entries. Instead we need to test against the
// entire collection of existing names on each uniquification attempt.
// Same value used in base::GetUniquePathNumber.
static const int kMaxUniqueFiles = 100;
int count = 1;
for (; count <= kMaxUniqueFiles; ++count) {
if (!ContainsFilePathCaseInsensitive(existing_filenames, unique_name))
break;
unique_name = unique_name.InsertBeforeExtensionASCII(
base::StringPrintf(" (%d)", (*uniquifier)++));
}
if (count > kMaxUniqueFiles)
unique_name = base::FilePath();
return unique_name;
}
// Creates a uniquely-named temporary file based on the suggested filename, or
// an empty path on error. The file will be empty and all handles closed after
// this function returns.
base::FilePath CreateTemporaryFileWithSuggestedName(
const base::FilePath& suggested_name) {
base::FilePath temp_path1;
if (!base::CreateTemporaryFile(&temp_path1))
return base::FilePath();
base::FilePath temp_path2 = temp_path1.DirName().Append(suggested_name);
// Make filename unique.
temp_path2 = base::GetUniquePath(temp_path2);
if (temp_path2.empty())
return base::FilePath(); // Failed to make a unique path.
base::File::Error replace_file_error = base::File::FILE_OK;
if (!ReplaceFile(temp_path1, temp_path2, &replace_file_error))
return base::FilePath();
return temp_path2;
}
// This method performs file I/O and thus is executed on a worker thread. An
// empty FilePath for the temp file is returned on failure.
base::FilePath WriteFileContentsToTempFile(const base::FilePath& suggested_name,
HGLOBAL hdata) {
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
base::BlockingType::MAY_BLOCK);
if (!hdata)
return base::FilePath();
base::FilePath temp_path =
CreateTemporaryFileWithSuggestedName(suggested_name);
if (!temp_path.empty()) {
base::win::ScopedHGlobal<char*> data(hdata);
// Don't write to the temp file for empty content--leave it at 0-bytes.
if (!(data.size() == 1 && data.data()[0] == '\0')) {
if (!base::WriteFile(temp_path,
std::string_view(data.data(), data.size()))) {
base::DeleteFile(temp_path);
return base::FilePath();
}
}
}
::GlobalFree(hdata);
return temp_path;
}
std::vector<
std::pair</*temp path*/ base::FilePath, /*display name*/ base::FilePath>>
WriteAllFileContentsToTempFiles(
const std::vector<base::FilePath>& display_names,
const std::vector<HGLOBAL>& memory_backed_contents) {
DCHECK_EQ(display_names.size(), memory_backed_contents.size());
std::vector<std::pair<base::FilePath, base::FilePath>> filepaths_and_names;
for (size_t i = 0; i < display_names.size(); i++) {
base::FilePath temp_path = WriteFileContentsToTempFile(
display_names[i], memory_backed_contents[i]);
// Ignore file if write failed.
if (temp_path.empty()) {
continue;
}
filepaths_and_names.push_back({temp_path, display_names[i]});
}
return filepaths_and_names;
}
// Caller's responsibility to call GlobalFree on returned HGLOBAL when done with
// the data. This method must be performed on main thread as it is using the
// IDataObject marshalled there.
HGLOBAL CopyFileContentsToHGlobal(IDataObject* data_object, LONG index) {
DCHECK(data_object);
HGLOBAL hdata = nullptr;
if (!HasData(data_object, ClipboardFormatType::FileContentAtIndexType(index)))
return hdata;
STGMEDIUM content;
if (!GetData(data_object, ClipboardFormatType::FileContentAtIndexType(index),
&content))
return hdata;
HRESULT hr = S_OK;
if (content.tymed == TYMED_ISTORAGE) {
// For example, messages dragged out of Outlook.exe.
Microsoft::WRL::ComPtr<ILockBytes> lock_bytes;
hr = ::CreateILockBytesOnHGlobal(nullptr, /* fDeleteOnRelease*/ FALSE,
&lock_bytes);
Microsoft::WRL::ComPtr<IStorage> storage;
if (SUCCEEDED(hr)) {
hr = ::StgCreateDocfileOnILockBytes(
lock_bytes.Get(), STGM_READWRITE | STGM_SHARE_EXCLUSIVE | STGM_CREATE,
0, &storage);
}
if (SUCCEEDED(hr))
hr = content.pstg->CopyTo(0, nullptr, nullptr, storage.Get());
if (SUCCEEDED(hr))
hr = storage->Commit(STGC_OVERWRITE);
if (SUCCEEDED(hr))
hr = ::GetHGlobalFromILockBytes(lock_bytes.Get(), &hdata);
if (FAILED(hr))
hdata = nullptr;
} else if (content.tymed == TYMED_ISTREAM) {
// For example, attachments dragged out of messages in Outlook.exe.
Microsoft::WRL::ComPtr<IStream> stream;
hr =
::CreateStreamOnHGlobal(nullptr, /* fDeleteOnRelease */ FALSE, &stream);
if (SUCCEEDED(hr)) {
// A properly implemented IDataObject::GetData moves the stream pointer to
// the end. Need to seek to the beginning before copying the data then
// seek back to the original position.
const LARGE_INTEGER zero_displacement = {};
ULARGE_INTEGER original_position = {};
// Obtain the original stream pointer position. If the stream doesn't
// support seek, will still attempt to copy the data unless the failure is
// due to access being denied (enterprise protected data e.g.).
HRESULT hr_seek = content.pstm->Seek(zero_displacement, STREAM_SEEK_CUR,
&original_position);
if (hr_seek != E_ACCESSDENIED) {
if (SUCCEEDED(hr_seek)) {
// Seek to the beginning.
hr_seek =
content.pstm->Seek(zero_displacement, STREAM_SEEK_SET, nullptr);
}
// Copy all data to the file stream.
ULARGE_INTEGER max_bytes;
max_bytes.QuadPart = std::numeric_limits<uint64_t>::max();
hr = content.pstm->CopyTo(stream.Get(), max_bytes, nullptr, nullptr);
if (SUCCEEDED(hr_seek)) {
// Restore the stream pointer to its original position.
LARGE_INTEGER original_offset;
original_offset.QuadPart = original_position.QuadPart;
content.pstm->Seek(original_offset, STREAM_SEEK_SET, nullptr);
}
} else {
// Access was denied.
hr = hr_seek;
}
if (SUCCEEDED(hr))
hr = ::GetHGlobalFromStream(stream.Get(), &hdata);
if (FAILED(hr))
hdata = nullptr;
}
} else if (content.tymed == TYMED_HGLOBAL) {
// For example, anchor (internet shortcut) dragged out of Spartan Edge.
// Copy the data as it will be written to a file on a worker thread and we
// need to call ReleaseStgMedium to free the memory allocated by the drag
// source.
base::win::ScopedHGlobal<char*> data_source(content.hGlobal);
hdata = ::GlobalAlloc(GHND, data_source.size());
if (hdata) {
base::win::ScopedHGlobal<char*> data_destination(hdata);
memcpy(data_destination.data(), data_source.data(), data_source.size());
}
}
// Safe to release the medium now since all the data has been copied.
ReleaseStgMedium(&content);
return hdata;
}
std::wstring ConvertString(const char* string) {
return base::UTF8ToWide(string);
}
std::wstring ConvertString(const wchar_t* string) {
return string;
}
template <typename FileGroupDescriptorType>
struct FileGroupDescriptorData;
template <>
struct FileGroupDescriptorData<FILEGROUPDESCRIPTORW> {
static bool get(IDataObject* data_object, STGMEDIUM* medium) {
return GetData(data_object, ClipboardFormatType::FileDescriptorType(),
medium);
}
};
template <>
struct FileGroupDescriptorData<FILEGROUPDESCRIPTORA> {
static bool get(IDataObject* data_object, STGMEDIUM* medium) {
return GetData(data_object, ClipboardFormatType::FileDescriptorAType(),
medium);
}
};
// Retrieves display names of virtual files, making sure they are unique.
// Use template parameter of FILEGROUPDESCRIPTORW for retrieving Unicode data
// and FILEGROUPDESCRIPTORA for ascii.
template <typename FileGroupDescriptorType>
std::optional<std::vector<base::FilePath>> GetVirtualFilenames(
IDataObject* data_object) {
STGMEDIUM medium;
if (!FileGroupDescriptorData<FileGroupDescriptorType>::get(data_object,
&medium)) {
return std::nullopt;
}
std::vector<base::FilePath> filenames;
{
base::win::ScopedHGlobal<FileGroupDescriptorType*> fgd(medium.hGlobal);
if (!fgd.data()) {
return std::nullopt;
}
unsigned int num_files = fgd->cItems;
// We expect there to be at least one file in here.
DCHECK_GE(num_files, 1u);
// Value to be incremented to ensure a unique display name, as it is
// possible that the filenames found in the file group descriptor are not
// unique (e.g. multiple emails with the same subject line are dragged out
// of Outlook.exe).
unsigned int uniquifier = 1;
for (size_t i = 0; i < num_files; i++) {
// Folder entries not currently supported--skip this item.
if ((fgd->fgd[i].dwFlags & FD_ATTRIBUTES) &&
(fgd->fgd[i].dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) {
DLOG(WARNING) << "GetVirtualFilenames: display name '"
<< ConvertString(fgd->fgd[i].cFileName)
<< "' refers to a directory (not supported).";
continue;
}
base::FilePath display_name = GetUniqueVirtualFilename(
ConvertString(fgd->fgd[i].cFileName), filenames, &uniquifier);
filenames.push_back(display_name);
}
}
ReleaseStgMedium(&medium);
return filenames;
}
template <typename FileGroupDescriptorType>
bool GetFileNameFromFirstDescriptor(IDataObject* data_object,
std::wstring* filename) {
STGMEDIUM medium;
if (!FileGroupDescriptorData<FileGroupDescriptorType>::get(data_object,
&medium))
return false;
{
base::win::ScopedHGlobal<FileGroupDescriptorType*> fgd(medium.hGlobal);
// We expect there to be at least one file in here.
DCHECK_GE(fgd->cItems, 1u);
filename->assign(ConvertString(fgd->fgd[0].cFileName));
}
ReleaseStgMedium(&medium);
return true;
}
} // namespace
namespace clipboard_util {
bool HasUrl(IDataObject* data_object, bool convert_filenames) {
DCHECK(data_object);
return HasData(data_object, ClipboardFormatType::MozUrlType()) ||
HasData(data_object, ClipboardFormatType::UrlType()) ||
HasData(data_object, ClipboardFormatType::UrlAType()) ||
(convert_filenames && HasFilenames(data_object));
}
bool HasFilenames(IDataObject* data_object) {
DCHECK(data_object);
return HasData(data_object, ClipboardFormatType::CFHDropType()) ||
HasData(data_object, ClipboardFormatType::FilenameType()) ||
HasData(data_object, ClipboardFormatType::FilenameAType());
}
bool HasVirtualFilenames(IDataObject* data_object) {
DCHECK(data_object);
// Favor real files on the file system over virtual files.
return !HasFilenames(data_object) &&
HasData(data_object, ClipboardFormatType::FileContentAtIndexType(0)) &&
(HasData(data_object, ClipboardFormatType::FileDescriptorType()) ||
HasData(data_object, ClipboardFormatType::FileDescriptorAType()));
}
bool HasFileContents(IDataObject* data_object) {
DCHECK(data_object);
return HasData(data_object, ClipboardFormatType::FileContentZeroType()) &&
(HasData(data_object, ClipboardFormatType::FileDescriptorType()) ||
HasData(data_object, ClipboardFormatType::FileDescriptorAType()));
}
bool HasHtml(IDataObject* data_object) {
DCHECK(data_object);
return HasData(data_object, ClipboardFormatType::HtmlType()) ||
HasData(data_object, ClipboardFormatType::TextHtmlType());
}
bool HasPlainText(IDataObject* data_object) {
DCHECK(data_object);
return HasData(data_object, ClipboardFormatType::PlainTextType()) ||
HasData(data_object, ClipboardFormatType::PlainTextAType());
}
bool GetUrl(IDataObject* data_object,
GURL* url,
std::u16string* title,
bool convert_filenames) {
DCHECK(data_object && url && title);
if (!HasUrl(data_object, convert_filenames))
return false;
// Try to extract a URL from |data_object| in a variety of formats.
STGMEDIUM store;
if (GetUrlFromHDrop(data_object, url, title))
return true;
if (GetData(data_object, ClipboardFormatType::MozUrlType(), &store) ||
GetData(data_object, ClipboardFormatType::UrlType(), &store)) {
{
// Mozilla URL format or Unicode URL
base::win::ScopedHGlobal<wchar_t*> data(store.hGlobal);
SplitUrlAndTitle(base::WideToUTF16(data.data()), url, title);
}
ReleaseStgMedium(&store);
return url->is_valid();
}
if (GetData(data_object, ClipboardFormatType::UrlAType(), &store)) {
{
// URL using ASCII
base::win::ScopedHGlobal<char*> data(store.hGlobal);
SplitUrlAndTitle(base::UTF8ToUTF16(data.data()), url, title);
}
ReleaseStgMedium(&store);
return url->is_valid();
}
if (convert_filenames) {
std::vector<std::wstring> filenames;
if (!GetFilenames(data_object, &filenames))
return false;
DCHECK_GT(filenames.size(), 0U);
*url = net::FilePathToFileURL(base::FilePath(filenames[0]));
return url->is_valid();
}
return false;
}
bool GetFilenames(IDataObject* data_object,
std::vector<std::wstring>* filenames) {
DCHECK(data_object && filenames);
if (!HasFilenames(data_object))
return false;
STGMEDIUM medium;
if (GetData(data_object, ClipboardFormatType::CFHDropType(), &medium)) {
{
base::win::ScopedHGlobal<HDROP> hdrop(medium.hGlobal);
if (!hdrop.data()) {
return false;
}
const int kMaxFilenameLen = 4096;
const unsigned num_files = DragQueryFileW(hdrop.data(), 0xffffffff, 0, 0);
for (unsigned int i = 0; i < num_files; ++i) {
wchar_t filename[kMaxFilenameLen];
if (!DragQueryFileW(hdrop.data(), i, filename, kMaxFilenameLen)) {
continue;
}
filenames->push_back(filename);
}
}
ReleaseStgMedium(&medium);
return !filenames->empty();
}
if (GetData(data_object, ClipboardFormatType::FilenameType(), &medium)) {
{
// filename using Unicode
base::win::ScopedHGlobal<wchar_t*> data(medium.hGlobal);
if (data.data() && data.data()[0]) {
filenames->push_back(data.data());
}
}
ReleaseStgMedium(&medium);
return true;
}
if (GetData(data_object, ClipboardFormatType::FilenameAType(), &medium)) {
{
// filename using ASCII
base::win::ScopedHGlobal<char*> data(medium.hGlobal);
if (data.data() && data.data()[0]) {
filenames->push_back(base::SysNativeMBToWide(data.data()));
}
}
ReleaseStgMedium(&medium);
return true;
}
return false;
}
STGMEDIUM CreateStorageForFileNames(const std::vector<FileInfo>& filenames) {
// CF_HDROP clipboard format consists of DROPFILES structure, a series of file
// names including the terminating null character and the additional null
// character at the tail to terminate the array.
// For example,
//| DROPFILES | FILENAME 1 | NULL | ... | FILENAME n | NULL | NULL |
// For more details, please refer to
// https://docs.microsoft.com/en-us/windows/desktop/shell/clipboard#cf_hdrop
if (filenames.empty())
return kNullStorageMedium;
const size_t kDropFilesHeaderSizeInBytes = sizeof(DROPFILES);
size_t total_bytes = kDropFilesHeaderSizeInBytes;
for (const auto& filename : filenames) {
// Allocate memory of the filename's length including the null
// character.
total_bytes += (filename.path.value().length() + 1) * sizeof(wchar_t);
}
// |data| needs to be terminated by an additional null character.
total_bytes += sizeof(wchar_t);
// GHND combines GMEM_MOVEABLE and GMEM_ZEROINIT, and GMEM_ZEROINIT
// initializes memory contents to zero.
HANDLE hdata = GlobalAlloc(GHND, total_bytes);
base::win::ScopedHGlobal<DROPFILES*> locked_mem(hdata);
DROPFILES* drop_files = locked_mem.data();
drop_files->pFiles = sizeof(DROPFILES);
drop_files->fWide = TRUE;
wchar_t* data = reinterpret_cast<wchar_t*>(
reinterpret_cast<BYTE*>(drop_files) + kDropFilesHeaderSizeInBytes);
size_t next_filename_offset = 0;
for (const auto& filename : filenames) {
wcscpy(data + next_filename_offset, filename.path.value().c_str());
// Skip the terminating null character of the filename.
next_filename_offset += filename.path.value().length() + 1;
}
STGMEDIUM storage = {
.tymed = TYMED_HGLOBAL, .hGlobal = hdata, .pUnkForRelease = nullptr};
return storage;
}
std::optional<std::vector<base::FilePath>> GetVirtualFilenames(
IDataObject* data_object) {
DCHECK(data_object);
if (!HasVirtualFilenames(data_object))
return std::nullopt;
// Nothing prevents the drag source app from using the CFSTR_FILEDESCRIPTORA
// ANSI format (e.g., it could be that it doesn't support Unicode). So need to
// check for both the ANSI and Unicode file group descriptors.
// Unicode.
std::optional<std::vector<base::FilePath>> filenames =
ui::GetVirtualFilenames<FILEGROUPDESCRIPTORW>(data_object);
if (filenames) {
return filenames;
}
// ASCII.
return ui::GetVirtualFilenames<FILEGROUPDESCRIPTORA>(data_object);
}
void GetVirtualFilesAsTempFiles(
IDataObject* data_object,
base::OnceCallback<
void(const std::vector<std::pair</*temp path*/ base::FilePath,
/*display name*/ base::FilePath>>&)>
callback) {
// Retrieve the display names of the virtual files.
std::optional<std::vector<base::FilePath>> display_names =
GetVirtualFilenames(data_object);
if (!display_names) {
std::move(callback).Run({});
return;
}
// Write the file contents to global memory.
std::vector<HGLOBAL> memory_backed_contents;
for (size_t i = 0; i < display_names.value().size(); i++) {
HGLOBAL hdata = CopyFileContentsToHGlobal(data_object, i);
memory_backed_contents.push_back(hdata);
}
// Queue a task to actually write the temp files on a worker thread.
base::ThreadPool::PostTaskAndReplyWithResult(
FROM_HERE, {base::MayBlock(), base::TaskPriority::USER_BLOCKING},
base::BindOnce(&WriteAllFileContentsToTempFiles, display_names.value(),
memory_backed_contents),
std::move(callback)); // callback on the UI thread
}
bool GetPlainText(IDataObject* data_object, std::u16string* plain_text) {
DCHECK(data_object && plain_text);
if (!HasPlainText(data_object))
return false;
STGMEDIUM store;
if (GetData(data_object, ClipboardFormatType::PlainTextType(), &store)) {
{
// Unicode text
base::win::ScopedHGlobal<wchar_t*> data(store.hGlobal);
plain_text->assign(base::as_u16cstr(data.data()));
}
ReleaseStgMedium(&store);
return true;
}
if (GetData(data_object, ClipboardFormatType::PlainTextAType(), &store)) {
{
// ASCII text
base::win::ScopedHGlobal<char*> data(store.hGlobal);
plain_text->assign(base::UTF8ToUTF16(data.data()));
}
ReleaseStgMedium(&store);
return true;
}
// If a file is dropped on the window, it does not provide either of the
// plain text formats, so here we try to forcibly get a url.
GURL url;
std::u16string title;
if (GetUrl(data_object, &url, &title, false)) {
*plain_text = base::UTF8ToUTF16(url.spec());
return true;
}
return false;
}
bool GetHtml(IDataObject* data_object,
std::u16string* html,
std::string* base_url) {
DCHECK(data_object && html && base_url);
STGMEDIUM store;
if (HasData(data_object, ClipboardFormatType::HtmlType()) &&
GetData(data_object, ClipboardFormatType::HtmlType(), &store)) {
{
// MS CF html
base::win::ScopedHGlobal<char*> data(store.hGlobal);
std::string html_utf8;
CFHtmlToHtml(std::string_view(data.data(), data.size()), &html_utf8,
base_url);
html->assign(base::UTF8ToUTF16(html_utf8));
}
ReleaseStgMedium(&store);
return true;
}
if (!HasData(data_object, ClipboardFormatType::TextHtmlType()))
return false;
if (!GetData(data_object, ClipboardFormatType::TextHtmlType(), &store))
return false;
{
// text/html
base::win::ScopedHGlobal<wchar_t*> data(store.hGlobal);
html->assign(base::as_u16cstr(data.data()));
}
ReleaseStgMedium(&store);
return true;
}
bool GetFileContents(IDataObject* data_object,
std::wstring* filename,
std::string* file_contents) {
DCHECK(data_object && filename && file_contents);
if (!HasFileContents(data_object))
return false;
STGMEDIUM content;
// The call to GetData can be very slow depending on what is in
// |data_object|.
if (GetData(data_object, ClipboardFormatType::FileContentZeroType(),
&content)) {
if (TYMED_HGLOBAL == content.tymed) {
base::win::ScopedHGlobal<char*> data(content.hGlobal);
file_contents->assign(data.data(), data.size());
} else if (TYMED_ISTREAM == content.tymed) {
// For example, files dragged out of a ZIP Folder.
HGLOBAL hdata = CopyFileContentsToHGlobal(data_object, 0);
base::win::ScopedHGlobal<char*> data(hdata);
file_contents->assign(data.data(), data.size());
}
ReleaseStgMedium(&content);
}
// Nothing prevents the drag source app from using the CFSTR_FILEDESCRIPTORA
// ANSI format (e.g., it could be that it doesn't support Unicode). So need to
// check for both the ANSI and Unicode file group descriptors.
if (GetFileNameFromFirstDescriptor<FILEGROUPDESCRIPTORW>(data_object,
filename)) {
// file group descriptor using Unicode.
return true;
}
if (GetFileNameFromFirstDescriptor<FILEGROUPDESCRIPTORA>(data_object,
filename)) {
// file group descriptor using ASCII.
return true;
}
return false;
}
bool GetDataTransferCustomData(
IDataObject* data_object,
std::unordered_map<std::u16string, std::u16string>* custom_data) {
DCHECK(data_object && custom_data);
if (!HasData(data_object, ClipboardFormatType::DataTransferCustomType())) {
return false;
}
STGMEDIUM store;
if (GetData(data_object, ClipboardFormatType::DataTransferCustomType(),
&store)) {
{
base::win::ScopedHGlobal<const uint8_t*> data(store.hGlobal);
if (std::optional<std::unordered_map<std::u16string, std::u16string>>
maybe_custom_data = ReadCustomDataIntoMap(data);
maybe_custom_data) {
*custom_data = std::move(*maybe_custom_data);
return true;
}
}
ReleaseStgMedium(&store);
}
return false;
}
// HtmlToCFHtml and CFHtmlToHtml are based on similar methods in
// WebCore/platform/win/ClipboardUtilitiesWin.cpp.
/*
* Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// Helper method for converting from text/html to MS CF_HTML.
// Documentation for the CF_HTML format is available at
// http://msdn.microsoft.com/en-us/library/aa767917(VS.85).aspx
std::string HtmlToCFHtml(std::string_view html, std::string_view base_url) {
if (html.empty()) {
return std::string();
}
#define MAX_DIGITS 10
#define MAKE_NUMBER_FORMAT_1(digits) MAKE_NUMBER_FORMAT_2(digits)
#define MAKE_NUMBER_FORMAT_2(digits) "%0" #digits "zu"
#define NUMBER_FORMAT MAKE_NUMBER_FORMAT_1(MAX_DIGITS)
static constexpr char kHeader[] =
"Version:0.9\r\n"
"StartHTML:" NUMBER_FORMAT
"\r\n"
"EndHTML:" NUMBER_FORMAT
"\r\n"
"StartFragment:" NUMBER_FORMAT
"\r\n"
"EndFragment:" NUMBER_FORMAT "\r\n";
static const char kSourceUrlPrefix[] = "SourceURL:";
static const char kStartMarkup[] = "<html>\r\n<body>\r\n";
static const char kEndMarkup[] = "\r\n</body>\r\n</html>";
static const char kStartFragment[] = "<!--StartFragment-->";
static const char kEndFragment[] = "<!--EndFragment-->";
// Windows apps expect HTML in the clipboard to be in the text format CF_HTML
// so that they can figure out the length of the HTML document and extract
// fragments of the content out if needed. `content_type` describes the
// sanitization of the markup that will be converted to CF_HTML.
// Given the following unsanitized HTML string
// <html>
// <head> <style>p {color:blue}</style> </head>
// <body>
// <p>Hello World</p>
// <script> alert("Hello World!"); </script>
// </body>
// </html>
// Windows apps may extract the content from the headers to know where the
// HTML or fragment starts. If we wrap the content by simply "sticking" the
// headers (like we do with sanitized HTML), then it may result in double
// tags.
// Sticking the headers using the previous unsanitized HTML string (shortened
// for brevity):
// Version:0.9
// StartHTML:0000000132
// EndHTML:0000000637
// ...
// <html>
// <body>
// <!--StartFragment-->
// <html>
// <head> <style>p {color:blue}</style> </head>
// <body> <p>...</p> <script>...</script> </body>
// </html>
// <!--EndFragment-->
// </body>
// </html>
// Wrapping the unsanitized HTML string (shortened for brevity):
// Version:0.9
// StartHTML:0000000132
// EndHTML:0000000274
// ...
// <!--StartFragment-->
// <html>
// <head> <style>p {color:blue}</style> </head>
// <body> <p>...</p> <script>...</script> </body>
// </html>
// <!--EndFragment-->
// The only way to write unsanitized HTML is by using the Async Clipboard API
// write pipeline.
// We don't want to regress the behavior of current DataTransfer APIs and
// getData calls for apps that rely on markup with duplicate tags (e.g. Excel
// Online expects this type of markup). As a result, if the HTML is sanitized,
// we only "stick" the CF_HTML headers to the HTML string.
std::string markup = kStartMarkup;
base::StrAppend(&markup, {kStartFragment, html, kEndFragment});
markup += kEndMarkup;
// Calculate the offsets required for the HTML headers. This is used by Apps
// on Windows to figure out the length of the HTML document and fragments.
// Additionally, Apps can process specific parts of the HTML document. e.g.,
// if they choose to process fragments of the HTML document, then they can use
// the start and end fragments offsets to extract the content out.
size_t headers_offset =
strlen(kHeader) - strlen(NUMBER_FORMAT) * 4 + MAX_DIGITS * 4;
if (!base_url.empty()) {
headers_offset +=
strlen(kSourceUrlPrefix) + base_url.length() + 2; // Add 2 for \r\n.
}
size_t start_html_offset = headers_offset;
size_t start_fragment_offset = headers_offset + strlen(kStartFragment);
start_fragment_offset += strlen(kStartMarkup);
size_t end_fragment_offset = start_fragment_offset + html.length();
size_t end_html_offset = end_fragment_offset + strlen(kEndFragment);
end_html_offset += strlen(kEndMarkup);
std::string result =
base::StringPrintf(kHeader, start_html_offset, end_html_offset,
start_fragment_offset, end_fragment_offset);
if (!base_url.empty()) {
base::StrAppend(&result, {kSourceUrlPrefix, base_url, "\r\n"});
}
result += markup;
#undef MAX_DIGITS
#undef MAKE_NUMBER_FORMAT_1
#undef MAKE_NUMBER_FORMAT_2
#undef NUMBER_FORMAT
return result;
}
// Helper method for converting from MS CF_HTML to text/html.
void CFHtmlToHtml(std::string_view cf_html,
std::string* html,
std::string* base_url) {
size_t fragment_start = std::string::npos;
size_t fragment_end = std::string::npos;
CFHtmlExtractMetadata(cf_html, base_url, nullptr, &fragment_start,
&fragment_end);
if (html &&
fragment_start != std::string::npos &&
fragment_end != std::string::npos) {
*html = cf_html.substr(fragment_start, fragment_end - fragment_start);
base::TrimWhitespaceASCII(*html, base::TRIM_ALL, html);
}
}
void CFHtmlExtractMetadata(std::string_view cf_html,
std::string* base_url,
size_t* html_start,
size_t* fragment_start,
size_t* fragment_end) {
// Obtain base_url if present.
if (base_url) {
static constexpr char kSrcUrlStr[] = "SourceURL:";
size_t line_start = cf_html.find(kSrcUrlStr);
if (line_start != std::string::npos) {
size_t src_end = cf_html.find("\n", line_start);
size_t src_start = line_start + strlen(kSrcUrlStr);
if (src_end != std::string::npos && src_start != std::string::npos) {
*base_url = cf_html.substr(src_start, src_end - src_start);
base::TrimWhitespaceASCII(*base_url, base::TRIM_ALL, base_url);
}
}
}
// Find the markup between "<!--StartFragment-->" and "<!--EndFragment-->".
// If the comments cannot be found, like copying from OpenOffice Writer,
// we simply fall back to using StartFragment/EndFragment bytecount values
// to determine the fragment indexes.
std::string cf_html_lower = base::ToLowerASCII(cf_html);
size_t markup_start = cf_html_lower.find("<html", 0);
if (html_start) {
*html_start = markup_start;
}
size_t tag_start = cf_html.find("<!--StartFragment", markup_start);
if (tag_start == std::string::npos) {
static constexpr char kStartFragmentStr[] = "StartFragment:";
size_t start_fragment_start = cf_html.find(kStartFragmentStr);
if (start_fragment_start != std::string::npos) {
*fragment_start = static_cast<size_t>(atoi(
cf_html.data() + start_fragment_start + strlen(kStartFragmentStr)));
}
static constexpr char kEndFragmentStr[] = "EndFragment:";
size_t end_fragment_start = cf_html.find(kEndFragmentStr);
if (end_fragment_start != std::string::npos) {
*fragment_end = static_cast<size_t>(
atoi(cf_html.data() + end_fragment_start + strlen(kEndFragmentStr)));
}
} else {
*fragment_start = cf_html.find('>', tag_start) + 1;
size_t tag_end = cf_html.rfind("<!--EndFragment", std::string::npos);
*fragment_end = cf_html.rfind('<', tag_end);
}
}
} // namespace clipboard_util
} // namespace ui
|