aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/singlejar/output_jar.cc
blob: a81e35f06b90d6108ab0651ce9c3ed153a440cf0 (plain)
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
// Copyright 2016 The Bazel Authors. All rights reserved.
//
// Licensed 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.

/*
 * The implementation of the OutputJar methods.
 */
#include "src/tools/singlejar/output_jar.h"

#include <err.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#if defined(__linux)
#include <sys/sendfile.h>
#endif
#include <sys/stat.h>
#include <sys/times.h>
#include <unistd.h>

#include "src/main/cpp/util/file.h"
#include "src/tools/singlejar/combiners.h"
#include "src/tools/singlejar/diag.h"
#include "src/tools/singlejar/input_jar.h"
#include "src/tools/singlejar/mapped_file.h"
#include "src/tools/singlejar/options.h"
#include "src/tools/singlejar/zip_headers.h"

#include <zlib.h>

#define TODO(cond, msg)                                              \
  if (!(cond)) {                                                     \
    diag_errx(2, "%s:%d: TODO(asmundak): " msg, __FILE__, __LINE__); \
  }

OutputJar::OutputJar()
    : options_(nullptr),
      fd_(-1),
      entries_(0),
      duplicate_entries_(0),
      cen_(nullptr),
      cen_size_(0),
      cen_capacity_(0),
      spring_handlers_("META-INF/spring.handlers"),
      spring_schemas_("META-INF/spring.schemas"),
      protobuf_meta_handler_("protobuf.meta"),
      manifest_("META-INF/MANIFEST.MF"),
      build_properties_("build-data.properties") {
  known_members_.emplace(spring_handlers_.filename(),
                         EntryInfo{EntryInfo::CONCATENATE, &spring_handlers_});
  known_members_.emplace(spring_schemas_.filename(),
                         EntryInfo{EntryInfo::CONCATENATE, &spring_schemas_});
  known_members_.emplace(manifest_.filename(),
                         EntryInfo{EntryInfo::SKIP, &manifest_});
  known_members_.emplace(
      protobuf_meta_handler_.filename(),
      EntryInfo{EntryInfo::CONCATENATE, &protobuf_meta_handler_});
  known_members_.emplace(build_properties_.filename(),
                         EntryInfo{EntryInfo::SKIP, &build_properties_});
  manifest_.Append(
      "Manifest-Version: 1.0\r\n"
      "Created-By: singlejar\r\n");
}

