RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / drivers / scsi / scsi_netlink.c
blobefe2aad40d5434809bc31fd70066192ccbbe0230
1 /*
2 * scsi_netlink.c - SCSI Transport Netlink Interface
4 * Copyright (C) 2006 James Smart, Emulex Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <linux/time.h>
22 #include <linux/jiffies.h>
23 #include <linux/security.h>
24 #include <net/sock.h>
25 #include <net/netlink.h>
27 #include <scsi/scsi_netlink.h>
28 #include "scsi_priv.h"
30 struct sock *scsi_nl_sock = NULL;
31 EXPORT_SYMBOL_GPL(scsi_nl_sock);
34 /**
35 * scsi_nl_rcv_msg -
36 * Receive message handler. Extracts message from a receive buffer.
37 * Validates message header and calls appropriate transport message handler
39 * @skb: socket receive buffer
41 **/
42 static void
43 scsi_nl_rcv_msg(struct sk_buff *skb)
45 struct nlmsghdr *nlh;
46 struct scsi_nl_hdr *hdr;
47 uint32_t rlen;
48 int err;
50 while (skb->len >= NLMSG_SPACE(0)) {
51 err = 0;
53 nlh = nlmsg_hdr(skb);
54 if ((nlh->nlmsg_len < (sizeof(*nlh) + sizeof(*hdr))) ||
55 (skb->len < nlh->nlmsg_len)) {
56 printk(KERN_WARNING "%s: discarding partial skb\n",
57 __FUNCTION__);
58 return;
61 rlen = NLMSG_ALIGN(nlh->nlmsg_len);
62 if (rlen > skb->len)
63 rlen = skb->len;
65 if (nlh->nlmsg_type != SCSI_TRANSPORT_MSG) {
66 err = -EBADMSG;
67 return;
70 hdr = NLMSG_DATA(nlh);
71 if ((hdr->version != SCSI_NL_VERSION) ||
72 (hdr->magic != SCSI_NL_MAGIC)) {
73 err = -EPROTOTYPE;
74 goto next_msg;
77 if (security_netlink_recv(skb, CAP_SYS_ADMIN)) {
78 err = -EPERM;
79 goto next_msg;
82 if (nlh->nlmsg_len < (sizeof(*nlh) + hdr->msglen)) {
83 printk(KERN_WARNING "%s: discarding partial message\n",
84 __FUNCTION__);
85 return;
89 * We currently don't support anyone sending us a message
92 next_msg:
93 if ((err) || (nlh->nlmsg_flags & NLM_F_ACK))
94 netlink_ack(skb, nlh, err);
96 skb_pull(skb, rlen);
102 * scsi_nl_rcv_event -
103 * Event handler for a netlink socket.
105 * @this: event notifier block
106 * @event: event type
107 * @ptr: event payload
110 static int
111 scsi_nl_rcv_event(struct notifier_block *this, unsigned long event, void *ptr)
113 struct netlink_notify *n = ptr;
115 if (n->protocol != NETLINK_SCSITRANSPORT)
116 return NOTIFY_DONE;
119 * Currently, we are not tracking PID's, etc. There is nothing
120 * to handle.
123 return NOTIFY_DONE;
126 static struct notifier_block scsi_netlink_notifier = {
127 .notifier_call = scsi_nl_rcv_event,
132 * scsi_netlink_init -
133 * Called by SCSI subsystem to intialize the SCSI transport netlink
134 * interface
137 void
138 scsi_netlink_init(void)
140 int error;
142 error = netlink_register_notifier(&scsi_netlink_notifier);
143 if (error) {
144 printk(KERN_ERR "%s: register of event handler failed - %d\n",
145 __FUNCTION__, error);
146 return;
149 scsi_nl_sock = netlink_kernel_create(NETLINK_SCSITRANSPORT,
150 SCSI_NL_GRP_CNT, scsi_nl_rcv_msg, NULL,
151 THIS_MODULE);
152 if (!scsi_nl_sock) {
153 printk(KERN_ERR "%s: register of recieve handler failed\n",
154 __FUNCTION__);
155 netlink_unregister_notifier(&scsi_netlink_notifier);
158 return;
163 * scsi_netlink_exit -
164 * Called by SCSI subsystem to disable the SCSI transport netlink
165 * interface
168 void
169 scsi_netlink_exit(void)
171 if (scsi_nl_sock) {
172 sock_release(scsi_nl_sock->sk_socket);
173 netlink_unregister_notifier(&scsi_netlink_notifier);
176 return;