blob: a5b5eddf6603bc3399a8588b20b9706e02f61546 [file] [log] [blame]
Christoph Hellwig799a9d42010-02-16 03:44:54 -05001
2#include <linux/cred.h>
3#include <linux/init.h>
4#include <linux/module.h>
5#include <linux/kernel.h>
6#include <linux/quotaops.h>
7#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Christoph Hellwig799a9d42010-02-16 03:44:54 -05009#include <net/netlink.h>
10#include <net/genetlink.h>
11
12/* Netlink family structure for quota */
13static struct genl_family quota_genl_family = {
Johannes Berg2ecf7532013-11-19 15:19:33 +010014 /*
15 * Needed due to multicast group ID abuse - old code assumed
16 * the family ID was also a valid multicast group ID (which
17 * isn't true) and userspace might thus rely on it. Assign a
18 * static ID for this group to make dealing with that easier.
19 */
20 .id = GENL_ID_VFS_DQUOT,
Christoph Hellwig799a9d42010-02-16 03:44:54 -050021 .hdrsize = 0,
22 .name = "VFS_DQUOT",
23 .version = 1,
24 .maxattr = QUOTA_NL_A_MAX,
25};
26
Johannes Berg2ecf7532013-11-19 15:19:33 +010027static struct genl_multicast_group quota_mcgrp = {
28 .name = "events",
29};
30
Christoph Hellwig799a9d42010-02-16 03:44:54 -050031/**
32 * quota_send_warning - Send warning to userspace about exceeded quota
33 * @type: The quota type: USRQQUOTA, GRPQUOTA,...
34 * @id: The user or group id of the quota that was exceeded
35 * @dev: The device on which the fs is mounted (sb->s_dev)
36 * @warntype: The type of the warning: QUOTA_NL_...
37 *
38 * This can be used by filesystems (including those which don't use
39 * dquot) to send a message to userspace relating to quota limits.
40 *
41 */
42
Eric W. Biederman431f1972012-09-16 02:32:43 -070043void quota_send_warning(struct kqid qid, dev_t dev,
Christoph Hellwig799a9d42010-02-16 03:44:54 -050044 const char warntype)
45{
46 static atomic_t seq;
47 struct sk_buff *skb;
48 void *msg_head;
49 int ret;
50 int msg_size = 4 * nla_total_size(sizeof(u32)) +
51 2 * nla_total_size(sizeof(u64));
52
53 /* We have to allocate using GFP_NOFS as we are called from a
54 * filesystem performing write and thus further recursion into
55 * the fs to free some data could cause deadlocks. */
56 skb = genlmsg_new(msg_size, GFP_NOFS);
57 if (!skb) {
58 printk(KERN_ERR
59 "VFS: Not enough memory to send quota warning.\n");
60 return;
61 }
62 msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq),
63 &quota_genl_family, 0, QUOTA_NL_C_WARNING);
64 if (!msg_head) {
65 printk(KERN_ERR
66 "VFS: Cannot store netlink header in quota warning.\n");
67 goto err_out;
68 }
Eric W. Biederman431f1972012-09-16 02:32:43 -070069 ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, qid.type);
Christoph Hellwig799a9d42010-02-16 03:44:54 -050070 if (ret)
71 goto attr_err_out;
Eric W. Biederman431f1972012-09-16 02:32:43 -070072 ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID,
73 from_kqid_munged(&init_user_ns, qid));
Christoph Hellwig799a9d42010-02-16 03:44:54 -050074 if (ret)
75 goto attr_err_out;
76 ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype);
77 if (ret)
78 goto attr_err_out;
79 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR, MAJOR(dev));
80 if (ret)
81 goto attr_err_out;
82 ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR, MINOR(dev));
83 if (ret)
84 goto attr_err_out;
Eric W. Biederman431f1972012-09-16 02:32:43 -070085 ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_ID,
86 from_kuid_munged(&init_user_ns, current_uid()));
Christoph Hellwig799a9d42010-02-16 03:44:54 -050087 if (ret)
88 goto attr_err_out;
89 genlmsg_end(skb, msg_head);
90
Johannes Berg68eb5502013-11-19 15:19:38 +010091 genlmsg_multicast(&quota_genl_family, skb, 0, quota_mcgrp.id, GFP_NOFS);
Christoph Hellwig799a9d42010-02-16 03:44:54 -050092 return;
93attr_err_out:
94 printk(KERN_ERR "VFS: Not enough space to compose quota message!\n");
95err_out:
96 kfree_skb(skb);
97}
98EXPORT_SYMBOL(quota_send_warning);
99
100static int __init quota_init(void)
101{
102 if (genl_register_family(&quota_genl_family) != 0)
103 printk(KERN_ERR
104 "VFS: Failed to create quota netlink interface.\n");
Johannes Berg2ecf7532013-11-19 15:19:33 +0100105 if (genl_register_mc_group(&quota_genl_family, &quota_mcgrp))
106 printk(KERN_ERR
107 "VFS: Failed to register quota mcast group.\n");
Christoph Hellwig799a9d42010-02-16 03:44:54 -0500108 return 0;
109};
110
111module_init(quota_init);