int OutputJar::Doit(Options *options) {
  if (nullptr != options_) {
    diag_errx(1, "%s:%d: Doit() can be called only once.", __FILE__, __LINE__);
  }
  options_ = options;

  // TODO(asmundak): handle these options.
  TODO(!options_->force_compression, "Handle --compression");
  TODO(!options_->normalize_timestamps, "Handle --normalize");
  TODO(!options_->preserve_compression, "Handle --dont_change_compression");
  TODO(!options_->include_prefixes.size(), "Handle --include_prefixes");

  build_properties_.AddProperty("build.target", options_->output_jar.c_str());
  if (options_->verbose) {
    fprintf(stderr, "combined_file_name=%s\n", options_->output_jar.c_str());
    if (!options_->main_class.empty()) {
      fprintf(stderr, "main_class=%s\n", options_->main_class.c_str());
    }
    if (!options_->java_launcher.empty()) {
      fprintf(stderr, "java_launcher_file=%s\n",
              options_->java_launcher.c_str());
    }
    fprintf(stderr, "%ld source files\n", options_->input_jars.size());
    fprintf(stderr, "%ld manifest lines\n", options_->manifest_lines.size());
  }

  if (!Open()) {
    exit(1);
  }

  // Copy launcher if it is set.
  if (!options_->java_launcher.empty()) {
    const char *const launcher_path = options_->java_launcher.c_str();
    int in_fd = open(launcher_path, O_RDONLY);
    struct stat statbuf;
    if (fd_ < 0 || fstat(in_fd, &statbuf)) {
      diag_err(1, "%s", launcher_path);
    }
    ssize_t byte_count = AppendFile(in_fd, nullptr, statbuf.st_size);
    if (byte_count < 0) {
      diag_err(1, "%s:%d: Cannot copy %s to %s", __FILE__, __LINE__,
               launcher_path, options_->output_jar.c_str());
    } else if (byte_count != statbuf.st_size) {
      diag_err(1, "%s:%d: Copied only %ld bytes out of %" PRIu64 " from %s",
               __FILE__, __LINE__, byte_count, statbuf.st_size, launcher_path);
    }
    close(in_fd);
    if (options_->verbose) {
      fprintf(stderr, "Prepended %s (%" PRIu64 " bytes)\n", launcher_path,
              statbuf.st_size);
    }
  }

  if (!options_->main_class.empty()) {
    build_properties_.AddProperty("main.class", options_->main_class);
    manifest_.Append("Main-Class: ");
    manifest_.Append(options_->main_class);
    manifest_.Append("\r\n");
  }

  for (auto &manifest_line : options_->manifest_lines) {
    if (!manifest_line.empty()) {
      manifest_.Append(manifest_line);
      if (manifest_line[manifest_line.size() - 1] != '\n') {
        manifest_.Append("\r\n");
      }
    }
  }

  for (auto &build_info_line : options_->build_info_lines) {
    build_properties_.Append(build_info_line);
    build_properties_.Append("\n");
  }

  for (auto &build_info_file : options_->build_info_files) {
    MappedFile mapped_file;
    if (!mapped_file.Open(build_info_file)) {
      diag_err(1, "%s:%d: Bad build info file %s", __FILE__, __LINE__,
               build_info_file.c_str());
    }
    const char *data = reinterpret_cast<const char *>(mapped_file.start());
    const char *data_end = reinterpret_cast<const char *>(mapped_file.end());
    // TODO(asmundak): this isn't right, we should parse properties file.
    while (data < data_end) {
      const char *next_data = strchr(static_cast<const char *>(data), '\n');
      if (next_data) {
        ++next_data;
      } else {
        next_data = data_end;
      }
      build_properties_.Append(data, next_data - data);
      data = next_data;
    }
    mapped_file.Close();
  }

  for (auto &rpath : options_->classpath_resources) {
    // TODO(asmundak): On Windows, look for \, too.
    ClasspathResource(blaze_util::Basename(rpath), rpath);
  }

  for (auto &rdesc : options_->resources) {
    // A resource description is either NAME or NAME:PATH
    std::size_t colon = rdesc.find_first_of(':');
    if (0 == colon) {
      diag_errx(1, "%s:%d: Bad resource description %s", __FILE__, __LINE__,
                rdesc.c_str());
    }
    if (std::string::npos == colon) {
      ClasspathResource(rdesc, rdesc);
    } else {
      ClasspathResource(rdesc.substr(0, colon), rdesc.substr(colon + 1));
    }
  }

  // Ready to write zip entries.
  // First, write a directory entry for the META-INF, followed by the manifest
  // file, followed by the build properties file.
  AddDirectory("META-INF/");
  manifest_.Append("\r\n");
  WriteEntry(manifest_.OutputEntry());
  if (!options_->exclude_build_data) {
    WriteEntry(build_properties_.OutputEntry());
  }

  // Then classpath resources.
  for (auto &classpath_resource : classpath_resources_) {
    WriteEntry(classpath_resource->OutputEntry());
  }

  // Then copy source files' contents.
  for (size_t ix = 0; ix < options_->input_jars.size(); ++ix) {
    if (!AddJar(ix)) {
      exit(1);
    }
  }

  // All entries written, write Central Directory and close.
  Close();
  return 0;
}

OutputJar::~OutputJar() {
  if (fd_ >= 0) {
    diag_warnx("%s:%d: Close() should be called first", __FILE__, __LINE__);
  }
}

