blob: 34a597b98826ed81a37cc579be4334d2a1cc3886 [file] [log] [blame]
Dmitriy Ivanova1feb112015-10-01 18:41:57 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
Dimitry Ivanovbcc4da92017-02-15 15:31:13 -08003 * All rights reserved.
Dmitriy Ivanova1feb112015-10-01 18:41:57 -07004 *
Dimitry Ivanovbcc4da92017-02-15 15:31:13 -08005 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
Dmitriy Ivanova1feb112015-10-01 18:41:57 -070014 *
Dimitry Ivanovbcc4da92017-02-15 15:31:13 -080015 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
Dmitriy Ivanova1feb112015-10-01 18:41:57 -070027 */
Dimitry Ivanovbcc4da92017-02-15 15:31:13 -080028
Elliott Hughescbc80ba2018-02-13 14:26:29 -080029#pragma once
Dmitriy Ivanova1feb112015-10-01 18:41:57 -070030
31#include <string>
Dimitry Ivanov48ec2882016-08-04 11:50:36 -070032#include <vector>
Dmitriy Ivanova1feb112015-10-01 18:41:57 -070033
Dmitriy Ivanov42d5fcb2015-10-29 17:01:24 -070034extern const char* const kZipFileSeparator;
35
Dimitry Ivanov2a6d9b22017-03-11 14:35:38 -080036void format_string(std::string* str, const std::vector<std::pair<std::string, std::string>>& params);
37
Dmitriy Ivanov42d5fcb2015-10-29 17:01:24 -070038bool file_is_in_dir(const std::string& file, const std::string& dir);
Dimitry Ivanov284ae352015-12-08 10:47:13 -080039bool file_is_under_dir(const std::string& file, const std::string& dir);
Dimitry Ivanov48ec2882016-08-04 11:50:36 -070040bool normalize_path(const char* path, std::string* normalized_path);
Dmitriy Ivanov42d5fcb2015-10-29 17:01:24 -070041bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path);
Dmitriy Ivanova1feb112015-10-01 18:41:57 -070042
Dimitry Ivanov48ec2882016-08-04 11:50:36 -070043// For every path element this function checks of it exists, and is a directory,
44// and normalizes it:
45// 1. For regular path it converts it to realpath()
46// 2. For path in a zip file it uses realpath on the zipfile
47// normalizes entry name by calling normalize_path function.
Dimitry Ivanov4cabfaa2017-03-07 11:19:05 -080048void resolve_paths(std::vector<std::string>& paths,
49 std::vector<std::string>* resolved_paths);
50
Dimitry Ivanov48ec2882016-08-04 11:50:36 -070051void split_path(const char* path, const char* delimiters, std::vector<std::string>* paths);
52
53std::string dirname(const char* path);
54
Dmitriy Ivanov84bab5a2015-11-20 13:34:11 -080055off64_t page_start(off64_t offset);
56size_t page_offset(off64_t offset);
57bool safe_add(off64_t* out, off64_t a, size_t b);
Tom Cherry66bc4282018-11-08 13:40:52 -080058bool is_first_stage_init();