blob: 841c01a760b11c252d4e57bf82dc7121d585e678 [file] [log] [blame]
Brian Carlstromb0460ea2011-07-29 10:08:05 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "zip_archive.h"
18
19#include <fcntl.h>
Ian Rogers8d31bbd2013-10-13 10:44:14 -070020#include <stdio.h>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070021#include <sys/stat.h>
22#include <sys/types.h>
23#include <unistd.h>
Ian Rogers700a4022014-05-19 16:49:03 -070024#include <vector>
Brian Carlstromb0460ea2011-07-29 10:08:05 -070025
Ian Rogers8d31bbd2013-10-13 10:44:14 -070026#include "base/stringprintf.h"
Elliott Hughes76160052012-12-12 16:31:20 -080027#include "base/unix_file/fd_file.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070028
Brian Carlstromb0460ea2011-07-29 10:08:05 -070029namespace art {
30
Brian Carlstromb0460ea2011-07-29 10:08:05 -070031uint32_t ZipEntry::GetUncompressedLength() {
Narayan Kamath92572be2013-11-28 14:06:24 +000032 return zip_entry_->uncompressed_length;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070033}
34
35uint32_t ZipEntry::GetCrc32() {
Narayan Kamath92572be2013-11-28 14:06:24 +000036 return zip_entry_->crc32;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070037}
38
Mathieu Chartier661974a2014-01-09 11:23:53 -080039ZipEntry::~ZipEntry() {
40 delete zip_entry_;
41}
Brian Carlstromb0460ea2011-07-29 10:08:05 -070042
Ian Rogers8d31bbd2013-10-13 10:44:14 -070043bool ZipEntry::ExtractToFile(File& file, std::string* error_msg) {
Narayan Kamath92572be2013-11-28 14:06:24 +000044 const int32_t error = ExtractEntryToFile(handle_, zip_entry_, file.Fd());
45 if (error) {
46 *error_msg = std::string(ErrorCodeString(error));
Brian Carlstrom89521892011-12-07 22:05:07 -080047 return false;
48 }
49
Narayan Kamath92572be2013-11-28 14:06:24 +000050 return true;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070051}
52
Ian Rogers8d31bbd2013-10-13 10:44:14 -070053MemMap* ZipEntry::ExtractToMemMap(const char* entry_filename, std::string* error_msg) {
Brian Carlstrom4922e9d2013-07-09 17:18:47 -070054 std::string name(entry_filename);
55 name += " extracted in memory from ";
56 name += entry_filename;
Ian Rogers700a4022014-05-19 16:49:03 -070057 std::unique_ptr<MemMap> map(MemMap::MapAnonymous(name.c_str(),
Narayan Kamath92572be2013-11-28 14:06:24 +000058 NULL, GetUncompressedLength(),
Ian Rogersef7d42f2014-01-06 12:55:46 -080059 PROT_READ | PROT_WRITE, false, error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -070060 if (map.get() == nullptr) {
61 DCHECK(!error_msg->empty());
Narayan Kamath92572be2013-11-28 14:06:24 +000062 return nullptr;
Brian Carlstrom4922e9d2013-07-09 17:18:47 -070063 }
64
Narayan Kamath92572be2013-11-28 14:06:24 +000065 const int32_t error = ExtractToMemory(handle_, zip_entry_,
66 map->Begin(), map->Size());
67 if (error) {
68 *error_msg = std::string(ErrorCodeString(error));
69 return nullptr;
Brian Carlstrom4922e9d2013-07-09 17:18:47 -070070 }
71
72 return map.release();
73}
74
Elliott Hughesad6c9c32012-01-19 17:39:12 -080075static void SetCloseOnExec(int fd) {
76 // This dance is more portable than Linux's O_CLOEXEC open(2) flag.
77 int flags = fcntl(fd, F_GETFD);
78 if (flags == -1) {
79 PLOG(WARNING) << "fcntl(" << fd << ", F_GETFD) failed";
80 return;
81 }
82 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
83 if (rc == -1) {
84 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed";
85 return;
86 }
87}
88
Ian Rogers8d31bbd2013-10-13 10:44:14 -070089ZipArchive* ZipArchive::Open(const char* filename, std::string* error_msg) {
90 DCHECK(filename != nullptr);
Narayan Kamath92572be2013-11-28 14:06:24 +000091
92 ZipArchiveHandle handle;
93 const int32_t error = OpenArchive(filename, &handle);
94 if (error) {
95 *error_msg = std::string(ErrorCodeString(error));
96 CloseArchive(handle);
97 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -070098 }
Narayan Kamath92572be2013-11-28 14:06:24 +000099
100 SetCloseOnExec(GetFileDescriptor(handle));
101 return new ZipArchive(handle);
Brian Carlstromb7bbba42011-10-13 14:58:47 -0700102}
103
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700104ZipArchive* ZipArchive::OpenFromFd(int fd, const char* filename, std::string* error_msg) {
Narayan Kamath92572be2013-11-28 14:06:24 +0000105 DCHECK(filename != nullptr);
106 DCHECK_GT(fd, 0);
107
108 ZipArchiveHandle handle;
109 const int32_t error = OpenArchiveFd(fd, filename, &handle);
110 if (error) {
111 *error_msg = std::string(ErrorCodeString(error));
112 CloseArchive(handle);
113 return nullptr;
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700114 }
Narayan Kamath92572be2013-11-28 14:06:24 +0000115
116 SetCloseOnExec(GetFileDescriptor(handle));
117 return new ZipArchive(handle);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700118}
119
Narayan Kamath92572be2013-11-28 14:06:24 +0000120ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const {
121 DCHECK(name != nullptr);
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700122
Narayan Kamath92572be2013-11-28 14:06:24 +0000123 // Resist the urge to delete the space. <: is a bigraph sequence.
Ian Rogers700a4022014-05-19 16:49:03 -0700124 std::unique_ptr< ::ZipEntry> zip_entry(new ::ZipEntry);
Narayan Kamath92572be2013-11-28 14:06:24 +0000125 const int32_t error = FindEntry(handle_, name, zip_entry.get());
126 if (error) {
127 *error_msg = std::string(ErrorCodeString(error));
128 return nullptr;
Kenny Root72fcca22013-09-19 09:25:34 -0700129 }
130
Narayan Kamath92572be2013-11-28 14:06:24 +0000131 return new ZipEntry(handle_, zip_entry.release());
Brian Carlstromb0460ea2011-07-29 10:08:05 -0700132}
133
134} // namespace art