/src/glib/gio/gunixinputstream.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* GIO - GLib Input, Output and Streaming Library |
2 | | * |
3 | | * Copyright (C) 2006-2007 Red Hat, Inc. |
4 | | * |
5 | | * SPDX-License-Identifier: LGPL-2.1-or-later |
6 | | * |
7 | | * This library is free software; you can redistribute it and/or |
8 | | * modify it under the terms of the GNU Lesser General Public |
9 | | * License as published by the Free Software Foundation; either |
10 | | * version 2.1 of the License, or (at your option) any later version. |
11 | | * |
12 | | * This library is distributed in the hope that it will be useful, |
13 | | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 | | * Lesser General Public License for more details. |
16 | | * |
17 | | * You should have received a copy of the GNU Lesser General |
18 | | * Public License along with this library; if not, see <http://www.gnu.org/licenses/>. |
19 | | * |
20 | | * Author: Alexander Larsson <alexl@redhat.com> |
21 | | */ |
22 | | |
23 | | #include "config.h" |
24 | | |
25 | | #include <unistd.h> |
26 | | #include <errno.h> |
27 | | #include <stdio.h> |
28 | | |
29 | | #include <glib.h> |
30 | | #include <glib/gstdio.h> |
31 | | #include <glib/glib-unix.h> |
32 | | #include "gioerror.h" |
33 | | #include "gunixinputstream.h" |
34 | | #include "gcancellable.h" |
35 | | #include "gasynchelper.h" |
36 | | #include "gfiledescriptorbased.h" |
37 | | #include "glibintl.h" |
38 | | #include "giounix-private.h" |
39 | | |
40 | | |
41 | | /** |
42 | | * SECTION:gunixinputstream |
43 | | * @short_description: Streaming input operations for UNIX file descriptors |
44 | | * @include: gio/gunixinputstream.h |
45 | | * @see_also: #GInputStream |
46 | | * |
47 | | * #GUnixInputStream implements #GInputStream for reading from a UNIX |
48 | | * file descriptor, including asynchronous operations. (If the file |
49 | | * descriptor refers to a socket or pipe, this will use poll() to do |
50 | | * asynchronous I/O. If it refers to a regular file, it will fall back |
51 | | * to doing asynchronous I/O in another thread.) |
52 | | * |
53 | | * Note that `<gio/gunixinputstream.h>` belongs to the UNIX-specific GIO |
54 | | * interfaces, thus you have to use the `gio-unix-2.0.pc` pkg-config |
55 | | * file when using it. |
56 | | */ |
57 | | |
58 | | enum { |
59 | | PROP_0, |
60 | | PROP_FD, |
61 | | PROP_CLOSE_FD |
62 | | }; |
63 | | |
64 | | struct _GUnixInputStreamPrivate { |
65 | | int fd; |
66 | | guint close_fd : 1; |
67 | | guint can_poll : 1; |
68 | | }; |
69 | | |
70 | | static void g_unix_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface); |
71 | | static void g_unix_input_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface); |
72 | | |
73 | | G_DEFINE_TYPE_WITH_CODE (GUnixInputStream, g_unix_input_stream, G_TYPE_INPUT_STREAM, |
74 | | G_ADD_PRIVATE (GUnixInputStream) |
75 | | G_IMPLEMENT_INTERFACE (G_TYPE_POLLABLE_INPUT_STREAM, |
76 | | g_unix_input_stream_pollable_iface_init) |
77 | | G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED, |
78 | | g_unix_input_stream_file_descriptor_based_iface_init) |
79 | | ) |
80 | | |
81 | | static void g_unix_input_stream_set_property (GObject *object, |
82 | | guint prop_id, |
83 | | const GValue *value, |
84 | | GParamSpec *pspec); |
85 | | static void g_unix_input_stream_get_property (GObject *object, |
86 | | guint prop_id, |
87 | | GValue *value, |
88 | | GParamSpec *pspec); |
89 | | static gssize g_unix_input_stream_read (GInputStream *stream, |
90 | | void *buffer, |
91 | | gsize count, |
92 | | GCancellable *cancellable, |
93 | | GError **error); |
94 | | static gboolean g_unix_input_stream_close (GInputStream *stream, |
95 | | GCancellable *cancellable, |
96 | | GError **error); |
97 | | static void g_unix_input_stream_skip_async (GInputStream *stream, |
98 | | gsize count, |
99 | | int io_priority, |
100 | | GCancellable *cancellable, |
101 | | GAsyncReadyCallback callback, |
102 | | gpointer data); |
103 | | static gssize g_unix_input_stream_skip_finish (GInputStream *stream, |
104 | | GAsyncResult *result, |
105 | | GError **error); |
106 | | |
107 | | static gboolean g_unix_input_stream_pollable_can_poll (GPollableInputStream *stream); |
108 | | static gboolean g_unix_input_stream_pollable_is_readable (GPollableInputStream *stream); |
109 | | static GSource *g_unix_input_stream_pollable_create_source (GPollableInputStream *stream, |
110 | | GCancellable *cancellable); |
111 | | |
112 | | static void |
113 | | g_unix_input_stream_class_init (GUnixInputStreamClass *klass) |
114 | 0 | { |
115 | 0 | GObjectClass *gobject_class = G_OBJECT_CLASS (klass); |
116 | 0 | GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass); |
117 | |
|
118 | 0 | gobject_class->get_property = g_unix_input_stream_get_property; |
119 | 0 | gobject_class->set_property = g_unix_input_stream_set_property; |
120 | |
|
121 | 0 | stream_class->read_fn = g_unix_input_stream_read; |
122 | 0 | stream_class->close_fn = g_unix_input_stream_close; |
123 | 0 | if (0) |
124 | 0 | { |
125 | | /* TODO: Implement instead of using fallbacks */ |
126 | 0 | stream_class->skip_async = g_unix_input_stream_skip_async; |
127 | 0 | stream_class->skip_finish = g_unix_input_stream_skip_finish; |
128 | 0 | } |
129 | | |
130 | | /** |
131 | | * GUnixInputStream:fd: |
132 | | * |
133 | | * The file descriptor that the stream reads from. |
134 | | * |
135 | | * Since: 2.20 |
136 | | */ |
137 | 0 | g_object_class_install_property (gobject_class, |
138 | 0 | PROP_FD, |
139 | 0 | g_param_spec_int ("fd", |
140 | 0 | P_("File descriptor"), |
141 | 0 | P_("The file descriptor to read from"), |
142 | 0 | G_MININT, G_MAXINT, -1, |
143 | 0 | G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); |
144 | | |
145 | | /** |
146 | | * GUnixInputStream:close-fd: |
147 | | * |
148 | | * Whether to close the file descriptor when the stream is closed. |
149 | | * |
150 | | * Since: 2.20 |
151 | | */ |
152 | 0 | g_object_class_install_property (gobject_class, |
153 | 0 | PROP_CLOSE_FD, |
154 | 0 | g_param_spec_boolean ("close-fd", |
155 | 0 | P_("Close file descriptor"), |
156 | 0 | P_("Whether to close the file descriptor when the stream is closed"), |
157 | 0 | TRUE, |
158 | 0 | G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)); |
159 | 0 | } |
160 | | |
161 | | static void |
162 | | g_unix_input_stream_pollable_iface_init (GPollableInputStreamInterface *iface) |
163 | 0 | { |
164 | 0 | iface->can_poll = g_unix_input_stream_pollable_can_poll; |
165 | 0 | iface->is_readable = g_unix_input_stream_pollable_is_readable; |
166 | 0 | iface->create_source = g_unix_input_stream_pollable_create_source; |
167 | 0 | } |
168 | | |
169 | | static void |
170 | | g_unix_input_stream_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface) |
171 | 0 | { |
172 | 0 | iface->get_fd = (int (*) (GFileDescriptorBased *))g_unix_input_stream_get_fd; |
173 | 0 | } |
174 | | |
175 | | static void |
176 | | g_unix_input_stream_set_property (GObject *object, |
177 | | guint prop_id, |
178 | | const GValue *value, |
179 | | GParamSpec *pspec) |
180 | 0 | { |
181 | 0 | GUnixInputStream *unix_stream; |
182 | | |
183 | 0 | unix_stream = G_UNIX_INPUT_STREAM (object); |
184 | |
|
185 | 0 | switch (prop_id) |
186 | 0 | { |
187 | 0 | case PROP_FD: |
188 | 0 | unix_stream->priv->fd = g_value_get_int (value); |
189 | 0 | unix_stream->priv->can_poll = _g_fd_is_pollable (unix_stream->priv->fd); |
190 | 0 | break; |
191 | 0 | case PROP_CLOSE_FD: |
192 | 0 | unix_stream->priv->close_fd = g_value_get_boolean (value); |
193 | 0 | break; |
194 | 0 | default: |
195 | 0 | G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); |
196 | 0 | break; |
197 | 0 | } |
198 | 0 | } |
199 | | |
200 | | static void |
201 | | g_unix_input_stream_get_property (GObject *object, |
202 | | guint prop_id, |
203 | | GValue *value, |
204 | | GParamSpec *pspec) |
205 | 0 | { |
206 | 0 | GUnixInputStream *unix_stream; |
207 | |
|
208 | 0 | unix_stream = G_UNIX_INPUT_STREAM (object); |
209 | |
|
210 | 0 | switch (prop_id) |
211 | 0 | { |
212 | 0 | case PROP_FD: |
213 | 0 | g_value_set_int (value, unix_stream->priv->fd); |
214 | 0 | break; |
215 | 0 | case PROP_CLOSE_FD: |
216 | 0 | g_value_set_boolean (value, unix_stream->priv->close_fd); |
217 | 0 | break; |
218 | 0 | default: |
219 | 0 | G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); |
220 | 0 | } |
221 | 0 | } |
222 | | |
223 | | static void |
224 | | g_unix_input_stream_init (GUnixInputStream *unix_stream) |
225 | 0 | { |
226 | 0 | unix_stream->priv = g_unix_input_stream_get_instance_private (unix_stream); |
227 | 0 | unix_stream->priv->fd = -1; |
228 | 0 | unix_stream->priv->close_fd = TRUE; |
229 | 0 | } |
230 | | |
231 | | /** |
232 | | * g_unix_input_stream_new: |
233 | | * @fd: a UNIX file descriptor |
234 | | * @close_fd: %TRUE to close the file descriptor when done |
235 | | * |
236 | | * Creates a new #GUnixInputStream for the given @fd. |
237 | | * |
238 | | * If @close_fd is %TRUE, the file descriptor will be closed |
239 | | * when the stream is closed. |
240 | | * |
241 | | * Returns: a new #GUnixInputStream |
242 | | **/ |
243 | | GInputStream * |
244 | | g_unix_input_stream_new (gint fd, |
245 | | gboolean close_fd) |
246 | 0 | { |
247 | 0 | GUnixInputStream *stream; |
248 | |
|
249 | 0 | g_return_val_if_fail (fd != -1, NULL); |
250 | | |
251 | 0 | stream = g_object_new (G_TYPE_UNIX_INPUT_STREAM, |
252 | 0 | "fd", fd, |
253 | 0 | "close-fd", close_fd, |
254 | 0 | NULL); |
255 | |
|
256 | 0 | return G_INPUT_STREAM (stream); |
257 | 0 | } |
258 | | |
259 | | /** |
260 | | * g_unix_input_stream_set_close_fd: |
261 | | * @stream: a #GUnixInputStream |
262 | | * @close_fd: %TRUE to close the file descriptor when done |
263 | | * |
264 | | * Sets whether the file descriptor of @stream shall be closed |
265 | | * when the stream is closed. |
266 | | * |
267 | | * Since: 2.20 |
268 | | */ |
269 | | void |
270 | | g_unix_input_stream_set_close_fd (GUnixInputStream *stream, |
271 | | gboolean close_fd) |
272 | 0 | { |
273 | 0 | g_return_if_fail (G_IS_UNIX_INPUT_STREAM (stream)); |
274 | | |
275 | 0 | close_fd = close_fd != FALSE; |
276 | 0 | if (stream->priv->close_fd != close_fd) |
277 | 0 | { |
278 | 0 | stream->priv->close_fd = close_fd; |
279 | 0 | g_object_notify (G_OBJECT (stream), "close-fd"); |
280 | 0 | } |
281 | 0 | } |
282 | | |
283 | | /** |
284 | | * g_unix_input_stream_get_close_fd: |
285 | | * @stream: a #GUnixInputStream |
286 | | * |
287 | | * Returns whether the file descriptor of @stream will be |
288 | | * closed when the stream is closed. |
289 | | * |
290 | | * Returns: %TRUE if the file descriptor is closed when done |
291 | | * |
292 | | * Since: 2.20 |
293 | | */ |
294 | | gboolean |
295 | | g_unix_input_stream_get_close_fd (GUnixInputStream *stream) |
296 | 0 | { |
297 | 0 | g_return_val_if_fail (G_IS_UNIX_INPUT_STREAM (stream), FALSE); |
298 | | |
299 | 0 | return stream->priv->close_fd; |
300 | 0 | } |
301 | | |
302 | | /** |
303 | | * g_unix_input_stream_get_fd: |
304 | | * @stream: a #GUnixInputStream |
305 | | * |
306 | | * Return the UNIX file descriptor that the stream reads from. |
307 | | * |
308 | | * Returns: The file descriptor of @stream |
309 | | * |
310 | | * Since: 2.20 |
311 | | */ |
312 | | gint |
313 | | g_unix_input_stream_get_fd (GUnixInputStream *stream) |
314 | 0 | { |
315 | 0 | g_return_val_if_fail (G_IS_UNIX_INPUT_STREAM (stream), -1); |
316 | | |
317 | 0 | return stream->priv->fd; |
318 | 0 | } |
319 | | |
320 | | static gssize |
321 | | g_unix_input_stream_read (GInputStream *stream, |
322 | | void *buffer, |
323 | | gsize count, |
324 | | GCancellable *cancellable, |
325 | | GError **error) |
326 | 0 | { |
327 | 0 | GUnixInputStream *unix_stream; |
328 | 0 | gssize res = -1; |
329 | 0 | GPollFD poll_fds[2]; |
330 | 0 | int nfds; |
331 | 0 | int poll_ret; |
332 | |
|
333 | 0 | unix_stream = G_UNIX_INPUT_STREAM (stream); |
334 | |
|
335 | 0 | poll_fds[0].fd = unix_stream->priv->fd; |
336 | 0 | poll_fds[0].events = G_IO_IN; |
337 | 0 | if (unix_stream->priv->can_poll && |
338 | 0 | g_cancellable_make_pollfd (cancellable, &poll_fds[1])) |
339 | 0 | nfds = 2; |
340 | 0 | else |
341 | 0 | nfds = 1; |
342 | |
|
343 | 0 | while (1) |
344 | 0 | { |
345 | 0 | int errsv; |
346 | |
|
347 | 0 | poll_fds[0].revents = poll_fds[1].revents = 0; |
348 | 0 | do |
349 | 0 | { |
350 | 0 | poll_ret = g_poll (poll_fds, nfds, -1); |
351 | 0 | errsv = errno; |
352 | 0 | } |
353 | 0 | while (poll_ret == -1 && errsv == EINTR); |
354 | |
|
355 | 0 | if (poll_ret == -1) |
356 | 0 | { |
357 | 0 | g_set_error (error, G_IO_ERROR, |
358 | 0 | g_io_error_from_errno (errsv), |
359 | 0 | _("Error reading from file descriptor: %s"), |
360 | 0 | g_strerror (errsv)); |
361 | 0 | break; |
362 | 0 | } |
363 | | |
364 | 0 | if (g_cancellable_set_error_if_cancelled (cancellable, error)) |
365 | 0 | break; |
366 | | |
367 | 0 | if (!poll_fds[0].revents) |
368 | 0 | continue; |
369 | | |
370 | 0 | res = read (unix_stream->priv->fd, buffer, count); |
371 | 0 | if (res == -1) |
372 | 0 | { |
373 | 0 | int errsv = errno; |
374 | |
|
375 | 0 | if (errsv == EINTR || errsv == EAGAIN) |
376 | 0 | continue; |
377 | | |
378 | 0 | g_set_error (error, G_IO_ERROR, |
379 | 0 | g_io_error_from_errno (errsv), |
380 | 0 | _("Error reading from file descriptor: %s"), |
381 | 0 | g_strerror (errsv)); |
382 | 0 | } |
383 | | |
384 | 0 | break; |
385 | 0 | } |
386 | |
|
387 | 0 | if (nfds == 2) |
388 | 0 | g_cancellable_release_fd (cancellable); |
389 | 0 | return res; |
390 | 0 | } |
391 | | |
392 | | static gboolean |
393 | | g_unix_input_stream_close (GInputStream *stream, |
394 | | GCancellable *cancellable, |
395 | | GError **error) |
396 | 0 | { |
397 | 0 | GUnixInputStream *unix_stream; |
398 | 0 | int res; |
399 | |
|
400 | 0 | unix_stream = G_UNIX_INPUT_STREAM (stream); |
401 | |
|
402 | 0 | if (!unix_stream->priv->close_fd) |
403 | 0 | return TRUE; |
404 | | |
405 | | /* This might block during the close. Doesn't seem to be a way to avoid it though. */ |
406 | 0 | res = close (unix_stream->priv->fd); |
407 | 0 | if (res == -1) |
408 | 0 | { |
409 | 0 | int errsv = errno; |
410 | |
|
411 | 0 | g_set_error (error, G_IO_ERROR, |
412 | 0 | g_io_error_from_errno (errsv), |
413 | 0 | _("Error closing file descriptor: %s"), |
414 | 0 | g_strerror (errsv)); |
415 | 0 | } |
416 | | |
417 | 0 | return res != -1; |
418 | 0 | } |
419 | | |
420 | | static void |
421 | | g_unix_input_stream_skip_async (GInputStream *stream, |
422 | | gsize count, |
423 | | int io_priority, |
424 | | GCancellable *cancellable, |
425 | | GAsyncReadyCallback callback, |
426 | | gpointer data) |
427 | 0 | { |
428 | 0 | g_warn_if_reached (); |
429 | 0 | /* TODO: Not implemented */ |
430 | 0 | } |
431 | | |
432 | | static gssize |
433 | | g_unix_input_stream_skip_finish (GInputStream *stream, |
434 | | GAsyncResult *result, |
435 | | GError **error) |
436 | 0 | { |
437 | 0 | g_warn_if_reached (); |
438 | 0 | return 0; |
439 | 0 | /* TODO: Not implemented */ |
440 | 0 | } |
441 | | |
442 | | static gboolean |
443 | | g_unix_input_stream_pollable_can_poll (GPollableInputStream *stream) |
444 | 0 | { |
445 | 0 | return G_UNIX_INPUT_STREAM (stream)->priv->can_poll; |
446 | 0 | } |
447 | | |
448 | | static gboolean |
449 | | g_unix_input_stream_pollable_is_readable (GPollableInputStream *stream) |
450 | 0 | { |
451 | 0 | GUnixInputStream *unix_stream = G_UNIX_INPUT_STREAM (stream); |
452 | 0 | GPollFD poll_fd; |
453 | 0 | gint result; |
454 | |
|
455 | 0 | poll_fd.fd = unix_stream->priv->fd; |
456 | 0 | poll_fd.events = G_IO_IN; |
457 | 0 | poll_fd.revents = 0; |
458 | |
|
459 | 0 | do |
460 | 0 | result = g_poll (&poll_fd, 1, 0); |
461 | 0 | while (result == -1 && errno == EINTR); |
462 | |
|
463 | 0 | return poll_fd.revents != 0; |
464 | 0 | } |
465 | | |
466 | | static GSource * |
467 | | g_unix_input_stream_pollable_create_source (GPollableInputStream *stream, |
468 | | GCancellable *cancellable) |
469 | 0 | { |
470 | 0 | GUnixInputStream *unix_stream = G_UNIX_INPUT_STREAM (stream); |
471 | 0 | GSource *inner_source, *cancellable_source, *pollable_source; |
472 | |
|
473 | 0 | pollable_source = g_pollable_source_new (G_OBJECT (stream)); |
474 | |
|
475 | 0 | inner_source = g_unix_fd_source_new (unix_stream->priv->fd, G_IO_IN); |
476 | 0 | g_source_set_dummy_callback (inner_source); |
477 | 0 | g_source_add_child_source (pollable_source, inner_source); |
478 | 0 | g_source_unref (inner_source); |
479 | |
|
480 | 0 | if (cancellable) |
481 | 0 | { |
482 | 0 | cancellable_source = g_cancellable_source_new (cancellable); |
483 | 0 | g_source_set_dummy_callback (cancellable_source); |
484 | 0 | g_source_add_child_source (pollable_source, cancellable_source); |
485 | 0 | g_source_unref (cancellable_source); |
486 | 0 | } |
487 | |
|
488 | 0 | return pollable_source; |
489 | 0 | } |