2009-03-04 04:28:42 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2017-10-03 23:37:21 +02:00
|
|
|
#include "otautil/DirUtil.h"
|
2016-04-02 03:24:39 +02:00
|
|
|
|
2017-07-23 09:01:02 +02:00
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/stat.h>
|
2017-07-23 09:01:02 +02:00
|
|
|
#include <sys/types.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-02-10 22:47:32 +01:00
|
|
|
#include <string>
|
|
|
|
|
2016-04-02 03:24:39 +02:00
|
|
|
#include <selinux/label.h>
|
|
|
|
#include <selinux/selinux.h>
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-07-23 09:01:02 +02:00
|
|
|
enum class DirStatus { DMISSING, DDIR, DILLEGAL };
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-07-23 09:01:02 +02:00
|
|
|
static DirStatus dir_status(const std::string& path) {
|
|
|
|
struct stat sb;
|
|
|
|
if (stat(path.c_str(), &sb) == 0) {
|
|
|
|
// Something's there; make sure it's a directory.
|
|
|
|
if (S_ISDIR(sb.st_mode)) {
|
|
|
|
return DirStatus::DDIR;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
errno = ENOTDIR;
|
|
|
|
return DirStatus::DILLEGAL;
|
|
|
|
} else if (errno != ENOENT) {
|
|
|
|
// Something went wrong, or something in the path is bad. Can't do anything in this situation.
|
|
|
|
return DirStatus::DILLEGAL;
|
|
|
|
}
|
|
|
|
return DirStatus::DMISSING;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
|
|
|
|
2017-07-23 09:01:02 +02:00
|
|
|
int mkdir_recursively(const std::string& input_path, mode_t mode, bool strip_filename,
|
|
|
|
const selabel_handle* sehnd) {
|
|
|
|
// Check for an empty string before we bother making any syscalls.
|
|
|
|
if (input_path.empty()) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Allocate a path that we can modify; stick a slash on the end to make things easier.
|
|
|
|
std::string path = input_path;
|
|
|
|
if (strip_filename) {
|
|
|
|
// Strip everything after the last slash.
|
|
|
|
size_t pos = path.rfind('/');
|
|
|
|
if (pos == std::string::npos) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return -1;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
path.resize(pos + 1);
|
|
|
|
} else {
|
|
|
|
// Make sure that the path ends in a slash.
|
|
|
|
path.push_back('/');
|
|
|
|
}
|
|
|
|
|
|
|
|
// See if it already exists.
|
|
|
|
DirStatus ds = dir_status(path);
|
|
|
|
if (ds == DirStatus::DDIR) {
|
|
|
|
return 0;
|
|
|
|
} else if (ds == DirStatus::DILLEGAL) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Walk up the path from the root and make each level.
|
|
|
|
size_t prev_end = 0;
|
|
|
|
while (prev_end < path.size()) {
|
|
|
|
size_t next_end = path.find('/', prev_end + 1);
|
|
|
|
if (next_end == std::string::npos) {
|
|
|
|
break;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
std::string dir_path = path.substr(0, next_end);
|
|
|
|
// Check this part of the path and make a new directory if necessary.
|
|
|
|
switch (dir_status(dir_path)) {
|
|
|
|
case DirStatus::DILLEGAL:
|
|
|
|
// Could happen if some other process/thread is messing with the filesystem.
|
2009-03-04 04:28:42 +01:00
|
|
|
return -1;
|
2017-07-23 09:01:02 +02:00
|
|
|
case DirStatus::DMISSING: {
|
|
|
|
char* secontext = nullptr;
|
|
|
|
if (sehnd) {
|
|
|
|
selabel_lookup(const_cast<selabel_handle*>(sehnd), &secontext, dir_path.c_str(), mode);
|
|
|
|
setfscreatecon(secontext);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
int err = mkdir(dir_path.c_str(), mode);
|
|
|
|
if (secontext) {
|
|
|
|
freecon(secontext);
|
|
|
|
setfscreatecon(nullptr);
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
if (err != 0) {
|
|
|
|
return -1;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// Already exists.
|
|
|
|
break;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|
2017-07-23 09:01:02 +02:00
|
|
|
prev_end = next_end;
|
|
|
|
}
|
|
|
|
return 0;
|
2009-03-04 04:28:42 +01:00
|
|
|
}
|