1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
|
/*
* Copyright (C) 2014-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PosixFile.h"
#include "URL.h"
#include "filesystem/File.h"
#include "utils/AliasShortcutUtils.h"
#include "utils/log.h"
#include <algorithm>
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <string>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#if defined(HAVE_STATX) // use statx if available to get file birth date
#include <sys/sysmacros.h>
#endif
#include <unistd.h>
using namespace XFILE;
CPosixFile::~CPosixFile()
{
if (m_fd >= 0)
close(m_fd);
}
// local helper
static std::string getFilename(const CURL& url)
{
std::string filename(url.GetFileName());
if (IsAliasShortcut(filename, false))
TranslateAliasShortcut(filename);
return filename;
}
bool CPosixFile::Open(const CURL& url)
{
if (m_fd >= 0)
return false;
const std::string filename(getFilename(url));
if (filename.empty())
return false;
m_fd = open(filename.c_str(), O_RDONLY, S_IRUSR | S_IRGRP | S_IROTH);
m_filePos = 0;
return m_fd != -1;
}
bool CPosixFile::OpenForWrite(const CURL& url, bool bOverWrite /* = false*/ )
{
if (m_fd >= 0)
return false;
const std::string filename(getFilename(url));
if (filename.empty())
return false;
m_fd = open(filename.c_str(), O_RDWR | O_CREAT | (bOverWrite ? O_TRUNC : 0), S_IWUSR | S_IRUSR | S_IRGRP | S_IWGRP | S_IROTH);
if (m_fd < 0)
return false;
m_filePos = 0;
m_allowWrite = true;
return true;
}
void CPosixFile::Close()
{
if (m_fd >= 0)
{
close(m_fd);
m_fd = -1;
m_filePos = -1;
m_lastDropPos = -1;
m_allowWrite = false;
}
}
ssize_t CPosixFile::Read(void* lpBuf, size_t uiBufSize)
{
if (m_fd < 0)
return -1;
assert(lpBuf != NULL || uiBufSize == 0);
if (lpBuf == NULL && uiBufSize != 0)
return -1;
if (uiBufSize > SSIZE_MAX)
uiBufSize = SSIZE_MAX;
const ssize_t res = read(m_fd, lpBuf, uiBufSize);
if (res < 0)
{
Seek(0, SEEK_CUR); // force update file position
return -1;
}
if (m_filePos >= 0)
{
m_filePos += res; // if m_filePos was known - update it
#if defined(HAVE_POSIX_FADVISE)
// Drop the cache between then last drop and 16 MB behind where we
// are now, to make sure the file doesn't displace everything else.
// However, never throw out the first 16 MB of the file, as it might
// be the header etc., and never ask the OS to drop in chunks of
// less than 1 MB.
const int64_t end_drop = m_filePos - 16 * 1024 * 1024;
if (end_drop >= 17 * 1024 * 1024)
{
const int64_t start_drop = std::max<int64_t>(m_lastDropPos, 16 * 1024 * 1024);
if (end_drop - start_drop >= 1 * 1024 * 1024 &&
posix_fadvise(m_fd, start_drop, end_drop - start_drop, POSIX_FADV_DONTNEED) == 0)
m_lastDropPos = end_drop;
}
#endif
}
return res;
}
ssize_t CPosixFile::Write(const void* lpBuf, size_t uiBufSize)
{
if (m_fd < 0)
return -1;
assert(lpBuf != NULL || uiBufSize == 0);
if ((lpBuf == NULL && uiBufSize != 0) || !m_allowWrite)
return -1;
if (uiBufSize > SSIZE_MAX)
uiBufSize = SSIZE_MAX;
const ssize_t res = write(m_fd, lpBuf, uiBufSize);
if (res < 0)
{
Seek(0, SEEK_CUR); // force update file position
return -1;
}
if (m_filePos >= 0)
m_filePos += res; // if m_filePos was known - update it
return res;
}
int64_t CPosixFile::Seek(int64_t iFilePosition, int iWhence /* = SEEK_SET*/)
{
if (m_fd < 0)
return -1;
#ifdef TARGET_ANDROID
//! @todo properly support with detection in configure
//! Android special case: Android doesn't substitute off64_t for off_t and similar functions
m_filePos = lseek64(m_fd, (off64_t)iFilePosition, iWhence);
#else // !TARGET_ANDROID
const off_t filePosOffT = (off_t) iFilePosition;
// check for parameter overflow
if (sizeof(int64_t) != sizeof(off_t) && iFilePosition != filePosOffT)
return -1;
m_filePos = lseek(m_fd, filePosOffT, iWhence);
#endif // !TARGET_ANDROID
return m_filePos;
}
int CPosixFile::Truncate(int64_t size)
{
if (m_fd < 0)
return -1;
const off_t sizeOffT = (off_t) size;
// check for parameter overflow
if (sizeof(int64_t) != sizeof(off_t) && size != sizeOffT)
return -1;
return ftruncate(m_fd, sizeOffT);
}
int64_t CPosixFile::GetPosition()
{
if (m_fd < 0)
return -1;
if (m_filePos < 0)
m_filePos = lseek(m_fd, 0, SEEK_CUR);
return m_filePos;
}
int64_t CPosixFile::GetLength()
{
if (m_fd < 0)
return -1;
struct stat64 st;
if (fstat64(m_fd, &st) != 0)
return -1;
return st.st_size;
}
void CPosixFile::Flush()
{
if (m_fd >= 0)
fsync(m_fd);
}
int CPosixFile::IoControl(EIoControl request, void* param)
{
if (m_fd < 0)
return -1;
if (request == IOCTRL_NATIVE)
{
if(!param)
return -1;
return ioctl(m_fd, ((SNativeIoControl*)param)->request, ((SNativeIoControl*)param)->param);
}
else if (request == IOCTRL_SEEK_POSSIBLE)
{
if (GetPosition() < 0)
return -1; // current position is unknown, can't test seeking
else if (m_filePos > 0)
{
const int64_t orgPos = m_filePos;
// try to seek one byte back
const bool seekPossible = (Seek(orgPos - 1, SEEK_SET) == (orgPos - 1));
// restore file position
if (Seek(orgPos, SEEK_SET) != orgPos)
return 0; // seeking is not possible
return seekPossible ? 1 : 0;
}
else
{ // m_filePos == 0
// try to seek one byte forward
const bool seekPossible = (Seek(1, SEEK_SET) == 1);
// restore file position
if (Seek(0, SEEK_SET) != 0)
return 0; // seeking is not possible
if (seekPossible)
return 1;
if (GetLength() <= 0)
return -1; // size of file is zero or can be zero, can't test seeking
else
return 0; // size of file is 1 byte or more and seeking not possible
}
}
return -1;
}
bool CPosixFile::Delete(const CURL& url)
{
const std::string filename(getFilename(url));
if (filename.empty())
return false;
if (unlink(filename.c_str()) == 0)
return true;
if (errno == EACCES || errno == EPERM)
CLog::LogF(LOGWARNING, "Can't access file \"{}\"", filename);
return false;
}
bool CPosixFile::Rename(const CURL& url, const CURL& urlnew)
{
const std::string name(getFilename(url)), newName(getFilename(urlnew));
if (name.empty() || newName.empty())
return false;
if (name == newName)
return true;
if (rename(name.c_str(), newName.c_str()) == 0)
return true;
if (errno == EACCES || errno == EPERM)
CLog::LogF(LOGWARNING, "Can't access file \"{}\" for rename to \"{}\"", name, newName);
// rename across mount points - need to copy/delete
if (errno == EXDEV)
{
CLog::LogF(LOGDEBUG,
"Source file \"{}\" and target file \"{}\" are located on different filesystems, "
"copy&delete will be used instead of rename",
name, newName);
if (XFILE::CFile::Copy(name, newName))
{
if (XFILE::CFile::Delete(name))
return true;
else
XFILE::CFile::Delete(newName);
}
}
return false;
}
bool CPosixFile::Exists(const CURL& url)
{
const std::string filename(getFilename(url));
if (filename.empty())
return false;
struct stat64 st;
return stat64(filename.c_str(), &st) == 0 && !S_ISDIR(st.st_mode);
}
int CPosixFile::Stat(const CURL& url, struct __stat64* buffer)
{
assert(buffer != NULL);
const std::string filename(getFilename(url));
if (filename.empty() || !buffer)
return -1;
// Use statx to get file creation date (btime) which isn't available with just stat. This fills the
// buffer with the same data as the Windows implementation. Useful for the music library so that
// tags can be updated without changing the date they were added to the library (as m/ctime does)
#if defined(HAVE_STATX)
int dirfd = AT_FDCWD;
int flags = AT_STATX_SYNC_AS_STAT;
unsigned int mask = STATX_BASIC_STATS | STATX_BTIME;
struct statx stxbuf = {};
long ret = 0;
ret = statx(dirfd, filename.c_str(), flags, mask, &stxbuf);
if (ret == 0)
{
*buffer = {};
buffer->st_mtime = stxbuf.stx_mtime.tv_sec; // modification time
if (stxbuf.stx_btime.tv_sec != 0)
buffer->st_ctime = stxbuf.stx_btime.tv_sec; // birth (creation) time
else
buffer->st_ctime = stxbuf.stx_ctime.tv_sec; // change time (of metadata or file)
// fill everything else we might need (statx buffer is slightly different to stat buffer so
// can't just return the statx buffer) Note we might not need all this but lets fill it for
// completeness
buffer->st_atime = stxbuf.stx_atime.tv_sec;
buffer->st_size = stxbuf.stx_size;
buffer->st_blksize = stxbuf.stx_blksize;
buffer->st_blocks = stxbuf.stx_blocks;
buffer->st_ino = stxbuf.stx_ino;
buffer->st_nlink = stxbuf.stx_nlink;
buffer->st_uid = stxbuf.stx_uid;
buffer->st_gid = stxbuf.stx_gid;
buffer->st_mode = stxbuf.stx_mode;
buffer->st_rdev = makedev(stxbuf.stx_rdev_major, stxbuf.stx_rdev_minor);
buffer->st_dev = makedev(stxbuf.stx_dev_major, stxbuf.stx_dev_minor);
}
return ret;
#else
return stat64(filename.c_str(), buffer);
#endif
}
int CPosixFile::Stat(struct __stat64* buffer)
{
assert(buffer != NULL);
if (m_fd < 0 || !buffer)
return -1;
return fstat64(m_fd, buffer);
}
|