gio: Annotate GDBusObjectManagerClient signal appropriately
[glib.git] / gio / glocalfileoutputstream.c
blob76005716f829e1af560b24dff9d6bcf3913fb5e3
1 /* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright (C) 2006-2007 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
21 #include "config.h"
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <errno.h>
27 #include <string.h>
29 #include <glib.h>
30 #include <glib/gstdio.h>
31 #include "glibintl.h"
32 #include "gioerror.h"
33 #include "gcancellable.h"
34 #include "glocalfileoutputstream.h"
35 #include "gfileinfo.h"
36 #include "glocalfileinfo.h"
38 #ifdef G_OS_UNIX
39 #include <unistd.h>
40 #include "gfiledescriptorbased.h"
41 #endif
43 #ifdef G_OS_WIN32
44 #include <io.h>
45 #ifndef S_ISDIR
46 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
47 #endif
48 #ifndef S_ISREG
49 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
50 #endif
51 #endif
53 #ifndef O_BINARY
54 #define O_BINARY 0
55 #endif
57 struct _GLocalFileOutputStreamPrivate {
58 char *tmp_filename;
59 char *original_filename;
60 char *backup_filename;
61 char *etag;
62 guint sync_on_close : 1;
63 guint do_close : 1;
64 int fd;
67 #ifdef G_OS_UNIX
68 static void g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
69 #endif
71 #define g_local_file_output_stream_get_type _g_local_file_output_stream_get_type
72 #ifdef G_OS_UNIX
73 G_DEFINE_TYPE_WITH_CODE (GLocalFileOutputStream, g_local_file_output_stream, G_TYPE_FILE_OUTPUT_STREAM,
74 G_ADD_PRIVATE (GLocalFileOutputStream)
75 G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED,
76 g_file_descriptor_based_iface_init))
77 #else
78 G_DEFINE_TYPE_WITH_CODE (GLocalFileOutputStream, g_local_file_output_stream, G_TYPE_FILE_OUTPUT_STREAM,
79 G_ADD_PRIVATE (GLocalFileOutputStream))
80 #endif
83 /* Some of the file replacement code was based on the code from gedit,
84 * relicenced to LGPL with permissions from the authors.
87 #define BACKUP_EXTENSION "~"
89 static gssize g_local_file_output_stream_write (GOutputStream *stream,
90 const void *buffer,
91 gsize count,
92 GCancellable *cancellable,
93 GError **error);
94 static gboolean g_local_file_output_stream_close (GOutputStream *stream,
95 GCancellable *cancellable,
96 GError **error);
97 static GFileInfo *g_local_file_output_stream_query_info (GFileOutputStream *stream,
98 const char *attributes,
99 GCancellable *cancellable,
100 GError **error);
101 static char * g_local_file_output_stream_get_etag (GFileOutputStream *stream);
102 static goffset g_local_file_output_stream_tell (GFileOutputStream *stream);
103 static gboolean g_local_file_output_stream_can_seek (GFileOutputStream *stream);
104 static gboolean g_local_file_output_stream_seek (GFileOutputStream *stream,
105 goffset offset,
106 GSeekType type,
107 GCancellable *cancellable,
108 GError **error);
109 static gboolean g_local_file_output_stream_can_truncate (GFileOutputStream *stream);
110 static gboolean g_local_file_output_stream_truncate (GFileOutputStream *stream,
111 goffset size,
112 GCancellable *cancellable,
113 GError **error);
114 #ifdef G_OS_UNIX
115 static int g_local_file_output_stream_get_fd (GFileDescriptorBased *stream);
116 #endif
118 static void
119 g_local_file_output_stream_finalize (GObject *object)
121 GLocalFileOutputStream *file;
123 file = G_LOCAL_FILE_OUTPUT_STREAM (object);
125 g_free (file->priv->tmp_filename);
126 g_free (file->priv->original_filename);
127 g_free (file->priv->backup_filename);
128 g_free (file->priv->etag);
130 G_OBJECT_CLASS (g_local_file_output_stream_parent_class)->finalize (object);
133 static void
134 g_local_file_output_stream_class_init (GLocalFileOutputStreamClass *klass)
136 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
137 GOutputStreamClass *stream_class = G_OUTPUT_STREAM_CLASS (klass);
138 GFileOutputStreamClass *file_stream_class = G_FILE_OUTPUT_STREAM_CLASS (klass);
140 gobject_class->finalize = g_local_file_output_stream_finalize;
142 stream_class->write_fn = g_local_file_output_stream_write;
143 stream_class->close_fn = g_local_file_output_stream_close;
144 file_stream_class->query_info = g_local_file_output_stream_query_info;
145 file_stream_class->get_etag = g_local_file_output_stream_get_etag;
146 file_stream_class->tell = g_local_file_output_stream_tell;
147 file_stream_class->can_seek = g_local_file_output_stream_can_seek;
148 file_stream_class->seek = g_local_file_output_stream_seek;
149 file_stream_class->can_truncate = g_local_file_output_stream_can_truncate;
150 file_stream_class->truncate_fn = g_local_file_output_stream_truncate;
153 #ifdef G_OS_UNIX
154 static void
155 g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
157 iface->get_fd = g_local_file_output_stream_get_fd;
159 #endif
161 static void
162 g_local_file_output_stream_init (GLocalFileOutputStream *stream)
164 stream->priv = g_local_file_output_stream_get_instance_private (stream);
165 stream->priv->do_close = TRUE;
168 static gssize
169 g_local_file_output_stream_write (GOutputStream *stream,
170 const void *buffer,
171 gsize count,
172 GCancellable *cancellable,
173 GError **error)
175 GLocalFileOutputStream *file;
176 gssize res;
178 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
180 while (1)
182 if (g_cancellable_set_error_if_cancelled (cancellable, error))
183 return -1;
184 res = write (file->priv->fd, buffer, count);
185 if (res == -1)
187 int errsv = errno;
189 if (errsv == EINTR)
190 continue;
192 g_set_error (error, G_IO_ERROR,
193 g_io_error_from_errno (errsv),
194 _("Error writing to file: %s"),
195 g_strerror (errsv));
198 break;
201 return res;
204 void
205 _g_local_file_output_stream_set_do_close (GLocalFileOutputStream *out,
206 gboolean do_close)
208 out->priv->do_close = do_close;
211 gboolean
212 _g_local_file_output_stream_really_close (GLocalFileOutputStream *file,
213 GCancellable *cancellable,
214 GError **error)
216 GLocalFileStat final_stat;
218 #ifdef HAVE_FSYNC
219 if (file->priv->sync_on_close &&
220 fsync (file->priv->fd) != 0)
222 int errsv = errno;
224 g_set_error (error, G_IO_ERROR,
225 g_io_error_from_errno (errsv),
226 _("Error writing to file: %s"),
227 g_strerror (errsv));
228 goto err_out;
230 #endif
232 #ifdef G_OS_WIN32
234 /* Must close before renaming on Windows, so just do the close first
235 * in all cases for now.
237 if (_fstati64 (file->priv->fd, &final_stat) == 0)
238 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
240 if (!g_close (file->priv->fd, NULL))
242 int errsv = errno;
244 g_set_error (error, G_IO_ERROR,
245 g_io_error_from_errno (errsv),
246 _("Error closing file: %s"),
247 g_strerror (errsv));
248 return FALSE;
251 #endif
253 if (file->priv->tmp_filename)
255 /* We need to move the temp file to its final place,
256 * and possibly create the backup file
259 if (file->priv->backup_filename)
261 if (g_cancellable_set_error_if_cancelled (cancellable, error))
262 goto err_out;
264 #ifdef G_OS_UNIX
265 /* create original -> backup link, the original is then renamed over */
266 if (g_unlink (file->priv->backup_filename) != 0 &&
267 errno != ENOENT)
269 int errsv = errno;
271 g_set_error (error, G_IO_ERROR,
272 G_IO_ERROR_CANT_CREATE_BACKUP,
273 _("Error removing old backup link: %s"),
274 g_strerror (errsv));
275 goto err_out;
278 if (link (file->priv->original_filename, file->priv->backup_filename) != 0)
280 /* link failed or is not supported, try rename */
281 if (g_rename (file->priv->original_filename, file->priv->backup_filename) != 0)
283 int errsv = errno;
285 g_set_error (error, G_IO_ERROR,
286 G_IO_ERROR_CANT_CREATE_BACKUP,
287 _("Error creating backup copy: %s"),
288 g_strerror (errsv));
289 goto err_out;
292 #else
293 /* If link not supported, just rename... */
294 if (g_rename (file->priv->original_filename, file->priv->backup_filename) != 0)
296 int errsv = errno;
298 g_set_error (error, G_IO_ERROR,
299 G_IO_ERROR_CANT_CREATE_BACKUP,
300 _("Error creating backup copy: %s"),
301 g_strerror (errsv));
302 goto err_out;
304 #endif
308 if (g_cancellable_set_error_if_cancelled (cancellable, error))
309 goto err_out;
311 /* tmp -> original */
312 if (g_rename (file->priv->tmp_filename, file->priv->original_filename) != 0)
314 int errsv = errno;
316 g_set_error (error, G_IO_ERROR,
317 g_io_error_from_errno (errsv),
318 _("Error renaming temporary file: %s"),
319 g_strerror (errsv));
320 goto err_out;
323 g_clear_pointer (&file->priv->tmp_filename, g_free);
326 if (g_cancellable_set_error_if_cancelled (cancellable, error))
327 goto err_out;
329 #ifndef G_OS_WIN32 /* Already did the fstat() and close() above on Win32 */
331 if (fstat (file->priv->fd, &final_stat) == 0)
332 file->priv->etag = _g_local_file_info_create_etag (&final_stat);
334 if (!g_close (file->priv->fd, NULL))
336 int errsv = errno;
338 g_set_error (error, G_IO_ERROR,
339 g_io_error_from_errno (errsv),
340 _("Error closing file: %s"),
341 g_strerror (errsv));
342 goto err_out;
345 #endif
347 return TRUE;
348 err_out:
350 #ifndef G_OS_WIN32
351 /* A simple try to close the fd in case we fail before the actual close */
352 g_close (file->priv->fd, NULL);
353 #endif
354 if (file->priv->tmp_filename)
355 g_unlink (file->priv->tmp_filename);
357 return FALSE;
361 static gboolean
362 g_local_file_output_stream_close (GOutputStream *stream,
363 GCancellable *cancellable,
364 GError **error)
366 GLocalFileOutputStream *file;
368 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
370 if (file->priv->do_close)
371 return _g_local_file_output_stream_really_close (file,
372 cancellable,
373 error);
374 return TRUE;
377 static char *
378 g_local_file_output_stream_get_etag (GFileOutputStream *stream)
380 GLocalFileOutputStream *file;
382 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
384 return g_strdup (file->priv->etag);
387 static goffset
388 g_local_file_output_stream_tell (GFileOutputStream *stream)
390 GLocalFileOutputStream *file;
391 off_t pos;
393 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
395 pos = lseek (file->priv->fd, 0, SEEK_CUR);
397 if (pos == (off_t)-1)
398 return 0;
400 return pos;
403 static gboolean
404 g_local_file_output_stream_can_seek (GFileOutputStream *stream)
406 GLocalFileOutputStream *file;
407 off_t pos;
409 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
411 pos = lseek (file->priv->fd, 0, SEEK_CUR);
413 if (pos == (off_t)-1 && errno == ESPIPE)
414 return FALSE;
416 return TRUE;
419 static int
420 seek_type_to_lseek (GSeekType type)
422 switch (type)
424 default:
425 case G_SEEK_CUR:
426 return SEEK_CUR;
428 case G_SEEK_SET:
429 return SEEK_SET;
431 case G_SEEK_END:
432 return SEEK_END;
436 static gboolean
437 g_local_file_output_stream_seek (GFileOutputStream *stream,
438 goffset offset,
439 GSeekType type,
440 GCancellable *cancellable,
441 GError **error)
443 GLocalFileOutputStream *file;
444 off_t pos;
446 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
448 pos = lseek (file->priv->fd, offset, seek_type_to_lseek (type));
450 if (pos == (off_t)-1)
452 int errsv = errno;
454 g_set_error (error, G_IO_ERROR,
455 g_io_error_from_errno (errsv),
456 _("Error seeking in file: %s"),
457 g_strerror (errsv));
458 return FALSE;
461 return TRUE;
464 static gboolean
465 g_local_file_output_stream_can_truncate (GFileOutputStream *stream)
467 /* We can't truncate pipes and stuff where we can't seek */
468 return g_local_file_output_stream_can_seek (stream);
471 static gboolean
472 g_local_file_output_stream_truncate (GFileOutputStream *stream,
473 goffset size,
474 GCancellable *cancellable,
475 GError **error)
477 GLocalFileOutputStream *file;
478 int res;
480 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
482 restart:
483 #ifdef G_OS_WIN32
484 res = g_win32_ftruncate (file->priv->fd, size);
485 #else
486 res = ftruncate (file->priv->fd, size);
487 #endif
489 if (res == -1)
491 int errsv = errno;
493 if (errsv == EINTR)
495 if (g_cancellable_set_error_if_cancelled (cancellable, error))
496 return FALSE;
497 goto restart;
500 g_set_error (error, G_IO_ERROR,
501 g_io_error_from_errno (errsv),
502 _("Error truncating file: %s"),
503 g_strerror (errsv));
504 return FALSE;
507 return TRUE;
511 static GFileInfo *
512 g_local_file_output_stream_query_info (GFileOutputStream *stream,
513 const char *attributes,
514 GCancellable *cancellable,
515 GError **error)
517 GLocalFileOutputStream *file;
519 file = G_LOCAL_FILE_OUTPUT_STREAM (stream);
521 if (g_cancellable_set_error_if_cancelled (cancellable, error))
522 return NULL;
524 return _g_local_file_info_get_from_fd (file->priv->fd,
525 attributes,
526 error);
529 GFileOutputStream *
530 _g_local_file_output_stream_new (int fd)
532 GLocalFileOutputStream *stream;
534 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
535 stream->priv->fd = fd;
536 return G_FILE_OUTPUT_STREAM (stream);
539 static void
540 set_error_from_open_errno (const char *filename,
541 GError **error)
543 int errsv = errno;
545 if (errsv == EINVAL)
546 /* This must be an invalid filename, on e.g. FAT */
547 g_set_error_literal (error, G_IO_ERROR,
548 G_IO_ERROR_INVALID_FILENAME,
549 _("Invalid filename"));
550 else
552 char *display_name = g_filename_display_name (filename);
553 g_set_error (error, G_IO_ERROR,
554 g_io_error_from_errno (errsv),
555 _("Error opening file ā€œ%sā€: %s"),
556 display_name, g_strerror (errsv));
557 g_free (display_name);
561 static GFileOutputStream *
562 output_stream_open (const char *filename,
563 gint open_flags,
564 guint mode,
565 GCancellable *cancellable,
566 GError **error)
568 GLocalFileOutputStream *stream;
569 gint fd;
571 fd = g_open (filename, open_flags, mode);
572 if (fd == -1)
574 set_error_from_open_errno (filename, error);
575 return NULL;
578 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
579 stream->priv->fd = fd;
580 return G_FILE_OUTPUT_STREAM (stream);
583 GFileOutputStream *
584 _g_local_file_output_stream_open (const char *filename,
585 gboolean readable,
586 GCancellable *cancellable,
587 GError **error)
589 int open_flags;
591 if (g_cancellable_set_error_if_cancelled (cancellable, error))
592 return NULL;
594 open_flags = O_BINARY;
595 if (readable)
596 open_flags |= O_RDWR;
597 else
598 open_flags |= O_WRONLY;
600 return output_stream_open (filename, open_flags, 0666, cancellable, error);
603 static gint
604 mode_from_flags_or_info (GFileCreateFlags flags,
605 GFileInfo *reference_info)
607 if (flags & G_FILE_CREATE_PRIVATE)
608 return 0600;
609 else if (reference_info && g_file_info_has_attribute (reference_info, "unix::mode"))
610 return g_file_info_get_attribute_uint32 (reference_info, "unix::mode") & (~S_IFMT);
611 else
612 return 0666;
615 GFileOutputStream *
616 _g_local_file_output_stream_create (const char *filename,
617 gboolean readable,
618 GFileCreateFlags flags,
619 GFileInfo *reference_info,
620 GCancellable *cancellable,
621 GError **error)
623 int mode;
624 int open_flags;
626 if (g_cancellable_set_error_if_cancelled (cancellable, error))
627 return NULL;
629 mode = mode_from_flags_or_info (flags, reference_info);
631 open_flags = O_CREAT | O_EXCL | O_BINARY;
632 if (readable)
633 open_flags |= O_RDWR;
634 else
635 open_flags |= O_WRONLY;
637 return output_stream_open (filename, open_flags, mode, cancellable, error);
640 GFileOutputStream *
641 _g_local_file_output_stream_append (const char *filename,
642 GFileCreateFlags flags,
643 GCancellable *cancellable,
644 GError **error)
646 int mode;
648 if (g_cancellable_set_error_if_cancelled (cancellable, error))
649 return NULL;
651 if (flags & G_FILE_CREATE_PRIVATE)
652 mode = 0600;
653 else
654 mode = 0666;
656 return output_stream_open (filename, O_CREAT | O_APPEND | O_WRONLY | O_BINARY, mode,
657 cancellable, error);
660 static char *
661 create_backup_filename (const char *filename)
663 return g_strconcat (filename, BACKUP_EXTENSION, NULL);
666 #define BUFSIZE 8192 /* size of normal write buffer */
668 static gboolean
669 copy_file_data (gint sfd,
670 gint dfd,
671 GError **error)
673 gboolean ret = TRUE;
674 gpointer buffer;
675 const gchar *write_buffer;
676 gssize bytes_read;
677 gssize bytes_to_write;
678 gssize bytes_written;
680 buffer = g_malloc (BUFSIZE);
684 bytes_read = read (sfd, buffer, BUFSIZE);
685 if (bytes_read == -1)
687 int errsv = errno;
689 if (errsv == EINTR)
690 continue;
692 g_set_error (error, G_IO_ERROR,
693 g_io_error_from_errno (errsv),
694 _("Error reading from file: %s"),
695 g_strerror (errsv));
696 ret = FALSE;
697 break;
700 bytes_to_write = bytes_read;
701 write_buffer = buffer;
705 bytes_written = write (dfd, write_buffer, bytes_to_write);
706 if (bytes_written == -1)
708 int errsv = errno;
710 if (errsv == EINTR)
711 continue;
713 g_set_error (error, G_IO_ERROR,
714 g_io_error_from_errno (errsv),
715 _("Error writing to file: %s"),
716 g_strerror (errsv));
717 ret = FALSE;
718 break;
721 bytes_to_write -= bytes_written;
722 write_buffer += bytes_written;
724 while (bytes_to_write > 0);
726 } while ((bytes_read != 0) && (ret == TRUE));
728 g_free (buffer);
730 return ret;
733 static int
734 handle_overwrite_open (const char *filename,
735 gboolean readable,
736 const char *etag,
737 gboolean create_backup,
738 char **temp_filename,
739 GFileCreateFlags flags,
740 GFileInfo *reference_info,
741 GCancellable *cancellable,
742 GError **error)
744 int fd = -1;
745 GLocalFileStat original_stat;
746 char *current_etag;
747 gboolean is_symlink;
748 int open_flags;
749 int res;
750 int mode;
751 int errsv;
753 mode = mode_from_flags_or_info (flags, reference_info);
755 /* We only need read access to the original file if we are creating a backup.
756 * We also add O_CREATE to avoid a race if the file was just removed */
757 if (create_backup || readable)
758 open_flags = O_RDWR | O_CREAT | O_BINARY;
759 else
760 open_flags = O_WRONLY | O_CREAT | O_BINARY;
762 /* Some systems have O_NOFOLLOW, which lets us avoid some races
763 * when finding out if the file we opened was a symlink */
764 #ifdef O_NOFOLLOW
765 is_symlink = FALSE;
766 fd = g_open (filename, open_flags | O_NOFOLLOW, mode);
767 errsv = errno;
768 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
769 if (fd == -1 && errsv == EMLINK)
770 #elif defined(__NetBSD__)
771 if (fd == -1 && errsv == EFTYPE)
772 #else
773 if (fd == -1 && errsv == ELOOP)
774 #endif
776 /* Could be a symlink, or it could be a regular ELOOP error,
777 * but then the next open will fail too. */
778 is_symlink = TRUE;
779 fd = g_open (filename, open_flags, mode);
781 #else
782 fd = g_open (filename, open_flags, mode);
783 errsv = errno;
784 /* This is racy, but we do it as soon as possible to minimize the race */
785 is_symlink = g_file_test (filename, G_FILE_TEST_IS_SYMLINK);
786 #endif
788 if (fd == -1)
790 char *display_name = g_filename_display_name (filename);
791 g_set_error (error, G_IO_ERROR,
792 g_io_error_from_errno (errsv),
793 _("Error opening file ā€œ%sā€: %s"),
794 display_name, g_strerror (errsv));
795 g_free (display_name);
796 return -1;
799 #ifdef G_OS_WIN32
800 res = _fstati64 (fd, &original_stat);
801 #else
802 res = fstat (fd, &original_stat);
803 #endif
804 errsv = errno;
806 if (res != 0)
808 char *display_name = g_filename_display_name (filename);
809 g_set_error (error, G_IO_ERROR,
810 g_io_error_from_errno (errsv),
811 _("Error when getting information for file ā€œ%sā€: %s"),
812 display_name, g_strerror (errsv));
813 g_free (display_name);
814 goto err_out;
817 /* not a regular file */
818 if (!S_ISREG (original_stat.st_mode))
820 if (S_ISDIR (original_stat.st_mode))
821 g_set_error_literal (error,
822 G_IO_ERROR,
823 G_IO_ERROR_IS_DIRECTORY,
824 _("Target file is a directory"));
825 else
826 g_set_error_literal (error,
827 G_IO_ERROR,
828 G_IO_ERROR_NOT_REGULAR_FILE,
829 _("Target file is not a regular file"));
830 goto err_out;
833 if (etag != NULL)
835 current_etag = _g_local_file_info_create_etag (&original_stat);
836 if (strcmp (etag, current_etag) != 0)
838 g_set_error_literal (error,
839 G_IO_ERROR,
840 G_IO_ERROR_WRONG_ETAG,
841 _("The file was externally modified"));
842 g_free (current_etag);
843 goto err_out;
845 g_free (current_etag);
848 /* We use two backup strategies.
849 * The first one (which is faster) consist in saving to a
850 * tmp file then rename the original file to the backup and the
851 * tmp file to the original name. This is fast but doesn't work
852 * when the file is a link (hard or symbolic) or when we can't
853 * write to the current dir or can't set the permissions on the
854 * new file.
855 * The second strategy consist simply in copying the old file
856 * to a backup file and rewrite the contents of the file.
859 if ((flags & G_FILE_CREATE_REPLACE_DESTINATION) ||
860 (!(original_stat.st_nlink > 1) && !is_symlink))
862 char *dirname, *tmp_filename;
863 int tmpfd;
865 dirname = g_path_get_dirname (filename);
866 tmp_filename = g_build_filename (dirname, ".goutputstream-XXXXXX", NULL);
867 g_free (dirname);
869 tmpfd = g_mkstemp_full (tmp_filename, (readable ? O_RDWR : O_WRONLY) | O_BINARY, mode);
870 if (tmpfd == -1)
872 g_free (tmp_filename);
873 goto fallback_strategy;
876 /* try to keep permissions (unless replacing) */
878 if ( ! (flags & G_FILE_CREATE_REPLACE_DESTINATION) &&
880 #ifdef HAVE_FCHOWN
881 fchown (tmpfd, original_stat.st_uid, original_stat.st_gid) == -1 ||
882 #endif
883 #ifdef HAVE_FCHMOD
884 fchmod (tmpfd, original_stat.st_mode) == -1 ||
885 #endif
890 GLocalFileStat tmp_statbuf;
891 int tres;
893 #ifdef G_OS_WIN32
894 tres = _fstati64 (tmpfd, &tmp_statbuf);
895 #else
896 tres = fstat (tmpfd, &tmp_statbuf);
897 #endif
898 /* Check that we really needed to change something */
899 if (tres != 0 ||
900 original_stat.st_uid != tmp_statbuf.st_uid ||
901 original_stat.st_gid != tmp_statbuf.st_gid ||
902 original_stat.st_mode != tmp_statbuf.st_mode)
904 g_close (tmpfd, NULL);
905 g_unlink (tmp_filename);
906 g_free (tmp_filename);
907 goto fallback_strategy;
911 g_close (fd, NULL);
912 *temp_filename = tmp_filename;
913 return tmpfd;
916 fallback_strategy:
918 if (create_backup)
920 #if defined(HAVE_FCHOWN) && defined(HAVE_FCHMOD)
921 struct stat tmp_statbuf;
922 #endif
923 char *backup_filename;
924 int bfd;
926 backup_filename = create_backup_filename (filename);
928 if (g_unlink (backup_filename) == -1 && errno != ENOENT)
930 g_set_error_literal (error,
931 G_IO_ERROR,
932 G_IO_ERROR_CANT_CREATE_BACKUP,
933 _("Backup file creation failed"));
934 g_free (backup_filename);
935 goto err_out;
938 bfd = g_open (backup_filename,
939 O_WRONLY | O_CREAT | O_EXCL | O_BINARY,
940 original_stat.st_mode & 0777);
942 if (bfd == -1)
944 g_set_error_literal (error,
945 G_IO_ERROR,
946 G_IO_ERROR_CANT_CREATE_BACKUP,
947 _("Backup file creation failed"));
948 g_free (backup_filename);
949 goto err_out;
952 /* If needed, Try to set the group of the backup same as the
953 * original file. If this fails, set the protection
954 * bits for the group same as the protection bits for
955 * others. */
956 #if defined(HAVE_FCHOWN) && defined(HAVE_FCHMOD)
957 if (fstat (bfd, &tmp_statbuf) != 0)
959 g_set_error_literal (error,
960 G_IO_ERROR,
961 G_IO_ERROR_CANT_CREATE_BACKUP,
962 _("Backup file creation failed"));
963 g_unlink (backup_filename);
964 g_close (bfd, NULL);
965 g_free (backup_filename);
966 goto err_out;
969 if ((original_stat.st_gid != tmp_statbuf.st_gid) &&
970 fchown (bfd, (uid_t) -1, original_stat.st_gid) != 0)
972 if (fchmod (bfd,
973 (original_stat.st_mode & 0707) |
974 ((original_stat.st_mode & 07) << 3)) != 0)
976 g_set_error_literal (error,
977 G_IO_ERROR,
978 G_IO_ERROR_CANT_CREATE_BACKUP,
979 _("Backup file creation failed"));
980 g_unlink (backup_filename);
981 g_close (bfd, NULL);
982 g_free (backup_filename);
983 goto err_out;
986 #endif
988 if (!copy_file_data (fd, bfd, NULL))
990 g_set_error_literal (error,
991 G_IO_ERROR,
992 G_IO_ERROR_CANT_CREATE_BACKUP,
993 _("Backup file creation failed"));
994 g_unlink (backup_filename);
995 g_close (bfd, NULL);
996 g_free (backup_filename);
998 goto err_out;
1001 g_close (bfd, NULL);
1002 g_free (backup_filename);
1004 /* Seek back to the start of the file after the backup copy */
1005 if (lseek (fd, 0, SEEK_SET) == -1)
1007 int errsv = errno;
1009 g_set_error (error, G_IO_ERROR,
1010 g_io_error_from_errno (errsv),
1011 _("Error seeking in file: %s"),
1012 g_strerror (errsv));
1013 goto err_out;
1017 if (flags & G_FILE_CREATE_REPLACE_DESTINATION)
1019 g_close (fd, NULL);
1021 if (g_unlink (filename) != 0)
1023 int errsv = errno;
1025 g_set_error (error, G_IO_ERROR,
1026 g_io_error_from_errno (errsv),
1027 _("Error removing old file: %s"),
1028 g_strerror (errsv));
1029 goto err_out2;
1032 if (readable)
1033 open_flags = O_RDWR | O_CREAT | O_BINARY;
1034 else
1035 open_flags = O_WRONLY | O_CREAT | O_BINARY;
1036 fd = g_open (filename, open_flags, mode);
1037 if (fd == -1)
1039 int errsv = errno;
1040 char *display_name = g_filename_display_name (filename);
1041 g_set_error (error, G_IO_ERROR,
1042 g_io_error_from_errno (errsv),
1043 _("Error opening file ā€œ%sā€: %s"),
1044 display_name, g_strerror (errsv));
1045 g_free (display_name);
1046 goto err_out2;
1049 else
1051 /* Truncate the file at the start */
1052 #ifdef G_OS_WIN32
1053 if (g_win32_ftruncate (fd, 0) == -1)
1054 #else
1055 if (ftruncate (fd, 0) == -1)
1056 #endif
1058 int errsv = errno;
1060 g_set_error (error, G_IO_ERROR,
1061 g_io_error_from_errno (errsv),
1062 _("Error truncating file: %s"),
1063 g_strerror (errsv));
1064 goto err_out;
1068 return fd;
1070 err_out:
1071 g_close (fd, NULL);
1072 err_out2:
1073 return -1;
1076 GFileOutputStream *
1077 _g_local_file_output_stream_replace (const char *filename,
1078 gboolean readable,
1079 const char *etag,
1080 gboolean create_backup,
1081 GFileCreateFlags flags,
1082 GFileInfo *reference_info,
1083 GCancellable *cancellable,
1084 GError **error)
1086 GLocalFileOutputStream *stream;
1087 int mode;
1088 int fd;
1089 char *temp_file;
1090 gboolean sync_on_close;
1091 int open_flags;
1093 if (g_cancellable_set_error_if_cancelled (cancellable, error))
1094 return NULL;
1096 temp_file = NULL;
1098 mode = mode_from_flags_or_info (flags, reference_info);
1099 sync_on_close = FALSE;
1101 /* If the file doesn't exist, create it */
1102 open_flags = O_CREAT | O_EXCL | O_BINARY;
1103 if (readable)
1104 open_flags |= O_RDWR;
1105 else
1106 open_flags |= O_WRONLY;
1107 fd = g_open (filename, open_flags, mode);
1109 if (fd == -1 && errno == EEXIST)
1111 /* The file already exists */
1112 fd = handle_overwrite_open (filename, readable, etag,
1113 create_backup, &temp_file,
1114 flags, reference_info,
1115 cancellable, error);
1116 if (fd == -1)
1117 return NULL;
1119 /* If the final destination exists, we want to sync the newly written
1120 * file to ensure the data is on disk when we rename over the destination.
1121 * otherwise if we get a system crash we can lose both the new and the
1122 * old file on some filesystems. (I.E. those that don't guarantee the
1123 * data is written to the disk before the metadata.)
1125 sync_on_close = TRUE;
1127 else if (fd == -1)
1129 set_error_from_open_errno (filename, error);
1130 return NULL;
1134 stream = g_object_new (G_TYPE_LOCAL_FILE_OUTPUT_STREAM, NULL);
1135 stream->priv->fd = fd;
1136 stream->priv->sync_on_close = sync_on_close;
1137 stream->priv->tmp_filename = temp_file;
1138 if (create_backup)
1139 stream->priv->backup_filename = create_backup_filename (filename);
1140 stream->priv->original_filename = g_strdup (filename);
1142 return G_FILE_OUTPUT_STREAM (stream);
1145 gint
1146 _g_local_file_output_stream_get_fd (GLocalFileOutputStream *stream)
1148 g_return_val_if_fail (G_IS_LOCAL_FILE_OUTPUT_STREAM (stream), -1);
1149 return stream->priv->fd;
1152 #ifdef G_OS_UNIX
1153 static int
1154 g_local_file_output_stream_get_fd (GFileDescriptorBased *fd_based)
1156 GLocalFileOutputStream *stream = G_LOCAL_FILE_OUTPUT_STREAM (fd_based);
1157 return _g_local_file_output_stream_get_fd (stream);
1159 #endif