bool OutputJar::Open() {
  if (fd_ >= 0) {
    diag_errx(1, "%s:%d: Cannot open output archive twice", __FILE__, __LINE__);
  }
  // The output file has read/write/execute permissions for the owner,
  // default for the rest.
  mode_t old_umask = umask(0);
  fd_ = creat(path(), (S_IRWXU | S_IRWXG | S_IRWXO) & ~old_umask);
  umask(old_umask);
  if (fd_ < 0) {
    diag_warn("%s:%d: %s", __FILE__, __LINE__, path());
    return false;
  }
  if (options_->verbose) {
    fprintf(stderr, "Writing to %s\n", path());
  }
  return true;
}

bool OutputJar::AddJar(size_t jar_path_index) {
  const std::string& input_jar_path = options_->input_jars[jar_path_index];
  InputJar input_jar;
  if (!input_jar.Open(input_jar_path)) {
    return false;
  }
  const CDH *jar_entry;
  const LH *lh;
  while ((jar_entry = input_jar.NextEntry(&lh))) {
    const char *file_name = jar_entry->file_name();
    auto file_name_length = jar_entry->file_name_length();
    if (!file_name_length) {
      diag_errx(
          1, "%s:%d: Bad central directory record in %s at offset 0x%" PRIx64,
          __FILE__, __LINE__, input_jar_path.c_str(),
          input_jar.CentralDirectoryRecordOffset(jar_entry));
    }
    // Special files that cannot be handled by looking up known_members_ map:
    // * ignore *.SF, *.RSA, *.DSA
    //   (TODO(asmundak): should this be done only in META-INF?
    // * concatenate the contents of each file META-INF/services/ directory
    //
    if (ends_with(file_name, file_name_length, ".SF") ||
        ends_with(file_name, file_name_length, ".RSA") ||
        ends_with(file_name, file_name_length, ".DSA")) {
      continue;
    } else if (file_name[file_name_length - 1] != '/' &&
               begins_with(file_name, file_name_length, "META-INF/services/")) {
      std::string service_path(file_name, file_name_length);
      if (!known_members_.count(service_path)) {
        Concatenator *service_handler = new Concatenator(service_path);
        service_handlers_.emplace_back(service_handler);
        known_members_.emplace(
            service_path, EntryInfo{EntryInfo::CONCATENATE, service_handler});
      }
    }
    auto got = known_members_.emplace(
        std::string(file_name, file_name_length),
        EntryInfo{EntryInfo::PLAIN, reinterpret_cast<void *>(jar_path_index)});
    if (!got.second) {
      // We allow duplicate entries in special cases:
      // - various combiners
      // - directory entries
      // - manifest files
      if (got.first->second.type_ == EntryInfo::XML_COMBINE) {
        reinterpret_cast<XmlCombiner *>(got.first->second.data_)
            ->Merge(jar_entry, lh);
        continue;
      } else if (got.first->second.type_ == EntryInfo::CONCATENATE) {
        reinterpret_cast<Concatenator *>(got.first->second.data_)
            ->Merge(jar_entry, lh);
        continue;
      } else if (got.first->second.type_ == EntryInfo::SKIP) {
        continue;
      } else if (file_name[file_name_length - 1] == '/') {
        continue;
      } else {
        if (options_->no_duplicates ||
            (options_->no_duplicate_classes &&
             ends_with(file_name, file_name_length, ".class"))) {
          auto previous_input_jar_index =
              reinterpret_cast<size_t>(got.first->second.data_);
          diag_errx(1, "%s:%d: %.*s is present both in %s and %s", __FILE__,
                    __LINE__, file_name_length, file_name,
                    options_->input_jars[previous_input_jar_index].c_str(),
                    input_jar_path.c_str());
        } else {
          duplicate_entries_++;
          continue;
        }
      }
    }

    // Now we have to copy:
    //  local header
    //  file data
    //  data descriptor, if present.
    off_t copy_from = jar_entry->local_header_offset();
    size_t num_bytes = lh->size();
    if (jar_entry->no_size_in_local_header()) {
      // The size of the data descriptor varies. The actual data in it is three
      // uint32's (crc32, compressed size, uncompressed size), but these can be
      // preceded by the "PK\x7\x8" signature word (alas, 'jar' has it).
      // Reading the descriptor just to figure out whether we need to copy four
      // or three words will cost us another page read, let us assume the data
      // description is always 4 words long at the cost of having an occasional
      // one word gap between the entries.
      num_bytes += jar_entry->compressed_file_size() + 4 * sizeof(uint32_t);
    } else {
      num_bytes += lh->compressed_file_size();
    }
    off_t output_position = Position();
    // Do the actual copy. Use sendfile, avoiding copying the data to user
    // space and back.
    ssize_t n_copied = AppendFile(input_jar.fd(), &copy_from, num_bytes);
    if (n_copied < 0) {
      diag_err(1, "%s:%d: Cannot copy %ld bytes of %.*s from %s", __FILE__,
               __LINE__, num_bytes, file_name_length, file_name,
               input_jar_path.c_str());
    } else if (static_cast<size_t>(n_copied) != num_bytes) {
      diag_err(1, "%s:%d: Copied only %ld bytes out of %ld from %s", __FILE__,
               __LINE__, n_copied, num_bytes, input_jar_path.c_str());
    }

    // Append central directory header for this file to the output central
    // directory we are building.
    TODO(output_position < 0xFFFFFFFF, "Handle Zip64");
    AppendToDirectoryBuffer(jar_entry)->local_header_offset32(output_position);
    ++entries_;
  }
  return input_jar.Close();
}

