FileDescriptor.cxx 5.87 KB
Newer Older
1
/*
2
 * Copyright 2012-2018 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 31
 *
 * 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"

32
#include <assert.h>
33 34 35
#include <sys/stat.h>
#include <fcntl.h>

36
#ifndef _WIN32
37 38 39
#include <poll.h>
#endif

40
#ifdef __linux__
41 42 43 44 45 46 47 48 49 50 51 52 53
#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

54 55 56 57 58 59 60 61
#ifndef _WIN32

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

62 63 64 65 66 67 68 69 70 71 72 73 74 75
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);
}

76 77
#endif

78
#ifdef __linux__
79 80 81 82 83 84 85 86 87 88 89

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

90
bool
91
FileDescriptor::Open(const char *pathname, int flags, mode_t mode) noexcept
92
{
93
	fd = ::open(pathname, flags | O_NOCTTY | O_CLOEXEC, mode);
94 95 96
	return IsDefined();
}

97 98 99 100 101 102 103 104 105 106 107
#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

108
bool
109
FileDescriptor::OpenReadOnly(const char *pathname) noexcept
110
{
111
	return Open(pathname, O_RDONLY);
112 113
}

114
#ifndef _WIN32
115 116

bool
117
FileDescriptor::OpenNonBlocking(const char *pathname) noexcept
118
{
119
	return Open(pathname, O_RDWR | O_NONBLOCK);
120 121
}

122 123
#endif

124 125
#ifdef __linux__

126
bool
127 128
FileDescriptor::CreatePipe(FileDescriptor &r, FileDescriptor &w,
			   int flags) noexcept
129 130
{
	int fds[2];
131 132 133 134 135 136 137 138
	const int result = pipe2(fds, flags);
	if (result < 0)
		return false;

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

140 141 142 143 144
#endif

bool
FileDescriptor::CreatePipe(FileDescriptor &r, FileDescriptor &w) noexcept
{
145
#ifdef __linux__
146 147 148 149 150
	return CreatePipe(r, w, O_CLOEXEC);
#else
	int fds[2];

#ifdef _WIN32
151
	const int result = _pipe(fds, 512, _O_BINARY);
152 153 154 155 156 157 158 159 160 161
#else
	const int result = pipe(fds);
#endif

	if (result < 0)
		return false;

	r = FileDescriptor(fds[0]);
	w = FileDescriptor(fds[1]);
	return true;
162
#endif
163 164
}

165 166
#ifndef _WIN32

167 168 169 170
bool
FileDescriptor::CreatePipeNonBlock(FileDescriptor &r,
				   FileDescriptor &w) noexcept
{
171
#ifdef __linux__
172
	return CreatePipe(r, w, O_CLOEXEC|O_NONBLOCK);
173
#else
174
	if (!CreatePipe(r, w))
175 176 177 178 179
		return false;

	r.SetNonBlocking();
	w.SetNonBlocking();
	return true;
180
#endif
181 182
}

183
void
184
FileDescriptor::SetNonBlocking() noexcept
185 186 187 188 189 190 191 192
{
	assert(IsDefined());

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

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

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

201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
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);
}

219
bool
220
FileDescriptor::CheckDuplicate(FileDescriptor new_fd) noexcept
221
{
222
	if (*this == new_fd) {
223 224 225 226 227 228
		DisableCloseOnExec();
		return true;
	} else
		return Duplicate(new_fd);
}

229 230
#endif

231
#ifdef __linux__
232 233

bool
234
FileDescriptor::CreateEventFD(unsigned initval) noexcept
235 236 237 238 239 240
{
	fd = ::eventfd(initval, EFD_NONBLOCK|EFD_CLOEXEC);
	return fd >= 0;
}

bool
241
FileDescriptor::CreateSignalFD(const sigset_t *mask) noexcept
242 243 244 245 246 247 248 249 250 251
{
	int new_fd = ::signalfd(fd, mask, SFD_NONBLOCK|SFD_CLOEXEC);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

bool
252
FileDescriptor::CreateInotify() noexcept
253 254 255 256 257 258 259 260 261 262 263 264
{
	int new_fd = inotify_init1(IN_CLOEXEC|IN_NONBLOCK);
	if (new_fd < 0)
		return false;

	fd = new_fd;
	return true;
}

#endif

bool
265
FileDescriptor::Rewind() noexcept
266 267 268 269 270 271 272
{
	assert(IsDefined());

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

off_t
273
FileDescriptor::GetSize() const noexcept
274 275 276 277 278 279 280
{
	struct stat st;
	return ::fstat(fd, &st) >= 0
		? (long)st.st_size
		: -1;
}

281
#ifndef _WIN32
282 283

int
284
FileDescriptor::Poll(short events, int timeout) const noexcept
285 286 287 288 289 290 291 292 293 294 295 296 297
{
	assert(IsDefined());

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

int
298
FileDescriptor::WaitReadable(int timeout) const noexcept
299 300 301 302 303
{
	return Poll(POLLIN, timeout);
}

int
304
FileDescriptor::WaitWritable(int timeout) const noexcept
305 306 307 308
{
	return Poll(POLLOUT, timeout);
}

309 310 311 312 313 314
bool
FileDescriptor::IsReadyForWriting() const noexcept
{
	return WaitWritable(0) > 0;
}

315
#endif