2 * IrDA netlink layer, for stack configuration.
4 * Copyright (c) 2007 Samuel Ortiz <samuel@sortiz.org>
6 * Partly based on the 802.11 nelink implementation
7 * (see net/wireless/nl80211.c) which is:
8 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/socket.h>
17 #include <linux/irda.h>
19 #include <net/irda/irda.h>
20 #include <net/irda/irlap.h>
21 #include <net/genetlink.h>
25 static struct genl_family irda_nl_family
= {
26 .id
= GENL_ID_GENERATE
,
29 .version
= IRDA_NL_VERSION
,
30 .maxattr
= IRDA_NL_CMD_MAX
,
33 static struct net_device
* ifname_to_netdev(struct genl_info
*info
)
37 if (!info
->attrs
[IRDA_NL_ATTR_IFNAME
])
40 ifname
= nla_data(info
->attrs
[IRDA_NL_ATTR_IFNAME
]);
42 IRDA_DEBUG(5, "%s(): Looking for %s\n", __FUNCTION__
, ifname
);
44 return dev_get_by_name(ifname
);
47 static int irda_nl_set_mode(struct sk_buff
*skb
, struct genl_info
*info
)
49 struct net_device
* dev
;
50 struct irlap_cb
* irlap
;
53 if (!info
->attrs
[IRDA_NL_ATTR_MODE
])
56 mode
= nla_get_u32(info
->attrs
[IRDA_NL_ATTR_MODE
]);
58 IRDA_DEBUG(5, "%s(): Switching to mode: %d\n", __FUNCTION__
, mode
);
60 dev
= ifname_to_netdev(info
);
64 irlap
= (struct irlap_cb
*)dev
->atalk_ptr
;
77 static int irda_nl_get_mode(struct sk_buff
*skb
, struct genl_info
*info
)
79 struct net_device
* dev
;
80 struct irlap_cb
* irlap
;
85 dev
= ifname_to_netdev(info
);
89 msg
= nlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
95 irlap
= (struct irlap_cb
*)dev
->atalk_ptr
;
101 hdr
= genlmsg_put(msg
, info
->snd_pid
, info
->snd_seq
,
102 &irda_nl_family
, 0, IRDA_NL_CMD_GET_MODE
);
108 if(nla_put_string(msg
, IRDA_NL_ATTR_IFNAME
,
112 if(nla_put_u32(msg
, IRDA_NL_ATTR_MODE
, irlap
->mode
))
115 genlmsg_end(msg
, hdr
);
117 return genlmsg_unicast(msg
, info
->snd_pid
);
126 static struct nla_policy irda_nl_policy
[IRDA_NL_ATTR_MAX
+ 1] = {
127 [IRDA_NL_ATTR_IFNAME
] = { .type
= NLA_NUL_STRING
,
129 [IRDA_NL_ATTR_MODE
] = { .type
= NLA_U32
},
132 static struct genl_ops irda_nl_ops
[] = {
134 .cmd
= IRDA_NL_CMD_SET_MODE
,
135 .doit
= irda_nl_set_mode
,
136 .policy
= irda_nl_policy
,
137 .flags
= GENL_ADMIN_PERM
,
140 .cmd
= IRDA_NL_CMD_GET_MODE
,
141 .doit
= irda_nl_get_mode
,
142 .policy
= irda_nl_policy
,
143 /* can be retrieved by unprivileged users */
148 int irda_nl_register(void)
152 err
= genl_register_family(&irda_nl_family
);
156 for (i
= 0; i
< ARRAY_SIZE(irda_nl_ops
); i
++) {
157 err
= genl_register_ops(&irda_nl_family
, &irda_nl_ops
[i
]);
163 genl_unregister_family(&irda_nl_family
);
167 void irda_nl_unregister(void)
169 genl_unregister_family(&irda_nl_family
);