/* * Copyright (c) 2016, Kelvin W Sherlock * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include "native_internal.h" #include #include #include #include #include #include #include "config.h" #define XATTR_FINDERINFO_NAME "com.apple.FinderInfo" #define XATTR_RESOURCEFORK_NAME "com.apple.ResourceFork" #define XATTR_FILETYPE_NAME "prodos.FileType" #define XATTR_AUXTYPE_NAME "prodos.AuxType" using namespace MacOS; namespace { uint32_t rforksize(const std::string &path_name) { int fd; uint32_t rv = 0; struct stat st; fd = attropen(path_name.c_str(), XATTR_RESOURCEFORK_NAME, O_RDONLY); if (fd >= 0) { if (fstat(fd, &st) == 0) rv = st.st_size; close(fd); } return rv; } } namespace native { macos_error get_finder_info(const std::string &path_name, void *info, bool extended) { uint8_t buffer[32]; std::memset(buffer, 0, sizeof(buffer)); int fd; fd = attropen(path_name.c_str(), XATTR_FINDERINFO_NAME, O_RDONLY); if (fd >= 0) { ssize_t x = read(fd, buffer, 32); close(fd); if (x == 32 || x == 16){ prodos_ftype_out(buffer); memcpy(info, buffer, extended ? 32 : 16); return noErr; } } /* if it's a text file, call it a text file */ if (is_text_file_internal(path_name)) { memcpy(buffer, "TEXTMPS ", 8); } memcpy(info, buffer, extended ? 32 : 16); return noErr; } macos_error set_finder_info(const std::string &path_name, const void *info, bool extended) { uint8_t buffer[32]; ssize_t rv; std::memset(buffer, 0, sizeof(buffer)); if (extended) { std::memcpy(buffer, info, 32); } else { std::memcpy(buffer, info, 16); } prodos_ftype_in(buffer); int fd = attropen(path_name.c_str(), XATTR_FINDERINFO_NAME, O_WRONLY | O_CREAT, 0666); if (fd < 0) return macos_error_from_errno(); rv = write(fd, info, extended ? 32 : 16); close(fd); if ( rv < 0) return macos_error_from_errno(); return noErr; } macos_error get_file_info(const std::string &path_name, file_info &fi) { struct stat st; if (stat(path_name.c_str(), &st) < 0) return macos_error_from_errno(); fi.create_date = unix_to_mac(st.st_ctime); fi.modify_date = unix_to_mac(st.st_mtime); fi.backup_date = 0; if (S_ISDIR(st.st_mode)) { fi.type = file_info::directory; fi.attributes = 1 << 4; int links = st.st_nlink - 2; if (links < 0) links = 0; if (links > 65535) links = 65535; fi.entry_count = links; return noErr; } // todo -- get actual block size instead of assuming 512. oh well! fi.type = file_info::file; fi.data_logical_size = st.st_size; fi.data_physical_size = (st.st_size + 511) & ~511; fi.resource_physical_size = 0; fi.resource_logical_size = 0; get_finder_info(path_name, fi.finder_info); ssize_t rsize = rforksize(path_name); if (rsize > 0) { fi.resource_physical_size = rsize; fi.resource_logical_size = (rsize + 511) & ~511; } return noErr; } macos_error set_file_info(const std::string &path_name, const file_info &fi) { struct stat st; if (stat(path_name.c_str(), &st) < 0) return macos_error_from_errno(); if (S_ISREG(st.st_mode)) { auto rv = set_finder_info(path_name, fi.finder_info); if (rv) return rv; } time_t create_date = fi.create_date ? mac_to_unix(fi.create_date) : 0; time_t modify_date = fi.modify_date ? mac_to_unix(fi.modify_date) : 0; time_t backup_date = fi.backup_date ? mac_to_unix(fi.backup_date) : 0; // todo -- value of 0 == set to current date/time? if (modify_date == st.st_mtime) modify_date = 0; // try utimes. struct timeval tv[2]; memset(tv, 0, sizeof(tv)); int rv = 0; if (modify_date) { tv[0].tv_sec = st.st_atime; tv[1].tv_sec = modify_date; rv = utimes(path_name.c_str(), tv); } if (rv < 0) return macos_error_from_errno(); return noErr; } tool_return open_resource_fork(const std::string &path_name, int oflag) { /* under HFS, every file has a resource fork. * Therefore, create it if opening for O_RDWR or O_WRONLY */ int mode = oflag & O_ACCMODE; if (mode == O_WRONLY || mode == O_RDWR) oflag |= O_CREAT; int fd = attropen(path_name.c_str(), XATTR_RESOURCEFORK_NAME, oflag, 0666); if (fd < 0) return macos_error_from_errno(); auto tmp = new fd_file(path_name, fd); tmp->resource = true; return file_ptr(tmp); } }