FileDescriptor.cxx 6.84 KB
Newer Older
1
/*
2
 * Copyright 2012-2020 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 <stdexcept>
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 177 178 179 180 181 182 183
#ifdef _WIN32

void
FileDescriptor::SetBinaryMode() noexcept
{
	_setmode(fd, _O_BINARY);
}

#else // !_WIN32
184

185 186 187 188
bool
FileDescriptor::CreatePipeNonBlock(FileDescriptor &r,
				   FileDescriptor &w) noexcept
{
189
#ifdef __linux__
190
	return CreatePipe(r, w, O_CLOEXEC|O_NONBLOCK);
191
#else
192
	if (!CreatePipe(r, w))
193 194 195 196 197
		return false;

	r.SetNonBlocking();
	w.SetNonBlocking();
	return true;
198
#endif
199 200
}

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

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

void
211
FileDescriptor::SetBlocking() noexcept
212 213 214 215 216 217 218
{
	assert(IsDefined());

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

219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
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);
}

237
bool
238
FileDescriptor::CheckDuplicate(FileDescriptor new_fd) noexcept
239
{
240
	if (*this == new_fd) {
241 242 243 244 245 246
		DisableCloseOnExec();
		return true;
	} else
		return Duplicate(new_fd);
}

247 248
#endif

249
#ifdef __linux__
250 251

bool
252
FileDescriptor::CreateEventFD(unsigned initval) noexcept
253 254 255 256 257 258
{
	fd = ::eventfd(initval, EFD_NONBLOCK|EFD_CLOEXEC);
	return fd >= 0;
}

bool
259
FileDescriptor::CreateSignalFD(const sigset_t *mask) noexcept
260 261 262 263 264 265 266 267 268 269
{
	int new_fd = ::signalfd(fd, mask, SFD_NONBLOCK|SFD_CLOEXEC);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

bool
270
FileDescriptor::CreateInotify() noexcept
271 272 273 274 275 276 277 278 279 280 281 282
{
	int new_fd = inotify_init1(IN_CLOEXEC|IN_NONBLOCK);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

#endif

bool
283
FileDescriptor::Rewind() noexcept
284 285 286 287 288 289 290
{
	assert(IsDefined());

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

off_t
291
FileDescriptor::GetSize() const noexcept
292 293 294 295 296 297 298
{
	struct stat st;
	return ::fstat(fd, &st) >= 0
		? (long)st.st_size
		: -1;
}

299
void
300
FileDescriptor::FullRead(void *_buffer, std::size_t length)
301
{
302
	auto buffer = (std::byte *)_buffer;
303 304 305 306 307 308 309 310 311 312 313 314 315 316

	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;
	}
}

317
void
318
FileDescriptor::FullWrite(const void *_buffer, std::size_t length)
319
{
320
	auto buffer = (const std::byte *)_buffer;
321 322 323 324 325 326 327 328 329 330 331 332 333 334

	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;
	}
}

335
#ifndef _WIN32
336 337

int
338
FileDescriptor::Poll(short events, int timeout) const noexcept
339 340 341 342 343 344 345 346 347 348 349 350 351
{
	assert(IsDefined());

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

int
352
FileDescriptor::WaitReadable(int timeout) const noexcept
353 354 355 356 357
{
	return Poll(POLLIN, timeout);
}

int
358
FileDescriptor::WaitWritable(int timeout) const noexcept
359 360 361 362
{
	return Poll(POLLOUT, timeout);
}

363 364 365 366 367 368
bool
FileDescriptor::IsReadyForWriting() const noexcept
{
	return WaitWritable(0) > 0;
}

369
#endif