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
|
// 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
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
#include "parquet/file_reader.h"
#include <algorithm>
#include <cstdint>
#include <cstring>
#include <memory>
#include <ostream>
#include <string>
#include <utility>
#include "arrow/io/caching.h"
#include "arrow/io/file.h"
#include "arrow/io/memory.h"
#include "arrow/util/checked_cast.h"
#include "arrow/util/future.h"
#include "arrow/util/int_util_internal.h"
#include "arrow/util/logging.h"
#include "arrow/util/ubsan.h"
#include "parquet/column_reader.h"
#include "parquet/column_scanner.h"
#include "parquet/encryption/encryption_internal.h"
#include "parquet/encryption/internal_file_decryptor.h"
#include "parquet/exception.h"
#include "parquet/file_writer.h"
#include "parquet/metadata.h"
#include "parquet/platform.h"
#include "parquet/properties.h"
#include "parquet/schema.h"
#include "parquet/types.h"
using arrow::internal::AddWithOverflow;
namespace parquet {
// PARQUET-978: Minimize footer reads by reading 64 KB from the end of the file
static constexpr int64_t kDefaultFooterReadSize = 64 * 1024;
static constexpr uint32_t kFooterSize = 8;
// For PARQUET-816
static constexpr int64_t kMaxDictHeaderSize = 100;
// ----------------------------------------------------------------------
// RowGroupReader public API
RowGroupReader::RowGroupReader(std::unique_ptr<Contents> contents)
: contents_(std::move(contents)) {}
std::shared_ptr<ColumnReader> RowGroupReader::Column(int i) {
if (i >= metadata()->num_columns()) {
std::stringstream ss;
ss << "Trying to read column index " << i << " but row group metadata has only "
<< metadata()->num_columns() << " columns";
throw ParquetException(ss.str());
}
const ColumnDescriptor* descr = metadata()->schema()->Column(i);
std::unique_ptr<PageReader> page_reader = contents_->GetColumnPageReader(i);
return ColumnReader::Make(
descr, std::move(page_reader),
const_cast<ReaderProperties*>(contents_->properties())->memory_pool());
}
std::shared_ptr<ColumnReader> RowGroupReader::ColumnWithExposeEncoding(
int i, ExposedEncoding encoding_to_expose) {
std::shared_ptr<ColumnReader> reader = Column(i);
if (encoding_to_expose == ExposedEncoding::DICTIONARY) {
// Check the encoding_stats to see if all data pages are dictionary encoded.
std::unique_ptr<ColumnChunkMetaData> col = metadata()->ColumnChunk(i);
const std::vector<PageEncodingStats>& encoding_stats = col->encoding_stats();
if (encoding_stats.empty()) {
// Some parquet files may have empty encoding_stats. In this case we are
// not sure whether all data pages are dictionary encoded. So we do not
// enable exposing dictionary.
return reader;
}
// The 1st page should be the dictionary page.
if (encoding_stats[0].page_type != PageType::DICTIONARY_PAGE ||
(encoding_stats[0].encoding != Encoding::PLAIN &&
encoding_stats[0].encoding != Encoding::PLAIN_DICTIONARY)) {
return reader;
}
// The following pages should be dictionary encoded data pages.
for (size_t idx = 1; idx < encoding_stats.size(); ++idx) {
if ((encoding_stats[idx].encoding != Encoding::RLE_DICTIONARY &&
encoding_stats[idx].encoding != Encoding::PLAIN_DICTIONARY) ||
(encoding_stats[idx].page_type != PageType::DATA_PAGE &&
encoding_stats[idx].page_type != PageType::DATA_PAGE_V2)) {
return reader;
}
}
} else {
// Exposing other encodings are not supported for now.
return reader;
}
// Set exposed encoding.
reader->SetExposedEncoding(encoding_to_expose);
return reader;
}
std::unique_ptr<PageReader> RowGroupReader::GetColumnPageReader(int i) {
if (i >= metadata()->num_columns()) {
std::stringstream ss;
ss << "Trying to read column index " << i << " but row group metadata has only "
<< metadata()->num_columns() << " columns";
throw ParquetException(ss.str());
}
return contents_->GetColumnPageReader(i);
}
// Returns the rowgroup metadata
const RowGroupMetaData* RowGroupReader::metadata() const { return contents_->metadata(); }
/// Compute the section of the file that should be read for the given
/// row group and column chunk.
::arrow::io::ReadRange ComputeColumnChunkRange(FileMetaData* file_metadata,
int64_t source_size, int row_group_index,
int column_index) {
auto row_group_metadata = file_metadata->RowGroup(row_group_index);
auto column_metadata = row_group_metadata->ColumnChunk(column_index);
int64_t col_start = column_metadata->data_page_offset();
if (column_metadata->has_dictionary_page() &&
column_metadata->dictionary_page_offset() > 0 &&
col_start > column_metadata->dictionary_page_offset()) {
col_start = column_metadata->dictionary_page_offset();
}
int64_t col_length = column_metadata->total_compressed_size();
int64_t col_end;
if (AddWithOverflow(col_start, col_length, &col_end) || col_end > source_size) {
throw ParquetException("Invalid column metadata (corrupt file?)");
}
// PARQUET-816 workaround for old files created by older parquet-mr
const ApplicationVersion& version = file_metadata->writer_version();
if (version.VersionLt(ApplicationVersion::PARQUET_816_FIXED_VERSION())) {
// The Parquet MR writer had a bug in 1.2.8 and below where it didn't include the
// dictionary page header size in total_compressed_size and total_uncompressed_size
// (see IMPALA-694). We add padding to compensate.
int64_t bytes_remaining = source_size - col_end;
int64_t padding = std::min<int64_t>(kMaxDictHeaderSize, bytes_remaining);
col_length += padding;
}
return {col_start, col_length};
}
// RowGroupReader::Contents implementation for the Parquet file specification
class SerializedRowGroup : public RowGroupReader::Contents {
public:
SerializedRowGroup(std::shared_ptr<ArrowInputFile> source,
std::shared_ptr<::arrow::io::internal::ReadRangeCache> cached_source,
int64_t source_size, FileMetaData* file_metadata,
int row_group_number, const ReaderProperties& props,
std::shared_ptr<InternalFileDecryptor> file_decryptor = nullptr)
: source_(std::move(source)),
cached_source_(std::move(cached_source)),
source_size_(source_size),
file_metadata_(file_metadata),
properties_(props),
row_group_ordinal_(row_group_number),
file_decryptor_(file_decryptor) {
row_group_metadata_ = file_metadata->RowGroup(row_group_number);
}
const RowGroupMetaData* metadata() const override { return row_group_metadata_.get(); }
const ReaderProperties* properties() const override { return &properties_; }
std::unique_ptr<PageReader> GetColumnPageReader(int i) override {
// Read column chunk from the file
auto col = row_group_metadata_->ColumnChunk(i);
::arrow::io::ReadRange col_range =
ComputeColumnChunkRange(file_metadata_, source_size_, row_group_ordinal_, i);
std::shared_ptr<ArrowInputStream> stream;
if (cached_source_) {
// PARQUET-1698: if read coalescing is enabled, read from pre-buffered
// segments.
PARQUET_ASSIGN_OR_THROW(auto buffer, cached_source_->Read(col_range));
stream = std::make_shared<::arrow::io::BufferReader>(buffer);
} else {
stream = properties_.GetStream(source_, col_range.offset, col_range.length);
}
std::unique_ptr<ColumnCryptoMetaData> crypto_metadata = col->crypto_metadata();
// Column is encrypted only if crypto_metadata exists.
if (!crypto_metadata) {
return PageReader::Open(stream, col->num_values(), col->compression(),
properties_.memory_pool());
}
if (file_decryptor_ == nullptr) {
throw ParquetException("RowGroup is noted as encrypted but no file decryptor");
}
constexpr auto kEncryptedRowGroupsLimit = 32767;
if (i > kEncryptedRowGroupsLimit) {
throw ParquetException("Encrypted files cannot contain more than 32767 row groups");
}
// The column is encrypted
std::shared_ptr<Decryptor> meta_decryptor;
std::shared_ptr<Decryptor> data_decryptor;
// The column is encrypted with footer key
if (crypto_metadata->encrypted_with_footer_key()) {
meta_decryptor = file_decryptor_->GetFooterDecryptorForColumnMeta();
data_decryptor = file_decryptor_->GetFooterDecryptorForColumnData();
CryptoContext ctx(col->has_dictionary_page(), row_group_ordinal_,
static_cast<int16_t>(i), meta_decryptor, data_decryptor);
return PageReader::Open(stream, col->num_values(), col->compression(),
properties_.memory_pool(), &ctx);
}
// The column is encrypted with its own key
std::string column_key_metadata = crypto_metadata->key_metadata();
const std::string column_path = crypto_metadata->path_in_schema()->ToDotString();
meta_decryptor =
file_decryptor_->GetColumnMetaDecryptor(column_path, column_key_metadata);
data_decryptor =
file_decryptor_->GetColumnDataDecryptor(column_path, column_key_metadata);
CryptoContext ctx(col->has_dictionary_page(), row_group_ordinal_,
static_cast<int16_t>(i), meta_decryptor, data_decryptor);
return PageReader::Open(stream, col->num_values(), col->compression(),
properties_.memory_pool(), &ctx);
}
private:
std::shared_ptr<ArrowInputFile> source_;
// Will be nullptr if PreBuffer() is not called.
std::shared_ptr<::arrow::io::internal::ReadRangeCache> cached_source_;
int64_t source_size_;
FileMetaData* file_metadata_;
std::unique_ptr<RowGroupMetaData> row_group_metadata_;
ReaderProperties properties_;
int row_group_ordinal_;
std::shared_ptr<InternalFileDecryptor> file_decryptor_;
};
// ----------------------------------------------------------------------
// SerializedFile: An implementation of ParquetFileReader::Contents that deals
// with the Parquet file structure, Thrift deserialization, and other internal
// matters
// This class takes ownership of the provided data source
class SerializedFile : public ParquetFileReader::Contents {
public:
SerializedFile(std::shared_ptr<ArrowInputFile> source,
const ReaderProperties& props = default_reader_properties())
: source_(std::move(source)), properties_(props) {
PARQUET_ASSIGN_OR_THROW(source_size_, source_->GetSize());
}
~SerializedFile() override {
try {
Close();
} catch (...) {
}
}
void Close() override {
if (file_decryptor_) file_decryptor_->WipeOutDecryptionKeys();
}
std::shared_ptr<RowGroupReader> GetRowGroup(int i) override {
std::unique_ptr<SerializedRowGroup> contents(
new SerializedRowGroup(source_, cached_source_, source_size_,
file_metadata_.get(), i, properties_, file_decryptor_));
return std::make_shared<RowGroupReader>(std::move(contents));
}
std::shared_ptr<FileMetaData> metadata() const override { return file_metadata_; }
void set_metadata(std::shared_ptr<FileMetaData> metadata) {
file_metadata_ = std::move(metadata);
}
void PreBuffer(const std::vector<int>& row_groups,
const std::vector<int>& column_indices,
const ::arrow::io::IOContext& ctx,
const ::arrow::io::CacheOptions& options) {
cached_source_ =
std::make_shared<::arrow::io::internal::ReadRangeCache>(source_, ctx, options);
std::vector<::arrow::io::ReadRange> ranges;
for (int row : row_groups) {
for (int col : column_indices) {
ranges.push_back(
ComputeColumnChunkRange(file_metadata_.get(), source_size_, row, col));
}
}
PARQUET_THROW_NOT_OK(cached_source_->Cache(ranges));
}
::arrow::Future<> WhenBuffered(const std::vector<int>& row_groups,
const std::vector<int>& column_indices) const {
if (!cached_source_) {
return ::arrow::Status::Invalid("Must call PreBuffer before WhenBuffered");
}
std::vector<::arrow::io::ReadRange> ranges;
for (int row : row_groups) {
for (int col : column_indices) {
ranges.push_back(
ComputeColumnChunkRange(file_metadata_.get(), source_size_, row, col));
}
}
return cached_source_->WaitFor(ranges);
}
// Metadata/footer parsing. Divided up to separate sync/async paths, and to use
// exceptions for error handling (with the async path converting to Future/Status).
void ParseMetaData() {
int64_t footer_read_size = GetFooterReadSize();
PARQUET_ASSIGN_OR_THROW(
auto footer_buffer,
source_->ReadAt(source_size_ - footer_read_size, footer_read_size));
uint32_t metadata_len = ParseFooterLength(footer_buffer, footer_read_size);
int64_t metadata_start = source_size_ - kFooterSize - metadata_len;
std::shared_ptr<::arrow::Buffer> metadata_buffer;
if (footer_read_size >= (metadata_len + kFooterSize)) {
metadata_buffer = SliceBuffer(
footer_buffer, footer_read_size - metadata_len - kFooterSize, metadata_len);
} else {
PARQUET_ASSIGN_OR_THROW(metadata_buffer,
source_->ReadAt(metadata_start, metadata_len));
}
// Parse the footer depending on encryption type
const bool is_encrypted_footer =
memcmp(footer_buffer->data() + footer_read_size - 4, kParquetEMagic, 4) == 0;
if (is_encrypted_footer) {
// Encrypted file with Encrypted footer.
const std::pair<int64_t, uint32_t> read_size =
ParseMetaDataOfEncryptedFileWithEncryptedFooter(metadata_buffer, metadata_len);
// Read the actual footer
metadata_start = read_size.first;
metadata_len = read_size.second;
PARQUET_ASSIGN_OR_THROW(metadata_buffer,
source_->ReadAt(metadata_start, metadata_len));
// Fall through
}
const uint32_t read_metadata_len =
ParseUnencryptedFileMetadata(metadata_buffer, metadata_len);
auto file_decryption_properties = properties_.file_decryption_properties().get();
if (is_encrypted_footer) {
// Nothing else to do here.
return;
} else if (!file_metadata_->is_encryption_algorithm_set()) { // Non encrypted file.
if (file_decryption_properties != nullptr) {
if (!file_decryption_properties->plaintext_files_allowed()) {
throw ParquetException("Applying decryption properties on plaintext file");
}
}
} else {
// Encrypted file with plaintext footer mode.
ParseMetaDataOfEncryptedFileWithPlaintextFooter(
file_decryption_properties, metadata_buffer, metadata_len, read_metadata_len);
}
}
// Validate the source size and get the initial read size.
int64_t GetFooterReadSize() {
if (source_size_ == 0) {
throw ParquetInvalidOrCorruptedFileException("Parquet file size is 0 bytes");
} else if (source_size_ < kFooterSize) {
throw ParquetInvalidOrCorruptedFileException(
"Parquet file size is ", source_size_,
" bytes, smaller than the minimum file footer (", kFooterSize, " bytes)");
}
return std::min(source_size_, kDefaultFooterReadSize);
}
// Validate the magic bytes and get the length of the full footer.
uint32_t ParseFooterLength(const std::shared_ptr<::arrow::Buffer>& footer_buffer,
const int64_t footer_read_size) {
// Check if all bytes are read. Check if last 4 bytes read have the magic bits
if (footer_buffer->size() != footer_read_size ||
(memcmp(footer_buffer->data() + footer_read_size - 4, kParquetMagic, 4) != 0 &&
memcmp(footer_buffer->data() + footer_read_size - 4, kParquetEMagic, 4) != 0)) {
throw ParquetInvalidOrCorruptedFileException(
"Parquet magic bytes not found in footer. Either the file is corrupted or this "
"is not a parquet file.");
}
// Both encrypted/unencrypted footers have the same footer length check.
uint32_t metadata_len = ::arrow::util::SafeLoadAs<uint32_t>(
reinterpret_cast<const uint8_t*>(footer_buffer->data()) + footer_read_size -
kFooterSize);
if (metadata_len > source_size_ - kFooterSize) {
throw ParquetInvalidOrCorruptedFileException(
"Parquet file size is ", source_size_,
" bytes, smaller than the size reported by footer's (", metadata_len, "bytes)");
}
return metadata_len;
}
// Does not throw.
::arrow::Future<> ParseMetaDataAsync() {
int64_t footer_read_size;
BEGIN_PARQUET_CATCH_EXCEPTIONS
footer_read_size = GetFooterReadSize();
END_PARQUET_CATCH_EXCEPTIONS
// Assumes this is kept alive externally
return source_->ReadAsync(source_size_ - footer_read_size, footer_read_size)
.Then([=](const std::shared_ptr<::arrow::Buffer>& footer_buffer)
-> ::arrow::Future<> {
uint32_t metadata_len;
BEGIN_PARQUET_CATCH_EXCEPTIONS
metadata_len = ParseFooterLength(footer_buffer, footer_read_size);
END_PARQUET_CATCH_EXCEPTIONS
int64_t metadata_start = source_size_ - kFooterSize - metadata_len;
std::shared_ptr<::arrow::Buffer> metadata_buffer;
if (footer_read_size >= (metadata_len + kFooterSize)) {
metadata_buffer =
SliceBuffer(footer_buffer, footer_read_size - metadata_len - kFooterSize,
metadata_len);
return ParseMaybeEncryptedMetaDataAsync(footer_buffer,
std::move(metadata_buffer),
footer_read_size, metadata_len);
}
return source_->ReadAsync(metadata_start, metadata_len)
.Then([=](const std::shared_ptr<::arrow::Buffer>& metadata_buffer) {
return ParseMaybeEncryptedMetaDataAsync(footer_buffer, metadata_buffer,
footer_read_size, metadata_len);
});
});
}
// Continuation
::arrow::Future<> ParseMaybeEncryptedMetaDataAsync(
std::shared_ptr<::arrow::Buffer> footer_buffer,
std::shared_ptr<::arrow::Buffer> metadata_buffer, int64_t footer_read_size,
uint32_t metadata_len) {
// Parse the footer depending on encryption type
const bool is_encrypted_footer =
memcmp(footer_buffer->data() + footer_read_size - 4, kParquetEMagic, 4) == 0;
if (is_encrypted_footer) {
// Encrypted file with Encrypted footer.
std::pair<int64_t, uint32_t> read_size;
BEGIN_PARQUET_CATCH_EXCEPTIONS
read_size =
ParseMetaDataOfEncryptedFileWithEncryptedFooter(metadata_buffer, metadata_len);
END_PARQUET_CATCH_EXCEPTIONS
// Read the actual footer
int64_t metadata_start = read_size.first;
metadata_len = read_size.second;
return source_->ReadAsync(metadata_start, metadata_len)
.Then([=](const std::shared_ptr<::arrow::Buffer>& metadata_buffer) {
// Continue and read the file footer
return ParseMetaDataFinal(metadata_buffer, metadata_len, is_encrypted_footer);
});
}
return ParseMetaDataFinal(std::move(metadata_buffer), metadata_len,
is_encrypted_footer);
}
// Continuation
::arrow::Status ParseMetaDataFinal(std::shared_ptr<::arrow::Buffer> metadata_buffer,
uint32_t metadata_len,
const bool is_encrypted_footer) {
BEGIN_PARQUET_CATCH_EXCEPTIONS
const uint32_t read_metadata_len =
ParseUnencryptedFileMetadata(metadata_buffer, metadata_len);
auto file_decryption_properties = properties_.file_decryption_properties().get();
if (is_encrypted_footer) {
// Nothing else to do here.
return ::arrow::Status::OK();
} else if (!file_metadata_->is_encryption_algorithm_set()) { // Non encrypted file.
if (file_decryption_properties != nullptr) {
if (!file_decryption_properties->plaintext_files_allowed()) {
throw ParquetException("Applying decryption properties on plaintext file");
}
}
} else {
// Encrypted file with plaintext footer mode.
ParseMetaDataOfEncryptedFileWithPlaintextFooter(
file_decryption_properties, metadata_buffer, metadata_len, read_metadata_len);
}
END_PARQUET_CATCH_EXCEPTIONS
return ::arrow::Status::OK();
}
private:
std::shared_ptr<ArrowInputFile> source_;
std::shared_ptr<::arrow::io::internal::ReadRangeCache> cached_source_;
int64_t source_size_;
std::shared_ptr<FileMetaData> file_metadata_;
ReaderProperties properties_;
std::shared_ptr<InternalFileDecryptor> file_decryptor_;
// \return The true length of the metadata in bytes
uint32_t ParseUnencryptedFileMetadata(const std::shared_ptr<Buffer>& footer_buffer,
const uint32_t metadata_len);
std::string HandleAadPrefix(FileDecryptionProperties* file_decryption_properties,
EncryptionAlgorithm& algo);
void ParseMetaDataOfEncryptedFileWithPlaintextFooter(
FileDecryptionProperties* file_decryption_properties,
const std::shared_ptr<Buffer>& metadata_buffer, uint32_t metadata_len,
uint32_t read_metadata_len);
// \return The position and size of the actual footer
std::pair<int64_t, uint32_t> ParseMetaDataOfEncryptedFileWithEncryptedFooter(
const std::shared_ptr<Buffer>& crypto_metadata_buffer, uint32_t footer_len);
};
uint32_t SerializedFile::ParseUnencryptedFileMetadata(
const std::shared_ptr<Buffer>& metadata_buffer, const uint32_t metadata_len) {
if (metadata_buffer->size() != metadata_len) {
throw ParquetException("Failed reading metadata buffer (requested " +
std::to_string(metadata_len) + " bytes but got " +
std::to_string(metadata_buffer->size()) + " bytes)");
}
uint32_t read_metadata_len = metadata_len;
// The encrypted read path falls through to here, so pass in the decryptor
file_metadata_ =
FileMetaData::Make(metadata_buffer->data(), &read_metadata_len, file_decryptor_);
return read_metadata_len;
}
std::pair<int64_t, uint32_t>
SerializedFile::ParseMetaDataOfEncryptedFileWithEncryptedFooter(
const std::shared_ptr<::arrow::Buffer>& crypto_metadata_buffer,
// both metadata & crypto metadata length
const uint32_t footer_len) {
// encryption with encrypted footer
// Check if the footer_buffer contains the entire metadata
if (crypto_metadata_buffer->size() != footer_len) {
throw ParquetException("Failed reading encrypted metadata buffer (requested " +
std::to_string(footer_len) + " bytes but got " +
std::to_string(crypto_metadata_buffer->size()) + " bytes)");
}
auto file_decryption_properties = properties_.file_decryption_properties().get();
if (file_decryption_properties == nullptr) {
throw ParquetException(
"Could not read encrypted metadata, no decryption found in reader's properties");
}
uint32_t crypto_metadata_len = footer_len;
std::shared_ptr<FileCryptoMetaData> file_crypto_metadata =
FileCryptoMetaData::Make(crypto_metadata_buffer->data(), &crypto_metadata_len);
// Handle AAD prefix
EncryptionAlgorithm algo = file_crypto_metadata->encryption_algorithm();
std::string file_aad = HandleAadPrefix(file_decryption_properties, algo);
file_decryptor_ = std::make_shared<InternalFileDecryptor>(
file_decryption_properties, file_aad, algo.algorithm,
file_crypto_metadata->key_metadata(), properties_.memory_pool());
int64_t metadata_offset = source_size_ - kFooterSize - footer_len + crypto_metadata_len;
uint32_t metadata_len = footer_len - crypto_metadata_len;
return std::make_pair(metadata_offset, metadata_len);
}
void SerializedFile::ParseMetaDataOfEncryptedFileWithPlaintextFooter(
FileDecryptionProperties* file_decryption_properties,
const std::shared_ptr<Buffer>& metadata_buffer, uint32_t metadata_len,
uint32_t read_metadata_len) {
// Providing decryption properties in plaintext footer mode is not mandatory, for
// example when reading by legacy reader.
if (file_decryption_properties != nullptr) {
EncryptionAlgorithm algo = file_metadata_->encryption_algorithm();
// Handle AAD prefix
std::string file_aad = HandleAadPrefix(file_decryption_properties, algo);
file_decryptor_ = std::make_shared<InternalFileDecryptor>(
file_decryption_properties, file_aad, algo.algorithm,
file_metadata_->footer_signing_key_metadata(), properties_.memory_pool());
// set the InternalFileDecryptor in the metadata as well, as it's used
// for signature verification and for ColumnChunkMetaData creation.
file_metadata_->set_file_decryptor(file_decryptor_);
if (file_decryption_properties->check_plaintext_footer_integrity()) {
if (metadata_len - read_metadata_len !=
(parquet::encryption::kGcmTagLength + parquet::encryption::kNonceLength)) {
throw ParquetInvalidOrCorruptedFileException(
"Failed reading metadata for encryption signature (requested ",
parquet::encryption::kGcmTagLength + parquet::encryption::kNonceLength,
" bytes but have ", metadata_len - read_metadata_len, " bytes)");
}
if (!file_metadata_->VerifySignature(metadata_buffer->data() + read_metadata_len)) {
throw ParquetInvalidOrCorruptedFileException(
"Parquet crypto signature verification failed");
}
}
}
}
std::string SerializedFile::HandleAadPrefix(
FileDecryptionProperties* file_decryption_properties, EncryptionAlgorithm& algo) {
std::string aad_prefix_in_properties = file_decryption_properties->aad_prefix();
std::string aad_prefix = aad_prefix_in_properties;
bool file_has_aad_prefix = algo.aad.aad_prefix.empty() ? false : true;
std::string aad_prefix_in_file = algo.aad.aad_prefix;
if (algo.aad.supply_aad_prefix && aad_prefix_in_properties.empty()) {
throw ParquetException(
"AAD prefix used for file encryption, "
"but not stored in file and not supplied "
"in decryption properties");
}
if (file_has_aad_prefix) {
if (!aad_prefix_in_properties.empty()) {
if (aad_prefix_in_properties.compare(aad_prefix_in_file) != 0) {
throw ParquetException(
"AAD Prefix in file and in properties "
"is not the same");
}
}
aad_prefix = aad_prefix_in_file;
std::shared_ptr<AADPrefixVerifier> aad_prefix_verifier =
file_decryption_properties->aad_prefix_verifier();
if (aad_prefix_verifier != nullptr) aad_prefix_verifier->Verify(aad_prefix);
} else {
if (!algo.aad.supply_aad_prefix && !aad_prefix_in_properties.empty()) {
throw ParquetException(
"AAD Prefix set in decryption properties, but was not used "
"for file encryption");
}
std::shared_ptr<AADPrefixVerifier> aad_prefix_verifier =
file_decryption_properties->aad_prefix_verifier();
if (aad_prefix_verifier != nullptr) {
throw ParquetException(
"AAD Prefix Verifier is set, but AAD Prefix not found in file");
}
}
return aad_prefix + algo.aad.aad_file_unique;
}
// ----------------------------------------------------------------------
// ParquetFileReader public API
ParquetFileReader::ParquetFileReader() {}
ParquetFileReader::~ParquetFileReader() {
try {
Close();
} catch (...) {
}
}
// Open the file. If no metadata is passed, it is parsed from the footer of
// the file
std::unique_ptr<ParquetFileReader::Contents> ParquetFileReader::Contents::Open(
std::shared_ptr<ArrowInputFile> source, const ReaderProperties& props,
std::shared_ptr<FileMetaData> metadata) {
std::unique_ptr<ParquetFileReader::Contents> result(
new SerializedFile(std::move(source), props));
// Access private methods here, but otherwise unavailable
SerializedFile* file = static_cast<SerializedFile*>(result.get());
if (metadata == nullptr) {
// Validates magic bytes, parses metadata, and initializes the SchemaDescriptor
file->ParseMetaData();
} else {
file->set_metadata(std::move(metadata));
}
return result;
}
::arrow::Future<std::unique_ptr<ParquetFileReader::Contents>>
ParquetFileReader::Contents::OpenAsync(std::shared_ptr<ArrowInputFile> source,
const ReaderProperties& props,
std::shared_ptr<FileMetaData> metadata) {
BEGIN_PARQUET_CATCH_EXCEPTIONS
std::unique_ptr<ParquetFileReader::Contents> result(
new SerializedFile(std::move(source), props));
SerializedFile* file = static_cast<SerializedFile*>(result.get());
if (metadata == nullptr) {
// TODO(ARROW-12259): workaround since we have Future<(move-only type)>
struct {
::arrow::Result<std::unique_ptr<ParquetFileReader::Contents>> operator()() {
return std::move(result);
}
std::unique_ptr<ParquetFileReader::Contents> result;
} Continuation;
Continuation.result = std::move(result);
return file->ParseMetaDataAsync().Then(std::move(Continuation));
} else {
file->set_metadata(std::move(metadata));
return ::arrow::Future<std::unique_ptr<ParquetFileReader::Contents>>::MakeFinished(
std::move(result));
}
END_PARQUET_CATCH_EXCEPTIONS
}
std::unique_ptr<ParquetFileReader> ParquetFileReader::Open(
std::shared_ptr<::arrow::io::RandomAccessFile> source, const ReaderProperties& props,
std::shared_ptr<FileMetaData> metadata) {
auto contents = SerializedFile::Open(std::move(source), props, std::move(metadata));
std::unique_ptr<ParquetFileReader> result(new ParquetFileReader());
result->Open(std::move(contents));
return result;
}
std::unique_ptr<ParquetFileReader> ParquetFileReader::OpenFile(
const std::string& path, bool memory_map, const ReaderProperties& props,
std::shared_ptr<FileMetaData> metadata) {
std::shared_ptr<::arrow::io::RandomAccessFile> source;
if (memory_map) {
PARQUET_ASSIGN_OR_THROW(
source, ::arrow::io::MemoryMappedFile::Open(path, ::arrow::io::FileMode::READ));
} else {
PARQUET_ASSIGN_OR_THROW(source,
::arrow::io::ReadableFile::Open(path, props.memory_pool()));
}
return Open(std::move(source), props, std::move(metadata));
}
::arrow::Future<std::unique_ptr<ParquetFileReader>> ParquetFileReader::OpenAsync(
std::shared_ptr<::arrow::io::RandomAccessFile> source, const ReaderProperties& props,
std::shared_ptr<FileMetaData> metadata) {
BEGIN_PARQUET_CATCH_EXCEPTIONS
auto fut = SerializedFile::OpenAsync(std::move(source), props, std::move(metadata));
// TODO(ARROW-12259): workaround since we have Future<(move-only type)>
auto completed = ::arrow::Future<std::unique_ptr<ParquetFileReader>>::Make();
fut.AddCallback([fut, completed](
const ::arrow::Result<std::unique_ptr<ParquetFileReader::Contents>>&
contents) mutable {
if (!contents.ok()) {
completed.MarkFinished(contents.status());
return;
}
std::unique_ptr<ParquetFileReader> result(new ParquetFileReader());
result->Open(fut.MoveResult().MoveValueUnsafe());
completed.MarkFinished(std::move(result));
});
return completed;
END_PARQUET_CATCH_EXCEPTIONS
}
void ParquetFileReader::Open(std::unique_ptr<ParquetFileReader::Contents> contents) {
contents_ = std::move(contents);
}
void ParquetFileReader::Close() {
if (contents_) {
contents_->Close();
}
}
std::shared_ptr<FileMetaData> ParquetFileReader::metadata() const {
return contents_->metadata();
}
std::shared_ptr<RowGroupReader> ParquetFileReader::RowGroup(int i) {
if (i >= metadata()->num_row_groups()) {
std::stringstream ss;
ss << "Trying to read row group " << i << " but file only has "
<< metadata()->num_row_groups() << " row groups";
throw ParquetException(ss.str());
}
return contents_->GetRowGroup(i);
}
void ParquetFileReader::PreBuffer(const std::vector<int>& row_groups,
const std::vector<int>& column_indices,
const ::arrow::io::IOContext& ctx,
const ::arrow::io::CacheOptions& options) {
// Access private methods here
SerializedFile* file =
::arrow::internal::checked_cast<SerializedFile*>(contents_.get());
file->PreBuffer(row_groups, column_indices, ctx, options);
}
::arrow::Future<> ParquetFileReader::WhenBuffered(
const std::vector<int>& row_groups, const std::vector<int>& column_indices) const {
// Access private methods here
SerializedFile* file =
::arrow::internal::checked_cast<SerializedFile*>(contents_.get());
return file->WhenBuffered(row_groups, column_indices);
}
// ----------------------------------------------------------------------
// File metadata helpers
std::shared_ptr<FileMetaData> ReadMetaData(
const std::shared_ptr<::arrow::io::RandomAccessFile>& source) {
return ParquetFileReader::Open(source)->metadata();
}
// ----------------------------------------------------------------------
// File scanner for performance testing
int64_t ScanFileContents(std::vector<int> columns, const int32_t column_batch_size,
ParquetFileReader* reader) {
std::vector<int16_t> rep_levels(column_batch_size);
std::vector<int16_t> def_levels(column_batch_size);
int num_columns = static_cast<int>(columns.size());
// columns are not specified explicitly. Add all columns
if (columns.size() == 0) {
num_columns = reader->metadata()->num_columns();
columns.resize(num_columns);
for (int i = 0; i < num_columns; i++) {
columns[i] = i;
}
}
std::vector<int64_t> total_rows(num_columns, 0);
for (int r = 0; r < reader->metadata()->num_row_groups(); ++r) {
auto group_reader = reader->RowGroup(r);
int col = 0;
for (auto i : columns) {
std::shared_ptr<ColumnReader> col_reader = group_reader->Column(i);
size_t value_byte_size = GetTypeByteSize(col_reader->descr()->physical_type());
std::vector<uint8_t> values(column_batch_size * value_byte_size);
int64_t values_read = 0;
while (col_reader->HasNext()) {
int64_t levels_read =
ScanAllValues(column_batch_size, def_levels.data(), rep_levels.data(),
values.data(), &values_read, col_reader.get());
if (col_reader->descr()->max_repetition_level() > 0) {
for (int64_t i = 0; i < levels_read; i++) {
if (rep_levels[i] == 0) {
total_rows[col]++;
}
}
} else {
total_rows[col] += levels_read;
}
}
col++;
}
}
for (int i = 1; i < num_columns; ++i) {
if (total_rows[0] != total_rows[i]) {
throw ParquetException("Parquet error: Total rows among columns do not match");
}
}
return total_rows[0];
}
} // namespace parquet
|