init: expand prop in 'file'

am: 567f1874fd

Change-Id: I87a2cd6fd5c38b6c216687596d734040329c8e0e
This commit is contained in:
Yifan Hong 2019-03-26 14:27:25 -07:00 committed by android-build-merger
commit 9d227e921f

View file

@ -756,6 +756,11 @@ Result<Success> Service::ParseFile(std::vector<std::string>&& args) {
if (args[2] != "r" && args[2] != "w" && args[2] != "rw") {
return Error() << "file type must be 'r', 'w' or 'rw'";
}
std::string expanded;
if (!expand_props(args[1], &expanded)) {
return Error() << "Could not expand property in file path '" << args[1] << "'";
}
args[1] = std::move(expanded);
if ((args[1][0] != '/') || (args[1].find("../") != std::string::npos)) {
return Error() << "file name must not be relative";
}