2010-01-30 22:26:47 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
2013-07-12 20:11:08 +00:00
|
|
|
* Original authors: Albeu, probably Arpi
|
|
|
|
*
|
2010-01-30 22:26:47 +00:00
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2003-04-02 16:25:07 +00:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2005-10-13 12:13:49 +00:00
|
|
|
#include <stdio.h>
|
2003-04-02 16:25:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2012-08-03 17:33:46 +00:00
|
|
|
#include <errno.h>
|
2003-04-02 16:25:07 +00:00
|
|
|
|
2012-02-03 07:05:11 +00:00
|
|
|
#include "osdep/io.h"
|
|
|
|
|
Do not call strerror()
...because everything is terrible.
strerror() is not documented as having to be thread-safe by POSIX and
C11. (Which is pretty much bullshit, because both mandate threads and
some form of thread-local storage - so there's no excuse why
implementation couldn't implement this in a thread-safe way. Especially
with C11 this is ridiculous, because there is no way to use threads and
convert error numbers to strings at the same time!)
Since we heavily use threads now, we should avoid unsafe functions like
strerror().
strerror_r() is in POSIX, but GNU/glibc deliberately fucks it up and
gives the function different semantics than the POSIX one. It's a bit of
work to convince this piece of shit to expose the POSIX standard
function, and not the messed up GNU one.
strerror_l() is also in POSIX, but only since the 2008 standard, and
thus is not widespread.
The solution is using avlibc (libavutil, by its official name), which
handles the unportable details for us, mostly. We avoid some pain.
2014-11-26 20:21:56 +00:00
|
|
|
#include "common/common.h"
|
2013-12-17 01:39:45 +00:00
|
|
|
#include "common/msg.h"
|
2003-04-02 16:25:07 +00:00
|
|
|
#include "stream.h"
|
2013-12-17 01:02:25 +00:00
|
|
|
#include "options/m_option.h"
|
2014-01-08 20:46:42 +00:00
|
|
|
#include "options/path.h"
|
2003-04-02 16:25:07 +00:00
|
|
|
|
2014-02-17 11:51:38 +00:00
|
|
|
#if HAVE_BSD_FSTATFS
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#endif
|
|
|
|
|
2014-03-11 19:27:50 +00:00
|
|
|
#if HAVE_LINUX_FSTATFS
|
|
|
|
#include <sys/vfs.h>
|
|
|
|
#endif
|
|
|
|
|
2014-04-09 08:14:18 +00:00
|
|
|
#ifdef _WIN32
|
2014-02-18 07:11:59 +00:00
|
|
|
#include <windows.h>
|
2014-04-09 08:14:18 +00:00
|
|
|
#include <winternl.h>
|
|
|
|
#include <io.h>
|
|
|
|
|
|
|
|
#ifndef FILE_REMOTE_DEVICE
|
|
|
|
#define FILE_REMOTE_DEVICE (0x10)
|
|
|
|
#endif
|
2014-02-18 07:11:59 +00:00
|
|
|
#endif
|
|
|
|
|
stream: remove fd member
Stream implementations could set this to a unix file descriptor. The
generic stream code could use it as fallback for a few things. This
was confusing and insane. In most cases, the stream implementations
defined all callbacks, so setting the fd member didn't have any
advantages, other than avoiding defining a private struct to store it.
It appears that even if the stream implementation used close() on the
fd (or something equivalent), stream.c would close() it a second time
(and on windows, even would call closesocket()), which should be proof
for the insanity of this code.
For stream_file.c, additionally make sure we don't close stdin or
stdout if "-" is used as filename.
For stream_vcd.c, remove the control() code. This code most likely
didn't make the slightest sense, because it used a different type
for stream->priv. It also leaked memory. Maybe it worked, but it's
incorrect and insignificant anyway, so kill it. This code was added
with commit 9521c19 (svn commit 31019).
Untested for all protocols other than stream_file.c.
2013-07-12 20:07:07 +00:00
|
|
|
struct priv {
|
|
|
|
int fd;
|
|
|
|
bool close;
|
|
|
|
};
|
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
static int fill_buffer(stream_t *s, char *buffer, int max_len)
|
|
|
|
{
|
|
|
|
struct priv *p = s->priv;
|
|
|
|
int r = read(p->fd, buffer, max_len);
|
|
|
|
return (r <= 0) ? -1 : r;
|
2003-04-02 16:25:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
static int write_buffer(stream_t *s, char *buffer, int len)
|
|
|
|
{
|
|
|
|
struct priv *p = s->priv;
|
|
|
|
int r;
|
|
|
|
int wr = 0;
|
|
|
|
while (wr < len) {
|
|
|
|
r = write(p->fd, buffer, len);
|
|
|
|
if (r <= 0)
|
|
|
|
return -1;
|
|
|
|
wr += r;
|
|
|
|
buffer += r;
|
|
|
|
}
|
|
|
|
return len;
|
2003-04-02 16:25:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
static int seek(stream_t *s, int64_t newpos)
|
|
|
|
{
|
|
|
|
struct priv *p = s->priv;
|
2013-08-22 16:23:33 +00:00
|
|
|
return lseek(p->fd, newpos, SEEK_SET) != (off_t)-1;
|
2003-04-02 16:25:07 +00:00
|
|
|
}
|
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
static int control(stream_t *s, int cmd, void *arg)
|
|
|
|
{
|
|
|
|
struct priv *p = s->priv;
|
|
|
|
switch (cmd) {
|
2006-12-18 20:55:12 +00:00
|
|
|
case STREAM_CTRL_GET_SIZE: {
|
2014-05-24 12:06:18 +00:00
|
|
|
off_t size = lseek(p->fd, 0, SEEK_END);
|
2013-08-22 16:08:46 +00:00
|
|
|
lseek(p->fd, s->pos, SEEK_SET);
|
|
|
|
if (size != (off_t)-1) {
|
2014-05-24 12:04:09 +00:00
|
|
|
*(int64_t *)arg = size;
|
2013-08-22 16:08:46 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2014-05-24 12:04:09 +00:00
|
|
|
break;
|
2013-08-22 16:08:46 +00:00
|
|
|
}
|
2006-12-18 20:55:12 +00:00
|
|
|
}
|
2013-08-22 16:08:46 +00:00
|
|
|
return STREAM_UNSUPPORTED;
|
2006-12-18 20:55:12 +00:00
|
|
|
}
|
|
|
|
|
stream: remove fd member
Stream implementations could set this to a unix file descriptor. The
generic stream code could use it as fallback for a few things. This
was confusing and insane. In most cases, the stream implementations
defined all callbacks, so setting the fd member didn't have any
advantages, other than avoiding defining a private struct to store it.
It appears that even if the stream implementation used close() on the
fd (or something equivalent), stream.c would close() it a second time
(and on windows, even would call closesocket()), which should be proof
for the insanity of this code.
For stream_file.c, additionally make sure we don't close stdin or
stdout if "-" is used as filename.
For stream_vcd.c, remove the control() code. This code most likely
didn't make the slightest sense, because it used a different type
for stream->priv. It also leaked memory. Maybe it worked, but it's
incorrect and insignificant anyway, so kill it. This code was added
with commit 9521c19 (svn commit 31019).
Untested for all protocols other than stream_file.c.
2013-07-12 20:07:07 +00:00
|
|
|
static void s_close(stream_t *s)
|
|
|
|
{
|
2013-08-22 16:08:46 +00:00
|
|
|
struct priv *p = s->priv;
|
|
|
|
if (p->close && p->fd >= 0)
|
|
|
|
close(p->fd);
|
stream: remove fd member
Stream implementations could set this to a unix file descriptor. The
generic stream code could use it as fallback for a few things. This
was confusing and insane. In most cases, the stream implementations
defined all callbacks, so setting the fd member didn't have any
advantages, other than avoiding defining a private struct to store it.
It appears that even if the stream implementation used close() on the
fd (or something equivalent), stream.c would close() it a second time
(and on windows, even would call closesocket()), which should be proof
for the insanity of this code.
For stream_file.c, additionally make sure we don't close stdin or
stdout if "-" is used as filename.
For stream_vcd.c, remove the control() code. This code most likely
didn't make the slightest sense, because it used a different type
for stream->priv. It also leaked memory. Maybe it worked, but it's
incorrect and insignificant anyway, so kill it. This code was added
with commit 9521c19 (svn commit 31019).
Untested for all protocols other than stream_file.c.
2013-07-12 20:07:07 +00:00
|
|
|
}
|
|
|
|
|
2014-01-08 20:46:42 +00:00
|
|
|
// If url is a file:// URL, return the local filename, otherwise return NULL.
|
|
|
|
char *mp_file_url_to_filename(void *talloc_ctx, bstr url)
|
|
|
|
{
|
|
|
|
bstr proto = mp_split_proto(url, &url);
|
|
|
|
if (bstrcasecmp0(proto, "file") != 0)
|
|
|
|
return NULL;
|
|
|
|
char *filename = bstrto0(talloc_ctx, url);
|
|
|
|
mp_url_unescape_inplace(filename);
|
|
|
|
#if HAVE_DOS_PATHS
|
|
|
|
// extract '/' from '/x:/path'
|
|
|
|
if (filename[0] == '/' && filename[1] && filename[2] == ':')
|
|
|
|
memmove(filename, filename + 1, strlen(filename)); // including \0
|
|
|
|
#endif
|
|
|
|
return filename;
|
|
|
|
}
|
|
|
|
|
2014-09-25 21:38:23 +00:00
|
|
|
// Return talloc_strdup's filesystem path if local, otherwise NULL.
|
|
|
|
// Unlike mp_file_url_to_filename(), doesn't return NULL if already local.
|
|
|
|
char *mp_file_get_path(void *talloc_ctx, bstr url)
|
|
|
|
{
|
|
|
|
if (mp_split_proto(url, &(bstr){0}).len) {
|
|
|
|
return mp_file_url_to_filename(talloc_ctx, url);
|
|
|
|
} else {
|
|
|
|
return bstrto0(talloc_ctx, url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 11:51:38 +00:00
|
|
|
#if HAVE_BSD_FSTATFS
|
|
|
|
static bool check_stream_network(stream_t *stream)
|
|
|
|
{
|
|
|
|
struct statfs fs;
|
|
|
|
const char *stypes[] = { "afpfs", "nfs", "smbfs", "webdav", NULL };
|
|
|
|
struct priv *priv = stream->priv;
|
|
|
|
if (fstatfs(priv->fd, &fs) == 0)
|
|
|
|
for (int i=0; stypes[i]; i++)
|
|
|
|
if (strcmp(stypes[i], fs.f_fstypename) == 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
|
2014-03-11 19:27:50 +00:00
|
|
|
}
|
|
|
|
#elif HAVE_LINUX_FSTATFS
|
|
|
|
static bool check_stream_network(stream_t *stream)
|
|
|
|
{
|
|
|
|
struct statfs fs;
|
|
|
|
const uint32_t stypes[] = {
|
|
|
|
0x5346414F /*AFS*/, 0x61756673 /*AUFS*/, 0x00C36400 /*CEPH*/,
|
|
|
|
0xFF534D42 /*CIFS*/, 0x73757245 /*CODA*/, 0x19830326 /*FHGFS*/,
|
|
|
|
0x65735546 /*FUSEBLK*/,0x65735543 /*FUSECTL*/,0x1161970 /*GFS*/,
|
|
|
|
0x47504653 /*GPFS*/, 0x6B414653 /*KAFS*/, 0x0BD00BD0 /*LUSTRE*/,
|
|
|
|
0x564C /*NCP*/, 0x6969 /*NFS*/, 0x6E667364 /*NFSD*/,
|
|
|
|
0xAAD7AAEA /*PANFS*/, 0x50495045 /*PIPEFS*/, 0x517B /*SMB*/,
|
|
|
|
0xBEEFDEAD /*SNFS*/, 0xBACBACBC /*VMHGFS*/, 0x7461636f /*OCFS2*/,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
struct priv *priv = stream->priv;
|
|
|
|
if (fstatfs(priv->fd, &fs) == 0) {
|
|
|
|
for (int i=0; stypes[i]; i++) {
|
|
|
|
if (stypes[i] == fs.f_type)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
|
2014-02-17 11:51:38 +00:00
|
|
|
}
|
2014-04-09 08:14:18 +00:00
|
|
|
#elif defined(_WIN32)
|
2014-02-18 07:11:59 +00:00
|
|
|
static bool check_stream_network(stream_t *stream)
|
|
|
|
{
|
2014-04-09 08:14:18 +00:00
|
|
|
NTSTATUS (NTAPI *pNtQueryVolumeInformationFile)(HANDLE,
|
|
|
|
PIO_STATUS_BLOCK, PVOID, ULONG, FS_INFORMATION_CLASS) = NULL;
|
2014-02-18 07:11:59 +00:00
|
|
|
|
2014-04-09 08:14:18 +00:00
|
|
|
// NtQueryVolumeInformationFile is an internal Windows function. It has
|
|
|
|
// been present since Windows XP, however this code should fail gracefully
|
|
|
|
// if it's removed from a future version of Windows.
|
|
|
|
HMODULE ntdll = GetModuleHandleW(L"ntdll.dll");
|
|
|
|
pNtQueryVolumeInformationFile = (NTSTATUS (NTAPI*)(HANDLE,
|
|
|
|
PIO_STATUS_BLOCK, PVOID, ULONG, FS_INFORMATION_CLASS))
|
|
|
|
GetProcAddress(ntdll, "NtQueryVolumeInformationFile");
|
2014-02-18 07:11:59 +00:00
|
|
|
|
2014-04-09 08:14:18 +00:00
|
|
|
if (!pNtQueryVolumeInformationFile)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
struct priv *priv = stream->priv;
|
|
|
|
HANDLE h = (HANDLE)_get_osfhandle(priv->fd);
|
|
|
|
if (h == INVALID_HANDLE_VALUE)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
FILE_FS_DEVICE_INFORMATION info = { 0 };
|
|
|
|
IO_STATUS_BLOCK io;
|
|
|
|
NTSTATUS status = pNtQueryVolumeInformationFile(h, &io, &info,
|
|
|
|
sizeof(info), FileFsDeviceInformation);
|
|
|
|
if (!NT_SUCCESS(status))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return info.DeviceType == FILE_DEVICE_NETWORK_FILE_SYSTEM ||
|
|
|
|
(info.Characteristics & FILE_REMOTE_DEVICE);
|
2014-02-18 07:11:59 +00:00
|
|
|
}
|
2014-02-17 11:51:38 +00:00
|
|
|
#else
|
|
|
|
static bool check_stream_network(stream_t *stream)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
static int open_f(stream_t *stream)
|
2013-07-11 19:10:42 +00:00
|
|
|
{
|
2013-08-22 16:08:46 +00:00
|
|
|
int fd;
|
|
|
|
struct priv *priv = talloc_ptrtype(stream, priv);
|
|
|
|
*priv = (struct priv) {
|
|
|
|
.fd = -1
|
|
|
|
};
|
|
|
|
stream->priv = priv;
|
|
|
|
|
2014-05-24 12:06:13 +00:00
|
|
|
bool write = stream->mode == STREAM_WRITE;
|
|
|
|
int m = O_CLOEXEC | (write ? O_RDWR | O_CREAT | O_TRUNC : O_RDONLY);
|
2003-04-02 16:25:07 +00:00
|
|
|
|
2014-01-08 20:46:42 +00:00
|
|
|
char *filename = mp_file_url_to_filename(stream, bstr0(stream->url));
|
|
|
|
if (filename) {
|
|
|
|
stream->path = filename;
|
|
|
|
} else {
|
|
|
|
filename = stream->path;
|
|
|
|
}
|
2008-02-20 08:20:49 +00:00
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
if (!strcmp(filename, "-")) {
|
2014-05-24 12:06:13 +00:00
|
|
|
if (!write) {
|
2013-12-21 19:36:45 +00:00
|
|
|
MP_INFO(stream, "Reading from stdin...\n");
|
2013-08-22 16:08:46 +00:00
|
|
|
fd = 0;
|
|
|
|
} else {
|
2014-05-24 12:06:18 +00:00
|
|
|
MP_INFO(stream, "Writing to stdout...\n");
|
2013-08-22 16:08:46 +00:00
|
|
|
fd = 1;
|
|
|
|
}
|
2014-05-24 12:06:18 +00:00
|
|
|
#ifdef __MINGW32__
|
|
|
|
setmode(fd, O_BINARY);
|
|
|
|
#endif
|
2013-08-22 16:08:46 +00:00
|
|
|
priv->fd = fd;
|
|
|
|
priv->close = false;
|
|
|
|
} else {
|
|
|
|
mode_t openmode = S_IRUSR | S_IWUSR;
|
2006-12-21 22:40:51 +00:00
|
|
|
#ifndef __MINGW32__
|
2013-08-22 16:08:46 +00:00
|
|
|
openmode |= S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH;
|
2006-12-21 22:40:51 +00:00
|
|
|
#endif
|
2013-08-22 16:08:46 +00:00
|
|
|
fd = open(filename, m | O_BINARY, openmode);
|
|
|
|
if (fd < 0) {
|
2013-12-21 19:36:45 +00:00
|
|
|
MP_ERR(stream, "Cannot open file '%s': %s\n",
|
Do not call strerror()
...because everything is terrible.
strerror() is not documented as having to be thread-safe by POSIX and
C11. (Which is pretty much bullshit, because both mandate threads and
some form of thread-local storage - so there's no excuse why
implementation couldn't implement this in a thread-safe way. Especially
with C11 this is ridiculous, because there is no way to use threads and
convert error numbers to strings at the same time!)
Since we heavily use threads now, we should avoid unsafe functions like
strerror().
strerror_r() is in POSIX, but GNU/glibc deliberately fucks it up and
gives the function different semantics than the POSIX one. It's a bit of
work to convince this piece of shit to expose the POSIX standard
function, and not the messed up GNU one.
strerror_l() is also in POSIX, but only since the 2008 standard, and
thus is not widespread.
The solution is using avlibc (libavutil, by its official name), which
handles the unportable details for us, mostly. We avoid some pain.
2014-11-26 20:21:56 +00:00
|
|
|
filename, mp_strerror(errno));
|
2013-08-22 16:08:46 +00:00
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
struct stat st;
|
|
|
|
if (fstat(fd, &st) == 0 && S_ISDIR(st.st_mode)) {
|
2014-01-08 20:46:42 +00:00
|
|
|
MP_ERR(stream, "File is a directory: '%s'\n", filename);
|
2013-08-22 16:08:46 +00:00
|
|
|
close(fd);
|
|
|
|
return STREAM_ERROR;
|
|
|
|
}
|
|
|
|
priv->fd = fd;
|
|
|
|
priv->close = true;
|
|
|
|
}
|
2003-04-02 16:25:07 +00:00
|
|
|
|
2014-05-24 12:06:18 +00:00
|
|
|
off_t len = lseek(fd, 0, SEEK_END);
|
2013-08-22 16:08:46 +00:00
|
|
|
lseek(fd, 0, SEEK_SET);
|
2014-05-24 12:06:18 +00:00
|
|
|
if (len != (off_t)-1) {
|
2013-08-22 16:08:46 +00:00
|
|
|
stream->seek = seek;
|
2014-05-24 12:04:09 +00:00
|
|
|
stream->seekable = true;
|
2013-08-22 16:08:46 +00:00
|
|
|
}
|
|
|
|
|
2014-05-24 12:06:18 +00:00
|
|
|
stream->type = STREAMTYPE_FILE;
|
|
|
|
stream->fast_skip = true;
|
2013-08-22 16:08:46 +00:00
|
|
|
stream->fill_buffer = fill_buffer;
|
|
|
|
stream->write_buffer = write_buffer;
|
|
|
|
stream->control = control;
|
|
|
|
stream->read_chunk = 64 * 1024;
|
|
|
|
stream->close = s_close;
|
|
|
|
|
2014-02-17 11:51:38 +00:00
|
|
|
if (check_stream_network(stream))
|
|
|
|
stream->streaming = true;
|
|
|
|
|
2013-08-22 16:08:46 +00:00
|
|
|
return STREAM_OK;
|
2003-04-02 16:25:07 +00:00
|
|
|
}
|
|
|
|
|
2007-12-02 13:22:53 +00:00
|
|
|
const stream_info_t stream_info_file = {
|
stream: fix url_options field, make protocols field not fixed length
The way the url_options field was handled was not entirely sane: it's
actually a flexible array member, so it points to garbage for streams
which do not initialize this member (it just points to the data right
after the struct, which is garbage in theory and practice). This was
not actually a problem, since the field is only used if priv_size is
set (due to how this stuff is used). But it doesn't allow setting
priv_size only, which might be useful in some cases.
Also, make the protocols array not a fixed size array. Most stream
implementations have only 1 protocol prefix, but stream_lavf.c has
over 10 (whitelists ffmpeg protocols). The high size of the fixed
size protocol array wastes space, and it is _still_ annoying to
add new prefixes to stream_lavf (have to bump the maximum length),
so make it arbitrary length.
The two changes (plus some more cosmetic changes) arte conflated into
one, because it was annoying going over all the stream implementations.
2013-08-25 20:49:27 +00:00
|
|
|
.name = "file",
|
|
|
|
.open = open_f,
|
2014-06-10 21:56:05 +00:00
|
|
|
.protocols = (const char*const[]){ "file", "", NULL },
|
2014-05-24 12:06:13 +00:00
|
|
|
.can_write = true,
|
2014-08-31 17:49:39 +00:00
|
|
|
.is_safe = true,
|
2003-04-02 16:25:07 +00:00
|
|
|
};
|