FileDescriptor.cxx 6.73 KB
Newer Older
1
/*
2
 * Copyright 2012-2019 Max Kellermann <max.kellermann@gmail.com>
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
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * - Redistributions of source code must retain the above copyright
 * notice, this list of conditions and the following disclaimer.
 *
 * - 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
 * FOUNDATION 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 "FileDescriptor.hxx"
31
#include "system/Error.hxx"
32

33
#include <cassert>
34
#include <cstdint>
35

36 37 38
#include <sys/stat.h>
#include <fcntl.h>

39
#ifndef _WIN32
40 41 42
#include <poll.h>
#endif

43
#ifdef __linux__
44 45 46 47 48 49 50 51 52 53 54 55 56
#include <sys/eventfd.h>
#include <sys/signalfd.h>
#include <sys/inotify.h>
#endif

#ifndef O_NOCTTY
#define O_NOCTTY 0
#endif

#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif

57 58 59 60 61 62 63 64
#ifndef _WIN32

bool
FileDescriptor::IsValid() const noexcept
{
	return IsDefined() && fcntl(fd, F_GETFL) >= 0;
}

65 66 67 68 69 70 71
bool
FileDescriptor::IsRegularFile() const noexcept
{
	struct stat st;
	return IsDefined() && fstat(fd, &st) == 0 && S_ISREG(st.st_mode);
}

72 73 74 75 76 77 78 79 80 81 82 83 84 85
bool
FileDescriptor::IsPipe() const noexcept
{
	struct stat st;
	return IsDefined() && fstat(fd, &st) == 0 && S_ISFIFO(st.st_mode);
}

bool
FileDescriptor::IsSocket() const noexcept
{
	struct stat st;
	return IsDefined() && fstat(fd, &st) == 0 && S_ISSOCK(st.st_mode);
}

86 87
#endif

88
#ifdef __linux__
89 90 91 92 93 94 95 96 97 98 99

bool
FileDescriptor::Open(FileDescriptor dir, const char *pathname,
		     int flags, mode_t mode) noexcept
{
	fd = ::openat(dir.Get(), pathname, flags | O_NOCTTY | O_CLOEXEC, mode);
	return IsDefined();
}

#endif

100
bool
101
FileDescriptor::Open(const char *pathname, int flags, mode_t mode) noexcept
102
{
103
	fd = ::open(pathname, flags | O_NOCTTY | O_CLOEXEC, mode);
104 105 106
	return IsDefined();
}

107 108 109 110 111 112 113 114 115 116 117
#ifdef _WIN32

bool
FileDescriptor::Open(const wchar_t *pathname, int flags, mode_t mode) noexcept
{
	fd = ::_wopen(pathname, flags | O_NOCTTY | O_CLOEXEC, mode);
	return IsDefined();
}

#endif

118
bool
119
FileDescriptor::OpenReadOnly(const char *pathname) noexcept
120
{
121
	return Open(pathname, O_RDONLY);
122 123
}

124
#ifndef _WIN32
125 126

bool
127
FileDescriptor::OpenNonBlocking(const char *pathname) noexcept
128
{
129
	return Open(pathname, O_RDWR | O_NONBLOCK);
130 131
}

132 133
#endif

134 135
#ifdef __linux__

136
bool
137 138
FileDescriptor::CreatePipe(FileDescriptor &r, FileDescriptor &w,
			   int flags) noexcept
139 140
{
	int fds[2];
141 142 143 144 145 146 147 148
	const int result = pipe2(fds, flags);
	if (result < 0)
		return false;

	r = FileDescriptor(fds[0]);
	w = FileDescriptor(fds[1]);
	return true;
}
149

150 151 152 153 154
#endif

bool
FileDescriptor::CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept
{
155
#ifdef __linux__
156 157 158 159 160
	return CreatePipe(r, w, O_CLOEXEC);
#else
	int fds[2];

#ifdef _WIN32
161
	const int result = _pipe(fds, 512, _O_BINARY);
162 163 164 165 166 167 168 169 170 171
#else
	const int result = pipe(fds);
#endif

	if (result < 0)
		return false;

	r = FileDescriptor(fds[0]);
	w = FileDescriptor(fds[1]);
	return true;
172
#endif
173 174
}

175 176
#ifndef _WIN32

177 178 179 180
bool
FileDescriptor::CreatePipeNonBlock(FileDescriptor &r,
				   FileDescriptor &w) noexcept
{
181
#ifdef __linux__
182
	return CreatePipe(r, w, O_CLOEXEC|O_NONBLOCK);
183
#else
184
	if (!CreatePipe(r, w))
185 186 187 188 189
		return false;

	r.SetNonBlocking();
	w.SetNonBlocking();
	return true;
190
#endif
191 192
}

193
void
194
FileDescriptor::SetNonBlocking() noexcept
195 196 197 198 199 200 201 202
{
	assert(IsDefined());

	int flags = fcntl(fd, F_GETFL);
	fcntl(fd, F_SETFL, flags | O_NONBLOCK);
}

void
203
FileDescriptor::SetBlocking() noexcept
204 205 206 207 208 209 210
{
	assert(IsDefined());

	int flags = fcntl(fd, F_GETFL);
	fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
}

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
void
FileDescriptor::EnableCloseOnExec() noexcept
{
	assert(IsDefined());

	const int old_flags = fcntl(fd, F_GETFD, 0);
	fcntl(fd, F_SETFD, old_flags | FD_CLOEXEC);
}

void
FileDescriptor::DisableCloseOnExec() noexcept
{
	assert(IsDefined());

	const int old_flags = fcntl(fd, F_GETFD, 0);
	fcntl(fd, F_SETFD, old_flags & ~FD_CLOEXEC);
}

229
bool
230
FileDescriptor::CheckDuplicate(FileDescriptor new_fd) noexcept
231
{
232
	if (*this == new_fd) {
233 234 235 236 237 238
		DisableCloseOnExec();
		return true;
	} else
		return Duplicate(new_fd);
}

239 240
#endif

241
#ifdef __linux__
242 243

bool
244
FileDescriptor::CreateEventFD(unsigned initval) noexcept
245 246 247 248 249 250
{
	fd = ::eventfd(initval, EFD_NONBLOCK|EFD_CLOEXEC);
	return fd >= 0;
}

bool
251
FileDescriptor::CreateSignalFD(const sigset_t *mask) noexcept
252 253 254 255 256 257 258 259 260 261
{
	int new_fd = ::signalfd(fd, mask, SFD_NONBLOCK|SFD_CLOEXEC);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

bool
262
FileDescriptor::CreateInotify() noexcept
263 264 265 266 267 268 269 270 271 272 273 274
{
	int new_fd = inotify_init1(IN_CLOEXEC|IN_NONBLOCK);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

#endif

bool
275
FileDescriptor::Rewind() noexcept
276 277 278 279 280 281 282
{
	assert(IsDefined());

	return lseek(fd, 0, SEEK_SET) == 0;
}

off_t
283
FileDescriptor::GetSize() const noexcept
284 285 286 287 288 289 290
{
	struct stat st;
	return ::fstat(fd, &st) >= 0
		? (long)st.st_size
		: -1;
}

291 292 293
void
FileDescriptor::FullRead(void *_buffer, size_t length)
{
Rosen Penev's avatar
Rosen Penev committed
294
	auto buffer = (uint8_t *)_buffer;
295 296 297 298 299 300 301 302 303 304 305 306 307 308

	while (length > 0) {
		ssize_t nbytes = Read(buffer, length);
		if (nbytes <= 0) {
			if (nbytes < 0)
				throw MakeErrno("Failed to read");
			throw std::runtime_error("Unexpected end of file");
		}

		buffer += nbytes;
		length -= nbytes;
	}
}

309 310 311
void
FileDescriptor::FullWrite(const void *_buffer, size_t length)
{
Rosen Penev's avatar
Rosen Penev committed
312
	auto buffer = (const uint8_t *)_buffer;
313 314 315 316 317 318 319 320 321 322 323 324 325 326

	while (length > 0) {
		ssize_t nbytes = Write(buffer, length);
		if (nbytes <= 0) {
			if (nbytes < 0)
				throw MakeErrno("Failed to write");
			throw std::runtime_error("Failed to write");
		}

		buffer += nbytes;
		length -= nbytes;
	}
}

327
#ifndef _WIN32
328 329

int
330
FileDescriptor::Poll(short events, int timeout) const noexcept
331 332 333 334 335 336 337 338 339 340 341 342 343
{
	assert(IsDefined());

	struct pollfd pfd;
	pfd.fd = fd;
	pfd.events = events;
	int result = poll(&pfd, 1, timeout);
	return result > 0
		? pfd.revents
		: result;
}

int
344
FileDescriptor::WaitReadable(int timeout) const noexcept
345 346 347 348 349
{
	return Poll(POLLIN, timeout);
}

int
350
FileDescriptor::WaitWritable(int timeout) const noexcept
351 352 353 354
{
	return Poll(POLLOUT, timeout);
}

355 356 357 358 359 360
bool
FileDescriptor::IsReadyForWriting() const noexcept
{
	return WaitWritable(0) > 0;
}

361
#endif