Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
netlink.c
Go to the documentation of this file.
1 
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>
8 #include <linux/slab.h>
9 #include <net/netlink.h>
10 #include <net/genetlink.h>
11 
12 /* Netlink family structure for quota */
13 static struct genl_family quota_genl_family = {
14  .id = GENL_ID_GENERATE,
15  .hdrsize = 0,
16  .name = "VFS_DQUOT",
17  .version = 1,
18  .maxattr = QUOTA_NL_A_MAX,
19 };
20 
34  const char warntype)
35 {
36  static atomic_t seq;
37  struct sk_buff *skb;
38  void *msg_head;
39  int ret;
40  int msg_size = 4 * nla_total_size(sizeof(u32)) +
41  2 * nla_total_size(sizeof(u64));
42 
43  /* We have to allocate using GFP_NOFS as we are called from a
44  * filesystem performing write and thus further recursion into
45  * the fs to free some data could cause deadlocks. */
46  skb = genlmsg_new(msg_size, GFP_NOFS);
47  if (!skb) {
49  "VFS: Not enough memory to send quota warning.\n");
50  return;
51  }
52  msg_head = genlmsg_put(skb, 0, atomic_add_return(1, &seq),
53  &quota_genl_family, 0, QUOTA_NL_C_WARNING);
54  if (!msg_head) {
56  "VFS: Cannot store netlink header in quota warning.\n");
57  goto err_out;
58  }
59  ret = nla_put_u32(skb, QUOTA_NL_A_QTYPE, qid.type);
60  if (ret)
61  goto attr_err_out;
62  ret = nla_put_u64(skb, QUOTA_NL_A_EXCESS_ID,
64  if (ret)
65  goto attr_err_out;
66  ret = nla_put_u32(skb, QUOTA_NL_A_WARNING, warntype);
67  if (ret)
68  goto attr_err_out;
69  ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MAJOR, MAJOR(dev));
70  if (ret)
71  goto attr_err_out;
72  ret = nla_put_u32(skb, QUOTA_NL_A_DEV_MINOR, MINOR(dev));
73  if (ret)
74  goto attr_err_out;
75  ret = nla_put_u64(skb, QUOTA_NL_A_CAUSED_ID,
77  if (ret)
78  goto attr_err_out;
79  genlmsg_end(skb, msg_head);
80 
81  genlmsg_multicast(skb, 0, quota_genl_family.id, GFP_NOFS);
82  return;
83 attr_err_out:
84  printk(KERN_ERR "VFS: Not enough space to compose quota message!\n");
85 err_out:
86  kfree_skb(skb);
87 }
89 
90 static int __init quota_init(void)
91 {
92  if (genl_register_family(&quota_genl_family) != 0)
94  "VFS: Failed to create quota netlink interface.\n");
95  return 0;
96 };
97 
98 module_init(quota_init);