off_t OutputJar::Position() {
  off_t position = lseek(fd_, 0, SEEK_CUR);
  if (position == (off_t)-1) {
    diag_err(1, "%s:%d: lseek", __FILE__, __LINE__);
  }
  TODO(position < 0xFFFFFFFF, "Handle Zip64");
  return position;
}

// Writes an entry. The argument is the pointer to the contiguos block of
// memory containing Local Header for the entry, immediately followed by
// the data. The memory is freed after the data has been written.
void OutputJar::WriteEntry(void *buffer) {
  if (buffer == nullptr) {
    return;
  }
  LH *entry = reinterpret_cast<LH *>(buffer);
  if (options_->verbose) {
    fprintf(stderr, "%-.*s combiner has %lu bytes, %s to %lu\n",
            entry->file_name_length(), entry->file_name(),
            entry->uncompressed_file_size(),
            entry->compression_method() == Z_NO_COMPRESSION ? "copied"
                                                            : "compressed",
            entry->compressed_file_size());
  }
  uint8_t *data_end = entry->data() + entry->in_zip_size();
  uint8_t *data = reinterpret_cast<uint8_t *>(entry);
  off_t output_position = Position();
  while (data < data_end) {
    ssize_t written = write(fd_, data, data_end - data);
    if (written >= 0) {
      data += written;
    } else if (errno != EINTR) {
      diag_err(1, "%s:%d: write", __FILE__, __LINE__);
    }
  }
  // Data written, allocate CDH space and populate CDH.
  CDH *cdh = reinterpret_cast<CDH *>(
      ReserveCdh(sizeof(CDH) + entry->file_name_length()));
  cdh->signature();
  cdh->version(20);
  cdh->version_to_extract(entry->version());
  cdh->bit_flag(0x0);
  cdh->compression_method(entry->compression_method());
  cdh->last_mod_file_time(entry->last_mod_file_time());
  cdh->last_mod_file_date(entry->last_mod_file_date());
  cdh->crc32(entry->crc32());
  TODO(entry->compressed_file_size32() != 0xFFFFFFFF, "Handle Zip64");
  cdh->compressed_file_size32(entry->compressed_file_size32());
  TODO(entry->uncompressed_file_size32() != 0xFFFFFFFF, "Handle Zip64");
  cdh->uncompressed_file_size32(entry->uncompressed_file_size32());
  cdh->file_name(entry->file_name(), entry->file_name_length());
  cdh->extra_fields(nullptr, 0);
  cdh->comment_length(0);
  cdh->start_disk_nr(0);
  cdh->internal_attributes(0);
  cdh->external_attributes(0);
  cdh->local_header_offset32(output_position);
  ++entries_;
  free(reinterpret_cast<void *>(entry));
}

