ALSA: hda/via - Fix wrongly cleared pins after suspend on VT1802
[linux-2.6.git] / fs / efivarfs / file.c
blobbfb531564319608be19b63885142eb6b5c7648d9
1 /*
2 * Copyright (C) 2012 Red Hat, Inc.
3 * Copyright (C) 2012 Jeremy Kerr <jeremy.kerr@canonical.com>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
10 #include <linux/efi.h>
11 #include <linux/fs.h>
12 #include <linux/slab.h>
14 #include "internal.h"
16 static ssize_t efivarfs_file_write(struct file *file,
17 const char __user *userbuf, size_t count, loff_t *ppos)
19 struct efivar_entry *var = file->private_data;
20 void *data;
21 u32 attributes;
22 struct inode *inode = file->f_mapping->host;
23 unsigned long datasize = count - sizeof(attributes);
24 ssize_t bytes = 0;
25 bool set = false;
27 if (count < sizeof(attributes))
28 return -EINVAL;
30 if (copy_from_user(&attributes, userbuf, sizeof(attributes)))
31 return -EFAULT;
33 if (attributes & ~(EFI_VARIABLE_MASK))
34 return -EINVAL;
36 data = kmalloc(datasize, GFP_KERNEL);
37 if (!data)
38 return -ENOMEM;
40 if (copy_from_user(data, userbuf + sizeof(attributes), datasize)) {
41 bytes = -EFAULT;
42 goto out;
45 bytes = efivar_entry_set_get_size(var, attributes, &datasize,
46 data, &set);
47 if (!set && bytes)
48 goto out;
50 if (bytes == -ENOENT) {
51 drop_nlink(inode);
52 d_delete(file->f_dentry);
53 dput(file->f_dentry);
54 } else {
55 mutex_lock(&inode->i_mutex);
56 i_size_write(inode, datasize + sizeof(attributes));
57 mutex_unlock(&inode->i_mutex);
60 bytes = count;
62 out:
63 kfree(data);
65 return bytes;
68 static ssize_t efivarfs_file_read(struct file *file, char __user *userbuf,
69 size_t count, loff_t *ppos)
71 struct efivar_entry *var = file->private_data;
72 unsigned long datasize = 0;
73 u32 attributes;
74 void *data;
75 ssize_t size = 0;
76 int err;
78 err = efivar_entry_size(var, &datasize);
79 if (err)
80 return err;
82 data = kmalloc(datasize + sizeof(attributes), GFP_KERNEL);
84 if (!data)
85 return -ENOMEM;
87 size = efivar_entry_get(var, &attributes, &datasize,
88 data + sizeof(attributes));
89 if (size)
90 goto out_free;
92 memcpy(data, &attributes, sizeof(attributes));
93 size = simple_read_from_buffer(userbuf, count, ppos,
94 data, datasize + sizeof(attributes));
95 out_free:
96 kfree(data);
98 return size;
101 const struct file_operations efivarfs_file_operations = {
102 .open = simple_open,
103 .read = efivarfs_file_read,
104 .write = efivarfs_file_write,
105 .llseek = no_llseek,