123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
- * Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/LexicalPath.h>
- #include <AK/Random.h>
- #include <LibCore/ArgsParser.h>
- #include <LibCore/System.h>
- #include <LibFileSystem/FileSystem.h>
- #include <LibMain/Main.h>
- #include <fcntl.h>
- #include <sys/stat.h>
- #include <unistd.h>
- static ByteString generate_random_filename(ByteString const& pattern)
- {
- StringBuilder new_filename { pattern.length() };
- constexpr char random_characters[] = "abcdefghijklmnopqrstuvwxyz0123456789";
- for (size_t i = 0; i < pattern.length(); i++) {
- if (pattern[i] == 'X')
- new_filename.append(random_characters[(get_random<u32>() % (sizeof(random_characters) - 1))]);
- else
- new_filename.append(pattern[i]);
- }
- return new_filename.to_byte_string();
- }
- static ErrorOr<Optional<ByteString>> make_temp(ByteString const& pattern, bool directory, bool dry_run)
- {
- for (int i = 0; i < 100; ++i) {
- auto path = generate_random_filename(pattern);
- if (dry_run) {
- auto stat_or_error = Core::System::lstat(path.view());
- if (stat_or_error.is_error() && stat_or_error.error().code() == ENOENT)
- return path;
- } else if (directory) {
- TRY(Core::System::mkdir(path.view(), 0700));
- return path;
- } else {
- auto fd_or_error = Core::System::open(path.view(), O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR);
- if (!fd_or_error.is_error()) {
- TRY(Core::System::close(fd_or_error.value()));
- return path;
- }
- }
- }
- return OptionalNone {};
- }
- ErrorOr<int> serenity_main(Main::Arguments arguments)
- {
- TRY(Core::System::pledge("stdio rpath wpath cpath"));
- StringView file_template;
- bool create_directory = false;
- bool dry_run = false;
- bool quiet = false;
- StringView target_directory;
- Core::ArgsParser args_parser;
- args_parser.set_general_help("Create a temporary file or directory, safely, and print its name.");
- args_parser.add_positional_argument(file_template, "The template must contain at least 3 consecutive 'X's", "template", Core::ArgsParser::Required::No);
- args_parser.add_option(create_directory, "Create a temporary directory instead of a file", "directory", 'd');
- args_parser.add_option(dry_run, "Do not create anything, just print a unique name", "dry-run", 'u');
- args_parser.add_option(quiet, "Do not print diagnostics about file/directory creation failure", "quiet", 'q');
- args_parser.add_option(target_directory, "Create TEMPLATE relative to DIR", "tmpdir", 'p', "DIR");
- args_parser.parse(arguments);
- Optional<String> final_file_template;
- Optional<String> final_target_directory;
- if (target_directory.is_empty()) {
- if (!file_template.is_empty()) {
- auto resolved_path = LexicalPath(TRY(FileSystem::absolute_path(file_template)));
- final_target_directory = TRY(String::from_utf8(resolved_path.dirname()));
- final_file_template = TRY(String::from_utf8(resolved_path.basename()));
- } else {
- final_target_directory = "/tmp"_string;
- auto const* env_directory = getenv("TMPDIR");
- if (env_directory != nullptr && *env_directory != 0)
- final_target_directory = TRY(String::from_utf8({ env_directory, strlen(env_directory) }));
- }
- }
- if (!final_file_template.has_value()) {
- final_file_template = "tmp.XXXXXXXXXX"_string;
- }
- if (!final_file_template->find_byte_offset("XXX"sv).has_value()) {
- if (!quiet)
- warnln("Too few X's in template {}", final_file_template);
- return 1;
- }
- auto target_path = LexicalPath::join(final_target_directory->to_byte_string(), final_file_template->to_byte_string()).string();
- auto final_path = TRY(make_temp(target_path, create_directory, dry_run));
- if (!final_path.has_value()) {
- if (!quiet) {
- if (create_directory)
- warnln("Failed to create directory via template {}", target_path.characters());
- else
- warnln("Failed to create file via template {}", target_path.characters());
- }
- return 1;
- }
- outln("{}", *final_path);
- return 0;
- }
|