Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79bc12a0 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

ecryptfs fixes



memcpy() from userland pointer is a Bad Thing(tm)

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4ec7ffa2
Loading
Loading
Loading
Loading
+12 −14
Original line number Original line Diff line number Diff line
@@ -243,7 +243,6 @@ ecryptfs_miscdev_read(struct file *file, char __user *buf, size_t count,
	struct ecryptfs_daemon *daemon;
	struct ecryptfs_daemon *daemon;
	struct ecryptfs_msg_ctx *msg_ctx;
	struct ecryptfs_msg_ctx *msg_ctx;
	size_t packet_length_size;
	size_t packet_length_size;
	u32 counter_nbo;
	char packet_length[3];
	char packet_length[3];
	size_t i;
	size_t i;
	size_t total_length;
	size_t total_length;
@@ -328,20 +327,18 @@ ecryptfs_miscdev_read(struct file *file, char __user *buf, size_t count,
		       "pending message\n", __func__, count, total_length);
		       "pending message\n", __func__, count, total_length);
		goto out_unlock_msg_ctx;
		goto out_unlock_msg_ctx;
	}
	}
	i = 0;
	rc = -EFAULT;
	buf[i++] = msg_ctx->type;
	if (put_user(msg_ctx->type, buf))
	counter_nbo = cpu_to_be32(msg_ctx->counter);
		goto out_unlock_msg_ctx;
	memcpy(&buf[i], (char *)&counter_nbo, 4);
	if (put_user(cpu_to_be32(msg_ctx->counter), (__be32 __user *)(buf + 1)))
	i += 4;
		goto out_unlock_msg_ctx;
	i = 5;
	if (msg_ctx->msg) {
	if (msg_ctx->msg) {
		memcpy(&buf[i], packet_length, packet_length_size);
		if (copy_to_user(&buf[i], packet_length, packet_length_size))
			goto out_unlock_msg_ctx;
		i += packet_length_size;
		i += packet_length_size;
		rc = copy_to_user(&buf[i], msg_ctx->msg, msg_ctx->msg_size);
		if (copy_to_user(&buf[i], msg_ctx->msg, msg_ctx->msg_size))
		if (rc) {
			printk(KERN_ERR "%s: copy_to_user returned error "
			       "[%d]\n", __func__, rc);
			goto out_unlock_msg_ctx;
			goto out_unlock_msg_ctx;
		}
		i += msg_ctx->msg_size;
		i += msg_ctx->msg_size;
	}
	}
	rc = i;
	rc = i;
@@ -452,7 +449,8 @@ static ssize_t
ecryptfs_miscdev_write(struct file *file, const char __user *buf,
ecryptfs_miscdev_write(struct file *file, const char __user *buf,
		       size_t count, loff_t *ppos)
		       size_t count, loff_t *ppos)
{
{
	u32 counter_nbo, seq;
	__be32 counter_nbo;
	u32 seq;
	size_t packet_size, packet_size_length, i;
	size_t packet_size, packet_size_length, i;
	ssize_t sz = 0;
	ssize_t sz = 0;
	char *data;
	char *data;
@@ -485,7 +483,7 @@ ecryptfs_miscdev_write(struct file *file, const char __user *buf,
			       count);
			       count);
			goto out_free;
			goto out_free;
		}
		}
		memcpy((char *)&counter_nbo, &data[i], 4);
		memcpy(&counter_nbo, &data[i], 4);
		seq = be32_to_cpu(counter_nbo);
		seq = be32_to_cpu(counter_nbo);
		i += 4;
		i += 4;
		rc = ecryptfs_parse_packet_length(&data[i], &packet_size,
		rc = ecryptfs_parse_packet_length(&data[i], &packet_size,