blob: de6f4237ffdff900712597d5ec45645a63a259e7 [file] [log] [blame]
Vladimir Marko5096e662015-12-08 19:25:49 +00001/*
2 * Copyright (C) 2015 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 "file_magic.h"
18
19#include <fcntl.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22
23#include "base/logging.h"
Andreas Gampe43e10b02016-07-15 17:17:34 -070024#include "base/unix_file/fd_file.h"
Vladimir Marko5096e662015-12-08 19:25:49 +000025#include "dex_file.h"
26#include "stringprintf.h"
27
28namespace art {
29
Andreas Gampe43e10b02016-07-15 17:17:34 -070030File OpenAndReadMagic(const char* filename, uint32_t* magic, std::string* error_msg) {
Vladimir Marko5096e662015-12-08 19:25:49 +000031 CHECK(magic != nullptr);
Andreas Gampe43e10b02016-07-15 17:17:34 -070032 File fd(filename, O_RDONLY, /* check_usage */ false);
33 if (fd.Fd() == -1) {
Vladimir Marko5096e662015-12-08 19:25:49 +000034 *error_msg = StringPrintf("Unable to open '%s' : %s", filename, strerror(errno));
Andreas Gampe43e10b02016-07-15 17:17:34 -070035 return File();
Vladimir Marko5096e662015-12-08 19:25:49 +000036 }
Andreas Gampe43e10b02016-07-15 17:17:34 -070037 int n = TEMP_FAILURE_RETRY(read(fd.Fd(), magic, sizeof(*magic)));
Vladimir Marko5096e662015-12-08 19:25:49 +000038 if (n != sizeof(*magic)) {
39 *error_msg = StringPrintf("Failed to find magic in '%s'", filename);
Andreas Gampe43e10b02016-07-15 17:17:34 -070040 return File();
Vladimir Marko5096e662015-12-08 19:25:49 +000041 }
Andreas Gampe43e10b02016-07-15 17:17:34 -070042 if (lseek(fd.Fd(), 0, SEEK_SET) != 0) {
Vladimir Marko5096e662015-12-08 19:25:49 +000043 *error_msg = StringPrintf("Failed to seek to beginning of file '%s' : %s", filename,
44 strerror(errno));
Andreas Gampe43e10b02016-07-15 17:17:34 -070045 return File();
Vladimir Marko5096e662015-12-08 19:25:49 +000046 }
47 return fd;
48}
49
50bool IsZipMagic(uint32_t magic) {
51 return (('P' == ((magic >> 0) & 0xff)) &&
52 ('K' == ((magic >> 8) & 0xff)));
53}
54
55bool IsDexMagic(uint32_t magic) {
56 return DexFile::IsMagicValid(reinterpret_cast<const uint8_t*>(&magic));
57}
58
59} // namespace art