1
2
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* Copyright (C) 2014 Colin Walters <walters@verbum.org>
*
* SPDX-License-Identifier: LGPL-2.0+
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "ostree-linuxfsutil.h"
#include "otutil.h"
#include <fcntl.h>
#include <sys/ioctl.h>
// This should be the only file including linux/fs.h; see
// https://sourceware.org/glibc/wiki/Release/2.36#Usage_of_.3Clinux.2Fmount.h.3E_and_.3Csys.2Fmount.h.3E
// https://github.com/ostreedev/ostree/issues/2685
#include <linux/fs.h>
#include <ext2fs/ext2_fs.h>
/**
* _ostree_linuxfs_fd_alter_immutable_flag:
* @fd: A file descriptor
* @new_immutable_state: Set this to %TRUE to make the file immutable, %FALSE to unset the flag
* @cancellable: Cancellable
* @error: GError
*
* Alter the immutable flag of object referred to by @fd; may be a
* regular file or a directory.
*
* If the operation is not supported by the underlying filesystem, or
* we are running without sufficient privileges, this function will
* silently do nothing.
*/
gboolean
_ostree_linuxfs_fd_alter_immutable_flag (int fd,
gboolean new_immutable_state,
GCancellable *cancellable,
GError **error)
{
static gint no_alter_immutable = 0;
if (g_atomic_int_get (&no_alter_immutable))
return TRUE;
int flags = 0;
int r = ioctl (fd, EXT2_IOC_GETFLAGS, &flags);
if (r == -1)
{
if (errno == EPERM)
g_atomic_int_set (&no_alter_immutable, 1);
else if (errno == EOPNOTSUPP || errno == ENOTTY)
;
else
return glnx_throw_errno_prefix (error, "ioctl(EXT2_IOC_GETFLAGS)");
}
else
{
gboolean prev_immutable_state = (flags & EXT2_IMMUTABLE_FL) > 0;
if (prev_immutable_state == new_immutable_state)
return TRUE; /* Nothing to do */
if (new_immutable_state)
flags |= EXT2_IMMUTABLE_FL;
else
flags &= ~EXT2_IMMUTABLE_FL;
r = ioctl (fd, EXT2_IOC_SETFLAGS, &flags);
if (r == -1)
{
if (errno == EPERM)
g_atomic_int_set (&no_alter_immutable, 1);
else if (errno == EOPNOTSUPP || errno == ENOTTY)
;
else
return glnx_throw_errno_prefix (error, "ioctl(EXT2_IOC_SETFLAGS)");
}
}
return TRUE;
}
/* Wrapper for FIFREEZE ioctl.
* This is split into a separate wrapped API for
* reasons around conflicts between glibc and linux/fs.h
* includes; see above.
*/
int
_ostree_linuxfs_filesystem_freeze (int fd)
{
return TEMP_FAILURE_RETRY (ioctl (fd, FIFREEZE, 0));
}
/* Wrapper for FITHAW ioctl. See above. */
int
_ostree_linuxfs_filesystem_thaw (int fd)
{
return TEMP_FAILURE_RETRY (ioctl (fd, FITHAW, 0));
}
|