void OutputJar::AddDirectory(const char *path) {
  size_t n_path = strlen(path);
  size_t lh_size = sizeof(LH) + n_path;
  LH *lh = reinterpret_cast<LH *>(malloc(lh_size));
  lh->signature();
  lh->version(20);
  lh->bit_flag(0);  // TODO(asmundak): should I set UTF8 flag?
  lh->compression_method(Z_NO_COMPRESSION);
  lh->last_mod_file_time(0);
  lh->last_mod_file_date(33);
  lh->crc32(0);
  lh->compressed_file_size32(0);
  lh->uncompressed_file_size32(0);
  lh->file_name(path, n_path);
  lh->extra_fields(nullptr, 0);
  known_members_.emplace(path, EntryInfo{EntryInfo::SKIP, nullptr});
  WriteEntry(lh);
}

// Appends a Central Directory Entry to the directory buffer.
CDH *OutputJar::AppendToDirectoryBuffer(const CDH *cdh) {
  size_t cdh_size = cdh->size();
  return reinterpret_cast<CDH *>(
      memcpy(reinterpret_cast<CDH *>(ReserveCdr(cdh_size)), cdh, cdh_size));
}

uint8_t *OutputJar::ReserveCdr(size_t chunk_size) {
  if (cen_size_ + chunk_size > cen_capacity_) {
    cen_capacity_ += 1000000;
    cen_ = reinterpret_cast<uint8_t *>(realloc(cen_, cen_capacity_));
    if (!cen_) {
      diag_errx(1, "%s:%d: Cannot allocate %ld bytes for the directory",
                __FILE__, __LINE__, cen_capacity_);
    }
  }
  uint8_t *entry = cen_ + cen_size_;
  cen_size_ += chunk_size;
  return entry;
}

uint8_t *OutputJar::ReserveCdh(size_t size) {
  return static_cast<uint8_t *>(memset(ReserveCdr(size), 0, size));
}

// Write out combined jar.
bool OutputJar::Close() {
  if (fd_ < 0) {
    return true;
  }

  for (auto &service_handler : service_handlers_) {
    WriteEntry(service_handler->OutputEntry());
  }
  WriteEntry(spring_handlers_.OutputEntry());
  WriteEntry(spring_schemas_.OutputEntry());
  WriteEntry(protobuf_meta_handler_.OutputEntry());
  // TODO(asmundak): handle manifest;
  off_t output_position = lseek(fd_, 0, SEEK_CUR);
  if (output_position == (off_t)-1) {
    diag_err(1, "%s:%d: lseek", __FILE__, __LINE__);
  }
  TODO(output_position < 0xFFFFFFFF, "Handle Zip64");

  size_t cen_size =
      cen_size_;  // Save it before AppendToDirectoryBuffer updates it.
  ECD *ecd = reinterpret_cast<ECD *>(ReserveCdh(sizeof(ECD)));
  ecd->signature();
  ecd->this_disk_entries16((uint16_t)entries_);
  TODO(entries_ < 0xFFFF, "Handle >=64K entries");
  ecd->total_entries16((uint16_t)entries_);
  TODO(cen_size < 0xFFFFFFFF, "Handle Zip64");
  ecd->cen_size32(cen_size);
  TODO(output_position < 0xFFFFFFFF, "Handle Zip64");
  ecd->cen_offset32(output_position);

  // Write Central Directory.
  uint8_t *cen_end = cen_ + cen_size_;
  uint8_t *cen = cen_;
  while (cen < cen_end) {
    ssize_t n = write(fd_, cen, cen_end - cen);
    if (n < 0) {
      diag_err(1, "%s:%d: Cannot write central directory", __FILE__, __LINE__);
    }
    cen += n;
  }
  free(cen_);

  if (close(fd_)) {
    diag_err(1, "%s:%d: %s", __FILE__, __LINE__, path());
    fd_ = -1;
    return false;
  }

  fd_ = -1;
  if (options_->verbose) {
    fprintf(stderr, "Wrote %s with %d entries", path(), entries_);
    if (duplicate_entries_) {
      fprintf(stderr, ", skipped %d entries", duplicate_entries_);
    }
    fprintf(stderr, "\n");
  }
  return true;
}

