Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * This file is part of UBIFS.
  4 *
  5 * Copyright (C) 2006-2008 Nokia Corporation.
  6 * Copyright (C) 2006, 2007 University of Szeged, Hungary
  7 *
  8 * Authors: Zoltan Sogor
  9 *          Artem Bityutskiy (Битюцкий Артём)
 10 *          Adrian Hunter
 11 */
 12
 13/* This file implements EXT2-compatible extended attribute ioctl() calls */
 14
 15#include <linux/compat.h>
 16#include <linux/mount.h>
 17#include <linux/fileattr.h>
 18#include "ubifs.h"
 19
 20/* Need to be kept consistent with checked flags in ioctl2ubifs() */
 21#define UBIFS_SETTABLE_IOCTL_FLAGS \
 22	(FS_COMPR_FL | FS_SYNC_FL | FS_APPEND_FL | \
 23	 FS_IMMUTABLE_FL | FS_DIRSYNC_FL)
 24
 25/* Need to be kept consistent with checked flags in ubifs2ioctl() */
 26#define UBIFS_GETTABLE_IOCTL_FLAGS \
 27	(UBIFS_SETTABLE_IOCTL_FLAGS | FS_ENCRYPT_FL)
 28
 29/**
 30 * ubifs_set_inode_flags - set VFS inode flags.
 31 * @inode: VFS inode to set flags for
 32 *
 33 * This function propagates flags from UBIFS inode object to VFS inode object.
 34 */
 35void ubifs_set_inode_flags(struct inode *inode)
 36{
 37	unsigned int flags = ubifs_inode(inode)->flags;
 38
 39	inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_DIRSYNC |
 40			    S_ENCRYPTED);
 41	if (flags & UBIFS_SYNC_FL)
 42		inode->i_flags |= S_SYNC;
 43	if (flags & UBIFS_APPEND_FL)
 44		inode->i_flags |= S_APPEND;
 45	if (flags & UBIFS_IMMUTABLE_FL)
 46		inode->i_flags |= S_IMMUTABLE;
 47	if (flags & UBIFS_DIRSYNC_FL)
 48		inode->i_flags |= S_DIRSYNC;
 49	if (flags & UBIFS_CRYPT_FL)
 50		inode->i_flags |= S_ENCRYPTED;
 51}
 52
 53/*
 54 * ioctl2ubifs - convert ioctl inode flags to UBIFS inode flags.
 55 * @ioctl_flags: flags to convert
 56 *
 57 * This function converts ioctl flags (@FS_COMPR_FL, etc) to UBIFS inode flags
 58 * (@UBIFS_COMPR_FL, etc).
 59 */
 60static int ioctl2ubifs(int ioctl_flags)
 61{
 62	int ubifs_flags = 0;
 63
 64	if (ioctl_flags & FS_COMPR_FL)
 65		ubifs_flags |= UBIFS_COMPR_FL;
 66	if (ioctl_flags & FS_SYNC_FL)
 67		ubifs_flags |= UBIFS_SYNC_FL;
 68	if (ioctl_flags & FS_APPEND_FL)
 69		ubifs_flags |= UBIFS_APPEND_FL;
 70	if (ioctl_flags & FS_IMMUTABLE_FL)
 71		ubifs_flags |= UBIFS_IMMUTABLE_FL;
 72	if (ioctl_flags & FS_DIRSYNC_FL)
 73		ubifs_flags |= UBIFS_DIRSYNC_FL;
 74
 75	return ubifs_flags;
 76}
 77
 78/*
 79 * ubifs2ioctl - convert UBIFS inode flags to ioctl inode flags.
 80 * @ubifs_flags: flags to convert
 81 *
 82 * This function converts UBIFS inode flags (@UBIFS_COMPR_FL, etc) to ioctl
 83 * flags (@FS_COMPR_FL, etc).
 84 */
 85static int ubifs2ioctl(int ubifs_flags)
 86{
 87	int ioctl_flags = 0;
 88
 89	if (ubifs_flags & UBIFS_COMPR_FL)
 90		ioctl_flags |= FS_COMPR_FL;
 91	if (ubifs_flags & UBIFS_SYNC_FL)
 92		ioctl_flags |= FS_SYNC_FL;
 93	if (ubifs_flags & UBIFS_APPEND_FL)
 94		ioctl_flags |= FS_APPEND_FL;
 95	if (ubifs_flags & UBIFS_IMMUTABLE_FL)
 96		ioctl_flags |= FS_IMMUTABLE_FL;
 97	if (ubifs_flags & UBIFS_DIRSYNC_FL)
 98		ioctl_flags |= FS_DIRSYNC_FL;
 99	if (ubifs_flags & UBIFS_CRYPT_FL)
100		ioctl_flags |= FS_ENCRYPT_FL;
101
102	return ioctl_flags;
103}
104
105static int setflags(struct inode *inode, int flags)
106{
107	int err, release;
108	struct ubifs_inode *ui = ubifs_inode(inode);
109	struct ubifs_info *c = inode->i_sb->s_fs_info;
110	struct ubifs_budget_req req = { .dirtied_ino = 1,
111			.dirtied_ino_d = ALIGN(ui->data_len, 8) };
112
113	err = ubifs_budget_space(c, &req);
114	if (err)
115		return err;
116
117	mutex_lock(&ui->ui_mutex);
 
 
 
 
 
118	ui->flags &= ~ioctl2ubifs(UBIFS_SETTABLE_IOCTL_FLAGS);
119	ui->flags |= ioctl2ubifs(flags);
120	ubifs_set_inode_flags(inode);
121	inode->i_ctime = current_time(inode);
122	release = ui->dirty;
123	mark_inode_dirty_sync(inode);
124	mutex_unlock(&ui->ui_mutex);
125
126	if (release)
127		ubifs_release_budget(c, &req);
128	if (IS_SYNC(inode))
129		err = write_inode_now(inode, 1);
130	return err;
131}
132
133int ubifs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
134{
135	struct inode *inode = d_inode(dentry);
136	int flags = ubifs2ioctl(ubifs_inode(inode)->flags);
137
138	if (d_is_special(dentry))
139		return -ENOTTY;
140
141	dbg_gen("get flags: %#x, i_flags %#x", flags, inode->i_flags);
142	fileattr_fill_flags(fa, flags);
143
144	return 0;
145}
146
147int ubifs_fileattr_set(struct user_namespace *mnt_userns,
148		       struct dentry *dentry, struct fileattr *fa)
149{
150	struct inode *inode = d_inode(dentry);
151	int flags = fa->flags;
152
153	if (d_is_special(dentry))
154		return -ENOTTY;
155
156	if (fileattr_has_fsx(fa))
157		return -EOPNOTSUPP;
158
159	if (flags & ~UBIFS_GETTABLE_IOCTL_FLAGS)
160		return -EOPNOTSUPP;
161
162	flags &= UBIFS_SETTABLE_IOCTL_FLAGS;
163
164	if (!S_ISDIR(inode->i_mode))
165		flags &= ~FS_DIRSYNC_FL;
166
167	dbg_gen("set flags: %#x, i_flags %#x", flags, inode->i_flags);
168	return setflags(inode, flags);
169}
170
171long ubifs_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
172{
173	int err;
174	struct inode *inode = file_inode(file);
175
176	switch (cmd) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177	case FS_IOC_SET_ENCRYPTION_POLICY: {
178		struct ubifs_info *c = inode->i_sb->s_fs_info;
179
180		err = ubifs_enable_encryption(c);
181		if (err)
182			return err;
183
184		return fscrypt_ioctl_set_policy(file, (const void __user *)arg);
185	}
186	case FS_IOC_GET_ENCRYPTION_POLICY:
187		return fscrypt_ioctl_get_policy(file, (void __user *)arg);
188
189	case FS_IOC_GET_ENCRYPTION_POLICY_EX:
190		return fscrypt_ioctl_get_policy_ex(file, (void __user *)arg);
191
192	case FS_IOC_ADD_ENCRYPTION_KEY:
193		return fscrypt_ioctl_add_key(file, (void __user *)arg);
194
195	case FS_IOC_REMOVE_ENCRYPTION_KEY:
196		return fscrypt_ioctl_remove_key(file, (void __user *)arg);
197
198	case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
199		return fscrypt_ioctl_remove_key_all_users(file,
200							  (void __user *)arg);
201	case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
202		return fscrypt_ioctl_get_key_status(file, (void __user *)arg);
203
204	case FS_IOC_GET_ENCRYPTION_NONCE:
205		return fscrypt_ioctl_get_nonce(file, (void __user *)arg);
206
207	default:
208		return -ENOTTY;
209	}
210}
211
212#ifdef CONFIG_COMPAT
213long ubifs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
214{
215	switch (cmd) {
216	case FS_IOC32_GETFLAGS:
217		cmd = FS_IOC_GETFLAGS;
218		break;
219	case FS_IOC32_SETFLAGS:
220		cmd = FS_IOC_SETFLAGS;
221		break;
222	case FS_IOC_SET_ENCRYPTION_POLICY:
223	case FS_IOC_GET_ENCRYPTION_POLICY:
224	case FS_IOC_GET_ENCRYPTION_POLICY_EX:
225	case FS_IOC_ADD_ENCRYPTION_KEY:
226	case FS_IOC_REMOVE_ENCRYPTION_KEY:
227	case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
228	case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
229	case FS_IOC_GET_ENCRYPTION_NONCE:
230		break;
231	default:
232		return -ENOIOCTLCMD;
233	}
234	return ubifs_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
235}
236#endif
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  2/*
  3 * This file is part of UBIFS.
  4 *
  5 * Copyright (C) 2006-2008 Nokia Corporation.
  6 * Copyright (C) 2006, 2007 University of Szeged, Hungary
  7 *
  8 * Authors: Zoltan Sogor
  9 *          Artem Bityutskiy (Битюцкий Артём)
 10 *          Adrian Hunter
 11 */
 12
 13/* This file implements EXT2-compatible extended attribute ioctl() calls */
 14
 15#include <linux/compat.h>
 16#include <linux/mount.h>
 
 17#include "ubifs.h"
 18
 19/* Need to be kept consistent with checked flags in ioctl2ubifs() */
 20#define UBIFS_SETTABLE_IOCTL_FLAGS \
 21	(FS_COMPR_FL | FS_SYNC_FL | FS_APPEND_FL | \
 22	 FS_IMMUTABLE_FL | FS_DIRSYNC_FL)
 23
 24/* Need to be kept consistent with checked flags in ubifs2ioctl() */
 25#define UBIFS_GETTABLE_IOCTL_FLAGS \
 26	(UBIFS_SETTABLE_IOCTL_FLAGS | FS_ENCRYPT_FL)
 27
 28/**
 29 * ubifs_set_inode_flags - set VFS inode flags.
 30 * @inode: VFS inode to set flags for
 31 *
 32 * This function propagates flags from UBIFS inode object to VFS inode object.
 33 */
 34void ubifs_set_inode_flags(struct inode *inode)
 35{
 36	unsigned int flags = ubifs_inode(inode)->flags;
 37
 38	inode->i_flags &= ~(S_SYNC | S_APPEND | S_IMMUTABLE | S_DIRSYNC |
 39			    S_ENCRYPTED);
 40	if (flags & UBIFS_SYNC_FL)
 41		inode->i_flags |= S_SYNC;
 42	if (flags & UBIFS_APPEND_FL)
 43		inode->i_flags |= S_APPEND;
 44	if (flags & UBIFS_IMMUTABLE_FL)
 45		inode->i_flags |= S_IMMUTABLE;
 46	if (flags & UBIFS_DIRSYNC_FL)
 47		inode->i_flags |= S_DIRSYNC;
 48	if (flags & UBIFS_CRYPT_FL)
 49		inode->i_flags |= S_ENCRYPTED;
 50}
 51
 52/*
 53 * ioctl2ubifs - convert ioctl inode flags to UBIFS inode flags.
 54 * @ioctl_flags: flags to convert
 55 *
 56 * This function converts ioctl flags (@FS_COMPR_FL, etc) to UBIFS inode flags
 57 * (@UBIFS_COMPR_FL, etc).
 58 */
 59static int ioctl2ubifs(int ioctl_flags)
 60{
 61	int ubifs_flags = 0;
 62
 63	if (ioctl_flags & FS_COMPR_FL)
 64		ubifs_flags |= UBIFS_COMPR_FL;
 65	if (ioctl_flags & FS_SYNC_FL)
 66		ubifs_flags |= UBIFS_SYNC_FL;
 67	if (ioctl_flags & FS_APPEND_FL)
 68		ubifs_flags |= UBIFS_APPEND_FL;
 69	if (ioctl_flags & FS_IMMUTABLE_FL)
 70		ubifs_flags |= UBIFS_IMMUTABLE_FL;
 71	if (ioctl_flags & FS_DIRSYNC_FL)
 72		ubifs_flags |= UBIFS_DIRSYNC_FL;
 73
 74	return ubifs_flags;
 75}
 76
 77/*
 78 * ubifs2ioctl - convert UBIFS inode flags to ioctl inode flags.
 79 * @ubifs_flags: flags to convert
 80 *
 81 * This function converts UBIFS inode flags (@UBIFS_COMPR_FL, etc) to ioctl
 82 * flags (@FS_COMPR_FL, etc).
 83 */
 84static int ubifs2ioctl(int ubifs_flags)
 85{
 86	int ioctl_flags = 0;
 87
 88	if (ubifs_flags & UBIFS_COMPR_FL)
 89		ioctl_flags |= FS_COMPR_FL;
 90	if (ubifs_flags & UBIFS_SYNC_FL)
 91		ioctl_flags |= FS_SYNC_FL;
 92	if (ubifs_flags & UBIFS_APPEND_FL)
 93		ioctl_flags |= FS_APPEND_FL;
 94	if (ubifs_flags & UBIFS_IMMUTABLE_FL)
 95		ioctl_flags |= FS_IMMUTABLE_FL;
 96	if (ubifs_flags & UBIFS_DIRSYNC_FL)
 97		ioctl_flags |= FS_DIRSYNC_FL;
 98	if (ubifs_flags & UBIFS_CRYPT_FL)
 99		ioctl_flags |= FS_ENCRYPT_FL;
100
101	return ioctl_flags;
102}
103
104static int setflags(struct inode *inode, int flags)
105{
106	int oldflags, err, release;
107	struct ubifs_inode *ui = ubifs_inode(inode);
108	struct ubifs_info *c = inode->i_sb->s_fs_info;
109	struct ubifs_budget_req req = { .dirtied_ino = 1,
110					.dirtied_ino_d = ui->data_len };
111
112	err = ubifs_budget_space(c, &req);
113	if (err)
114		return err;
115
116	mutex_lock(&ui->ui_mutex);
117	oldflags = ubifs2ioctl(ui->flags);
118	err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
119	if (err)
120		goto out_unlock;
121
122	ui->flags &= ~ioctl2ubifs(UBIFS_SETTABLE_IOCTL_FLAGS);
123	ui->flags |= ioctl2ubifs(flags);
124	ubifs_set_inode_flags(inode);
125	inode->i_ctime = current_time(inode);
126	release = ui->dirty;
127	mark_inode_dirty_sync(inode);
128	mutex_unlock(&ui->ui_mutex);
129
130	if (release)
131		ubifs_release_budget(c, &req);
132	if (IS_SYNC(inode))
133		err = write_inode_now(inode, 1);
134	return err;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
136out_unlock:
137	ubifs_err(c, "can't modify inode %lu attributes", inode->i_ino);
138	mutex_unlock(&ui->ui_mutex);
139	ubifs_release_budget(c, &req);
140	return err;
 
 
 
 
 
 
 
 
 
 
 
141}
142
143long ubifs_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
144{
145	int flags, err;
146	struct inode *inode = file_inode(file);
147
148	switch (cmd) {
149	case FS_IOC_GETFLAGS:
150		flags = ubifs2ioctl(ubifs_inode(inode)->flags);
151
152		dbg_gen("get flags: %#x, i_flags %#x", flags, inode->i_flags);
153		return put_user(flags, (int __user *) arg);
154
155	case FS_IOC_SETFLAGS: {
156		if (IS_RDONLY(inode))
157			return -EROFS;
158
159		if (!inode_owner_or_capable(inode))
160			return -EACCES;
161
162		if (get_user(flags, (int __user *) arg))
163			return -EFAULT;
164
165		if (flags & ~UBIFS_GETTABLE_IOCTL_FLAGS)
166			return -EOPNOTSUPP;
167		flags &= UBIFS_SETTABLE_IOCTL_FLAGS;
168
169		if (!S_ISDIR(inode->i_mode))
170			flags &= ~FS_DIRSYNC_FL;
171
172		/*
173		 * Make sure the file-system is read-write and make sure it
174		 * will not become read-only while we are changing the flags.
175		 */
176		err = mnt_want_write_file(file);
177		if (err)
178			return err;
179		dbg_gen("set flags: %#x, i_flags %#x", flags, inode->i_flags);
180		err = setflags(inode, flags);
181		mnt_drop_write_file(file);
182		return err;
183	}
184	case FS_IOC_SET_ENCRYPTION_POLICY: {
185		struct ubifs_info *c = inode->i_sb->s_fs_info;
186
187		err = ubifs_enable_encryption(c);
188		if (err)
189			return err;
190
191		return fscrypt_ioctl_set_policy(file, (const void __user *)arg);
192	}
193	case FS_IOC_GET_ENCRYPTION_POLICY:
194		return fscrypt_ioctl_get_policy(file, (void __user *)arg);
195
196	case FS_IOC_GET_ENCRYPTION_POLICY_EX:
197		return fscrypt_ioctl_get_policy_ex(file, (void __user *)arg);
198
199	case FS_IOC_ADD_ENCRYPTION_KEY:
200		return fscrypt_ioctl_add_key(file, (void __user *)arg);
201
202	case FS_IOC_REMOVE_ENCRYPTION_KEY:
203		return fscrypt_ioctl_remove_key(file, (void __user *)arg);
204
205	case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
206		return fscrypt_ioctl_remove_key_all_users(file,
207							  (void __user *)arg);
208	case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
209		return fscrypt_ioctl_get_key_status(file, (void __user *)arg);
210
211	case FS_IOC_GET_ENCRYPTION_NONCE:
212		return fscrypt_ioctl_get_nonce(file, (void __user *)arg);
213
214	default:
215		return -ENOTTY;
216	}
217}
218
219#ifdef CONFIG_COMPAT
220long ubifs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
221{
222	switch (cmd) {
223	case FS_IOC32_GETFLAGS:
224		cmd = FS_IOC_GETFLAGS;
225		break;
226	case FS_IOC32_SETFLAGS:
227		cmd = FS_IOC_SETFLAGS;
228		break;
229	case FS_IOC_SET_ENCRYPTION_POLICY:
230	case FS_IOC_GET_ENCRYPTION_POLICY:
231	case FS_IOC_GET_ENCRYPTION_POLICY_EX:
232	case FS_IOC_ADD_ENCRYPTION_KEY:
233	case FS_IOC_REMOVE_ENCRYPTION_KEY:
234	case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
235	case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
236	case FS_IOC_GET_ENCRYPTION_NONCE:
237		break;
238	default:
239		return -ENOIOCTLCMD;
240	}
241	return ubifs_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
242}
243#endif