void OutputJar::ClasspathResource(const std::string &resource_name,
                                  const std::string &resource_path) {
  if (known_members_.count(resource_name)) {
    if (options_->warn_duplicate_resources) {
      diag_warnx(
          "%s:%d: Duplicate resource name %s in the --classpath_resource or "
          "--resource option",
          __FILE__, __LINE__, resource_name.c_str());
      // TODO(asmundak): this mimics old behaviour. Confirm that unless
      // we run with --warn_duplicate_resources, the output zip file contains
      // the concatenated contents of the all the resources with the same name.
      return;
    }
  }
  MappedFile mapped_file;
  if (!mapped_file.Open(resource_path)) {
    diag_err(1, "%s:%d: %s", __FILE__, __LINE__, resource_path.c_str());
  }
  Concatenator *classpath_resource = new Concatenator(resource_name);
  classpath_resource->Append(
      reinterpret_cast<const char *>(mapped_file.start()), mapped_file.size());
  classpath_resources_.emplace_back(classpath_resource);
  known_members_.emplace(resource_name,
                         EntryInfo{EntryInfo::PLAIN, classpath_resource});
}

#if defined(__APPLE__)
ssize_t OutputJar::AppendFile(int in_fd, off_t *in_offset, size_t count) {
  if (!count) {
    return 0;
  }
  uint8_t buffer[8192];
  ssize_t total_written = 0;

  // If the input file position (the offset in the input file) has been  passed,
  // that's where we start, and the input file position has to be restored after
  // we are done copying.
  const off_t offset_error = static_cast<off_t>(-1);
  off_t old_input_offset = offset_error;
  if (in_offset) {
    if (offset_error == (old_input_offset = lseek(in_fd, 0, SEEK_CUR)) ||
        offset_error == lseek(in_fd, *in_offset, SEEK_SET)) {
      return -1;
    }
  }
  while (total_written < count) {
    ssize_t n_read =
        read(in_fd, buffer, std::min(sizeof(buffer), count - total_written));
    if (n_read > 0) {
      uint8_t *write_buffer = buffer;
      uint8_t *write_buffer_end = write_buffer + n_read;
      while (write_buffer < write_buffer_end) {
        ssize_t n_written =
            write(fd_, write_buffer, write_buffer_end - write_buffer);
        if (n_written > 0) {
          write_buffer += n_written;
        } else if (EAGAIN != errno) {
          return -1;
        }
      }
      total_written += n_read;
    } else if (n_read == 0) {
      break;
    } else if (EAGAIN != errno) {
      return -1;
    }
  }

  // If the input file position has been passed, update it and restore
  // the read position in the input file.
  if (in_offset) {
    if (offset_error == lseek(in_fd, old_input_offset, SEEK_SET)) {
      return -1;
    }
    *in_offset += total_written;
  }
  return total_written;
}

#elif defined(__linux)
ssize_t OutputJar::AppendFile(int in_fd, off_t *in_offset, size_t count) {
  // sendfile call is interruptable and has to be handled the same way as write
  // call.
  for (size_t to_write = count; to_write > 0;) {
    ssize_t written = sendfile(fd_, in_fd, in_offset, to_write);
    if (written < 0) {
      return written;
    } else if (written == 0) {
      return static_cast<ssize_t>(count - to_write);
    }
    to_write -= static_cast<size_t>(written);
  }
  return static_cast<ssize_t>(count);
}
#endif